EuraStudy
Notes/Further Mathematics/Proof
Notes · Further MathematicsUK · A-Levels

Proof

Further Mathematics adds proof by mathematical induction to the deduction, exhaustion, counter-example and contradiction methods met in A-Level Mathematics. Induction is the standard tool for proving results that are indexed by a positive integer nnn: summation formulae, divisibility statements and formulae for powers of matrices. The emphasis throughout is on a complete, correctly structured argument, since the reasoning objective (AO2) carries even more weight here than in the single Mathematics A-Level.

5 sections·~16 min reading time·3 competencies·Level Standard 3 · Advanced 2

T·0111 / 13
Exam profile
AO2 · Construct and present a rigorous mathematical argument, laying out the base case, inductive step and conclusion explicitlyAO1 · Carry out accurately the algebraic manipulation demanded inside the inductive stepAO3 · Select mathematical induction as the appropriate strategy and structure a complete multi-step proof
Operators:proveprove by inductionshow thatdeducehencestate

basic level

AS Further Mathematics expects induction for the summation of standard series and for straightforward divisibility results, with the three-part structure clearly shown.

higher level

The full A-Level extends induction to powers of matrices, to sequences defined by a recurrence, and to results combined with complex numbers or calculus, and it examines the precise logical wording of the conclusion.

Depth

Reading depth: In depth

Text

Text size: Standard

Contents · 5 sections▾
  1. Proof
    • 01The principle of mathematical induction◐
    • 02Induction for the summation of series◐
    • 03Induction for divisibility results●
    • 04Induction for matrix powers and recurrences●
    • 05Induction within the wider proof landscape◐
§ 01

The principle of mathematical induction#

●●○StandardLPAQA 7367 §3.1LPDfE Further Mathematics — Proof

The induction domino chain

Base case and the chain of implicationsGraph, P(1) → P(2), P(2) → P(3), P(3) → P(4), P(4) → P(5) ...P(1)P(2)P(3)P(4)P(5) ...stepstepstepstep
Fig. 1The base case topples the first domino; the inductive step guarantees each domino topples the next, so all fall.

Key points

Mathematical induction proves that a statement P(n)P(n)P(n) is true for every integer nnn from some starting value onwards (usually n≥1n \geq 1n≥1). It rests on a single idea: if the statement is true for a first value, and if its truth at any value forces its truth at the next value, then it must be true for all of them. The standard image is a line of dominoes — knock over the first and arrange that each falling domino topples the next, and every domino falls. The falling of the first domino is the base case; the arrangement that each topples the next is the inductive step.
A proof by induction therefore has three compulsory parts, and marks are lost whenever one is missing or sloppy. First, the base case: show directly that P(1)P(1)P(1) (or whatever the first value is) holds, by substituting it into both sides. Second, the inductive step: assume that P(k)P(k)P(k) is true for some particular integer kkk — this is the inductive hypothesis — and use it to prove P(k+1)P(k+1)P(k+1). Third, the conclusion: state that since P(1)P(1)P(1) is true and P(k)⇒P(k+1)P(k) \Rightarrow P(k+1)P(k)⇒P(k+1), by the principle of mathematical induction P(n)P(n)P(n) is true for all n≥1n \geq 1n≥1.
The logical engine is the implication P(k)⇒P(k+1)P(k) \Rightarrow P(k+1)P(k)⇒P(k+1), established for a general kkk. Note carefully what is and is not assumed: you assume P(k)P(k)P(k) for one unspecified value kkk, not for all values (that would be assuming what you are trying to prove). The whole force of the method is that a single general implication, together with one concrete starting case, delivers infinitely many statements at once. This is genuinely different from checking cases: verifying P(1),P(2),P(3)P(1), P(2), P(3)P(1),P(2),P(3) proves nothing about P(100)P(100)P(100), whereas a valid inductive step proves them all.
Induction is the natural tool whenever a claim is indexed by a positive integer and each case is built from the previous one. That covers the three families examined at A-Level: closed formulae for finite sums ∑r=1nf(r)\sum_{r=1}^{n} f(r)∑r=1n​f(r), divisibility statements such as 'f(n)f(n)f(n) is divisible by mmm for all nnn', and formulae for the nnnth power Mn\mathbf{M}^nMn of a square matrix. In each family the inductive step has a characteristic move — split off the last term, factor out a common divisor, or multiply by one more copy of M\mathbf{M}M — which is worth learning as a template.
[ P(1) true ] ∧ [ ∀k (P(k)⇒P(k+1)) ] ⟹ ∀n≥1, P(n)\big[\,P(1)\ \text{true}\,\big]\ \wedge\ \big[\,\forall k\ \big(P(k)\Rightarrow P(k+1)\big)\,\big]\ \Longrightarrow\ \forall n\geq 1,\ P(n)[P(1) true] ∧ [∀k (P(k)⇒P(k+1))] ⟹ ∀n≥1, P(n)

