← Hub FP1 · 07 · Induction 0%
Paper 1 · Further Pure 1 ✦

Proof by Induction

Knock over the first domino, and prove each one topples the next. The maths is usually easy; the marks are in saying it in exactly the right words.

Syllabus 1.7Series · divisibility · Aⁿ · sequencesStructure = marks

What the examiner expects you to do

§1 The method — and the exact words

Induction has four parts. Every one carries marks, and the last one is the part most candidates omit.

◆ The skeleton — write this every single time
1 · Define the statement
Let P(n) be the statement [write the result out in full, with n in it].
2 · Base case
When n=1: LHS =, RHS =. These are equal, so P(1) is true.
3 · Inductive step
Assume P(k) is true for some positive integer k, i.e. [write the assumption out]. Then consider the n=k+1 case … and use the assumption … which is P(k+1). So P(k)P(k+1).
4 · Conclusion
Since P(1) is true and P(k)P(k+1), by mathematical induction P(n) is true for all positive integers n.
★ A* tip — the two habits that separate full marks from most
  1. Write down what you are aiming at before you start the algebra. If you know P(k+1) should read 14(k+1)2(k+2)2, you know exactly which factorised form to steer towards.
  2. Point at the moment you use the assumption. A proof that never visibly uses P(k) is not an inductive proof, and examiners look for that line specifically.
⚠ "Assume it is true for all k" is wrong

You assume it for some particular k — one domino — and deduce the next. Assuming it for all n assumes what you are proving. Say "assume P(k) is true for some positive integer k".

§2 Series

✎ Worked example — prove r=1nr3=14n2(n+1)2

Statement. Let P(n) be r=1nr3=14n2(n+1)2.

Base case. When n=1: LHS =13=1; RHS =14(1)2(2)2=1. Equal, so P(1) is true.

Inductive step. Assume P(k): r=1kr3=14k2(k+1)2. Then

r=1k+1r3=r=1kr3use the assumption+(k+1)3=14k2(k+1)2+(k+1)3.

Take out 14(k+1)2 — aiming at the target form:

=14(k+1)2[k2+4(k+1)]=14(k+1)2(k2+4k+4)=14(k+1)2(k+2)2,

which is exactly P(k+1) (replace n by k+1 in the statement). So P(k)P(k+1).

Conclusion. P(1) is true and P(k)P(k+1), so by induction P(n) is true for all positive integers n.

★ The move that makes series inductions easy

Always split off the last term: r=1k+1=r=1k+ (k+1)th term. Then factor out the common bracket from the target and match what is left.

§3 Divisibility

◆ The technique

To show f(n) is divisible by m, express f(k+1) in terms of f(k):

f(k+1)=λf(k)+m×(an integer).

Then if m|f(k), both pieces are divisible by m, so m|f(k+1). Finding the right λ is the whole skill: it is usually the base of the fastest-growing exponential.

✎ Worked example — 32n+2×5n3 is divisible by 8

Statement. Let P(n) be "f(n)=32n+2×5n3 is divisible by 8".

Base case. f(1)=9+103=16=8×2, so P(1) is true.

Inductive step. Assume f(k)=32k+2×5k3 is divisible by 8. Now

f(k+1)=32k+2+2×5k+13=9×32k+10×5k3.

The fastest-growing term has base 9, so subtract 9f(k):

f(k+1)9f(k)=(10×5k18×5k)+(3+27)=8×5k+24, f(k+1)=9f(k)+8(35k).

9f(k) is divisible by 8 by the assumption, and 8(35k) is a multiple of 8 because 35k is an integer. So f(k+1) is divisible by 8, i.e. P(k)P(k+1).

Conclusion. By induction, 32n+2×5n3 is divisible by 8 for all positive integers n.

Check: f(2)=81+503=128, and 9f(1)+8(35)=14416=128

⚠ "Is a multiple of 8" needs an integer

Writing f(k)=8M with "M an integer" at the start makes the last line airtight: you can then say f(k+1)=8(9M+35k), and the bracket is visibly an integer. Vague phrasing like "so it works" scores nothing.

§4 Powers of a matrix

✎ Worked example — a given 𝐀n

Prove that for 𝐀=(4161),

𝐀n=(32n212n62n632n+1).

Base case. n=1 gives (621212634)=(4161)=𝐀

Inductive step. Assume the formula holds for n=k. Then 𝐀k+1=𝐀k𝐀:

(32k212k62k632k+1)(4161).

Top-left: 4(32k2)+6(12k)=122k8+662k=62k2=32k+12

Top-right: (32k2)(12k)=32k+21+2k=122k=12k+1

Bottom-left: 4(62k6)+6(32k+1)=242k24+18122k=122k6=62k+16

Bottom-right: (62k6)(32k+1)=62k+63+22k=342k=32k+2

Every entry is the formula with k+1 in place of k, so P(k)P(k+1), and the result follows by induction.

★ A* tip — multiply on the correct side, and convert bases early

Use 𝐀k+1=𝐀k𝐀 so the assumption is available immediately. And turn every 22k into 2k+1 as you go: the target form is what you are matching, and leaving mixed notation is how sign and index errors hide.

§5 Sequences and nth derivatives

✎ Worked example — a recurrence relation

The sequence is defined by un+1=3un1 with u1=1. Prove that un=12(1+3n1).

Base case. u1=12(1+30)=12(2)=1 ✓ matching the given first term.

Inductive step. Assume uk=12(1+3k1). Then, using the recurrence,

