Skip to main content
SingaporeFurther MathsSyllabus dot point

How does proof by mathematical induction establish a statement for all positive integers, and how do we write a watertight induction argument?

Prove statements about sums, divisibility and inequalities for all positive integers using the principle of mathematical induction

A focused answer to the H2 Further Mathematics outcome on proof by mathematical induction. The principle, the base case and inductive step, and worked proofs for sums, divisibility and inequalities with the markers each step earns.

Generated by Claude Opus 4.811 min answer

Reviewed by: AI editorial process; not yet individually human-reviewed

Have a quick question? Jump to the Q&A page

Jump to a section
  1. What this dot point is asking
  2. The answer
  3. Examples in context
  4. Try this

What this dot point is asking

SEAB wants you to prove that a statement PnP_n holds for every positive integer nn using the principle of mathematical induction. You must verify a base case, assume the statement for an arbitrary kk, and deduce it for k+1k+1, then conclude that it holds for all nn. The three families you must be able to handle are summation formulae, divisibility results, and inequalities.

The answer

The principle of mathematical induction

Let PnP_n be a statement depending on a positive integer nn. The principle says: if

  1. P1P_1 is true (the base case), and
  2. for every positive integer kk, the truth of PkP_k implies the truth of Pk+1P_{k+1} (the inductive step),

then PnP_n is true for all positive integers nn. The intuition is a chain of dominoes: the base case knocks over the first, and the inductive step guarantees each domino topples the next.

The structure every proof must show

A complete induction proof has four written parts:

  • Define PnP_n precisely as a statement (not just "the formula").
  • Base case: verify P1P_1 (or whatever the smallest relevant integer is) by direct computation.
  • Inductive step: state the inductive hypothesis "assume PkP_k is true for some positive integer kk", then derive Pk+1P_{k+1} from it.
  • Conclusion: a sentence of the form "since P1P_1 is true and PkPk+1P_k \Rightarrow P_{k+1}, by the principle of mathematical induction PnP_n is true for all positive integers nn."

Summation proofs

For a result such as r=1nur=S(n)\sum_{r=1}^{n} u_r = \mathrm{S}(n), the inductive step splits off the last term:

r=1k+1ur=r=1kur=S(k) by hypothesis+uk+1=S(k)+uk+1.\sum_{r=1}^{k+1} u_r = \underbrace{\sum_{r=1}^{k} u_r}_{= \,\mathrm{S}(k)\text{ by hypothesis}} + u_{k+1} = \mathrm{S}(k) + u_{k+1}.

You then do algebra to show this equals S(k+1)\mathrm{S}(k+1), the formula with nn replaced by k+1k+1. Knowing the target S(k+1)\mathrm{S}(k+1) in advance tells you what to factor towards.

Divisibility proofs

For "f(n)f(n) is divisible by dd", write the hypothesis as f(k)=dmf(k) = d\,m for some integer mm. In the step, manipulate f(k+1)f(k+1) to expose a copy of f(k)f(k) (or dmd\,m) plus a multiple of dd, then factor out dd leaving an integer.

Inequality proofs

For "f(n)>g(n)f(n) > g(n)" (or \geq), use the hypothesis f(k)>g(k)f(k) > g(k) and a chain of inequalities. The key move is often: f(k+1)=f(k)+(something)>g(k)+(something)g(k+1)f(k+1) = f(k) + (\text{something}) > g(k) + (\text{something}) \geq g(k+1), where the last step needs a small side-argument.

Examples in context

Example 1. Deriving a result you will reuse. The sum r=1nr2=16n(n+1)(2n+1)\sum_{r=1}^{n} r^2 = \tfrac{1}{6}n(n+1)(2n+1) is proved by induction and then used freely in the summation-of-series work. Induction is how the standard results are placed on a rigorous footing before they become tools.

Example 2. Validating a recurrence's closed form. When a recurrence relation is solved and a closed formula is proposed for unu_n, induction is the natural way to prove that the formula satisfies both the initial condition and the recurrence, confirming it for all nn.

Try this

Q1. State the two things you must establish in a proof by mathematical induction. [2 marks]

  • Cue. A true base case (P1P_1), and the implication that PkP_k true implies Pk+1P_{k+1} true for all positive integers kk.