The principle of mathematical induction

A true base case together with the general implication P(k)⇒P(k+1)P(k)\Rightarrow P(k+1)P(k)⇒P(k+1) yields the truth of P(n)P(n)P(n) for every integer n≥1n\geq 1n≥1.

Worked example

The structure on a first example

Prove by induction that ∑r=1nr=12n(n+1)\sum_{r=1}^{n} r = \tfrac{1}{2}n(n+1)∑r=1n​r=21​n(n+1) for all integers n≥1n \geq 1n≥1.

  1. 01Base case

    For n=1n=1n=1 the left-hand side is 111 and the right-hand side is 12(1)(2)=1\tfrac{1}{2}(1)(2)=121​(1)(2)=1. They agree, so P(1)P(1)P(1) is true.

  2. 02Inductive hypothesis

    Assume the result holds for n=kn=kn=k, i.e. ∑r=1kr=12k(k+1)\sum_{r=1}^{k} r = \tfrac{1}{2}k(k+1)∑r=1k​r=21​k(k+1).

  3. 03Inductive step

    Add the next term (k+1)(k+1)(k+1) to both sides: ∑r=1k+1r=12k(k+1)+(k+1)=(k+1)(12k+1)=12(k+1)(k+2)\sum_{r=1}^{k+1} r = \tfrac{1}{2}k(k+1) + (k+1) = (k+1)\big(\tfrac{1}{2}k + 1\big) = \tfrac{1}{2}(k+1)(k+2)∑r=1k+1​r=21​k(k+1)+(k+1)=(k+1)(21​k+1)=21​(k+1)(k+2).

    ∑r=1k+1r=12(k+1)((k+1)+1)\sum_{r=1}^{k+1} r = \tfrac{1}{2}(k+1)\big((k+1)+1\big)r=1∑k+1​r=21​(k+1)((k+1)+1)
  4. 04Conclusion

    This is exactly P(k+1)P(k+1)P(k+1). Since P(1)P(1)P(1) is true and P(k)⇒P(k+1)P(k)\Rightarrow P(k+1)P(k)⇒P(k+1), by induction the result holds for all n≥1n\geq 1n≥1.

Result: ∑r=1nr=12n(n+1)\sum_{r=1}^{n} r = \tfrac{1}{2}n(n+1)∑r=1n​r=21​n(n+1) for all integers n≥1n\geq 1n≥1.

Exam focus

  • Write all three parts explicitly and label them. The conclusion is worth a mark on its own and must reference both the base case and the implication — a bare 'so it is true for all nnn' is incomplete.
  • State the inductive hypothesis precisely as 'assume the result is true for n=kn = kn=k' and make clear where in the step you use it; examiners look for the hypothesis being invoked.

Typical mistakes

  • Omitting the base case, or checking it only informally — without P(1)P(1)P(1) the chain of implications never starts and the proof is worthless.
  • Writing 'assume it is true for all kkk', which assumes the very statement to be proved; the hypothesis is about a single value kkk.

Active revision

Explain, in your own words and with reference to the domino image, why an inductive step P(k)⇒P(k+1)P(k)\Rightarrow P(k+1)P(k)⇒P(k+1) on its own is not enough to prove P(n)P(n)P(n) for all nnn, and why a base case on its own is likewise insufficient.

Active recall

Recall the key points — then reveal.

Sources: Further mathematics: AS and A level content (GCE subject content) (Department for Education) · AQA A-level Further Mathematics 7367 specification (AQA)

§ 02

Induction for the summation of series#

