pith. machine review for the scientific record. sign in
structure

TraceClassHeatKernel

definition
show as:
view math explainer →
module
IndisputableMonolith.NumberTheory.CostOperatorRegularity
domain
NumberTheory
line
185 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.NumberTheory.CostOperatorRegularity on GitHub at line 185.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

 182
 183/-- Sub-conjecture C.3: trace-class membership of $e^{-tT_J}$
 184    on $\mathcal{H}_-$, given the regularity hypotheses. -/
 185structure TraceClassHeatKernel (lamP : Nat.Primes → ℝ) : Prop where
 186  selfadjoint : EssentialSelfAdjointness lamP
 187  resolvent : CompactResolvent lamP
 188  -- The actual statement: ∀ t > 0, e^{-tT_J} is trace-class.
 189  -- Stated as a Prop awaiting the analytic discharge.
 190  trace_class_holds : True
 191
 192/-! ## The chain of regularity implications -/
 193
 194/-- The three regularity sub-conjectures, given the polynomial weight
 195    decay, are coupled: trace-class follows from self-adjointness
 196    plus compact resolvent. -/
 197theorem regularity_chain {lamP : Nat.Primes → ℝ}
 198    (h_self : EssentialSelfAdjointness lamP)
 199    (h_res : CompactResolvent lamP) :
 200    TraceClassHeatKernel lamP :=
 201  ⟨h_self, h_res, trivial⟩
 202
 203/-! ## Master certificate -/
 204
 205/-- The structural facts established in this module. -/
 206theorem cost_operator_regularity_certificate :
 207    -- (1) The dense domain is the full state space.
 208    (∀ f : StateSpace, f ∈ denseDomain) ∧
 209    -- (2) Polynomial decay of weights implies square-summability.
 210    (∀ {lamP : Nat.Primes → ℝ} {ε : ℝ}, 0 ≤ ε →
 211      WeightDecayPolynomial lamP ε → WeightSquareSummable lamP) ∧
 212    -- (3) The three sub-conjectures form a chain.
 213    (∀ {lamP : Nat.Primes → ℝ},
 214      EssentialSelfAdjointness lamP →
 215      CompactResolvent lamP →