Study Guide

Proof by induction

CIE A-Level Further MathematicsΒ· Further Pure 1 Section 1.1: Proof by mathematical induction for positive integersΒ· 25 min read

1. Core Formal Structure of Inductionβ˜…β˜…β˜†β˜†β˜†β± 5 min

πŸ“˜ Definition

Principle of Mathematical Induction

If a statement P(n) is true for n=1, and the truth of P(k) implies the truth of P(k+1) for all positive integers k, then P(n) is true for all n ∈ β„•

πŸ“ Worked Example

Prove that the sum of the first n positive integers equals n(n+1)/2 using induction

  1. 1

    Step 1: Base Case. Test n=1: LHS = 1, RHS = 1(2)/2 = 1. P(1) is true.

  2. 2

    Step 2: Inductive Hypothesis. Assume P(k) is true:

  3. 3

    Step 3: Inductive Step. Add (k+1) to both sides: , which matches P(k+1)

  4. 4

    Step 4: Conclusion. Since P(1) is true, and P(k) true implies P(k+1) true, P(n) holds for all positive integers n.

βœ“ Quick check

Test your understanding of mark weight for induction steps

  1. Which step of a standard induction proof is worth the largest share of marks in a typical 9231 question?

    • Base case

    • Inductive hypothesis

    • Inductive step

    • Final conclusion

    Reveal answer
    Inductive step β€”

    The algebraic manipulation in the inductive step is usually worth 4-6 of the total 8-10 marks for a full induction question.

2. Induction for Summation Identitiesβ˜…β˜…β˜…β˜†β˜†β± 7 min

Summation proofs are the most frequently asked induction type in CIE 9231 Paper 1. The key rule is to isolate the (k+1)th term from the sum when moving from P(k) to P(k+1), then rearrange to match the required closed form.

βˆ‘r=1k+1f(r)=βˆ‘r=1kf(r)+f(k+1)\sum_{r=1}^{k+1} f(r) = \sum_{r=1}^{k} f(r) + f(k+1)
πŸ“ Worked Example

Prove that for all positive integers n

  1. 1

    Base case n=1: LHS = 1, RHS = 123/6 = 1, so P(1) holds.

  2. 2

    Inductive hypothesis: Assume

  3. 3

    Inductive step: Add to both sides:

  4. 4
    βˆ‘r=1k+1r2=k(k+1)(2k+1)6+(k+1)2\sum_{r=1}^{k+1} r^2 = \frac{k(k+1)(2k+1)}{6} + (k+1)^2
  5. 5
    =(k+1)6[2k2+k+6k+6]=(k+1)(k+2)(2k+3)6= \frac{(k+1)}{6} \left[ 2k^2 +k + 6k +6 \right] = \frac{(k+1)(k+2)(2k+3)}{6}
  6. 6

    This matches the required form for n=k+1, so P(k) β†’ P(k+1), followed by the standard universal conclusion.

Exam tip:

Always expand the target RHS for n=k+1 first, then work backwards from the LHS to match it, to avoid getting stuck on messy algebra.

3. Induction for Divisibility Proofsβ˜…β˜…β˜…β˜†β˜†β± 6 min

Divisibility proofs require you to show a given expression f(n) is exactly divisible by a fixed integer d for all positive n. The standard technique rewrites f(k+1) in terms of f(k) plus a multiple of d.

πŸ“˜ Definition

Divisibility Notation

The integer d divides f(n) exactly, with no remainder, so f(n) = d * m for some integer m.

πŸ“ Worked Example

Prove that is divisible by 6 for all positive integers n

  1. 1

    Base case n=1: , which is divisible by 6, so P(1) is true.

  2. 2

    Inductive hypothesis: Assume for some integer m.

  3. 3

    Inductive step: Rewrite

  4. 4
    =7Γ—(6m+1)βˆ’1=42m+6=6(7m+1)= 7 \times (6m +1) -1 = 42m + 6 = 6(7m +1)
  5. 5

    This is a clear multiple of 6, so P(k+1) holds, followed by the standard conclusion.

4. Induction for Matrix Power Identitiesβ˜…β˜…β˜…β˜…β˜†β± 7 min

Matrix induction proofs require you to prove that raising a given 2x2 or 3x3 matrix M to the power n produces a specified standard form matrix. The inductive step uses the identity .

πŸ“ Worked Example

Prove that for , for all positive integers n

  1. 1

    Base case n=1: , which matches the RHS with 2*1=2, so P(1) is true.

  2. 2

    Inductive hypothesis: Assume

  3. 3
    Mk+1=MkM=(12k01)(1201)M^{k+1} = M^k M = \begin{pmatrix} 1 & 2k \\ 0 & 1 \end{pmatrix} \begin{pmatrix} 1 & 2 \\ 0 & 1 \end{pmatrix}
  4. 4
    =(12(k+1)01)= \begin{pmatrix} 1 & 2(k+1) \\ 0 & 1 \end{pmatrix}
  5. 5

    This matches the required form for n=k+1, so P(k) β†’ P(k+1), followed by the standard conclusion.

5. Common Pitfalls

Wrong move:

Skipping the base case entirely to go straight to the inductive step

Why:

This creates a logical fallacy where you can prove false statements like 'all integers are equal', and you lose 2-3 easy marks

Correct move:

Always test n=1 (or the specified starting value) first, and state the result clearly.

Wrong move:

Writing 'assume P(n) is true' instead of 'assume P(k) is true'

Why:

This confuses the general variable with the specific fixed integer k used in the hypothesis, losing a communication mark

Correct move:

Explicitly define k as a positive integer for which P(k) is assumed true.

Wrong move:

Failing to explicitly state the final conclusion linking back to the induction principle

Why:

CIE mark schemes allocate a standalone 1 mark for this concluding statement, which is often missed by rushed students

Correct move:

End every proof with the standard line: 'Since P(1) is true, and P(k) true implies P(k+1) true, P(n) holds for all positive integers n'.

Wrong move:

In divisibility proofs, not defining the integer multiple (e.g. not stating where m is an integer)

Why:

Examiners will deduct marks for not justifying that the resulting expression is a whole multiple of d

Correct move:

Explicitly name the integer multiple variable and state it is an integer.

Wrong move:

In matrix induction, multiplying instead of

Why:

Matrix multiplication is not commutative, so this will produce an incorrect result for non-commuting matrices

Correct move:

Always write to match the inductive hypothesis structure.

6. Quick Reference Cheatsheet

Proof Type

Key Inductive Step Identity

Typical Mark Weight

Summation

6-7 marks

Divisibility

5-6 marks

Matrix Power

7-8 marks

Recurrence Relation

6-7 marks

When this came up on past exams

AI-estimated based on syllabus patterns β€” cross-check with official past papers for accuracy. Use only as revision-focus signals.

  • 2025 Β· 12

    Prove 7^n -1 is divisible by 6

  • 2024 Β· 11

    Prove summation of r(r+1)

  • 2023 Β· 13

    Prove 2x2 matrix power identity

What's Next

You have now mastered the core structure and 3 most common induction proof types that appear in CIE 9231 Further Pure 1 exams. To reinforce your skills, practice full past-style induction questions that combine multiple concepts, including inequalities and recurrence relation proofs, which are the next level of difficulty for this topic. You can also review related proof methods including proof by contradiction, another frequently tested topic in Further Pure 1, to build a full toolkit of formal proof techniques for your exam. Mastering induction will also support you when you work on sequences and series proofs later in the syllabus.