Preply — Study more efficiently by working with a personal tutor. Get 50% off.Affiliate

Wikipedia

Mathematical induction

Mathematical induction

Mathematical induction is a method for proving that a statement P ( n ) {\displaystyle P(n)} is true for every natural number n {\displaystyle n} , that is, that the infinitely many cases P ( 0 ) , P ( 1 ) , P ( 2 ) , P ( 3 ) , … {\displaystyle P(0),P(1),P(2),P(3),\dots }   all hold. This is done by first proving a simple case, then also showing that if we assume the claim is true for a given case, then the next case is also true. Informal metaphors help to explain this technique, such as falling dominoes or climbing a ladder:

Mathematical induction proves that we can climb as high as we like on a ladder, by proving that we can climb onto the bottom rung (the basis) and that from each rung we can climb up to the next one (the step). A proof by induction consists of two cases. The first, the base case, proves the statement for n = 0 {\displaystyle n=0} without assuming any knowledge of other cases. The second case, the induction step, proves that if the statement holds for any given case n = k {\displaystyle n=k} , then it must also hold for the next case n = k + 1 {\displaystyle n=k+1} . These two steps establish that the statement holds for every natural number n {\displaystyle n} . The base case does not necessarily begin with n = 0 {\displaystyle n=0} , but often with n = 1 {\displaystyle n=1} , and possibly with any fixed natural number n = N {\displaystyle n=N} , establishing the truth of the statement for all natural numbers n ≥ N {\displaystyle n\geq N} . The method can be extended to prove statements about more general well-founded structures, such as trees; this generalization, known as structural induction, is used in mathematical logic and computer science. Mathematical induction in this extended sense is closely related to recursion. Mathematical induction is an inference rule used in formal proofs, and is the foundation of most correctness proofs for computer programs. Despite its name, mathematical induction differs fundamentally from inductive reasoning as used in philosophy, in which the examination of many cases results in a probable conclusion. The mathematical method examines infinitely many cases to prove a general statement, but it does so by a finite chain of deductive reasoning involving the variable n {\displaystyle n} , which can take infinitely many values. The result is a rigorous proof of the statement, not an assertion of its probability.

History According to David E. Joyce, there is no evidence for the use of the principle of mathematical induction in Euclid’s writings. Fabio Acerbi in 2000 argues that Plato’s Parmenides (c. 370 BC) contains traces of an early implicit inductive proof. This interpretation has been challenged by Negrepontis and Farmaki in 2021, who further state that neither Plato nor any of the other Pythagoreans used the principle of mathematical induction. The earliest implicit proof by mathematical induction was written by al-Karaji around 1000 AD, who applied it to arithmetic sequences to prove the binomial theorem and properties of Pascal's triangle. Whilst the original work was lost, it was later referenced by Al-Samawal al-Maghribi in his treatise al-Bahir fi'l-jabr (The Brilliant in Algebra) in around 1150 AD.

Katz says in his history of mathematics Another important idea introduced by al-Karaji and continued by al-Samaw'al and others was that of an inductive argument for dealing with certain arithmetic sequences. Thus al-Karaji used such an argument to prove the result on the sums of integral cubes already known to Aryabhata [...] Al-Karaji did not, however, state a general result for arbitrary n. He stated his theorem for the particular integer 10 [...] His proof, nevertheless, was clearly designed to be extendable to any other integer. [...] Al-Karaji's argument includes in essence the two basic components of a modern argument by induction, namely the truth of the statement for n = 1 (1 = 13) and the deriving of the truth for n = k from that of n = k − 1. Of course, this second component is not explicit since, in some sense, al-Karaji's argument is in reverse; this is, he starts from n = 10 and goes down to 1 rather than proceeding upward. Nevertheless, his argument in al-Fakhri is the earliest extant proof of the sum formula for integral cubes. In India, early implicit proofs by mathematical induction appear in Bhaskara's "cyclic method". Another similar case (contrary to what Vacca has written, as Freudenthal carefully showed) was that of Francesco Maurolico in his Arithmeticorum libri duo (1575), who used the technique to prove that the sum of the first n odd integers is n2. The earliest rigorous use of induction was by Gersonides (1288–1344). The first explicit formulation of the principle of induction was given by Pascal in his Traité du triangle arithmétique (1665). Another Frenchman, Fermat, made ample use of a related principle: indirect proof by infinite descent. The induction hypothesis was also employed by the Swiss Jakob Bernoulli, and from then on it became well known. The modern formal treatment of the principle came only in the 19th century, with George Boole, Augustus De Morgan, Charles Sanders Peirce, Giuseppe Peano, and Richard Dedekind.

