theorem
proved
term proof
phi_inverse_formula
show as:
view Lean formalization →
formal statement (Lean)
169theorem phi_inverse_formula : 1 / phi = phi - 1 := by
proof body
Term-mode proof.
170 have h1 : phi > 0 := phi_pos
171 have h2 : phi^2 = phi + 1 := phi_sq_eq
172 field_simp
173 nlinarith
174
175/-- **CALCULATED**: φ + 1/φ = √5. -/