Encyclopedia Foundation Foundation Phi Forcing Self Similar Forces Golden Constraint

ARTICLE 3 claims 3 theorems

Foundation Phi Forcing Self Similar Forces Golden Constraint

A self-similar structure in a discrete ledger forces the golden ratio as its unique scale ratio, a result proved in the framework's machine-checked library.

The Self-Similarity Constraint

The golden ratio, φ = (1 + √5)/2, is the unique positive number that satisfies x² = x + 1. It appears in classical geometry as the ratio of diagonal to side in a regular pentagon, and in the Fibonacci sequence as the limit of consecutive term ratios. Its irrationality and its continued fraction [1; 1, 1, ...] are standard facts. In the Recognition Science framework, this same equation emerges from a structural condition on a ledger, a discrete record of events with a forced cost structure.

The framework's library, a machine-checked collection of formal theorems, proves that if a ledger is self-similar, meaning it can reference itself at different scales with the same cost structure, then the scale ratio must satisfy the golden equation. The theorem self_similar_forces_golden_constraint derives that any self-similar scale ratio r satisfies r² = r + 1. A companion theorem, golden_constraint_unique, shows that among positive real numbers, only φ satisfies this equation. Together they force the ratio to be exactly φ.

This is a derivation, not an assumption. The framework does not choose φ; it proves that any discrete ledger with the required self-similarity property must have φ as its scale ratio. The result is a theorem in the library, with no framework-specific axioms. It is one step in a larger chain that derives physical constants and dimensions from the cost function, but this particular theorem concerns the mathematical structure of self-similar ledgers.

What the theorem does not claim is broader than what it does. It does not say that every self-similar structure in nature has golden ratio scaling; the classical Cantor set and Koch curve are self-similar with ratios 3 and 4 respectively. It does not assert that the physical universe is a discrete ledger, nor that the bridge from this mathematical structure to physical space is complete. Those are separate questions, some open. The theorem's scope is precise: given a discrete ledger with self-similarity, the scale ratio is φ.

THEOREM golden_constraint_unique · IndisputableMonolith/Foundation/PhiForcing.lean
golden_constraint_unique · IndisputableMonolith/Foundation/PhiForcing.lean:161
/-- The golden constraint characterizes φ among positive reals. -/
theorem golden_constraint_unique {r : ℝ} (hr_pos : 0 < r) (hr_eq : satisfies_golden_constraint r) :
    r = φ := by
  -- r² = r + 1 has solutions (1 ± √5)/2
  -- Only (1 + √5)/2 is positive
  simp only [satisfies_golden_constraint] at hr_eq
  have h : r^2 - r - 1 = 0 := by linarith
  -- Use quadratic formula and positivity
  -- The solutions are (1 ± √5)/2, and only (1 + √5)/2 > 0
  have h5 : Real.sqrt 5 > 2 := by
    have h4 : (4 : ℝ) < 5 := by norm_num
    have hsqrt4 : Real.sqrt 4 = 2 := by
      rw [show (4 : ℝ) = 2^2 by norm_num, Real.sqrt_sq (by norm_num : (0 : ℝ) ≤ 2)]
    calc Real.sqrt 5 > Real.sqrt 4 := Real.sqrt_lt_sqrt (by norm_num) h4
      _ = 2 := hsqrt4
  -- The positive root is (1 + √5)/2
  have hsq5 : Real.sqrt 5 ^ 2 = 5 := Real.sq_sqrt (by norm_num : (0 : ℝ) ≤ 5)
  -- Verify φ satisfies the equation
  have hphi_satisfies : φ^2 = φ + 1 := phi_equation
  -- Both r and φ satisfy x² = x + 1, and both are positive
  -- The polynomial x² - x - 1 has exactly two roots
  -- Since r > 0 and φ > 0, and the other root is negative, we have r = φ
  nlinarith [sq_nonneg (r - φ), sq_nonneg (r + φ - 1), phi_pos, hsq5]
THEOREM self_similar_forces_golden_constraint · IndisputableMonolith/Foundation/PhiForcing.lean
self_similar_forces_golden_constraint · IndisputableMonolith/Foundation/PhiForcing.lean:150
/-- Closed geometric self-similarity forces the golden constraint. -/
theorem self_similar_forces_golden_constraint (S : SelfSimilar) :
    satisfies_golden_constraint S.ratio := by
  rcases S.scale_invariant with ⟨G, hratio, hclosed⟩
  unfold satisfies_golden_constraint
  rw [← hratio]
  exact PhiForcingDerived.closure_forces_golden_equation G hclosed
THEOREM golden_constraint_unique · IndisputableMonolith/Foundation/PhiForcing.lean
golden_constraint_unique · IndisputableMonolith/Foundation/PhiForcing.lean:161
/-- The golden constraint characterizes φ among positive reals. -/
theorem golden_constraint_unique {r : ℝ} (hr_pos : 0 < r) (hr_eq : satisfies_golden_constraint r) :
    r = φ := by
  -- r² = r + 1 has solutions (1 ± √5)/2
  -- Only (1 + √5)/2 is positive
  simp only [satisfies_golden_constraint] at hr_eq
  have h : r^2 - r - 1 = 0 := by linarith
  -- Use quadratic formula and positivity
  -- The solutions are (1 ± √5)/2, and only (1 + √5)/2 > 0
  have h5 : Real.sqrt 5 > 2 := by
    have h4 : (4 : ℝ) < 5 := by norm_num
    have hsqrt4 : Real.sqrt 4 = 2 := by
      rw [show (4 : ℝ) = 2^2 by norm_num, Real.sqrt_sq (by norm_num : (0 : ℝ) ≤ 2)]
    calc Real.sqrt 5 > Real.sqrt 4 := Real.sqrt_lt_sqrt (by norm_num) h4
      _ = 2 := hsqrt4
  -- The positive root is (1 + √5)/2
  have hsq5 : Real.sqrt 5 ^ 2 = 5 := Real.sq_sqrt (by norm_num : (0 : ℝ) ≤ 5)
  -- Verify φ satisfies the equation
  have hphi_satisfies : φ^2 = φ + 1 := phi_equation
  -- Both r and φ satisfy x² = x + 1, and both are positive
  -- The polynomial x² - x - 1 has exactly two roots
  -- Since r > 0 and φ > 0, and the other root is negative, we have r = φ
  nlinarith [sq_nonneg (r - φ), sq_nonneg (r + φ - 1), phi_pos, hsq5]

What this page does not claim

Every self-similar structure in mathematics has golden ratio scaling; the Cantor set and Koch curve are counterexamples. The physical universe is a discrete ledger, or that the recognition-to-linking bridge is complete. The golden ratio is the only scale ratio possible in any ledger; the theorem requires the self-similarity condition.

Verify this page

Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:

$ lake env lean IndisputableMonolith/Foundation/PhiForcing.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)

A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.

Derived articles

This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND