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
mul_ne_zero is defined as (a b : ℕ) (ha : a ≠ 0) (hb : b ≠ 0) : a * b ≠ 0.
So, in line 13, hne should be ha ∧ hb → a * succ d ≠ 0
But instead, it displays ha → hb → a * succ d ≠ 0
I encounter this problem whenever I use have to introduce a hypothesis with multiple premises.
The text was updated successfully, but these errors were encountered:
mul_ne_zero
is defined as(a b : ℕ) (ha : a ≠ 0) (hb : b ≠ 0) : a * b ≠ 0
.So, in line 13,
hne
should beha ∧ hb → a * succ d ≠ 0
But instead, it displays
ha → hb → a * succ d ≠ 0
I encounter this problem whenever I use
have
to introduce a hypothesis with multiple premises.The text was updated successfully, but these errors were encountered: