Overview
The standard way of representing the natural numbers is as follows:
That is, each natural number corresponds to the set of natural numbers smaller than it.
Inductive Sets
For any set , its successor is defined as
A set is inductive if and only if and .
A natural number is a set that belongs to every inductive set.
Peano System
A Peano system is a triple consisting of a set , a function , and a member such that the following three conditions are met:
- ;
- is one-to-one;
- Any subset of that contains and is closed under equals itself.
Given , is a Peano system.
Transitivity
A set is said to be transitive iff every member of a member of is itself a member of . We can equivalently express this using any of the following formulations:
Recursion Theorem
The recursion theorem guarantees recursively defined functions exist. More formally, let be a set, , and . Then there exists a unique function such that, for every , \begin{align*} h(0) & = a \\ h(n^+) & = F(h(n)) \end{align*}
\
Addition
For each , there exists (by the recursion theorem) a unique function such that for all , \begin{align*} A_m(0) & = m, \\ A_m(n^+) & = A_m(n)^+ \end{align*}
Addition () is the binary operation on such that for any ,
Multiplication
For each , there exists (by the recursion theorem) a unique function such that for all , \begin{align*} M_m(0) & = 0, \\ M_m(n^+) & = M_m(n) + m \end{align*}
Multiplication () is the binary operation on such that for any ,
Exponentiation
For each , there exists (by the recursion theorem) a unique function such that for all , \begin{align*} E_m(0) & = 1, \\ E_m(n^+) & = E_m(n) \cdot m \end{align*}
Exponentiation is the binary operation on such that for any ,
Ordering
For natural numbers and , define to be less than if and only if . The following biconditionals hold true:
Well-Ordering Principle
Let be a nonempty subset of . Then there is some such that for all .
Strong Induction Principle
Let be a subset of and assume that for every , Then .
Bibliography
- Herbert B. Enderton, Elements of Set Theory (New York: Academic Press, 1977).
- “Recursion,” in Wikipedia, September 23, 2024, https://en.wikipedia.org/w/index.php?title=Recursion#The_recursion_theorem.