theorem
proved
hodge_implies_zero_charge
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Mathematics.HodgeConjecture on GitHub at line 154.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
151/-- If the RS Hodge Conjecture holds, then coarse-graining stability forces
152 every stable class to have zero total z_charge (since all minimal cycles have
153 z_charge = 0 or ≤ 1, and their sum = 0 for a finite set). -/
154theorem hodge_implies_zero_charge (h : RSHodgeConjecture)
155 (L : DefectBoundedSubLedger) (cls : CoarseGrainingStableClass L)
156 (hzero : ∀ (cyc : JCostMinimalCycle L), cyc.cycle_class.z_charge = 0) :
157 cls.z_charge = 0 := by
158 obtain ⟨cycles, hsum⟩ := h L cls
159 rw [hsum]
160 simp [hzero]
161
162/-! ## Part 4: Connection to Classical Hodge -/
163
164/-- The RS framework recovers the classical Hodge (p,p) type condition:
165 z_charge ≥ 0 is the RS version of the (p,p) Hodge condition.
166 Classical (p,p) classes have equal holomorphic and antiholomorphic degree. -/
167theorem rs_pp_condition (L : DefectBoundedSubLedger)
168 (cls : CoarseGrainingStableClass L) :
169 0 ≤ cls.z_charge := cls.symmetric
170
171/-- A non-trivial DefectBoundedSubLedger exists (so the conjecture is non-vacuous). -/
172theorem sub_ledger_exists : ∃ L : DefectBoundedSubLedger,
173 L.events.length > 0 := by
174 use {
175 events := [⟨0, 1, 1, by norm_num⟩]
176 defect := 0
177 defect_bounded := by
178 have : (0 : ℝ) < phi ^ (44 : ℕ) := pow_pos phi_pos 44
179 linarith
180 defect_nonneg := le_refl _
181 }
182 simp
183
184/-! ## Part 5: Coarse-Graining Flow (Defect Budget) -/