pith. machine review for the scientific record. sign in
theorem proved term proof high

phi_sq

show as:
view Lean formalization →

The golden ratio satisfies the quadratic relation φ² = φ + 1. Researchers applying the Fibonacci-phi reduction to bound powers in cross-domain Recognition Science calculations would cite this as the base identity. The proof is a one-line wrapper referencing the established lemma in Constants.

claimThe golden ratio satisfies $φ^2 = φ + 1$.

background

The Fibonacci-Phi Identity Universality module collects already-proved relations that reduce any power φ^n to the linear form F(n)·φ + F(n-1), where F is the Fibonacci sequence with F(0)=0 and F(1)=1. This supplies the arithmetic engine behind per-domain bounds such as φ^8 > 46. The upstream Constants.phi_sq_eq lemma derives the base case directly from the quadratic equation x² - x - 1 = 0 by algebraic simplification and linear combination.

proof idea

One-line wrapper that applies the phi_sq_eq lemma from Constants.

why it matters in Recognition Science

This supplies the base case for all higher phi-power identities in the module, which in turn support cross-domain bounds on telomere halving and baryon asymmetry. It instantiates the self-similar fixed-point property of φ from the forcing chain (T5-T6). No open questions remain as the identity is fully proved.

scope and limits

formal statement (Lean)

  29theorem phi_sq : phi ^ 2 = phi + 1 := phi_sq_eq

proof body

Term-mode proof.

  30
  31/-- Already proved: φ³ = 2φ + 1 = F(3)·φ + F(2). -/

depends on (5)

Lean names referenced from this declaration's body.