●●○StandardLPAQA 7367 §3.1LPDfE Further Mathematics — Proof

Key points

The commonest use of induction is to prove a closed formula for a finite sum ∑r=1nf(r)\sum_{r=1}^{n} f(r)∑r=1n​f(r). The inductive step has a fixed shape: start from the assumed sum to kkk terms, add the single term f(k+1)f(k+1)f(k+1), and rearrange the result into the target formula with k+1k+1k+1 in place of nnn. Almost all the work is algebraic — the skill is factorising cleanly rather than expanding everything and hoping.
The decisive tactic is to take out the common factor early. When proving ∑r=1nr2=16n(n+1)(2n+1)\sum_{r=1}^{n} r^2 = \tfrac{1}{6}n(n+1)(2n+1)∑r=1n​r2=61​n(n+1)(2n+1), after adding (k+1)2(k+1)^2(k+1)2 you should immediately extract the factor (k+1)(k+1)(k+1) that the target answer must contain, leaving 16(k+1)[k(2k+1)+6(k+1)]\tfrac{1}{6}(k+1)\big[k(2k+1) + 6(k+1)\big]61​(k+1)[k(2k+1)+6(k+1)]. Expanding only the bracket gives 2k2+7k+6=(k+2)(2k+3)2k^2+7k+6 = (k+2)(2k+3)2k2+7k+6=(k+2)(2k+3), and the target form 16(k+1)(k+2)(2k+3)\tfrac{1}{6}(k+1)(k+2)(2k+3)61​(k+1)(k+2)(2k+3) appears without a messy cubic ever being written out. Recognising the required factors in advance turns a daunting expansion into a short one.
These proofs justify the standard results that are then quoted freely in the Further Algebra topic: ∑r=12n(n+1)\sum r = \tfrac{1}{2}n(n+1)∑r=21​n(n+1), ∑r2=16n(n+1)(2n+1)\sum r^2 = \tfrac{1}{6}n(n+1)(2n+1)∑r2=61​n(n+1)(2n+1) and ∑r3=14n2(n+1)2=(∑r)2\sum r^3 = \tfrac{1}{4}n^2(n+1)^2 = \big(\sum r\big)^2∑r3=41​n2(n+1)2=(∑r)2. It is worth noticing the elegant fact that the sum of the first nnn cubes equals the square of the sum of the first nnn integers; this is exactly the kind of surprising identity that induction confirms cleanly even when it gives no hint as to why it is true.
A subtle point of rigour is that the inductive step must reach the target formula identically, not merely to a number that happens to match for small kkk. Always finish by writing the right-hand side in the same functional form as P(n)P(n)P(n) but with nnn replaced by k+1k+1k+1, and say so; that sentence is what earns the AO2 marks and demonstrates that you have proved the general implication rather than checked another case.
∑r=1nr=12n(n+1)\sum_{r=1}^{n} r = \tfrac{1}{2}n(n+1)r=1∑n​r=21​n(n+1)

Sum of the first n integers

The arithmetic-series result, provable by induction.

∑r=1nr2=16n(n+1)(2n+1)\sum_{r=1}^{n} r^2 = \tfrac{1}{6}n(n+1)(2n+1)r=1∑n​r2=61​n(n+1)(2n+1)

Sum of the first n squares

Proved by induction; quoted throughout Further Algebra.

∑r=1nr3=14n2(n+1)2=(∑r=1nr)2\sum_{r=1}^{n} r^3 = \tfrac{1}{4}n^2(n+1)^2 = \left(\sum_{r=1}^{n} r\right)^2r=1∑n​r3=41​n2(n+1)2=(r=1∑n​r)2

Sum of the first n cubes

The sum of the first nnn cubes is the square of the sum of the first nnn integers.

Worked example

Sum of squares by induction

