Merge pull request #69 from ugur-a/patch-1

Fix quoting
This commit is contained in:
Jon Eugster
2024-06-30 01:09:58 +02:00
committed by GitHub

View File

@@ -23,8 +23,8 @@ the hypothesis is `a * d = a * c → d = c` but what we know is `a * succ d = a
so the induction hypothesis does not apply!
Assume `a ≠ 0` is fixed. The actual statement we want to prove by induction on `b` is
\"for all `c`, if `a * b = a * c` then `b = c`. This *can* be proved by induction,
because we now have the flexibility to change `c`.\"
\"for all `c`, if `a * b = a * c` then `b = c`\". This *can* be proved by induction,
because we now have the flexibility to change `c`.
"
Statement mul_left_cancel (a b c : ) (ha : a 0) (h : a * b = a * c) : b = c := by