How to write a proof by induction
Proof by induction establishes that a given statement is true for all integers . It applies when a problem involves a sequence of propositions indexed by integers, such as summation formulas, divisibility properties, or recurrence relations.
The setup
Define the proposition clearly. Identify the starting integer , which is usually 0 or 1.
The steps
- Base case: Prove that is true by direct substitution.
- Inductive hypothesis: Assume that is true for an arbitrary integer .
- Inductive step: Show that follows logically from .
Checking the result
Verify that the inductive step explicitly uses the inductive hypothesis. If it does not, the proof is either incomplete or induction was not required.
Common errors
Failing to state the inductive hypothesis explicitly is the most frequent error. Another common mistake is assuming is true at the beginning of the inductive step instead of deriving it from .
Worked example
Prove that for all integers .
Let be the statement .
Base case (): The left side is . The right side is . Both sides are equal, so is true.
Inductive hypothesis: Assume is true for an arbitrary integer , meaning .
Inductive step: We must show is true. Consider the sum up to : . By the inductive hypothesis, substitute the sum up to : . Factor out : . This is exactly . Therefore, by the principle of mathematical induction, is true for all .
FAQ
Run your own problem
References: Discrete Mathematics and Its Applications by Kenneth H. Rosen · Khan Academy Unit: Series and induction
See also