Prove by induction that ∑r=1nr2=16n(n+1)(2n+1)\displaystyle\sum_{r=1}^{n} r^2 = \tfrac{1}{6}n(n+1)(2n+1)r=1∑n​r2=61​n(n+1)(2n+1) for all integers n≥1n\geq 1n≥1.

  1. 01Base case

    For n=1n=1n=1: LHS =12=1=1^2=1=12=1; RHS =16(1)(2)(3)=1=\tfrac{1}{6}(1)(2)(3)=1=61​(1)(2)(3)=1. So P(1)P(1)P(1) holds.

  2. 02Hypothesis

    Assume ∑r=1kr2=16k(k+1)(2k+1)\sum_{r=1}^{k} r^2 = \tfrac{1}{6}k(k+1)(2k+1)∑r=1k​r2=61​k(k+1)(2k+1).

  3. 03Add the next term

    ∑r=1k+1r2=16k(k+1)(2k+1)+(k+1)2=16(k+1)[k(2k+1)+6(k+1)]\sum_{r=1}^{k+1} r^2 = \tfrac{1}{6}k(k+1)(2k+1) + (k+1)^2 = \tfrac{1}{6}(k+1)\big[k(2k+1) + 6(k+1)\big]∑r=1k+1​r2=61​k(k+1)(2k+1)+(k+1)2=61​(k+1)[k(2k+1)+6(k+1)].

    16(k+1)[ k(2k+1)+6(k+1) ]\tfrac{1}{6}(k+1)\big[\,k(2k+1)+6(k+1)\,\big]61​(k+1)[k(2k+1)+6(k+1)]
  4. 04Factorise the bracket

    k(2k+1)+6(k+1)=2k2+7k+6=(k+2)(2k+3)k(2k+1)+6(k+1) = 2k^2+7k+6 = (k+2)(2k+3)k(2k+1)+6(k+1)=2k2+7k+6=(k+2)(2k+3), so the sum is 16(k+1)(k+2)(2k+3)\tfrac{1}{6}(k+1)(k+2)(2k+3)61​(k+1)(k+2)(2k+3).

  5. 05Match the target

    This is 16(k+1)((k+1)+1)(2(k+1)+1)\tfrac{1}{6}(k+1)\big((k+1)+1\big)\big(2(k+1)+1\big)61​(k+1)((k+1)+1)(2(k+1)+1) — exactly P(k+1)P(k+1)P(k+1). By induction the result holds for all n≥1n\geq 1n≥1.

Result: ∑r=1nr2=16n(n+1)(2n+1)\displaystyle\sum_{r=1}^{n} r^2 = \tfrac{1}{6}n(n+1)(2n+1)r=1∑n​r2=61​n(n+1)(2n+1) for all integers n≥1n\geq 1n≥1.

Exam focus

  • Show the addition of the (k+1)(k+1)(k+1)th term as a separate, visible line; the method mark depends on the examiner seeing ∑r=1k+1=∑r=1k+f(k+1)\sum_{r=1}^{k+1} = \sum_{r=1}^{k} + f(k+1)∑r=1k+1​=∑r=1k​+f(k+1).
  • Present the final expression factorised into exactly the form of the target with n=k+1n=k+1n=k+1, and state that this completes the step.

Typical mistakes

  • Expanding everything into an unfactorised polynomial and then being unable to recognise the target form; take the common factor out first.
  • Forgetting to add the (k+1)(k+1)(k+1)th term (or adding the wrong term f(k)f(k)f(k) again), so the step proves nothing.

Active revision

Prove by induction that ∑r=1nr(r+1)=13n(n+1)(n+2)\sum_{r=1}^{n} r(r+1) = \tfrac{1}{3}n(n+1)(n+2)∑r=1n​r(r+1)=31​n(n+1)(n+2) for all integers n≥1n\geq 1n≥1.

Active recall

Recall the key points — then reveal.

Sources: Further mathematics: AS and A level content (GCE subject content) (Department for Education)

§ 03

Induction for divisibility results#

●●●AdvancedLPAQA 7367 §3.1LPDfE Further Mathematics — Proof

Key points

