Mathematical induction is a proof technique for showing that a statement holds for every natural number. Instead of checking infinitely many cases one by one, you prove just two things: that the statement works for a starting value, and that whenever it works for one number, it must work for the next. Those two pieces together guarantee the statement is true across the board.
This technique comes up constantly when working with sequences and series, because the formulas for sums of arithmetic and geometric sequences all claim to work "for all ." Induction is how you actually prove those claims are valid.
Mathematical Induction Principle

Definition and Key Components
Mathematical induction proves that a statement is true for all natural numbers by establishing two things:
- Base case (basis): Show the statement holds for the first natural number, usually (sometimes , depending on the problem).
- Inductive step: Assume the statement holds for some arbitrary natural number (this assumption is called the inductive hypothesis), then prove it must also hold for .
If both pieces are established, the principle guarantees the statement is true for every natural number.
Reasoning Behind the Principle
You can't check a statement for infinitely many numbers one at a time. Induction gets around this by using the structure of the natural numbers themselves. The base case starts the chain, and the inductive step keeps it going: since it's true for , it must be true for ; since it's true for , it must be true for ; and so on, forever. There are no gaps in the natural numbers that could break this chain, which is why the method works.
Think of it like dominoes. You knock over the first one (base case), and you've shown that any domino falling will knock over the next one (inductive step). Every domino falls.
Applying Mathematical Induction
Step-by-Step Process
- Prove the base case. Plug in the starting value (usually ) and verify the statement is true.
- State the inductive hypothesis. Assume the statement is true for some arbitrary natural number .
- Prove the inductive step. Starting from the assumption that the statement holds for , show it must hold for . This usually involves algebraic manipulation: you'll take the expression for , substitute in the inductive hypothesis, and simplify until you reach the desired form.
- Conclude. State that by the principle of mathematical induction, the statement is true for all natural numbers.

Worked Example: Sum of the First Odd Numbers
Claim: for all natural numbers .
Step 1 (Base case): When , the left side is just , and the right side is . They match, so the base case holds.
Step 2 (Inductive hypothesis): Assume the formula is true for . That is, assume:
Step 3 (Inductive step): Show the formula holds for . The left side for adds one more term:
By the inductive hypothesis, replace the first chunk with :
Factor:
That's exactly what the formula predicts for . The inductive step is complete.
Step 4 (Conclusion): By mathematical induction, for all natural numbers .
Other Classic Statements Proven by Induction
- Sum of squares:
- Divisibility: is divisible by 2 for all natural numbers
- Inequalities: for all
- Sum of cubes identity:
Induction for Sequences and Series
Arithmetic Sequences and Series
An arithmetic sequence has a constant difference between consecutive terms. Its general term is:
The sum of the first terms is:
To prove this sum formula by induction:
- Base case (): . The formula gives . It checks out.
- Inductive hypothesis: Assume .
- Inductive step: . Substitute the hypothesis for and use , then simplify to show you get , which is the formula evaluated at .

Geometric Sequences and Series
A geometric sequence has a constant ratio between consecutive terms. Its general term is:
The sum of the first terms (when ) is:
To prove this sum formula by induction:
-
Base case (): . The formula gives . It checks out.
-
Inductive hypothesis: Assume .
-
Inductive step: . Combine these over a common denominator: . That's the formula for .
Problem Solving with Induction
General Problem-Solving Steps
- Identify the statement and write it as in terms of a natural number .
- Prove the base case by direct substitution.
- State the inductive hypothesis: assume is true.
- Prove the inductive step: show . This is where most of the work happens. Look for ways to express the case in terms of the case, then apply the hypothesis.
- Conclude by invoking the principle of mathematical induction.
A common mistake is trying to prove the case from scratch without actually using the inductive hypothesis. The whole point of induction is that you use the assumption for to get to . If your proof of the inductive step doesn't reference the hypothesis, something has gone wrong.
Examples of Problems Solved by Induction
- Divisibility: is divisible by 6 for all . (In the inductive step, write , then use the hypothesis that is divisible by 6.)
- Inequalities: for all .
- Telescoping sums:
- Recursive sequences: Proving a closed-form formula for a recursively defined sequence, such as showing satisfies with .