You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
theorem pow_dvd_pow_of_dvd {a b : α} (h : a ∣ b) : ∀ n : ℕ, a ^ n ∣ b ^ n
| 0 => by rw [pow_zero, pow_zero]
| n + 1 => by
rw [pow_succ, pow_succ]
exact mul_dvd_mul h (pow_dvd_pow_of_dvd h n)
Looks like it's because of our standard issue that only by + tactics get parsed
Looks like it's because of our standard issue that only
by+ tactics get parsed