I'd like to clarify the definition of mathematical induction, with the context of functions:
To define a function f on all nonnegative integers $x$ it suffices to define:
- $f(0)$, the function on $0$, and
- $f(n + 1)$ in terms of $f(n)$, for all nonnegative integers $n$.
So for example, with a function $f(n) = n + 2$, is it accurate to say:
- $f(0) = 0 + 2 = 2$
- $f(n) = n + 2$
- $f(n+1) = f(n) + 1 = (n + 2) + 1$, since the function is a linear function and can be expressed in terms of $f(n)$.
- Therefore, all numbers in $n$ have the property, $f(n)$.