9231 · 1.7
Proof by induction
Proof by induction is a method to prove a statement for an infinite sequence of numbers. It works by first proving the statement for the very first number, and then proving that if it's true for any number, it must also be true for the next one.
Need to know
What you need to know
- **Base Case:** Prove the statement holds for the first value, $n_0$ (e.g., $n=1$).
- **Inductive Hypothesis:** Assume the statement is true for an arbitrary integer $n=k$, where $k \ge n_0$.
- **Inductive Step:** Show that if the statement is true for $n=k$, it must also be true for $n=k+1$. This is the core of the proof.
- **Conclusion:** A formal statement that combines the base case and inductive step to conclude the proof by the principle of mathematical induction.
Explanation
The Domino Effect of Proofs
- Base Case: Prove the statement is true for the first value, usually n=1. This is pushing the first domino.
- Inductive Hypothesis: Assume the statement is true for an arbitrary integer n=k. This is assuming a random domino, the k-th one, falls.
- Inductive Step: Use the assumption for n=k to prove the statement is also true for the next value, n=k+1. This shows that if the k-th domino falls, it knocks over the (k+1)-th one.
- Conclusion: Conclude that by the principle of mathematical induction, the statement is true for all specified integers. This is the final declaration that the entire line of dominoes will fall.