Q2. In proving r=1nr=12n(n+1)\sum_{r=1}^{n} r = \tfrac{1}{2}n(n+1), write the expression for r=1k+1r\sum_{r=1}^{k+1} r using the inductive hypothesis. [2 marks]

  • Cue. r=1k+1r=12k(k+1)+(k+1)\sum_{r=1}^{k+1} r = \tfrac{1}{2}k(k+1) + (k+1), which factors to 12(k+1)(k+2)\tfrac{1}{2}(k+1)(k+2).

Q3. When proving 7n17^n - 1 is divisible by 66, how should you write the inductive hypothesis? [1 mark]

  • Cue. Assume 7k1=6m7^k - 1 = 6m for some integer mm, so 7k=6m+17^k = 6m + 1.

Exam-style practice questions

Practice questions written in the style of SEAB exam questions on this dot point, with worked answer explainers. The year tag is the paper they imitate, not the source.

Original6 marksProve by mathematical induction that r=1nr(r+1)=13n(n+1)(n+2)\displaystyle\sum_{r=1}^{n} r(r+1) = \frac{1}{3}n(n+1)(n+2) for all positive integers nn.
Show worked answer →

Let PnP_n be the statement r=1nr(r+1)=13n(n+1)(n+2)\sum_{r=1}^{n} r(r+1) = \tfrac{1}{3}n(n+1)(n+2).

Base case
For n=1n = 1: LHS =1×2=2= 1 \times 2 = 2; RHS =13(1)(2)(3)=2= \tfrac{1}{3}(1)(2)(3) = 2. So P1P_1 is true.
Inductive step
Assume PkP_k is true for some positive integer kk, that is r=1kr(r+1)=13k(k+1)(k+2)\sum_{r=1}^{k} r(r+1) = \tfrac{1}{3}k(k+1)(k+2). Then
r=1k+1r(r+1)=13k(k+1)(k+2)+(k+1)(k+2).\sum_{r=1}^{k+1} r(r+1) = \tfrac{1}{3}k(k+1)(k+2) + (k+1)(k+2).

Factor out (k+1)(k+2)(k+1)(k+2):
=(k+1)(k+2)[13k+1]=(k+1)(k+2)13(k+3)=13(k+1)(k+2)(k+3).= (k+1)(k+2)\left[\tfrac{1}{3}k + 1\right] = (k+1)(k+2)\cdot\tfrac{1}{3}(k+3) = \tfrac{1}{3}(k+1)(k+2)(k+3).

This is exactly Pk+1P_{k+1} (replace nn by k+1k+1 in the formula). So PkP_k true implies Pk+1P_{k+1} true.
Conclusion
Since P1P_1 is true and PkPk+1P_k \Rightarrow P_{k+1}, by the principle of mathematical induction PnP_n is true for all positive integers nn.

Markers reward a clear statement of PnP_n, a verified base case, the correct use of the inductive hypothesis, the algebra to reach Pk+1P_{k+1}, and a proper concluding sentence invoking induction.

Original6 marksProve by mathematical induction that 9n19^n - 1 is divisible by 88 for all positive integers nn.
Show worked answer →

Let PnP_n be the statement that 9n19^n - 1 is divisible by 88, that is 9n1=8m9^n - 1 = 8m for some integer mm.

Base case
For n=1n = 1: 911=8=8×19^1 - 1 = 8 = 8 \times 1, divisible by 88. So P1P_1 is true.
Inductive step
Assume PkP_k: 9k1=8m9^k - 1 = 8m for some integer mm, so 9k=8m+19^k = 8m + 1. Then
9k+11=99k1=9(8m+1)1=72m+91=72m+8=8(9m+1).9^{k+1} - 1 = 9 \cdot 9^k - 1 = 9(8m + 1) - 1 = 72m + 9 - 1 = 72m + 8 = 8(9m + 1).

Since 9m+19m + 1 is an integer, 9k+119^{k+1} - 1 is divisible by 88, which is Pk+1P_{k+1}.
Conclusion
P1P_1 is true and PkPk+1P_k \Rightarrow P_{k+1}, so by induction 9n19^n - 1 is divisible by 88 for all positive integers nn.

Markers reward writing the divisibility as 9k1=8m9^k - 1 = 8m, substituting 9k=8m+19^k = 8m + 1 into 9k+119^{k+1} - 1, factoring out 88 with an integer factor, and the concluding induction statement.

Related dot points