theorem
proved
wrapper
phi_power_ratio
show as:
view Lean formalization →
formal statement (Lean)
275theorem phi_power_ratio (a b : ℤ) :
276 PhiForcing.φ ^ a / PhiForcing.φ ^ b = PhiForcing.φ ^ (a - b) := by
proof body
One-line wrapper that applies rw.
277 rw [div_eq_mul_inv, ← zpow_neg, ← zpow_add₀ PhiForcing.phi_pos.ne', sub_eq_add_neg]
278