Encyclopedia Foundation Foundation Phi Forcing Phi Lt One Point Eight
ARTICLE 4 claims 4 theorems
Foundation Phi Forcing Phi Lt One Point Eight
The golden ratio is the unique scale that lets a discrete record of events stay cost-equivalent to itself, and its value sits between 1.6 and 1.8.
The golden ratio's place
The golden ratio φ is the positive number that satisfies φ² = φ + 1, which works out to (1 + √5)/2, approximately 1.6180339887. It is irrational, meaning it cannot be written as a fraction of two whole numbers, and its continued fraction is the simplest possible: all ones. Classically it appears in the geometry of a regular pentagon, where diagonals cut each other in golden sections, and in the Fibonacci sequence, where successive ratios converge to it.
The declaration phi_lt_onePointEight is a small, machine-checked theorem about this number. It proves that φ is less than 1.8. That is all it proves. The same file also proves φ is greater than 1.6, and more precisely that φ lies between 1.618 and 1.619. These are numerical bounds, useful for pinning down the value without relying on decimal approximations that could carry rounding errors.
In Recognition Science, the framework's library of formal theorems uses these bounds as scaffolding. The framework models reality as a ledger, a discrete record of events, where each event carries a cost, a number measuring how hard that event is to recognize. A central proved theorem states that any cost function meeting five plain conditions must equal J(x) = (x + 1/x)/2 − 1. From that cost function, the framework derives that a self-similar ledger, one whose cost structure looks the same at every scale, must have a scale ratio satisfying r² = r + 1. The only positive solution to that equation is φ.
So the framework proves that φ is the unique scale ratio for a self-similar ledger, and the bound theorems confirm that this unique ratio falls between 1.6 and 1.8. The declaration phi_lt_onePointEight does not compute φ, does not define the cost function, and does not establish the uniqueness result by itself. It is a supporting bound, one brick in a larger proof. The uniqueness and the forcing are separate theorems in the same file, and the bound serves them.
What the reader can take away: the golden ratio is not merely an aesthetic curiosity. Within this framework, it is the only possible scale for a self-similar discrete ledger, and its numerical location is pinned down by machine-checked inequalities. The bound 1.8 is a fact about a classical constant, and the forcing is a fact about a specific model of recognition.
THEOREM phi_lt_onePointEight · IndisputableMonolith/Foundation/PhiForcing.lean
/-- φ < 1.8. -/
theorem phi_lt_onePointEight : φ < (1.8 : ℝ) :=
lt_trans phi_lt_onePointSixOneNine (by norm_num)
THEOREM golden_constraint_unique · IndisputableMonolith/Foundation/PhiForcing.lean
/-- 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
/-- 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 phi_forced · IndisputableMonolith/Foundation/PhiForcing.lean
/-- **PHI FORCING THEOREM**: In a self-similar discrete ledger, the scale ratio is φ.
If:
1. L is a discrete ledger (from DiscretenessForcing + LedgerForcing)
2. L is self-similar with scale ratio r
3. r satisfies the compositional constraint r² = r + 1
Then: r = φ = (1 + √5)/2 -/
theorem phi_forced (L : DiscreteLedger) (r : ℝ) (hr : is_self_similar L r) : r = φ := by
rcases hr with ⟨S, rfl⟩
exact golden_constraint_unique S.ratio_pos (self_similar_forces_golden_constraint S)
What this page does not claim
phi_lt_onePointEight does not compute the decimal value of φ. The bound alone does not establish uniqueness; that requires the separate uniqueness theorem. The framework does not claim φ is the only self-similar scale in classical mathematics, only in its discrete ledger model.
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:
- What five conditions force the cost function J(x) = (x + 1/x)/2 − 1?
- How does the framework derive the eight-tick recognition cycle from the golden ratio?
- What physical constants follow from the golden ratio in the framework's units?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM phi_lt_onePointEight · IndisputableMonolith/Foundation/PhiForcing.lean
/-- φ < 1.8. -/ theorem phi_lt_onePointEight : φ < (1.8 : ℝ) := lt_trans phi_lt_onePointSixOneNine (by norm_num)The declaration phi_lt_onePointEight proves that φ is less than 1.8. phi_lt_onePointEight · IndisputableMonolith/Foundation/PhiForcing.leanTHEOREM golden_constraint_unique · IndisputableMonolith/Foundation/PhiForcing.lean
/-- 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]The golden ratio φ is the unique positive solution to r² = r + 1. golden_constraint_unique · IndisputableMonolith/Foundation/PhiForcing.leanTHEOREM self_similar_forces_golden_constraint · IndisputableMonolith/Foundation/PhiForcing.lean
/-- 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 hclosedA self-similar ledger must have a scale ratio satisfying r² = r + 1. self_similar_forces_golden_constraint · IndisputableMonolith/Foundation/PhiForcing.leanTHEOREM phi_forced · IndisputableMonolith/Foundation/PhiForcing.lean
/-- **PHI FORCING THEOREM**: In a self-similar discrete ledger, the scale ratio is φ. If: 1. L is a discrete ledger (from DiscretenessForcing + LedgerForcing) 2. L is self-similar with scale ratio r 3. r satisfies the compositional constraint r² = r + 1 Then: r = φ = (1 + √5)/2 -/ theorem phi_forced (L : DiscreteLedger) (r : ℝ) (hr : is_self_similar L r) : r = φ := by rcases hr with ⟨S, rfl⟩ exact golden_constraint_unique S.ratio_pos (self_similar_forces_golden_constraint S)The framework proves that φ is the unique scale ratio for a self-similar ledger. phi_forced · IndisputableMonolith/Foundation/PhiForcing.lean