Encyclopedia Algebra Algebra Phi Ring Phi Equation

ARTICLE 3 claims 3 theorems

Algebra Phi Ring Phi Equation

The golden ratio's defining equation, phi squared equals phi plus one, is a proved theorem in a machine-checked library, not a definition.

The defining equation

The golden ratio φ is the positive number that satisfies φ² = φ + 1. Its value is (1 + √5)/2, approximately 1.618. This equation is the classical definition of the ratio, the one Euclid described as cutting a line in extreme and mean ratio, and it is the equation that generates the Fibonacci recurrence, since each power of φ is the sum of the two previous powers. The equation is also the source of the ratio's famous continued fraction, a string of ones that never ends.

The equation is so familiar that it is easy to assume it is merely a definition. In the Recognition Science framework, however, the equation is not taken as a starting point. The framework's machine-checked library of formal theorems contains a declaration named phi_equation, which states that φ² = φ + 1 as a proved theorem. The proof is a direct calculation from the definition of φ as (1 + √5)/2, using the fact that the square of the square root of five is five. The same library also proves the companion fact that the conjugate root ψ = (1 − √5)/2 satisfies the same equation, ψ² = ψ + 1, and that the two roots multiply to −1 and add to 1.

In Recognition Science, the golden ratio is not just a classical curiosity. The framework derives the ratio from its cost algebra, where self-similarity in a discrete ledger of recognition events forces the equation x² = x + 1, whose unique positive root is φ. The ring of numbers of the form a + bφ, with a and b integers, is then the natural coefficient ring for the framework's quantities. This ring, written ℤ[φ], is a Euclidean domain, meaning it has a division algorithm, and its units are exactly the powers of φ, ±φⁿ for integer n. These are proved facts in the library, not assumptions.

The declaration phi_equation does not claim that the golden ratio is the only number satisfying the equation, since the negative root ψ also satisfies it. It does not claim that the equation itself forces the framework's physical content; that forcing is a separate chain of results. And it does not claim that the ring ℤ[φ] is the only structure in which the equation holds, only that this particular ring is the one the framework uses.

THEOREM phi_equation · IndisputableMonolith/Algebra/PhiRing.lean
/-- **THEOREM: φ² = φ + 1** (the defining equation). -/
theorem phi_equation : φ ^ 2 = φ + 1 := by
  unfold φ
  have h5 : Real.sqrt 5 ^ 2 = 5 := Real.sq_sqrt (by norm_num : (5:ℝ) ≥ 0)
  ring_nf
  nlinarith [h5]
THEOREM psi_equation · IndisputableMonolith/Algebra/PhiRing.lean
/-- **THEOREM: ψ² = ψ + 1** (conjugate satisfies the same equation). -/
theorem psi_equation : ψ ^ 2 = ψ + 1 := by
  unfold ψ
  have h5 : Real.sqrt 5 ^ 2 = 5 := Real.sq_sqrt (by norm_num : (5:ℝ) ≥ 0)
  ring_nf
  nlinarith [h5]
THEOREM PhiInt · IndisputableMonolith/Algebra/PhiRing.lean
/-- An element of ℤ[φ] is a pair (a, b) representing a + bφ. -/
@[ext]
structure PhiInt where
  /-- The "rational" part -/
  a : ℤ
  /-- The "φ" part -/
  b : ℤ

What this page does not claim

The declaration does not claim φ is the only root of the equation. The declaration does not claim the equation itself forces the framework's physical content. The declaration does not claim ℤ[φ] is the only ring where the equation holds.

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/Algebra/PhiRing.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