Encyclopedia Constants Constants Phi Irrational
ARTICLE 3 claims 2 theorems 1 model
Constants Phi Irrational
The golden ratio is irrational: no fraction of whole numbers equals it, a fact the framework's machine-checked library records as a proved theorem.
The golden ratio's formal status
The golden ratio, usually written φ, is the number (1 + √5)/2, approximately 1.618. Its defining property is that it solves the equation r² = r + 1, meaning the square of the number is exactly one more than the number itself. A classical fact about φ is that it is irrational: it cannot be written as a fraction p/q of two whole numbers. This was known to the ancient Greeks, who studied the ratio through geometry, and it follows from the same reasoning that shows √5 is irrational. The number appears throughout mathematics, from the regular pentagon and its diagonals to the Fibonacci sequence, where successive ratios of terms approach φ.
In Recognition Science, the framework's machine-checked library of formal theorems records this classical fact as a proved statement. The declaration phi_irrational establishes that φ is irrational, meaning no rational number equals it. This is not a new discovery about the number itself; it is a formal verification of a known property. The framework's library also proves related facts about φ, such as that it is greater than 1 and that it satisfies the equation φ² = φ + 1. These are all statements about the same classical constant, verified in the framework's formal system.
The declaration does not claim that φ is special because it is irrational; many numbers share that property. It does not claim that the framework derived φ from first principles or that irrationality is unique to the golden ratio. The declaration simply records, in the framework's formal language, a standard mathematical fact. What the declaration changes is that this classical property now sits inside the framework's proved corpus, available for further formal work that builds on it.
In Recognition Science, the framework models the cost of recognition events, and φ emerges as the unique self-similar scaling in that account. The framework's library shows that the golden ratio appears in its forcing chain, but the irrationality proof is independent of that role. The declaration phi_irrational is a bridge: it takes a classical mathematical truth and places it within the framework's formal library, where it can support later theorems without re-deriving the number's basic properties.
THEOREM phi_ne_zero · IndisputableMonolith/Constants.lean
lemma phi_ne_zero : phi ≠ 0 := ne_of_gt phi_pos
MODEL phi · IndisputableMonolith/Constants.lean
/-- Golden ratio φ as a concrete real. -/
noncomputable def phi : ℝ := (1 + Real.sqrt 5) / 2
THEOREM phi_gt_one · phi_ne_one · IndisputableMonolith/Constants.lean
/-- Alias: phi_gt_one ≡ one_lt_phi, for parallel-work compat. -/
lemma phi_gt_one : 1 < phi := one_lt_phi
lemma phi_ne_one : phi ≠ 1 := ne_of_gt one_lt_phi
What this page does not claim
The declaration does not claim that irrationality is unique to φ or that φ is special for being irrational. The declaration does not claim that the framework derived φ from its own axioms; it records a classical fact. The declaration does not claim that the golden ratio's irrationality is a new discovery.
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/Constants.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:
- How does the framework's forcing chain derive φ as the unique self-similar scaling?
- What role does the golden ratio play in the framework's account of recognition cost?
- How does the framework's formal library connect classical mathematical facts to its own derived structure?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM phi_ne_zero · IndisputableMonolith/Constants.lean
lemma phi_ne_zero : phi ≠ 0 := ne_of_gt phi_posThe declaration phi_irrational establishes that φ is irrational, meaning no rational number equals it. phi_ne_zero · IndisputableMonolith/Constants.leanMODEL phi · IndisputableMonolith/Constants.lean
/-- Golden ratio φ as a concrete real. -/ noncomputable def phi : ℝ := (1 + Real.sqrt 5) / 2The golden ratio, usually written φ, is the number (1 + √5)/2, approximately 1.618. phi · IndisputableMonolith/Constants.leanTHEOREM phi_gt_one · phi_ne_one · IndisputableMonolith/Constants.lean
/-- Alias: phi_gt_one ≡ one_lt_phi, for parallel-work compat. -/ lemma phi_gt_one : 1 < phi := one_lt_philemma phi_ne_one : phi ≠ 1 := ne_of_gt one_lt_phiThe framework's library also proves related facts about φ, such as that it is greater than 1 and that it satisfies the equation φ² = φ + 1. phi_gt_one · phi_ne_one · IndisputableMonolith/Constants.lean