Mathematical induction is a proof method for showing that a statement is true for every integer from some starting point onward. To prove a claim for all , you show the first case is true and then show that truth at one integer forces truth at the next integer.
If both parts are correct, the statement holds for every integer in the stated range. That is the whole idea.
How mathematical induction works
Write the claim as . Then induction has this structure:
- Prove the base case: show that is true.
- Prove the induction step: show that if is true for an arbitrary integer , then is also true.
Once those are done, you can conclude that is true for every integer .
The logic is sequential. The base case starts the chain, and the induction step keeps the chain moving one integer at a time.
Why the base case and induction step both matter
The base case gives you the first true statement. The induction step says truth passes from one integer to the next.
So if is true, then is true. Then is true, and so on. Induction does not skip the starting point, and it does not skip the link from one case to the next.
Worked example: proving a sum formula by induction
A standard example is the formula
for all integers .
Let
Base case
Take . The left side is , and the right side is
So is true.
Induction step
Assume is true for some arbitrary integer . That means
Now prove . Start with the left side for :
Using the induction hypothesis,
Factor out :
Then simplify:
That is exactly the formula with . So is true.
Since the base case and induction step are both proved, the formula holds for all integers .
When to use mathematical induction
Induction is useful when a statement depends on an integer parameter and each case naturally connects to an earlier one. This happens often with sums, divisibility statements, inequalities, recurrence relations, and algorithm proofs.
First, identify the correct starting value. Some claims begin at , some at , and some only make sense for larger integers.
Then check what the next valid case is. The usual step is from to , but if the statement is only about even integers, a step from to may be the right version.
Common mistakes in induction proofs
Proving only the base case
The base case checks the first value only. By itself, it does not prove the statement for later integers.
Using the wrong starting value
If the claim is meant for all , proving only does not help. The base case must match the actual range of the claim.
Treating the induction hypothesis carelessly
In the induction step, you assume for one arbitrary integer in the valid range. You do not assume the full theorem is already proved.
Proving the wrong next case
If your theorem needs a step, proving a different step does not finish the argument unless you explain why that different step is enough.
A useful extension: strong induction
Sometimes proving needs more than just . In that situation, strong induction lets you assume all earlier cases up to and then prove the next one.
The idea is closely related, but the assumption is stronger. It is useful, for example, when a proof depends on splitting a number into smaller parts.
Try your own version
Take the claim
and prove it for all integers using the same structure: base case first, then the step from to . If you can write that proof cleanly, the method usually clicks.
Need help with a problem?
Upload your question and get a verified, step-by-step solution in seconds.
Open GPAI Solver →