0 -> $0$ in tutorial

This commit is contained in:
Kevin Buzzard
2023-12-22 14:54:25 +00:00
parent 70104f2018
commit 9e90d25642

View File

@@ -20,7 +20,7 @@ LemmaDoc MyNat.succ_eq_add_one as "succ_eq_add_one" in "+"
Introduction
"
Every number in Lean is either 0 or a successor. We know how to add $0$,
Every number in Lean is either $0$ or a successor. We know how to add $0$,
but we need to figure out how to add successors. Let's say we already know
that `37 + d = q`. What should the answer to `37 + succ d` be? Well,
`succ d` is one bigger than `d`, so `37 + succ d` should be `succ q`,