lemma
proved
tactic proof
PhiPow_add
show as:
view Lean formalization →
formal statement (Lean)
49lemma PhiPow_add (x y : ℝ) : PhiPow (x + y) = PhiPow x * PhiPow y := by
proof body
Tactic-mode proof.
50 unfold PhiPow
51 have hx : Real.log (Constants.phi) * (x + y)
52 = Real.log (Constants.phi) * x + Real.log (Constants.phi) * y := by
53 ring
54 simp [hx, Real.exp_add]
55