Skip to main content
QLDSpecialist MathematicsSyllabus dot point

Topic 1: Proof by mathematical induction

Understand and use the principle of mathematical induction to prove results involving sums of series, divisibility statements and inequalities for all positive integers, structuring the base step and the inductive step correctly

A focused answer to the QCE Specialist Mathematics Unit 3 dot point on proof by mathematical induction. Covers the base step and inductive step structure, summation proofs, divisibility arguments and inequality proofs, with the precise wording QCAA markers reward and the inductive-hypothesis logic that earns full method marks.

Generated by Claude Opus 4.76 min answer

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

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

What this dot point is asking

QCAA wants you to prove a statement P(n)P(n) holds for every positive integer nn using the principle of mathematical induction. You must set out two distinct steps clearly, state the inductive hypothesis explicitly, and finish with a logical conclusion. Induction appears in IA2 and the external assessment, and the marks are awarded as much for structure and communication as for algebra.

The answer

The principle

The principle of mathematical induction says: if P(1)P(1) is true (the base step), and if for every integer k1k \geq 1 the truth of P(k)P(k) implies the truth of P(k+1)P(k+1) (the inductive step), then P(n)P(n) is true for all positive integers nn.

Think of an infinite line of dominoes. The base step knocks over the first one. The inductive step guarantees that each falling domino topples the next. Together they guarantee every domino falls.

The standard layout

Every induction proof should be written in four labelled parts.

  1. Base step. Show P(1)P(1) is true by direct substitution. State both sides and confirm they are equal.
  2. Inductive hypothesis. Assume P(k)P(k) is true for some integer k1k \geq 1. Write the statement P(k)P(k) in full.
  3. Inductive step. Using the hypothesis, prove P(k+1)P(k+1). This is the work: manipulate the left-hand side of P(k+1)P(k+1) so the assumed P(k)P(k) can be substituted in.
  4. Conclusion. State that since P(1)P(1) is true and P(k)P(k) true implies P(k+1)P(k+1) true, by the principle of mathematical induction P(n)P(n) is true for all positive integers nn.

Summation proofs

The most common type is a closed form for a sum. To prove

r=1nr=n(n+1)2,\sum_{r=1}^{n} r = \frac{n(n+1)}{2},

assume r=1kr=k(k+1)2\sum_{r=1}^{k} r = \frac{k(k+1)}{2}. For P(k+1)P(k+1) the left-hand side is the previous sum plus the new term (k+1)(k+1):

r=1k+1r=k(k+1)2+(k+1)=(k+1)(k2+1)=(k+1)(k+2)2.\sum_{r=1}^{k+1} r = \frac{k(k+1)}{2} + (k+1) = (k+1)\left(\frac{k}{2}+1\right) = \frac{(k+1)(k+2)}{2}.

This is exactly the formula with nn replaced by k+1k+1, so P(k+1)P(k+1) holds. The key move is always to peel off the last term and substitute the hypothesis for the rest.

Divisibility proofs

To prove df(n)d \mid f(n) for all nn, write f(k)f(k) as a multiple of dd in the hypothesis, then express f(k+1)f(k+1) in terms of f(k)f(k). For example, to show 3(4n1)3 \mid (4^n - 1), assume 4k1=3m4^k - 1 = 3m for some integer mm. Then

4k+11=44k1=4(4k1)+3=4(3m)+3=3(4m+1).4^{k+1} - 1 = 4 \cdot 4^k - 1 = 4(4^k - 1) + 3 = 4(3m) + 3 = 3(4m + 1).

Since 4m+14m+1 is an integer, 4k+114^{k+1}-1 is divisible by 33. The technique is to add and subtract to manufacture a copy of f(k)f(k).

Inequality proofs

For inequalities such as 2n>n22^n > n^2 for n5n \geq 5, the base step uses n=5n = 5 (not n=1n=1, because the claim fails for small nn). State the restricted starting value. In the inductive step you typically chain inequalities: start from 2k+1=22k2^{k+1} = 2 \cdot 2^k, apply the hypothesis 2k>k22^k > k^2, then show 2k2(k+1)22k^2 \geq (k+1)^2 for the relevant kk. Always justify each inequality you use.

Exam-style practice questions

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

2023 QCAA5 marksThe sum of a geometric progression with n terms, where the first term is 1 and the common ratio is r, is given by S_n = (1 - r^n) / (1 - r). Prove that this rule is true using mathematical induction by completing the steps of the proof as indicated. a) Initial statement. b) Inductive step (assuming the rule is true for n = k). c) Conclusion.
Show worked answer →

a) Initial statement [1 mark]: Let n = 1. LHS = the sum of one term = 1. RHS = (1 - r^1)/(1 - r) = (1 - r)/(1 - r) = 1. LHS = RHS, so the rule is true for n = 1.

b) Inductive step [3 marks]: Assume the rule holds for n = k, i.e. 1 + r + r^2 + ... + r^(k-1) = (1 - r^k)/(1 - r).
Required to prove S_(k+1) = (1 - r^(k+1))/(1 - r). The (k+1)th sum is S_k plus the next term r^k:
S_(k+1) = (1 - r^k)/(1 - r) + r^k
= (1 - r^k + r^k(1 - r))/(1 - r)
= (1 - r^k + r^k - r^(k+1))/(1 - r)
= (1 - r^(k+1))/(1 - r).
This is the rule with n = k + 1, so the result holds for n = k + 1.

c) Conclusion [1 mark]: The rule is true for n = 1, and its truth for n = k implies its truth for n = k + 1. By the principle of mathematical induction, the rule is true for all positive integers n.