IB Maths AA HL Topic 1 โ€” Number & Algebra Paper 1 & 2 HL 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

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 n = 1 basic step n = 2 n = 3 n = k n = k+1 if k falls, k+1 falls
“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 โ€” Assumption assume ฮฃr=1k r = k(k+1)/2 holds for some k STEP 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)/2 RHS at n = k+1: (k+1)(k+2)/2 โœ“  match STEP 4 โ€” Conclusion If 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 โ€” Assumption assume ฮฃr=1k (2r โˆ’ 1) = k2 STEP 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)2 RHS at n = k+1: (k+1)2 โœ“ STEP 4 โ€” Conclusion If 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 = 1 LHS = 1,   RHS = 1ยท4/4 = 1 โœ“ STEP 2 โ€” Assumption assume ฮฃr=1k r3 = k2(k+1)2/4 STEP 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/4 RHS at n = k+1: (k+1)2(k+2)2/4 โœ“ STEP 4 โ€” Conclusion If 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 = 1 71 โˆ’ 1 = 6, divisible by 6 โœ“ STEP 2 โ€” Assumption assume 7k โˆ’ 1 = 6m for some m โˆˆ โ„ค so 7k = 6m + 1 STEP 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 โ€” Conclusion If 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 = 1 6 โˆ’ 1 = 5, divisible by 5 โœ“ STEP 2 โ€” Assumption assume 6k โˆ’ 1 = 5m, so 6k = 5m + 1 STEP 3 โ€” Inductive step 6k+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 โ€” Conclusion If 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

โš  Common mistakes

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.

Book Free Session โ†’