Description The simplest and most common form of mathematical induction infers that a statement involving a natural number n (that is, an integer n ≥ 0 or 1) holds for all values of n. The proof consists of two steps:

The base case (or initial case): prove that the statement holds for 0, or 1. The induction step (or inductive step, or step case): prove that for every n, if the statement holds for n, then it holds for n + 1. In other words, assume that the statement holds for some arbitrary natural number n, and prove that the statement holds for n + 1. The hypothesis in the induction step, that the statement holds for a particular n, is called the induction hypothesis or inductive hypothesis. To prove the induction step, one assumes the induction hypothesis for n and then uses this assumption to prove that the statement holds for n + 1. Authors who prefer to define natural numbers to begin at 0 use that value in the base case; those who define natural numbers to begin at 1 use that value.

Examples

Sum of consecutive natural numbers Mathematical induction can be used to prove the following statement for all natural numbers n ≥ 0 {\displaystyle n\geq 0} :

P ( n ) : 0 + 1 + 2 + ⋯ + n = n ( n + 1 ) 2 . {\displaystyle P(n)\!:\ \ 0+1+2+\cdots +n={\frac {n(n+1)}{2}}.}

This states a general formula for the sum of the natural numbers less than or equal to a given number; in fact an infinite sequence of statements: 0 = ( 0 ) ( 0 + 1 ) 2 {\displaystyle 0={\tfrac {(0)(0+1)}{2}}} , 0 + 1 = ( 1 ) ( 1 + 1 ) 2 {\displaystyle 0+1={\tfrac {(1)(1+1)}{2}}} , 0 + 1 + 2 = ( 2 ) ( 2 + 1 ) 2 {\displaystyle 0+1+2={\tfrac {(2)(2+1)}{2}}} , etc. Proposition. For every n ∈ N {\displaystyle n\in \mathbb {N} } , we have that 0 + 1 + 2 + ⋯ + n = n ( n + 1 ) 2 . {\displaystyle 0+1+2+\cdots +n={\tfrac {n(n+1)}{2}}.}

Proof. Let P ( n ) {\displaystyle P(n)} be the statement 0 + 1 + 2 + ⋯ + n = n ( n + 1 ) 2 . {\displaystyle 0+1+2+\cdots +n={\tfrac {n(n+1)}{2}}.} We give a proof by induction on n {\displaystyle n} . Base case: Show that the statement holds for the smallest natural number n = 0.

P ( 0 ) {\displaystyle P(0)} is clearly true: 0 = 0 ( 0 + 1 ) 2 . {\displaystyle 0={\tfrac {0(0+1)}{2}}\,.}

Induction step: Show that for every k ≥ 0 {\displaystyle k\geq 0} , if P ( k ) {\displaystyle P(k)} holds, then P ( k + 1 ) {\displaystyle P(k+1)} also holds. Assume the induction hypothesis that for a particular k {\displaystyle k} , the single case n = k {\displaystyle n=k} holds, meaning P ( k ) {\displaystyle P(k)} is true:

0 + 1 + ⋯ + k = k ( k + 1 ) 2 . {\displaystyle 0+1+\cdots +k={\frac {k(k+1)}{2}}.}

