Encyclopedia Mathematics Mathematics Number Theory From Rs

ARTICLE 3 claims 3 theorems

Mathematics Number Theory From Rs

Number theory from RS is a short catalogue of five identities linking the golden ratio to the Fibonacci numbers, all machine-checked.

The golden identities

Number theory, classically, is the study of the integers and the patterns they make. The golden ratio φ is not an integer; it is the positive solution to r² = r + 1, roughly 1.618. Yet the two are bound together by the Fibonacci numbers, where each term is the sum of the two before it: 1, 1, 2, 3, 5, 8, 13, 21, 34. The ratio of successive Fibonacci numbers approaches φ, and powers of φ collapse into simple Fibonacci expressions. The square of φ is φ + 1, its fifth power is 5φ + 3, and its eighth power is 21φ + 13. These are not approximations; they are exact algebraic identities, true by the defining equation of φ itself.

The fifth identity is different in kind. It says φ⁸ is greater than 46, which is close to the number 45. That 45 appears in a separate identity: 3² × (3 + 2) = 45. The number 3 appears here because Recognition Science's framework derives three spatial dimensions from its forcing chain, and this identity records a consequence of that derivation. The inequality φ⁸ > 46 is proved by computation, not by a symbolic simplification.

In Recognition Science, these identities are collected in a single module. The framework's ledger, a discrete record of recognition events, forces the golden ratio as its unique self-similar scaling, and from that scaling the Fibonacci structure emerges. The module proves the five identities as formal theorems, and it packs them into a single certificate object that any later proof can cite. The certificate carries the defining identity, the two Fibonacci power identities, the dimensional gap identity, and the count of five.

The module is small, but it is a load-bearing shelf. It makes the Fibonacci connection to the golden ratio explicit and machine-checked, so that later work in the framework can rely on it without re-deriving it. The identities themselves are classical and known; what the module adds is a compact, verified statement of them inside the framework's own library, ready for use.

THEOREM phi_sq_identity · phi5_fibonacci · phi8_fibonacci · IndisputableMonolith/Mathematics/NumberTheoryFromRS.lean
/-- φ^2 = φ+1 (the defining property). -/
theorem phi_sq_identity : phi ^ 2 = phi + 1 := phi_sq_eq
/-- φ^5 = 5φ+3 (Fibonacci). -/
theorem phi5_fibonacci : phi ^ 5 = 5 * phi + 3 := by
  have h2 := phi_sq_eq
  have h3 : phi ^ 3 = 2 * phi + 1 := by nlinarith
  have h4 : phi ^ 4 = 3 * phi + 2 := by nlinarith
  nlinarith
/-- φ^8 = 21φ+13 (Fibonacci). -/
theorem phi8_fibonacci : phi ^ 8 = 21 * phi + 13 := by
  have h2 := phi_sq_eq
  have h3 : phi ^ 3 = 2 * phi + 1 := by nlinarith
  have h4 : phi ^ 4 = 3 * phi + 2 := by nlinarith
  nlinarith [sq_nonneg (phi ^ 4)]
THEOREM gap45_from_D · IndisputableMonolith/Mathematics/NumberTheoryFromRS.lean
/-- gap45 = D²(D+2) at D=3. -/
theorem gap45_from_D : 3 ^ 2 * (3 + 2) = 45 := by decide
THEOREM phi8_fibonacci · IndisputableMonolith/Mathematics/NumberTheoryFromRS.lean
/-- φ^8 = 21φ+13 (Fibonacci). -/
theorem phi8_fibonacci : phi ^ 8 = 21 * phi + 13 := by
  have h2 := phi_sq_eq
  have h3 : phi ^ 3 = 2 * phi + 1 := by nlinarith
  have h4 : phi ^ 4 = 3 * phi + 2 := by nlinarith
  nlinarith [sq_nonneg (phi ^ 4)]

What this page does not claim

The module does not prove that the golden ratio itself is irrational; that is classical and outside this file. The module does not derive the number 3 from number theory; it records a consequence of a separate dimensional forcing result. The inequality φ⁸ > 46 is a numerical bound, not an equality linking φ to 46 exactly.

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/Mathematics/NumberTheoryFromRS.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