def
definition
gate_ledger
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Foundation.InevitabilityStructure on GitHub at line 94.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
91}
92
93/-- Gate 4: Ledger Structure -/
94def gate_ledger : NecessityGate := {
95 name := "Ledger Forcing"
96 proven := true -- Proven in LedgerForcing.lean
97 violation_meaning := "Asymmetric recognition without double-entry conservation"
98}
99
100/-- Gate 5: φ Forcing -/
101def gate_phi : NecessityGate := {
102 name := "φ Forcing"
103 proven := true -- Proven in PhiForcing.lean
104 violation_meaning := "Self-similar discrete ledger with ratio ≠ φ"
105}
106
107/-- Gate 6: Dimension Forcing -/
108def gate_dimension : NecessityGate := {
109 name := "D = 3 Forcing"
110 proven := false -- Scaffold: requires linking + gap-45 proof
111 violation_meaning := "Non-trivial linking in D ≠ 3"
112}
113
114/-- All necessity gates. -/
115def all_gates : List NecessityGate :=
116 [gate_cost_uniqueness, gate_selection_rule, gate_discreteness,
117 gate_ledger, gate_phi, gate_dimension]
118
119/-! ## The Alternative Framework Structure -/
120
121/-- An alternative framework to RS. -/
122structure AlternativeFramework where
123 /-- The cost functional -/
124 cost : ℝ → ℝ