Module docstring
{"# Basic operations on the natural numbers
This file contains:
* some basic lemmas about natural numbers
* extra recursors:
* leRecOn, le_induction: recursion and induction principles starting at non-zero numbers
* decreasing_induction: recursion growing downwards
* le_rec_on', decreasing_induction': versions with slightly weaker assumptions
* strong_rec': recursion based on strong inequalities
* decidability instances on predicates about the natural numbers
This file should not depend on anything defined in Mathlib (except for notation), so that it can be upstreamed to Batteries or the Lean standard library easily.
See note [foundational algebra order theory].
","### succ, pred ","### pred ","### add ","### sub ","### mul ","### div ","### pow
","### Recursion and induction principles
This section is here due to dependencies -- the lemmas here require some of the lemmas
proved above, and some of the results in later sections depend on the definitions in this section.
","### mod, dvd ","### Decidability of predicates "}