A divisibility proof shows that some expression f(n)f(n)f(n) is a multiple of a fixed integer mmm for all nnn. The inductive hypothesis is written as f(k)=m tf(k) = m\,tf(k)=mt for some integer ttt (i.e. mmm divides f(k)f(k)f(k)). The step then examines f(k+1)f(k+1)f(k+1) and manipulates it until a factor of mmm is visible, usually by writing f(k+1)f(k+1)f(k+1) in terms of f(k)f(k)f(k).
The characteristic algebraic move is to form the difference or a suitable combination f(k+1)−a f(k)f(k+1) - a\,f(k)f(k+1)−af(k) and show it is a multiple of mmm; then f(k+1)=a f(k)+(multiple of m)f(k+1) = a\,f(k) + (\text{multiple of } m)f(k+1)=af(k)+(multiple of m), and since f(k)f(k)f(k) is a multiple of mmm by hypothesis, so is f(k+1)f(k+1)f(k+1). Choosing the multiplier aaa well is the whole art: it is picked so that the leading exponential or power terms cancel, leaving only multiples of mmm behind.
As a worked template, consider proving that 8∣32n−18 \mid 3^{2n} - 18∣32n−1. Here f(n)=32n−1=9n−1f(n)=3^{2n}-1 = 9^n - 1f(n)=32n−1=9n−1. Then f(k+1)=9k+1−1=9⋅9k−1=9(9k−1)+8=9 f(k)+8f(k+1) = 9^{k+1} - 1 = 9\cdot 9^k - 1 = 9(9^k - 1) + 8 = 9\,f(k) + 8f(k+1)=9k+1−1=9⋅9k−1=9(9k−1)+8=9f(k)+8. The term 9 f(k)9\,f(k)9f(k) is a multiple of 888 by the hypothesis, and 888 is obviously a multiple of 888, so f(k+1)f(k+1)f(k+1) is a multiple of 888. This single line — expressing f(k+1)f(k+1)f(k+1) as a known multiple plus an obvious multiple — is the heart of every divisibility induction.
Rigour requires that the integer ttt be named and its integer status respected: writing f(k)=8tf(k) = 8tf(k)=8t with t∈Zt\in\mathbb{Z}t∈Z makes it legitimate to conclude f(k+1)=8(9t+1)f(k+1) = 8(9t+1)f(k+1)=8(9t+1) with 9t+19t+19t+1 an integer, hence a genuine multiple of 888. Do not leave the divisor implicit; state it, and finish by observing that the base case f(1)f(1)f(1) is divisible by mmm so the chain is grounded.
f(k+1)=a f(k)+m c⇒m∣f(k+1)f(k+1) = a\,f(k) + m\,c \quad\Rightarrow\quad m \mid f(k+1)f(k+1)=af(k)+mc⇒m∣f(k+1)

The divisibility step

If f(k)f(k)f(k) is a multiple of mmm and f(k+1)−a f(k)f(k+1)-a\,f(k)f(k+1)−af(k) is a multiple of mmm, then f(k+1)f(k+1)f(k+1) is a multiple of mmm.

Worked example

Divisibility by 8

Prove by induction that 32n−13^{2n} - 132n−1 is divisible by 888 for all integers n≥1n\geq 1n≥1.

  1. 01Base case

    For n=1n=1n=1: 32−1=9−1=8=8×13^{2} - 1 = 9-1 = 8 = 8\times 132−1=9−1=8=8×1, which is divisible by 888.

  2. 02Hypothesis

    Assume 32k−1=8t3^{2k} - 1 = 8t32k−1=8t for some integer ttt; equivalently 9k−1=8t9^k - 1 = 8t9k−1=8t.

  3. 03Consider n = k+1

    32(k+1)−1=9k+1−1=9⋅9k−1=9 (9k−1)+8=9(8t)+83^{2(k+1)} - 1 = 9^{k+1} - 1 = 9\cdot 9^{k} - 1 = 9\,(9^{k} - 1) + 8 = 9(8t) + 832(k+1)−1=9k+1−1=9⋅9k−1=9(9k−1)+8=9(8t)+8.

    9k+1−1=9 (9k−1)+89^{k+1}-1 = 9\,(9^{k}-1) + 89k+1−1=9(9k−1)+8
  4. 04Extract the factor 8

    =8(9t)+8=8(9t+1)= 8(9t) + 8 = 8(9t + 1)=8(9t)+8=8(9t+1), and 9t+19t+19t+1 is an integer, so 32(k+1)−13^{2(k+1)}-132(k+1)−1 is divisible by 888.

  5. 05Conclusion

    The base case holds and P(k)⇒P(k+1)P(k)\Rightarrow P(k+1)P(k)⇒P(k+1), so by induction 8∣32n−18 \mid 3^{2n}-18∣32n−1 for all n≥1n\geq 1n≥1.

