Explanation of the theorem phi_forced
(1) Plain English statement
The declaration states that if a structure L is a discrete ledger and r is a self-similar scale ratio for L, then r must equal the golden ratio φ = (1 + √5)/2.
(2) Role in Recognition Science
This theorem shows that the golden ratio emerges necessarily from self-similarity applied to a discrete ledger equipped with J-cost. It forms a key step in the forcing chain: discreteness and ledger structure plus self-similarity force φ as the unique positive scale ratio satisfying the compositional constraint r² = r + 1. This supplies the parameter-free origin of subsequent constants such as E_coh = φ^{-5} and the φ-ladder of stable positions.
(3) Reading the formal statement
The Lean declaration is:
theorem phi_forced (L : DiscreteLedger) (r : ℝ) (hr : is_self_similar L r) : r = φ
DiscreteLedgerpackages aLedgerForcing.Ledgertogether with aDiscretenessForcing.DiscreteConfigSpace.is_self_similar L rasserts existence of aSelfSimilarwitness whoseratiofield equals r and whosescale_invariantfield supplies a closed geometric sequence.- The conclusion
r = φfollows by reducing the self-similarity witness to the algebraic constraintsatisfies_golden_constraintand invoking uniqueness of the positive root.
(4) Visible dependencies and certificates
The proof performs rcases hr with ⟨S, rfl⟩ then applies golden_constraint_unique to the positivity and constraint obtained from self_similar_forces_golden_constraint. The latter calls PhiForcingDerived.closure_forces_golden_equation. Supporting facts present in the same module include phi_equation, phi_pos, and phi_satisfies. The module imports IndisputableMonolith.Foundation.PhiForcingDerived, IndisputableMonolith.Foundation.LedgerForcing, and IndisputableMonolith.Foundation.DiscretenessForcing.
(5) What the declaration does not prove
It assumes the hypothesis hr : is_self_similar L r and therefore does not establish that any concrete ledger is self-similar. It likewise does not derive the 8-tick cycle, spatial dimension D = 3, or the numerical values of physical constants; those steps lie in later modules of the forcing chain.