Proving Infinitely Many Cases
Some statements hold for every natural number, like for all . Mathematical induction proves infinitely many cases with a finite argument. Think of a line of dominoes: if the first falls and each knocks the next, all fall.
An induction proof relies on two essential parts:
| Part | Role | Action |
|---|---|---|
| Base case | Tips the first domino | Prove the statement for the smallest value ( or ) |
| Inductive step | Knocks the next domino | Assume holds, then prove |
Both parts are required. Both alone leave the chain unstarted or broken.
Strong Induction & Pitfalls
Strong induction is a variant where the inductive step assumes the statement for all values from the base up to , not just . This helps when cases depend on multiple earlier ones, such as proving every integer has a prime factorization.
To prove : the base case gives . Assuming it for , adding yields the formula for .
| Pitfall | Consequence |
|---|---|
| Omitting base case | The chain never starts; all cases could be false |
| Ignored inductive hypothesis | Proving from scratch instead of assuming is invalid |