Result: 32n−13^{2n} - 132n−1 is divisible by 888 for every integer n≥1n\geq 1n≥1.

Exam focus

  • Express f(k+1)f(k+1)f(k+1) explicitly in terms of f(k)f(k)f(k); the method mark is for producing the relation f(k+1)=a f(k)+(multiple of m)f(k+1)=a\,f(k)+(\text{multiple of }m)f(k+1)=af(k)+(multiple of m).
  • Name the divisor and keep it symbolic (f(k)=mtf(k)=mtf(k)=mt, ttt an integer) so the final factor of mmm is unambiguous.

Typical mistakes

  • Verifying divisibility for a few values of nnn and calling it a proof — that establishes nothing in general.
  • Manipulating f(k+1)f(k+1)f(k+1) without ever using the hypothesis, so the multiple of mmm from f(k)f(k)f(k) is never brought in.

Active revision

Prove by induction that 32n+2−8n−93^{2n+2} - 8n - 932n+2−8n−9 is divisible by 646464 for all integers n≥1n\geq 1n≥1.

Active recall

Recall the key points — then reveal.

Sources: AQA A-level Further Mathematics 7367 specification (AQA)

§ 04

Induction for matrix powers and recurrences#

●●●AdvancedLPAQA 7367 §3.1LPDfE Further Mathematics — Proof

The three-part structure of an inductive proof

Base case, inductive step, conclusionGraph, Base case: P(1) true → Conclusion: all n, Step: P(k) => P(k+1) → Conclusion: all nBase case: P(1)trueStep: P(k) = >P(k+1)Conclusion: alln
Fig. 2Every induction proof flows through these three stages; the conclusion cites both the base case and the implication.

Key points

Induction also proves closed formulae for the nnnth power of a matrix, Mn\mathbf{M}^nMn. The inductive step uses Mk+1=Mk M\mathbf{M}^{k+1} = \mathbf{M}^{k}\,\mathbf{M}Mk+1=MkM (or M Mk\mathbf{M}\,\mathbf{M}^{k}MMk): substitute the assumed form of Mk\mathbf{M}^{k}Mk and multiply by one further copy of M\mathbf{M}M, then simplify to the target form with k+1k+1k+1 in place of nnn. Because matrix multiplication is not commutative, keep the copies of M\mathbf{M}M in the correct order.
A clean example is the shear-type matrix M=(1101)\mathbf{M} = \begin{pmatrix} 1 & 1 \\ 0 & 1 \end{pmatrix}M=(10​11​), for which the claim is Mn=(1n01)\mathbf{M}^n = \begin{pmatrix} 1 & n \\ 0 & 1 \end{pmatrix}Mn=(10​n1​). Multiplying the assumed Mk\mathbf{M}^kMk by M\mathbf{M}M gives (1k01)(1101)=(1k+101)\begin{pmatrix} 1 & k \\ 0 & 1 \end{pmatrix}\begin{pmatrix} 1 & 1 \\ 0 & 1 \end{pmatrix} = \begin{pmatrix} 1 & k+1 \\ 0 & 1 \end{pmatrix}(10​k1​)(10​11​)=(10​k+11​), exactly the target. This connects directly to the Matrices topic, where M\mathbf{M}M represents a horizontal shear and Mn\mathbf{M}^nMn the shear repeated nnn times.
The same structure handles sequences defined by a recurrence relation. If un+1u_{n+1}un+1​ is defined in terms of unu_nun​ and a closed formula for unu_nun​ is conjectured, induction verifies it: assume the formula at n=kn=kn=k, substitute into the recurrence to compute uk+1u_{k+1}uk+1​, and show the result matches the formula at n=k+1n=k+1n=k+1. This is how one confirms, for instance, that a first-order linear recurrence has the closed form suggested by computing a few terms.
In every matrix or recurrence induction the base case must be checked for the actual matrix or first term (compute M1\mathbf{M}^1M1 or u1u_1u1​), not merely asserted; a formula that is off by a constant will still pass a lazy step but will fail the honest base case. This is one reason the base case is never a formality — it is the anchor that a correct step alone cannot supply.
Mk+1=Mk M\mathbf{M}^{k+1} = \mathbf{M}^{k}\,\mathbf{M}Mk+1=MkM

