fix typo in Multiplication

This commit is contained in:
Kevin Buzzard
2023-10-24 18:22:03 +01:00
parent 4d7a1c99c1
commit 30f2cb136a

View File

@@ -17,8 +17,8 @@ Introduction
when $x=0$ and when $x$ is a successor.
The zero case is easy: we define `37 * 0` to be `0`. Now say we know
`37 * d`. What should `37 * succ d` be? Well, that's $d+1$ $37$s,
it should be `37 * d + 37`.
`37 * d`. What should `37 * succ d` be? Well, that's $(d+1)$ $37$s,
so it should be `37 * d + 37`.
Here are the definitions in Lean.