pith. sign in
lemma

phi_sq_eq

proved
show as:
module
IndisputableMonolith.Constants
domain
Constants
line
70 · github
papers citing
6 papers (below)

plain-language theorem explainer

The golden ratio satisfies φ² = φ + 1. Recognition Science derivations of self-similar scaling, J-cost, and phi-ladder ratios cite this identity repeatedly. The tactic proof unfolds the explicit definition of phi, invokes the square identity for √5, and finishes via ring normalization plus linear combination.

Claim. Let φ = (1 + √5)/2. Then φ² = φ + 1.

background

The Constants module fixes RS-native units with the fundamental time quantum τ₀ equal to one tick. Phi is the positive root of x² - x - 1 = 0, equivalently (1 + √5)/2. The upstream theorem in PhiLadderLattice states: “The defining identity of the golden ratio: φ² = φ + 1.”

proof idea

Tactic proof: simp only [phi] reduces to the explicit form; norm_num and Real.sq_sqrt establish (√5)² = 5; ring_nf followed by linear_combination (1/4) * hsq completes the algebraic identity.

why it matters

This identity is invoked by forty downstream results, including beautyScore_at_phi (beauty score equals 3/2 − φ), adjacencyGap_eq, phi_golden_recursion, phi_cubed_eq, and alfvenToSolarWindRatio_gt_one. It encodes the self-similar fixed point T6 of the forcing chain and supplies the recurrence underlying phi-ladder mass formulas and RCL applications.

Switch to Lean above to see the machine-checked source, dependencies, and usage graph.