It follows that:

( 0 + 1 + 2 + ⋯ + k ) + ( k + 1 ) = k ( k + 1 ) 2 + ( k + 1 ) . {\displaystyle (0+1+2+\cdots +k)+(k+1)={\frac {k(k+1)}{2}}+(k+1).}

Algebraically, the right hand side simplifies as:

k ( k + 1 ) 2 + ( k + 1 ) = k ( k + 1 ) + 2 ( k + 1 ) 2 = ( k + 1 ) ( k + 2 ) 2 = ( k + 1 ) ( ( k + 1 ) + 1 ) 2 . {\displaystyle {\begin{aligned}{\frac {k(k+1)}{2}}+(k+1)&={\frac {k(k+1)+2(k+1)}{2}}\\&={\frac {(k+1)(k+2)}{2}}\\&={\frac {(k+1)((k+1)+1)}{2}}.\end{aligned}}}

Equating the extreme left hand and right hand sides, we deduce that: 0 + 1 + 2 + ⋯ + k + ( k + 1 ) = ( k + 1 ) ( ( k + 1 ) + 1 ) 2 . {\displaystyle 0+1+2+\cdots +k+(k+1)={\frac {(k+1)((k+1)+1)}{2}}.} That is, the statement P ( k + 1 ) {\displaystyle P(k+1)} also holds true, establishing the induction step. Conclusion: Since both the base case and the induction step have been proved as true, by mathematical induction the statement P ( n ) {\displaystyle P(n)} holds for every natural number n ≥ 0 {\displaystyle n\geq 0} . Q.E.D.

A trigonometric inequality Induction is often used to prove inequalities. As an example, we prove that | sin ⁡ n x | ≤ n | sin ⁡ x | {\displaystyle \left|\sin nx\right|\leq n\left|\sin x\right|} for any real number x {\displaystyle x} and natural number n {\displaystyle n} . At first glance, it may appear that a more general version, | sin ⁡ n x | ≤ n | sin ⁡ x | {\displaystyle \left|\sin nx\right|\leq n\left|\sin x\right|} for any real numbers n , x {\displaystyle n,x} , could be proven without induction; but the case n = 1 2 , x = π {\textstyle n={\frac {1}{2}},\,x=\pi } shows it may be false for non-integer values of n {\displaystyle n} . This suggests we examine the statement specifically for natural values of n {\displaystyle n} , and induction is the readiest tool. Proposition. For any x ∈ R {\displaystyle x\in \mathbb {R} } and n ∈ N {\displaystyle n\in \mathbb {N} } , | sin ⁡ n x | ≤ n | sin ⁡ x | {\displaystyle \left|\sin nx\right|\leq n\left|\sin x\right|} . Proof. Fix an arbitrary real number x {\displaystyle x} , and let P ( n ) {\displaystyle P(n)} be the statement | sin ⁡ n x | ≤ n | sin ⁡ x | {\displaystyle \left|\sin nx\right|\leq n\left|\sin x\right|} . We induct on n {\displaystyle n} . Base case: The calculation | sin ⁡ 0 x | = 0 ≤ 0 = 0 | sin ⁡ x | {\displaystyle \left|\sin 0x\right|=0\leq 0=0\left|\sin x\right|} verifies P ( 0 ) {\displaystyle P(0)} . Induction step: We show the implication P ( k ) ⟹ P ( k + 1 ) {\displaystyle P(k)\implies P(k+1)} for any natural number k {\displaystyle k} . Assume the induction hypothesis: for a given value n = k ≥ 0 {\displaystyle n=k\geq 0} , the single case P ( k ) {\displaystyle P(k)} is true. Using the angle addition formula and the triangle inequality, we deduce:

