Strong induction (also called complete induction) is a proof technique similar to weak induction, but with a slightly different approach. While weak induction assumes that the statement is true for a single previous case (usually ), strong induction assumes that the statement is true for all values from 1 to in order to prove it for .
In other words, strong induction allows you to use the inductive hypothesis for multiple previous cases rather than just one.
Strong induction follows a structure that is very similar to weak induction, but with a subtle difference in the inductive hypothesis. The general structure of a strong induction proof is:
If both the base case and the inductive step are proven, the principle of strong induction tells us that the statement is true for all natural numbers greater than or equal to the base case value.
Let represent the statement we want to prove for all natural numbers . Strong induction can be written formally as follows:
Base Case: Prove that (or ) is true.
Inductive Hypothesis: Assume that are true for some arbitrary .
Inductive Step: Using the assumption that are true, prove that is true.
If both parts of the induction process are successful, then the principle of strong induction concludes that the statement is true for all (or , depending on the base case).
Let's go through an example to see how strong induction works.
We want to prove that every natural number is a product of prime numbers (i.e., every natural number greater than or equal to 2 is composite or prime).
The smallest value of that we need to check is . The number 2 is a prime number, so the statement holds for .
Now, assume that the statement holds for all integers from to , i.e., every integer from 2 to is either a prime or a product of primes. This is the inductive hypothesis.
We now need to prove that the statement holds for .
To do this, we need to consider two cases:
Since and are both less than or equal to , by the inductive hypothesis, both and are either primes or products of primes. Therefore, is a product of prime numbers.
Thus, in both cases (whether is prime or composite), we have shown that is either a prime or a product of primes.
Since the base case holds, and we have proven the inductive step, by the principle of strong induction, we conclude that every natural number is either a prime or a product of prime numbers.
Some problems are easier to prove with strong induction because they require assuming the statement holds for multiple values rather than just one. This is particularly useful when the problem depends on several previous cases rather than just the immediate previous case.
Strong induction is used to prove many types of results, especially in areas where properties of numbers or structures depend on the entire range of smaller cases. Some common applications include:
Strong induction is a powerful proof technique that extends the idea of mathematical induction by assuming the statement is true for all values up to to prove that it holds for . It is particularly useful when proving statements that rely on multiple previous cases, making it a versatile and essential tool in mathematical reasoning.
Open this section to load past papers