Encyclopedia Foundation Foundation Phi Forcing Derived Phi Forcing Complete

ARTICLE 3 claims 3 theorems

Foundation Phi Forcing Derived Phi Forcing Complete

The golden ratio emerges not from aesthetics but from a simple rule about how scales combine, a rule that a machine-checked proof shows has only one answer.

The forced golden ratio

The golden ratio, φ, is the number that satisfies r² = r + 1. Its decimal expansion begins 1.6180339887, and it has been known since antiquity as the extreme and mean ratio, the proportion that divides a line so that the whole is to the longer part as the longer part is to the shorter. Euclid defined it around 300 BCE, and it appears throughout classical geometry, for instance in the regular pentagon and in the Fibonacci sequence, where successive terms approach φ as a limit.

The equation r² = r + 1 has two solutions. The positive one is φ = (1 + √5)/2, and the negative one is approximately −0.618. The positive solution is irrational, meaning it cannot be written as a fraction of two integers, and its continued fraction representation is the simplest possible: all ones, [1; 1, 1, 1, ...]. This is why φ is often called the most irrational number, a property that shows up in phyllotaxis, the arrangement of leaves on a stem.

In Recognition Science, the framework models recognition as a discrete record of events, called a ledger. The framework asks what happens when scales of recognition form a geometric sequence {1, r, r², r³, ...} and when the scale of two combined events is their sum, because the ledger tracks total recognition work, which is additive. If the combined scale must also lie in the sequence, then the sum 1 + r must equal the next term r². This closure condition, 1 + r = r², is exactly the golden equation.

The framework's machine-checked library of formal theorems proves that this condition forces r to be φ. The theorem phi_forcing_complete states that for any positive r not equal to 1, if 1 + r = r², then r = φ. The proof is short: the equation rearranges to r² − r − 1 = 0, whose only positive root is φ. The library also proves a supporting result, closure_forces_golden_equation, which derives the same equation from the geometric sequence and closure axioms, and closed_ratio_is_phi, which identifies the ratio of a closed sequence directly with φ.

What this establishes is a uniqueness result: given the three axioms, the golden ratio is not a choice but the only possible scale ratio. What it does not establish is why the ledger must exhibit closure in the first place. The deeper question of why the closure condition holds is addressed elsewhere in the framework, in a module that derives the Fibonacci recurrence from uniform scaling, local binary recurrence, and minimal integer coefficients. The theorem also does not claim that any physical system actually follows this rule; it proves a conditional statement about a mathematical structure.

THEOREM phi_forcing_complete · IndisputableMonolith/Foundation/PhiForcingDerived.lean
/-- **COMPLETE PHI FORCING THEOREM**

The golden ratio φ is the UNIQUE positive ratio for a geometric
scale sequence that is closed under additive ledger composition.

Axioms:
1. Scales form geometric sequence: {1, r, r², ...}
2. Ledger composition is additive: compose(a,b) = a + b
3. Sequence is closed: 1 + r = r²

Theorem: r = φ = (1 + √5)/2

This is DERIVED, not assumed. The constraint r² = r + 1 emerges
from the closure axiom, which itself is motivated by the additive
structure of J-cost. -/
theorem phi_forcing_complete :
    ∀ r : ℝ, r > 0 → r ≠ 1 →
      (1 + r = r^2) →  -- Closure condition
      r = phi := by
  intro r hr _hne h_closure
  -- h_closure is exactly r² = r + 1
  have h_eq : r^2 = r + 1 := by linarith
  have h_phi_eq : phi ^ 2 = phi + 1 := phi_sq_eq
  -- The difference (r - φ) satisfies: (r-φ)(r+φ-1) = 0
  have h_factor : (r - phi) * (r + phi - 1) = 0 := by
    ring_nf
    nlinarith [sq_nonneg r, sq_nonneg phi]
  rcases mul_eq_zero.mp h_factor with h_diff | h_sum
  · linarith
  · have : r = 1 - phi := by linarith
    have : r < 0 := by linarith [one_lt_phi]
    linarith
THEOREM closure_forces_golden_equation · IndisputableMonolith/Foundation/PhiForcingDerived.lean
closure_forces_golden_equation · IndisputableMonolith/Foundation/PhiForcingDerived.lean:109
/-- **THEOREM**: Closure forces the golden ratio equation.

If a geometric scale sequence is closed under additive composition,
then the ratio r must satisfy r² = r + 1. -/
theorem closure_forces_golden_equation (S : GeometricScaleSequence)
    (h_closed : S.isClosed) : S.ratio ^ 2 = S.ratio + 1 := by
  -- Unfold the closure condition
  unfold GeometricScaleSequence.isClosed at h_closed
  unfold ledgerCompose at h_closed
  unfold GeometricScaleSequence.scale at h_closed
  -- h_closed : r^0 + r^1 = r^2
  -- This simplifies to: 1 + r = r^2
  simp only [pow_zero, pow_one] at h_closed
  -- Rearrange to r^2 = r + 1
  linarith
THEOREM closed_ratio_is_phi · IndisputableMonolith/Foundation/PhiForcingDerived.lean
/-- **THEOREM**: The unique positive closed ratio is φ.

Combining with the previous theorem: the only positive ratio that
makes a geometric scale sequence closed is φ = (1 + √5)/2. -/
theorem closed_ratio_is_phi (S : GeometricScaleSequence)
    (h_closed : S.isClosed) : S.ratio = phi := by
  have h_eq := closure_forces_golden_equation S h_closed
  have h_pos := S.ratio_pos
  -- Both S.ratio and φ satisfy x² = x + 1
  -- For x > 0, this equation has unique solution φ
  have h_phi_eq : phi ^ 2 = phi + 1 := phi_sq_eq
  -- The difference (r - φ) satisfies: (r-φ)(r+φ) = r² - φ² = (r+1) - (φ+1) = r - φ
  -- So (r - φ)(r + φ - 1) = 0
  have h_factor : (S.ratio - phi) * (S.ratio + phi - 1) = 0 := by
    have := h_eq  -- r² = r + 1
    have := h_phi_eq  -- φ² = φ + 1
    ring_nf
    nlinarith [sq_nonneg S.ratio, sq_nonneg phi]
  -- Since r > 0 and φ > 1, we have r + φ - 1 > 0, so r - φ = 0
  rcases mul_eq_zero.mp h_factor with h_diff | h_sum
  · linarith
  · -- If r + φ - 1 = 0, then r = 1 - φ < 0, contradiction with r > 0
    have : S.ratio = 1 - phi := by linarith
    have : S.ratio < 0 := by
      have hphi : phi > 1 := one_lt_phi
      linarith
    linarith

What this page does not claim

The theorem does not prove that any physical system actually follows the closure rule. The theorem does not derive the closure condition from more basic principles; that derivation is a separate result. The theorem does not claim φ is the only solution to r² = r + 1; the negative root is not excluded by the equation alone.

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/PhiForcingDerived.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