The matrix-power step

Peel off one factor of M\mathbf{M}M; substitute the assumed Mk\mathbf{M}^{k}Mk and multiply. Order matters — matrices do not commute.

Worked example

The nth power of a shear matrix

Given M=(1101)\mathbf{M} = \begin{pmatrix} 1 & 1 \\ 0 & 1 \end{pmatrix}M=(10​11​), prove by induction that Mn=(1n01)\mathbf{M}^{n} = \begin{pmatrix} 1 & n \\ 0 & 1 \end{pmatrix}Mn=(10​n1​) for all integers n≥1n\geq 1n≥1.

  1. 01Base case

    For n=1n=1n=1, M1=(1101)\mathbf{M}^{1} = \begin{pmatrix} 1 & 1 \\ 0 & 1 \end{pmatrix}M1=(10​11​), which matches the formula with n=1n=1n=1.

  2. 02Hypothesis

    Assume Mk=(1k01)\mathbf{M}^{k} = \begin{pmatrix} 1 & k \\ 0 & 1 \end{pmatrix}Mk=(10​k1​).

  3. 03Inductive step

    Mk+1=MkM=(1k01)(1101)=(1k+101)\mathbf{M}^{k+1} = \mathbf{M}^{k}\mathbf{M} = \begin{pmatrix} 1 & k \\ 0 & 1 \end{pmatrix}\begin{pmatrix} 1 & 1 \\ 0 & 1 \end{pmatrix} = \begin{pmatrix} 1 & k+1 \\ 0 & 1 \end{pmatrix}Mk+1=MkM=(10​k1​)(10​11​)=(10​k+11​).

    Mk+1=(1k+101)\mathbf{M}^{k+1} = \begin{pmatrix} 1 & k+1 \\ 0 & 1 \end{pmatrix}Mk+1=(10​k+11​)
  4. 04Conclusion

    This is the formula with n=k+1n=k+1n=k+1. Since the base case holds and P(k)⇒P(k+1)P(k)\Rightarrow P(k+1)P(k)⇒P(k+1), by induction Mn=(1n01)\mathbf{M}^{n} = \begin{pmatrix} 1 & n \\ 0 & 1 \end{pmatrix}Mn=(10​n1​) for all n≥1n\geq 1n≥1.

Result: Mn=(1n01)\mathbf{M}^{n} = \begin{pmatrix} 1 & n \\ 0 & 1 \end{pmatrix}Mn=(10​n1​), the nnn-fold shear.

Exam focus

  • Write Mk+1=MkM\mathbf{M}^{k+1}=\mathbf{M}^{k}\mathbf{M}Mk+1=MkM and perform the multiplication in full; the marks are for the correct product, in the correct order.
  • For a recurrence, substitute the assumed closed form into the defining relation and simplify to the n=k+1n=k+1n=k+1 form — do not just quote the answer.

Typical mistakes

  • Multiplying the matrices in the wrong order, or slipping into treating them as commuting numbers.
  • Skipping the base case computation M1\mathbf{M}^1M1 or u1u_1u1​, which is where an off-by-one error would surface.

Active revision

The matrix A=(3002)\mathbf{A} = \begin{pmatrix} 3 & 0 \\ 0 & 2 \end{pmatrix}A=(30​02​). Conjecture a formula for An\mathbf{A}^nAn and prove it by induction.

Active recall

Recall the key points — then reveal.

Sources: Further mathematics: AS and A level content (GCE subject content) (Department for Education)

§ 05

Induction within the wider proof landscape#

●●○StandardLPAQA 7367 §3.1LPDfE Further Mathematics — Proof

Key points