uk+1=3uk1=312(1+3k1)1=32+323k11=12+123k=12(1+3k),

which is the formula with k+1 in place of k (since (k+1)1=k). So P(k)P(k+1), and the result follows by induction.

Check: u2=3(1)1=2 and 12(1+3)=2 ✓; u3=3(2)1=5 and 12(1+9)=5

✎ Worked example — an nth derivative

Prove that dndxn(xex)=(x+n)ex.

Base case. n=1: by the product rule ddx(xex)=ex+xex=(x+1)ex

Inductive step. Assume the kth derivative is (x+k)ex. Differentiating once more,

dk+1dxk+1(xex)=ddx[(x+k)ex]=ex+(x+k)ex=(x+(k+1))ex,

which is the formula with k+1 in place of k. By induction the result holds for all positive integers n.

§6 Conjecture first, then prove

The syllabus asks you to spot when a short trial suggests a pattern, and then nail it down with induction. Trial alone is never a proof — but it is how you find the thing to prove.

✎ Worked example — r=1nr×r!

Trial. Compute the first few and look for a pattern next to the factorials:

n1234
sum1523119
compare2!13!14!15!1

Conjecture. r=1nr×r!=(n+1)!1.

Proof. Base case n=1: LHS =1×1!=1; RHS =2!1=1 ✓. Assume it holds for n=k. Then

r=1k+1r×r!=[(k+1)!1]+(k+1)×(k+1)!,

and taking out the common factor (k+1)!:

=(k+1)![1+(k+1)]1=(k+1)!(k+2)1=(k+2)!1,

which is the conjecture with k+1 in place of n. So by induction it holds for all positive integers n.

⚠ A pattern that holds for n=1,,40 can still be false

Checking cases builds a conjecture, never a proof. Write "this suggests…" for the trial and keep the word "hence" or "therefore" for the induction. Marks are given for knowing the difference.

§7 Interactive: the domino chain

Pick a result and raise n. Each domino is checked independently — the left-hand side is computed from scratch and compared with the formula — so a green chain is real evidence, not a restatement. The base case is starred; the arrows are what the inductive step buys you.

every domino falls ✎

§8 Examiner traps & A* checklist

⚠ The seven most common mark-losers
  • No concluding statement. "Hence by induction the result is true for all positive integers n" is a mark on its own, and it is the most frequently dropped one in the whole paper.
  • Assuming the result "for all k" rather than "for some positive integer k".
  • Never visibly using the assumption — the proof then proves nothing.
  • Stopping at an unfactorised mess instead of steering to the target form with k+1 substituted.
  • Starting at the wrong base. If the claim is for n0 or n2, check that value, not n=1.
  • In divisibility, saying "is a multiple of m" without producing an explicit integer factor.
  • In matrix proofs, writing 𝐀k+1=𝐀𝐀k and then multiplying in the wrong order — the entries will not match.
★ Before you turn the page
  • Have I written P(k+1) out explicitly, so I know what I am steering towards?
  • Did I check the base case with actual numbers on both sides?
  • Is my final sentence there, in full?

§9 Video explainers (curated)

§10 Check yourself

Score 0 / 5
Q1 · the base case

To prove r=1nr3=14n2(n+1)2 by induction, the base case n=1 requires you to show that:

Solution

LHS =13=1 and RHS =14(1)2(1+1)2=14×4=1. Both are 1, so P(1) is true. The trap answer 14 comes from forgetting to square the (n+1).

Q2 · divisibility technique

Let f(n)=32n+2×5n3. Which identity makes the inductive step work?

Solution

f(k+1)=9×32k+10×5k3. Subtracting 9f(k)=9×32k+18×5k27 leaves 8×5k+24=8(35k). Both terms on the right are then divisible by 8. Check with k=1: f(1)=16, f(2)=128, and 9(16)+8(35)=14416=128

Q3 · conjecture

r=1nr×r! equals:

Solution

The first few sums are 1,5,23,119, which are 2!1, 3!1, 4!1, 5!1. So the conjecture is (n+1)!1, proved by induction in §6.

Q4 · sequences

For un+1=3un1 with u1=1, the closed form is:

Solution

The terms are 1,2,5,14,41,. Testing n=1 kills three of the options at once: 12(1+30)=1 ✓, while 12(1+3)=2, 30=1 (but then n=2 gives 32), and 12(301)=0. The proof is in §5.

Q5 · full method — try it on paper first

Prove by induction that, for all positive integers n,

(1102)n=(12n102n).
Solution

Statement. Let P(n) be 𝐀n=(12n102n), where 𝐀=(1102).

Base case. When n=1 the formula gives (1211021)=(1102)=𝐀. So P(1) is true.

Inductive step. Assume P(k) for some positive integer k, i.e. 𝐀k=(12k102k). Then, multiplying on the right by 𝐀 so the assumption can be used directly,

𝐀k+1=𝐀k𝐀=(12k102k)(1102)=(11+2(2k1)022k).

Simplify the top-right entry: 1+22k2=2k+11; and the bottom-right is 2k+1. Hence

𝐀k+1=(12k+1102k+1),

which is precisely P(k+1). So P(k)P(k+1).

Conclusion. P(1) is true, and P(k)P(k+1) for every positive integer k. Therefore, by mathematical induction, P(n) is true for all positive integers n.

Check with n=3: 𝐀3=(1304)(1102)=(1708), and the formula gives (1231023)=(1708)

FP1 · Topic 7 · Proof by Induction