| sin ⁡ ( k + 1 ) x | = | sin ⁡ k x cos ⁡ x + sin ⁡ x cos ⁡ k x | (angle addition) ≤ | sin ⁡ k x cos ⁡ x | + | sin ⁡ x cos ⁡ k x | (triangle inequality) = | sin ⁡ k x | | cos ⁡ x | + | sin ⁡ x | | cos ⁡ k x | ≤ | sin ⁡ k x | + | sin ⁡ x | ( | cos ⁡ t | ≤ 1 ) ≤ k | sin ⁡ x | + | sin ⁡ x | (induction hypothesis ) = ( k + 1 ) | sin ⁡ x | . {\displaystyle {\begin{aligned}\left|\sin(k+1)x\right|&=\left|\sin kx\cos x+\sin x\cos kx\right|&&{\text{(angle addition)}}\\&\leq \left|\sin kx\cos x\right|+\left|\sin x\,\cos kx\right|&&{\text{(triangle inequality)}}\\&=\left|\sin kx\right|\left|\cos x\right|+\left|\sin x\right|\left|\cos kx\right|\\&\leq \left|\sin kx\right|+\left|\sin x\right|&&(\left|\cos t\right|\leq 1)\\&\leq k\left|\sin x\right|+\left|\sin x\right|&&{\text{(induction hypothesis}})\\&=(k+1)\left|\sin x\right|.\end{aligned}}}

The inequality between the extreme left-hand and right-hand quantities shows that P ( k + 1 ) {\displaystyle P(k+1)} is true, which completes the induction step. Conclusion: The proposition P ( n ) {\displaystyle P(n)} holds for all natural numbers n . {\displaystyle n.} Q.E.D.

Variants

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 n greater than or equal to a certain number b, then the proof by induction consists of the following:

Showing that the statement holds when n = b. Showing that if the statement holds for an arbitrary number n ≥ b, then the same statement also holds for n + 1. This can be used, for example, to show that 2n ≥ n + 5 for n ≥ 3. In this way, one can prove that some statement P(n) holds for all n ≥ 1, or even for all n ≥ −5. This form of mathematical induction is actually a special case of the previous form, because if the statement to be proved is P(n) then proving it with these two rules is equivalent with proving P(n + b) for all natural numbers n with an induction base case 0.

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 12 can be formed by a combination of such coins. Let S(k) denote the statement "k dollars can be formed by a combination of 4- and 5-dollar coins". The proof that S(k) is true for all k ≥ 12 can then be achieved by induction on k as follows: Base case: Showing that S(k) holds for k = 12 is simple: take three 4-dollar coins. Induction step: Given that S(k) holds for some value of k ≥ 12 (induction hypothesis), prove that S(k + 1) holds, too. Assume S(k) is true for some arbitrary k ≥ 12. If there is a solution for k dollars that includes at least one 4-dollar coin, replace it by a 5-dollar coin to make k + 1 dollars. Otherwise, if only 5-dollar coins are used, k 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 k + 1 dollars. In each case, S(k + 1) is true. Therefore, by the principle of induction, S(k) holds for all k ≥ 12, and the proof is complete. In this example, although S(k) also holds for k ∈ { 4 , 5 , 8 , 9 , 10 } {\textstyle k\in \{4,5,8,9,10\}} , the above proof cannot be modified to replace the minimum amount of 12 dollar to any lower value m. For m = 11, the base case is actually false; for m = 10, the second case in the induction step (replacing three 5- by four 4-dollar coins) will not work; let alone for even lower m.

Induction on more than one counter It is sometimes desirable to prove a statement involving two natural numbers, n and m, by iterating the induction process. That is, one proves a base case and an induction step for n, and in each of those proves a base case and an induction step for m. 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 Q(n) is false for all natural numbers n. Its traditional form consists of showing that if Q(n) is true for some natural number n, it also holds for some strictly smaller natural number m. Because there are no infinite decreasing sequences of natural numbers, this situation would be impossible, thereby showing (by contradiction) that Q(n) cannot be true for any n. The validity of this method can be verified from the usual principle of mathematical induction. Using mathematical induction on the statement P(n) defined as "Q(m) is false for all natural numbers m less than or equal to n", it follows that P(n) holds for all n, which means that Q(n) is false for every natural number n.