Induction sits alongside the proof methods already met in A-Level Mathematics, and part of the skill is choosing the right one. Direct proof (deduction) chains implications from the hypotheses to the conclusion; proof by exhaustion checks a claim over a finite, complete set of cases; disproof by counter-example refutes a universal claim with a single instance; and proof by contradiction assumes the negation and derives an impossibility (recap). Induction is specifically for statements indexed by an integer, where each case builds on the previous — it is the wrong tool for a one-off algebraic identity, which a direct proof handles better.
It helps to know induction's limits. It proves statements of the form 'for all integers n≥n0n\geq n_0n≥n0​'; it cannot prove a statement about the real numbers as a whole, nor a claim with no natural integer index. When a claim genuinely depends on an earlier case that is not simply the immediately preceding one, a stronger form — 'strong' or 'complete' induction, where you assume P(1),…,P(k)P(1),\dots,P(k)P(1),…,P(k) all hold — is used; the base and conclusion are structured identically, only the hypothesis is broader.
A famous cautionary example shows why the base case matters: the 'proof' that all horses are the same colour has a flawless-looking inductive step but a broken link at n=1→2n=1\to 2n=1→2, and its false conclusion traces exactly to that gap. The lesson is that a slick step never compensates for an unverified or non-existent base, and that each implication in the chain — including the very first — must genuinely hold.
Finally, Further Mathematics rewards writing proofs as connected English-and-symbol arguments, not as isolated lines of algebra. State what you are assuming, flag where the hypothesis is used, and end with a sentence of conclusion. Because AO2 (reasoning and proof) carries more weight in Further Mathematics than in the single Mathematics A-Level, the difference between a complete and an incomplete argument is often the difference between full and partial marks.
Strong induction:[P(1)∧⋯∧P(k)]⇒P(k+1)\text{Strong induction:}\quad \big[P(1)\wedge\dots\wedge P(k)\big]\Rightarrow P(k+1)Strong induction:[P(1)∧⋯∧P(k)]⇒P(k+1)

Strong (complete) induction

The hypothesis assumes all cases up to kkk; useful when P(k+1)P(k+1)P(k+1) depends on more than the immediately preceding case.

Worked example

Choosing a method: disproof by counter-example

Decide whether the statement 'for all integers n≥1n\geq 1n≥1, n2+n+41n^2 + n + 41n2+n+41 is prime' is true, justifying your decision.

  1. 01Recognise the claim type

    This is a universal claim over the integers. A single counter-example would disprove it; no amount of confirming cases would prove it, so induction is not the tool for a false claim.

  2. 02Search for a counter-example

    The expression is prime for many small nnn, which is a trap. Try n=40n=40n=40: 402+40+41=1600+40+41=168140^2 + 40 + 41 = 1600 + 40 + 41 = 1681402+40+41=1600+40+41=1681.

  3. 03Show it is composite

    1681=4121681 = 41^21681=412, since 41×41=168141\times 41 = 168141×41=1681. So n=40n=40n=40 gives a value with the factor 414141, which is not prime.

  4. 04Conclude

    The single counter-example n=40n=40n=40 disproves the universal statement, so the claim is false.

Result: The statement is false; n=40n=40n=40 gives 1681=4121681 = 41^21681=412, which is not prime.

Exam focus

  • Be able to justify why induction (rather than a direct proof or a counter-example) is the appropriate method for a given claim.
  • For a disproof, a single well-chosen counter-example with the arithmetic shown is a complete answer — do not attempt to 'prove it false' in general.

Typical mistakes

  • Reaching for induction on a statement with no integer index, where a direct algebraic proof is intended.
  • Believing that a convincing inductive step alone secures the result — the base case and the first implication are essential.

Active revision

Decide, with a brief justification, which proof method is most appropriate for each: (a) n3−nn^3 - nn3−n is divisible by 666 for all integers n≥1n\geq 1n≥1; (b) the statement 'if nnn is prime then nnn is odd'; (c) 2\sqrt{2}2​ is irrational.

Active recall

Recall the key points — then reveal.

Sources: AQA A-level Further Mathematics 7367 specification (AQA)

Contents

Section -- / 05

    • 01The principle of mathematical induction◐
    • 02Induction for the summation of series◐
    • 03Induction for divisibility results●
    • 04Induction for matrix powers and recurrences●
    • 05Induction within the wider proof landscape◐

0/5 Read

From notes into training

Proof

Reinforce this topic with matching tasks from the question bank.

~16
min
3
Competencies
Practise

References & sources

Sources

Department for Education

  • Further mathematics: AS and A level content (GCE subject content)

AQA

  • AQA A-level Further Mathematics 7367 specification

Next topic

Complex numbers

EuraStudy·Notes T·01·MMXXVI

Carry on to the next topic — your learning path is kept.