structure
definition
DefectBoundedSubLedger
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Mathematics.HodgeConjecture on GitHub at line 56.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
-
all -
all -
of -
Defect -
all -
of -
A -
defect -
defect_nonneg -
RecognitionEvent -
cost -
cost -
RecognitionEvent -
is -
of -
is -
of -
is -
RecognitionEvent -
of -
A -
Z -
is -
A -
all -
total -
total -
sub -
Z -
sub
used by
-
CoarseGrainingFlow -
CoarseGrainingStableClass -
CohomologyClass -
defect_budget_theorem -
flow_stable_at_zero -
HodgeCert -
hodge_implies_zero_charge -
IsFlowStable -
JCostMinimalCycle -
j_cost_minimal_is_cgstable -
j_cost_minimal_is_cgstable' -
RSHodgeConjecture -
rs_pp_condition -
sub_ledger_exists -
trivialFlow -
HodgeHardCert -
hodge_hard_direction_case_A -
hodge_hard_direction_case_B -
hodge_hard_direction_summary -
rs_hodge_holds_for_trivial_ledgers -
rs_hodge_holds_for_unit_defect -
all_ledgers_are_jcost_critical -
globally_minimal_gives_cycle -
hard_direction_for_zero_limit_ledger -
hard_direction_via_defect_budget -
HarmonicFormsCert -
harmonic_form_theorem_minimal_ledger -
harmonic_form_theorem_zero_charge -
HodgeDecomposition -
hodge_decomposition_exists -
IsGloballyMinimal -
IsJCostCritical -
JCostGradient
formal source
53/-- A DefectBoundedSubLedger is a finite set of recognition events
54 (the RS analog of a smooth projective algebraic variety).
55 It has bounded total J-cost: the "defect" of the sub-ledger is finite. -/
56structure DefectBoundedSubLedger where
57 /-- Recognition events in the sub-ledger -/
58 events : List RecognitionEvent
59 /-- Defect = total J-cost of all recognition events -/
60 defect : ℝ
61 /-- Defect is bounded (the variety is non-singular) -/
62 defect_bounded : defect < phi ^ 44
63 /-- Defect is nonneg (J-cost is always nonneg) -/
64 defect_nonneg : 0 ≤ defect
65
66/-- A cohomology class on a DefectBoundedSubLedger is a real number
67 (encoding the "charge" of the class in the Z-complexity sense). -/
68structure CohomologyClass (L : DefectBoundedSubLedger) where
69 /-- The characteristic value of the class (Z-charge) -/
70 z_charge : ℝ
71 /-- The type (p,p) condition in RS: charge is symmetric about 0 -/
72 symmetric : z_charge ≥ 0
73
74/-- A CoarseGrainingStableClass is a cohomology class that survives
75 "zooming out" — the Data Processing Inequality (DPI).
76 A class survives coarse-graining iff its z_charge is anchored to
77 the actual J-cost structure (not just a statistical artifact). -/
78structure CoarseGrainingStableClass (L : DefectBoundedSubLedger) extends CohomologyClass L where
79 /-- Stability condition: z_charge is a fixed point under DPI -/
80 dpi_stable : z_charge ≤ L.defect
81
82/-- A JCostMinimalCycle is a recognition-closed subgraph with zero net defect:
83 the RS analog of an algebraic cycle. Every boundary node is balanced. -/
84structure JCostMinimalCycle (L : DefectBoundedSubLedger) where
85 /-- The events in the cycle -/
86 cycle_events : List RecognitionEvent