Limited mathematical induction If one wishes to prove that a property P holds for all natural numbers less than or equal to a fixed N, proving that P satisfies the following conditions suffices:

P holds for 0, For any natural number x less than N, if P holds for x, then P holds for x + 1

Prefix induction The most common form of proof by mathematical induction requires proving in the induction step that

∀ k ( P ( k ) → P ( k + 1 ) ) {\displaystyle \forall k\,(P(k)\to P(k+1))}

whereupon the induction principle "automates" n applications of this step in getting from P(0) to P(n). 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:

∀ k ( P ( k ) → P ( 2 k ) ∧ P ( 2 k + 1 ) ) {\displaystyle \forall k\,(P(k)\to P(2k)\land P(2k+1))}

or equivalently

∀ k ( P ( ⌊ k 2 ⌋ ) → P ( k ) ) {\displaystyle \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 P(0) to P(n). 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 n-step loop, then prefix induction would correspond to a log-n-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

∀ k ( P ( ⌊ k ⌋ ) → P ( k ) ) {\displaystyle \forall k\,\left(P\!\left(\left\lfloor {\sqrt {k}}\right\rfloor \right)\to P(k)\right)}

whereupon the induction principle "automates" log log n applications of this inference in getting from P(0) to P(n). 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 ) {\displaystyle P(m+1)} under the assumption that P ( n ) {\displaystyle P(n)} holds for all natural numbers n {\displaystyle n} less than m + 1 {\displaystyle m+1} ; by contrast, the basic form only assumes P ( m ) {\displaystyle 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 ) {\displaystyle P(0)} , and it may even be necessary to prove extra-base cases such as P ( 1 ) {\displaystyle P(1)} before the general argument applies, as in the example below of the Fibonacci number F n {\displaystyle F_{n}} . Although the form just described requires one to prove the base case, this is unnecessary if one can prove P ( m ) {\displaystyle P(m)} (assuming P ( n ) {\displaystyle P(n)} for all lower n {\displaystyle n} ) for all m ≥ 0 {\displaystyle 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 {\displaystyle m=0} , where P ( 0 ) {\displaystyle P(0)} is proved with no other P ( n ) {\displaystyle P(n)} assumed; this case may need to be handled separately, but sometimes the same argument applies for m = 0 {\displaystyle m=0} and m > 0 {\displaystyle m>0} , making the proof simpler and more elegant. In this method, however, it is vital to ensure that the proof of P ( m ) {\displaystyle P(m)} does not implicitly assume that m > 0 {\displaystyle m>0} , e.g. by saying "choose an arbitrary n < m {\displaystyle n<m} ", or by assuming that a set of m 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 ) {\displaystyle 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 ) {\displaystyle Q(n)} be the statement " P ( m ) {\displaystyle P(m)} holds for all m {\displaystyle m} such that 0 ≤ m ≤ n {\displaystyle 0\leq m\leq n} "—this becomes the inductive hypothesis for ordinary induction. We can then show Q ( 0 ) {\displaystyle Q(0)} and Q ( n + 1 ) {\displaystyle Q(n+1)} for n ∈ N {\displaystyle n\in \mathbb {N} } assuming only Q ( n ) {\displaystyle Q(n)} and show that Q ( n ) {\displaystyle Q(n)} implies P ( n ) {\displaystyle P(n)} . If, on the other hand, P ( n ) {\displaystyle P(n)} had been proven by ordinary induction, the proof would already effectively be one by complete induction: P ( 0 ) {\displaystyle P(0)} is proved in the base case, using no assumptions, and P ( n + 1 ) {\displaystyle 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 ) {\displaystyle 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 = φ n − ψ n φ − ψ

Tags

  • Mathematical induction
  • Mathematical logic
  • Methods of proof