ImperialCollegeLondon / natural_number_game

Building the natural numbers in Lean 3. The original natural number game, now frozen. See README for Lean 4 information.
Apache License 2.0
292 stars 73 forks source link

pow_succ typo #44

Closed kbuzzard closed 4 years ago

kbuzzard commented 4 years ago

Daniela 7 hours Small fix: the theorem list in Power World displays pow_succ (a b : mynat) : a ^ succ(b) = a ^ b b. I think that should be pow_succ (a b : mynat) : a ^ succ(b) = a ^ b a. It does behave correcly when used.

kbuzzard commented 4 years ago

Fixed. Thanks.