theorem
proved
term proof
phiScale_add
show as:
view Lean formalization →
formal statement (Lean)
72theorem phiScale_add (m n : ℤ) (x : ℝ) :
73 phiScale m (phiScale n x) = phiScale (m + n) x := by
proof body
Term-mode proof.
74 simp only [phiScale, mul_assoc]
75 congr 1
76 rw [zpow_add₀ (ne_of_gt phi_pos), mul_comm]
77