IB Maths AA HLTopic 1 โ Number & AlgebraPaper 1 & 2HL only~10 min read
Proof by Induction
Induction is the standard way to prove a result that depends on a positive integer n โ sums, divisibility claims, derivative patterns. The trick is that you don’t have to handle every n directly. You show the result is true for n = 1, then show that if it’s true for some n = k, it must also be true for n = k + 1. Those two pieces โ combined โ force the result to hold for every positive integer. Once you’ve memorised the four-step template, induction is one of the most reliable mark-grabbers on Paper 1.
๐ What you need to know
Induction proves a statement P(n) is true for all n โ โค+ using a fixed four-step structure.
Step 1 โ Basic step: show P(1) is true (substitute n = 1 into both sides of the claim).
Step 2 โ Assumption: assume P(k) is true for some integer k.
Step 3 โ Inductive step: use the assumption to prove P(k + 1) follows.
Step 4 โ Conclusion: end with the standard two-sentence wrap-up. Always use the same wording.
The two main types are series (sums equal a closed form) and divisibility (an expression is divisible by a fixed number). The structure is identical; only Step 3’s algebra differs.
The domino picture
The clearest way to picture induction is as a row of dominoes. To knock them all down, you only need two things: knock the first one over, and arrange them so each falling domino topples the next. You don’t need to push every domino individually.
Why two pieces are enough to fell every domino
“Push the first domino” is the basic step. “Each domino topples its neighbour” is the inductive step. Together they guarantee that every domino down the line falls โ even though you only physically pushed one.
The four-step template
Every induction proof in IB exams follows the same four-step shape. Memorise it once, then drop the right algebra into each box.
1
Basic step
Show P(1) holds. Substitute n = 1 into both sides.
2
Assumption
Assume P(k) is true for some integer k.
3
Inductive step
Use the assumption to derive P(k + 1).
4
Conclusion
Standard two-sentence finish โ see below.
The standard conclusion (memorise word-for-word)
“If the result is true for n = k, then it is true for n = k + 1.
Since it is true for n = 1, by induction the result is true for all n โ โค+.”
The conclusion is worth a mark on its own. Don’t paraphrase it โ just write the same two sentences every time. Examiners look for these exact phrases: “true for n = k implies true for n = k + 1″, and “true for n = 1, so true for all n โ โค+“.
Type 1 โ Induction with a series (sum equals a formula)
The most common induction question gives you a sum on the left and a closed-form expression on the right, and asks you to prove they’re equal for all positive integers.
The shape of a series claimฮฃr=1n f(r) = g(n)
Step 3 โ the inductive step trick
The key move in the inductive step is to split off the last term from the sum and use the assumption on the rest:
ฮฃr=1k+1 f(r) = ฮฃr=1k f(r) + f(k + 1)
Now you replace the first sum with the formula g(k) (that’s the assumption), then add f(k + 1) and simplify. The target is to make the whole thing match g(k + 1) โ what you’d get from the right-hand side at n = k + 1.
Algebra to expect: expanding brackets, then factorising out a common factor (often k + 1 or a constant from the RHS coefficient). The factorise step is what links the work back to the target form.
Type 2 โ Induction with divisibility
The other main type asks you to prove that an expression like 5n โ 1, or n3 + 2n, is divisible by some fixed integer (often 3, 4, or 5).
Step 3 โ the inductive step trick
“Divisible by 3” is just the same as “= 3m for some integer m“. So in Step 2 you write the assumption in that form. Then in Step 3, substitute n = k + 1 into the expression, use index laws like ak + 1 = a ยท ak to spot the assumption, and rearrange until you can factor out the divisor (3, 4, etc.).
The pattern to chase
Show: P(k + 1) = (divisor) ร (some integer)
For divisibility by 3, your goal is to write the result as 3 ร (integer). For divisibility by 5, write 5 ร (integer). The key sentence at the end is “…which is a multiple of [divisor], so P(k + 1) is true.”
Worked examples
WE 1
Prove a sum formula by induction
Prove by induction that ฮฃr=1n r = n(n + 1)2 for all n โ โค+.
STEP 1 โ Basic step (n = 1)LHS = 1, RHS = 1(2)/2 = 1 โSTEP 2 โ Assumptionassume ฮฃr=1k r = k(k+1)/2 holds for some kSTEP 3 โ Inductive step (n = k + 1)ฮฃr=1k+1 r = ฮฃr=1k r + (k+1)= k(k+1)/2 + (k+1) (using assumption)= (k+1)[k/2 + 1] = (k+1)(k+2)/2RHS at n = k+1: (k+1)(k+2)/2 โ matchSTEP 4 โ ConclusionIf true for n = k, then true for n = k+1. Since true for n = 1, by induction the result is true for all n โ โคโบ.
WE 2
Sum of the first n odd numbers
Prove by induction that ฮฃr=1n (2r โ 1) = n2 for all n โ โค+.
STEP 1 โ Basic step (n = 1)LHS = 2(1) โ 1 = 1, RHS = 12 = 1 โSTEP 2 โ Assumptionassume ฮฃr=1k (2r โ 1) = k2STEP 3 โ Inductive stepฮฃr=1k+1 (2r โ 1) = ฮฃr=1k (2r โ 1) + [2(k+1) โ 1]= k2 + (2k + 1) (using assumption)= k2 + 2k + 1 = (k + 1)2RHS at n = k+1: (k+1)2 โSTEP 4 โ ConclusionIf true for n = k, then true for n = k+1. Since true for n = 1, by induction the result is true for all n โ โคโบ.spotting that kยฒ + 2k + 1 = (k+1)ยฒ is the whole game here
WE 3
Sum of cubes
Prove by induction that ฮฃr=1n r3 = n2(n + 1)24 for all n โ โค+.
STEP 1 โ n = 1LHS = 1, RHS = 1ยท4/4 = 1 โSTEP 2 โ Assumptionassume ฮฃr=1k r3 = k2(k+1)2/4STEP 3 โ Inductive stepฮฃr=1k+1 r3 = k2(k+1)2/4 + (k+1)3= (k+1)2[k2/4 + (k+1)] (factor out (k+1)2)= (k+1)2[k2 + 4(k+1)]/4= (k+1)2(k2 + 4k + 4)/4= (k+1)2(k+2)2/4RHS at n = k+1: (k+1)2(k+2)2/4 โSTEP 4 โ ConclusionIf true for n = k, then true for n = k+1. Since true for n = 1, by induction the result is true for all n โ โคโบ.factoring out (k+1)ยฒ early keeps the algebra tidy
WE 4
Prove a divisibility result
Prove by induction that 7n โ 1 is divisible by 6 for all n โ โค+.
STEP 1 โ n = 171 โ 1 = 6, divisible by 6 โSTEP 2 โ Assumptionassume 7k โ 1 = 6m for some m โ โคso 7k = 6m + 1STEP 3 โ Inductive step (n = k + 1)7k+1 โ 1 = 7 ยท 7k โ 1= 7(6m + 1) โ 1 (using assumption)= 42m + 7 โ 1 = 42m + 6= 6(7m + 1)since 7m + 1 โ โค, this is a multiple of 6 โSTEP 4 โ ConclusionIf true for n = k, then true for n = k+1. Since true for n = 1, by induction the result is true for all n โ โคโบ.7^(k+1) = 7ยท7^k is the key index-law step โ lets you slot in the assumption
WE 5
Divisibility by 5
Prove by induction that 6n โ 1 is divisible by 5 for all n โ โค+.
STEP 1 โ n = 16 โ 1 = 5, divisible by 5 โSTEP 2 โ Assumptionassume 6k โ 1 = 5m, so 6k = 5m + 1STEP 3 โ Inductive step6k+1 โ 1 = 6 ยท 6k โ 1= 6(5m + 1) โ 1= 30m + 6 โ 1 = 30m + 5= 5(6m + 1)since 6m + 1 โ โค, this is a multiple of 5 โSTEP 4 โ ConclusionIf true for n = k, then true for n = k+1. Since true for n = 1, by induction the result is true for all n โ โคโบ.
๐ก Top tips
Always write all four step headings. “Basic step”, “Assumption”, “Inductive step”, “Conclusion”. Examiners scan for these.
Memorise the conclusion sentences word-for-word. Don’t reword them.
For sums: peel off the last term as f(k + 1) and use the assumption on the remaining k terms.
For divisibility: write the assumption as “= 3m“ (or 5m, 6m, etc.). Then use ak+1 = a ยท ak to spot it.
When factorising in Step 3, look for (k + 1) as a common factor. It’s almost always there in series-type questions.
Once you’ve simplified your Step 3, quickly substitute n = k + 1 into the original RHS and check the two match.
If the question gives a starting value other than n = 1 (rare but possible), check that one in the basic step instead.
โ Common mistakes
Skipping the basic step. Without P(1), the whole induction collapses โ you need to push the first domino.
Writing “let n = k + 1” without using the assumption. Step 3 must use what you assumed in Step 2 โ that’s the entire point.
Treating the assumption as something to prove. You assume P(k) to derive P(k + 1). Don’t try to prove the assumption itself.
Incomplete or paraphrased conclusion. Use the standard two sentences. Skipping “true for all n โ โค+” loses a mark.
Algebra errors when expanding (k + 1)2, (k + 1)3, etc. Double-check expansions in Step 3 โ sign and coefficient errors here destroy the proof.
Forgetting “since (bracket) is an integer” in divisibility proofs. The bracket inside the divisor multiplication must be confirmed as an integer.
Using the wrong index law for the inductive step. 7k + 1 is 7 ยท 7k, not (7k)2.
Induction looks intimidating the first time, but it’s heavily rewarded by IB examiners precisely because the structure is so rigid. Drill the four steps once, work through three or four problems, and you’ll have it for life. The conclusion sentences are free marks โ never skip them.
Need help with Proof by Induction?
Get 1-on-1 help from an IB examiner who knows exactly what Paper 1 & 2 are looking for.