In practice, proofs by induction are often structured differently, depending on the exact nature of the property to be proven. All variants of induction are special cases of
transfinite induction; see
below.
Base case other than 0 or 1 If one wishes to prove a statement, not for all natural numbers, but only for all numbers greater than or equal to a certain number , then the proof by induction consists of the following: • Showing that the statement holds when . • Showing that if the statement holds for an arbitrary number , then the same statement also holds for . This can be used, for example, to show that for . In this way, one can prove that some statement holds for all , or even for all . This form of mathematical induction is actually a special case of the previous form, because if the statement to be proved is then proving it with these two rules is equivalent with proving for all natural numbers with an induction base case .
Example: forming dollar amounts by coins Assume an infinite supply of 4- and 5-dollar coins. Induction can be used to prove that any whole amount of dollars greater than or equal to can be formed by a combination of such coins. Let denote the statement " dollars can be formed by a combination of 4- and 5-dollar coins". The proof that is true for all can then be achieved by induction on as follows:
Base case: Showing that holds for is simple: take three 4-dollar coins.
Induction step: Given that holds for some value of (
induction hypothesis), prove that holds, too. Assume is true for some arbitrary . If there is a solution for dollars that includes at least one 4-dollar coin, replace it by a 5-dollar coin to make dollars. Otherwise, if only 5-dollar coins are used, must be a multiple of 5 and so at least 15; but then we can replace three 5-dollar coins by four 4-dollar coins to make dollars. In each case, is true. Therefore, by the principle of induction, holds for all , and the proof is complete. In this example, although also holds for k \in \{ 4, 5, 8, 9, 10 \}, the above proof cannot be modified to replace the minimum amount of dollar to any lower value . For , the base case is actually false; for , the second case in the induction step (replacing three 5- by four 4-dollar coins) will not work; let alone for even lower .
Induction on more than one counter It is sometimes desirable to prove a statement involving two natural numbers, and , by iterating the induction process. That is, one proves a base case and an induction step for , and in each of those proves a base case and an induction step for . See, for example, the
proof of commutativity accompanying
addition of natural numbers. More complicated arguments involving three or more counters are also possible.
Infinite descent The method of infinite descent is a variation of mathematical induction which was used by
Pierre de Fermat. It is used to show that some statement is false for all natural numbers . Its traditional form consists of showing that if is true for some natural number , it also holds for some strictly smaller natural number . Because there are no infinite decreasing sequences of natural numbers, this situation would be impossible, thereby showing (
by contradiction) that cannot be true for any . The validity of this method can be verified from the usual principle of mathematical induction. Using mathematical induction on the statement defined as " is false for all natural numbers less than or equal to ", it follows that holds for all , which means that is false for every natural number .
Limited mathematical induction If one wishes to prove that a property holds for all natural numbers less than or equal to a fixed , proving that satisfies the following conditions suffices: • holds for 0, • For any natural number less than , if holds for , then holds for
Prefix induction The most common form of proof by mathematical induction requires proving in the induction step that \forall k \, (P(k) \to P(k+1)) whereupon the induction principle "automates" applications of this step in getting from to . This could be called "predecessor induction" because each step proves something about a number from something about that number's predecessor. A variant of interest in
computational complexity is "prefix induction", in which one proves the following statement in the induction step: \forall k\, (P(k) \to P(2k) \land P(2k+1)) or equivalently \forall k\, \left( P\!\left(\left\lfloor \frac{k}{2} \right\rfloor \right) \to P(k) \right) The induction principle then "automates"
log2 n applications of this inference in getting from to . In fact, it is called "prefix induction" because each step proves something about a number from something about the "prefix" of that number — as formed by truncating the low bit of its
binary representation. It can also be viewed as an application of traditional induction on the length of that binary representation. If traditional predecessor induction is interpreted computationally as an -step loop, then prefix induction would correspond to a log--step loop. Because of that, proofs using prefix induction are "more feasibly constructive" than proofs using predecessor induction. Predecessor induction can trivially simulate prefix induction on the same statement. Prefix induction can simulate predecessor induction, but only at the cost of making the statement more syntactically complex (adding a
bounded universal quantifier), so the interesting results relating prefix induction to
polynomial-time computation depend on excluding unbounded quantifiers entirely, and limiting the alternation of bounded universal and
existential quantifiers allowed in the statement. One can take the idea a step further: one must prove \forall k \, \left( P\!\left( \left\lfloor \sqrt{k} \right\rfloor \right) \to P(k) \right) whereupon the induction principle "automates" applications of this inference in getting from to . This form of induction has been used, analogously, to study log-time parallel computation.
Complete (strong) induction Another variant, called
complete induction,
course of values induction or
strong induction (in contrast to which the basic form of induction is sometimes known as
weak induction), makes the induction step easier to prove by using a stronger hypothesis: one proves the statement P(m+1) under the assumption that P(n) holds for
all natural numbers n less than m+1; by contrast, the basic form only assumes P(m). The name "strong induction" does not mean that this method can prove more than "weak induction", but merely refers to the stronger hypothesis used in the induction step. In fact, it can be shown that the two methods are actually equivalent, as explained below. In this form of complete induction, one still has to prove the base case, P(0), and it may even be necessary to prove extra-base cases such as P(1) before the general argument applies, as in the example below of the
Fibonacci number F_{n}. Although the form just described requires one to prove the base case, this is unnecessary if one can prove P(m) (assuming P(n) for all lower n) for all m \geq 0. This is a special case of
transfinite induction as described below, although it is no longer equivalent to ordinary induction. In this form the base case is subsumed by the case m = 0, where P(0) is proved with no other P(n) assumed; this case may need to be handled separately, but sometimes the same argument applies for m = 0 and m > 0, making the proof simpler and more elegant. In this method, however, it is vital to ensure that the proof of P(m) does not implicitly assume that m > 0, e.g. by saying "choose an arbitrary n ", or by assuming that a set of elements has an element.
Equivalence with ordinary induction Complete induction is equivalent to ordinary mathematical induction as described above, in the sense that a proof by one method can be transformed into a proof by the other. Suppose there is a proof of P(n) by complete induction. Then, this proof can be transformed into an ordinary induction proof by assuming a stronger inductive hypothesis. Let Q(n) be the statement "P(m) holds for all m such that 0\leq m \leq n"—this becomes the inductive hypothesis for ordinary induction. We can then show Q(0) and Q(n + 1) for n \in \mathbb N assuming only Q(n) and show that Q(n) implies P(n). If, on the other hand, P(n) had been proven by ordinary induction, the proof would already effectively be one by complete induction: P(0) is proved in the base case, using no assumptions, and P(n+1) is proved in the induction step, in which one may assume all earlier cases but need only use the case P(n).
Example: Fibonacci numbers Complete induction is most useful when several instances of the inductive hypothesis are required for each induction step. For example, complete induction can be used to show that F_n = \frac{\varphi^n - \psi^n}{\varphi - \psi} where F_n is the -th
Fibonacci number, and \varphi = \frac{1}{2}(1 + \sqrt 5) (the
golden ratio) and \psi = \frac{1}{2} (1 - \sqrt 5) are the
roots of the
polynomial x^2-x-1. By using the fact that F_{n+2} = F_{n+1} + F_{n} for each n \in \mathbb{N}, the identity above can be verified by direct calculation for F_{n+2} if one assumes that it already holds for both F_{n+1} and F_n. To complete the proof, the identity must be verified in the two base cases: n = 0 and n = 1.
Example: prime factorization Another proof by complete induction uses the hypothesis that the statement holds for
all smaller n more thoroughly. Consider the statement that "every
natural number greater than 1 is a product of (one or more)
prime numbers", which is the "
existence" part of the
fundamental theorem of arithmetic. For proving the induction step, the induction hypothesis is that for a given m>1 the statement holds for all smaller n>1. If m is prime then it is certainly a product of primes, and if not, then by definition it is a product: m = n_1 n_2, where neither of the factors is equal to 1; hence neither is equal to m, and so both are greater than 1 and smaller than m. The induction hypothesis now applies to n_1 and n_2, so each one is a product of primes. Thus m is a product of products of primes, and hence by extension a product of primes itself.
Example: dollar amounts revisited We shall look to prove the same example as
above, this time with
strong induction. The statement remains the same: S(n): \,\,n \geq 12 \implies \,\exists\, a,b\in\mathbb{N}. \,\, n = 4a+5b However, there will be slight differences in the structure and the assumptions of the proof, starting with the extended base case.
Proof. Base case: Show that S(k) holds for k = 12,13,14,15. \begin{align} 4 \cdot 3+5 \cdot 0=12\\ 4 \cdot 2+5 \cdot 1=13\\ 4 \cdot 1+5 \cdot 2=14\\ 4 \cdot 0+5 \cdot 3=15 \end{align} The base case holds.
Induction step: Given some j>15, assume S(m) holds for all m with 12 \leq m. Prove that S(j) holds. Choosing m=j-4, and observing that 15 shows that S(j-4) holds, by the inductive hypothesis. That is, the sum j-4 can be formed by some combination of 4 and 5 dollar coins. Then, simply adding a 4 dollar coin to that combination yields the sum j. That is, S(j) holds. Q.E.D.
Forward-backward induction Sometimes, it is more convenient to deduce backwards, proving the statement for n-1, given its validity for n. However, proving the validity of the statement for no single number suffices to establish the base case; instead, one needs to prove the statement for an infinite subset of the natural numbers. For example,
Augustin Louis Cauchy first used forward (regular) induction to prove the
inequality of arithmetic and geometric means for all
powers of 2, and then used backwards induction to show it for all natural numbers. == Example of error in the induction step ==