Skip to main content
ExamExplained
NSW · Maths Extension 2
Maths Extension 2 study scene
§-Syllabus dot point
NSWMaths Extension 2Syllabus dot point

How does mathematical induction prove statements about all positive integers, including inequalities, divisibility, and results needing more than one base case?

Prove results involving sums, divisibility and inequalities for all integers using the principle of mathematical induction

A focused answer to the HSC Maths Extension 2 dot point on further mathematical induction. The base case, induction hypothesis and inductive step, applied to series, divisibility and inequalities, plus strong induction with multiple base cases, induction in less obvious settings, and the ways an inductive proof can quietly fail, with rigorous worked examples.

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 structure of an induction proof
  3. Induction on a series
  4. Induction on divisibility
  5. Induction on inequalities
  6. Strong induction and multiple base cases
  7. Induction in less obvious settings
  8. Choosing and verifying the base case
  9. Where ordinary induction fails
  10. How exam questions ask about induction

What this dot point is asking

NESA wants you to prove statements that hold for all integers from some starting value using mathematical induction. Extension 2 pushes well beyond simple series sums to harder divisibility results, inequalities needing an auxiliary bound, and statements where the step at n=k+1n = k + 1 depends on more than just n=kn = k, so that one base case and the usual hypothesis are not enough. The marks are concentrated in the inductive step and in choosing the right form of induction for the problem.

The structure of an induction proof

To prove that P(n)P(n) holds for all integers nn0n \ge n_0:

  1. Base case: verify P(n0)P(n_0) directly.
  2. Inductive hypothesis: assume P(k)P(k) is true for some arbitrary integer kn0k \ge n_0.
  3. Inductive step: using the hypothesis, prove P(k+1)P(k+1).
  4. Conclusion: by the principle of mathematical induction, P(n)P(n) holds for all integers nn0n \ge n_0.

The logic is a chain. The base case starts it; the inductive step lets each true statement force the next, so truth propagates from n0n_0 to every later integer.

Induction on a series

Prove that r=1nr2=n(n+1)(2n+1)6\displaystyle\sum_{r=1}^{n} r^2 = \frac{n(n+1)(2n+1)}{6} for all integers n1n \ge 1.

Base case (n=1n = 1): the left side is 12=11^2 = 1; the right side is 1236=1\dfrac{1 \cdot 2 \cdot 3}{6} = 1. Equal, so P(1)P(1) holds.

Inductive step: assume r=1kr2=k(k+1)(2k+1)6\displaystyle\sum_{r=1}^{k} r^2 = \dfrac{k(k+1)(2k+1)}{6}. Then

r=1k+1r2=k(k+1)(2k+1)6+(k+1)2=(k+1)[k(2k+1)+6(k+1)]6.\sum_{r=1}^{k+1} r^2 = \frac{k(k+1)(2k+1)}{6} + (k+1)^2 = \frac{(k+1)\left[k(2k+1) + 6(k+1)\right]}{6}.

The bracket is 2k2+7k+6=(k+2)(2k+3)2k^2 + 7k + 6 = (k+2)(2k+3), so

r=1k+1r2=(k+1)(k+2)(2k+3)6,\sum_{r=1}^{k+1} r^2 = \frac{(k+1)(k+2)(2k+3)}{6},

which is exactly the formula with n=k+1n = k+1. The result follows by induction.

Induction on divisibility

Prove that 7n17^n - 1 is divisible by 66 for all integers n1n \ge 1.

Base case (n=1n = 1): 711=67^1 - 1 = 6, which is divisible by 66.

Inductive step: assume 7k1=6M7^k - 1 = 6M for some integer MM, so 7k=6M+17^k = 6M + 1. Then

7k+11=77k1=7(6M+1)1=42M+71=42M+6=6(7M+1).7^{k+1} - 1 = 7 \cdot 7^k - 1 = 7(6M + 1) - 1 = 42M + 7 - 1 = 42M + 6 = 6(7M + 1).

Since 7M+17M + 1 is an integer, 7k+117^{k+1} - 1 is divisible by 66. The result follows by induction.

For a divisibility result, the reliable tactic is to write the hypothesis as an equation f(k)=dMf(k) = dM, then express f(k+1)f(k + 1) in terms of f(k)f(k) so the assumption substitutes in, leaving an expression that is visibly a multiple of dd. Adding and subtracting a convenient multiple of f(k)f(k) is often the move that exposes the factor of dd.

Induction on inequalities

Prove that 2n>n22^n > n^2 for all integers n5n \ge 5.

Base case (n=5n = 5): 25=322^5 = 32 and 52=255^2 = 25, and 32>2532 > 25, so P(5)P(5) holds.

Inductive step: assume 2k>k22^k > k^2 for some k5k \ge 5. Then 2k+1=22k>2k22^{k+1} = 2 \cdot 2^k > 2k^2. It suffices to show 2k2(k+1)22k^2 \ge (k+1)^2 for k5k \ge 5. Now

2k2(k+1)2=2k2k22k1=k22k1=(k1)22,2k^2 - (k+1)^2 = 2k^2 - k^2 - 2k - 1 = k^2 - 2k - 1 = (k-1)^2 - 2,

and for k5k \ge 5 this is (k1)22162=14>0(k-1)^2 - 2 \ge 16 - 2 = 14 > 0. Hence 2k+1>2k2(k+1)22^{k+1} > 2k^2 \ge (k+1)^2, completing the step.

The pattern for inequalities is a two-step chain: use the hypothesis to bound the k+1k + 1 expression, then strengthen with a separate algebra inequality (rearranged to "0\ge 0" and checked over the range) to reach the target. A single substitution is never enough, which is why so many inequality questions come in two parts: part (i) proves the helper inequality, part (ii) feeds it into the step.

Strong induction and multiple base cases

Ordinary induction lets the step use only the immediately preceding case P(k)P(k). But some statements at n=k+1n = k + 1 genuinely depend on several earlier cases. The fix is strong induction: in the step you assume P(j)P(j) is true for every jj with n0jkn_0 \le j \le k, not just j=kj = k, and you supply as many base cases as the recurrence reaches back.

The signpost is a recurrence (or argument) that refers to more than one earlier term. A two-term recurrence such as an=5an16an2a_{n} = 5a_{n-1} - 6a_{n-2} uses both an1a_{n-1} and an2a_{n-2}, so to compute ak+1a_{k+1} you need both P(k)P(k) and P(k1)P(k-1) available, and you must verify two base cases (n=1n = 1 and n=2n = 2) so that the very first inductive step has both predecessors to stand on. Skip a base case and the chain has a broken link near the start, even if the algebra of the step is perfect.

A second classic use is structural rather than a sequence: "every integer n2n \ge 2 can be written as a product of primes." Here, when nn is composite you write n=abn = ab with 2a,b<n2 \le a, b < n, and you need the result for both aa and bb, which are smaller than nn but not necessarily equal to n1n - 1. Only strong induction, assuming the claim for all integers from 22 up to kk, lets you invoke it for aa and bb.

Induction in less obvious settings

Not every induction is a sum, a divisibility, or a clean inequality. The same machinery proves:

  • Closed forms for recurrences: given a1a_1 and a rule an+1=f(an)a_{n+1} = f(a_n), prove a direct formula an=g(n)a_n = g(n). The engine of the step is the recurrence, not algebraic simplification.
  • Properties preserved by a process: some feature holds after each step of an iteration (for example, a quantity stays an integer, or stays positive, at every stage).
  • Statements proved by going down, not up. Occasionally it is cleaner to assume the result fails and take a smallest counterexample, then construct a smaller one, a contradiction. This "least counterexample" argument is logically equivalent to strong induction and is sometimes the neatest route.

In every case the four-part skeleton survives; what changes is what powers the step.

Choosing and verifying the base case

The base case must be the smallest value of nn for which the statement is claimed, not a habitual n=1n = 1. If the result only holds from n=5n = 5, then P(5)P(5) is the base case and earlier values may genuinely be false. Verify it by direct calculation of both sides and state clearly that the inequality or equality holds. A correct inductive step with the wrong base case proves nothing, because the chain of implications has no valid starting link. For strong induction, "the base case" becomes "the base cases": supply one for each term the recurrence reaches back to.

Where ordinary induction fails

It is worth knowing the ways an inductive argument can be invalid even when it looks convincing:

  • The step secretly needs an earlier case. If proving P(k+1)P(k + 1) used P(k1)P(k - 1) but you only assumed P(k)P(k), the step is unjustified; switch to strong induction and add the missing base case.
  • Too few base cases for the recurrence. A two-term recurrence with only one base case leaves the second term unproved, so the chain never gets going.
  • The hypothesis is not actually used. If your step would work without assuming P(k)P(k), you have a direct proof, not an induction, and more often a hidden gap.
  • An induction "proof" of a false statement. The notorious "all horses are the same colour" argument fails precisely because its step from k=1k = 1 to k=2k = 2 relies on an overlap of two groups that does not exist; the lesson is that the step must hold for every kn0k \ge n_0, including the very first, with no special small cases quietly assumed.
  • Strengthening needed but missing (inequalities). Using the hypothesis gives a bound, not the target; without the separate strengthening inequality the step is incomplete.

How exam questions ask about induction

  • "Prove by mathematical induction that =\sum \dots = \dots": a series identity; split off the last term, substitute the hypothesis, simplify to the k+1k + 1 form.
  • "Prove that E(n)E(n) is divisible by dd": write the hypothesis as E(k)=dME(k) = dM and finish the step with an explicit factor of dd.
  • "Prove that E(n)>F(n)E(n) > F(n) for nn0n \ge n_0": use-then-strengthen; verify the strengthening inequality over the range.
  • "A sequence is defined by a1=a_1 = \dots, an=an1an2a_{n} = \dots a_{n-1} \dots a_{n-2}. Prove that an=a_n = \dots": a two-term recurrence; this is strong induction with two base cases.
  • "Show that every integer n2n \ge 2 is a product of primes": strong induction, assuming the claim for all smaller integers.
  • "(i) Show ... (ii) Hence prove by induction ...": part (i) is the helper you must invoke by name inside the step of part (ii).

Edge cases and what-ifs

  • How many base cases? Match the number of base cases to how far the recurrence reaches back: a two-term recurrence needs two, a three-term recurrence needs three. Verify each by direct substitution.
  • Strong versus ordinary. If the step at k+1k + 1 only ever uses P(k)P(k), ordinary induction suffices. Reach for strong induction exactly when the step needs earlier cases (a multi-term recurrence, or splitting n=abn = ab into smaller factors).
  • Base case not at n=1n = 1. When the claim starts at n=0n = 0, n=2n = 2 or higher, the base case (or cases) sit there. Everything else is unchanged.
  • Strengthening fails near the threshold. For an inequality, the helper inequality sometimes only holds from a slightly larger kk than the base case; if so, raise the base case to where both the base check and the strengthening hold.
  • A least-counterexample alternative. A strong induction can always be recast as "suppose the smallest failing nn exists, then build a smaller one"; use whichever the question's structure makes cleaner.

Exam-style practice questions

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

HSC 20213 marksProve by mathematical induction that n!>2nn! > 2^n for integers n9n \ge 9.
Show worked answer →

Let P(n)P(n) be the statement n!>2nn! > 2^n.

Base case n=9n = 9: LHS =9!=362880= 9! = 362880 and RHS =29=512= 2^9 = 512. Since 362880>512362880 > 512, P(9)P(9) is true.

Inductive step: assume P(k)P(k) holds for some integer k9k \ge 9, that is k!>2kk! > 2^k. Show (k+1)!>2k+1(k + 1)! > 2^{k + 1}.

(k+1)!=(k+1)k!>(k+1)2k(k + 1)! = (k + 1)\cdot k! > (k + 1)\cdot 2^k (using k!>2kk! > 2^k).

Since k9k \ge 9, k+110>2k + 1 \ge 10 > 2, so (k+1)2k>22k=2k+1(k + 1)\cdot 2^k > 2\cdot 2^k = 2^{k + 1}.

Therefore (k+1)!>2k+1(k + 1)! > 2^{k + 1}, so P(k+1)P(k + 1) is true.

By the principle of mathematical induction, n!>2nn! > 2^n for all integers n9n \ge 9.

Mark notes: 1 mark for the base case n=9n = 9, 1 mark for using the assumption to write (k+1)!>(k+1)2k(k + 1)! > (k + 1)2^k, 1 mark for completing the inequality and stating the conclusion.

HSC 20234 marks(i) Show that k22k30k^2 - 2k - 3 \ge 0 for k3k \ge 3. (ii) Hence, or otherwise, use mathematical induction to prove that 2nn222^n \ge n^2 - 2 for all integers n3n \ge 3.
Show worked answer →

Part (i). Factor: k22k3=(k3)(k+1)k^2 - 2k - 3 = (k - 3)(k + 1). For k3k \ge 3, both factors are non-negative, so (k3)(k+1)0(k - 3)(k + 1) \ge 0. Hence k22k30k^2 - 2k - 3 \ge 0 for k3k \ge 3.

Part (ii). Let P(n)P(n) be 2nn222^n \ge n^2 - 2.

Base case n=3n = 3: LHS =8= 8, RHS =7= 7. Since 878 \ge 7, P(3)P(3) is true.

Inductive step: assume 2kk222^k \ge k^2 - 2 for some k3k \ge 3. Then 2k+1=22k2(k22)=2k242^{k + 1} = 2\cdot 2^k \ge 2(k^2 - 2) = 2k^2 - 4.

We want 2k+1(k+1)22=k2+2k12^{k + 1} \ge (k + 1)^2 - 2 = k^2 + 2k - 1. Compare: 2k24(k2+2k1)=k22k302k^2 - 4 - (k^2 + 2k - 1) = k^2 - 2k - 3 \ge 0 for k3k \ge 3 by part (i).

So 2k24k2+2k12k^2 - 4 \ge k^2 + 2k - 1, giving 2k+1(k+1)222^{k + 1} \ge (k + 1)^2 - 2. Thus P(k+1)P(k + 1) holds.

By induction, 2nn222^n \ge n^2 - 2 for all integers n3n \ge 3.

Mark notes: 1 mark for part (i); then 1 mark for the base case, 1 mark for using the assumption to get 2k+12k242^{k+1} \ge 2k^2 - 4, 1 mark for invoking part (i) to finish.

HSC 20243 marksUse mathematical induction to prove that (2nn)<22n2\binom{2n}{n} < 2^{2n - 2} for all integers n5n \ge 5, where (2nn)=(2n)!n!n!\binom{2n}{n} = \frac{(2n)!}{n!\,n!}.
Show worked answer →

Let P(n)P(n) be the statement (2nn)<22n2\binom{2n}{n} < 2^{2n - 2}.

Base case n=5n = 5: (105)=252\binom{10}{5} = 252 and 22(5)2=28=2562^{2(5) - 2} = 2^8 = 256. Since 252<256252 < 256, P(5)P(5) is true.

Inductive step: assume (2kk)<22k2\binom{2k}{k} < 2^{2k - 2} for some k5k \ge 5. Consider (2k+2k+1)\binom{2k + 2}{k + 1}.

Relate it to (2kk)\binom{2k}{k} using (2k+2)!=(2k+2)(2k+1)(2k)!(2k + 2)! = (2k + 2)(2k + 1)(2k)! and (k+1)!=(k+1)k!(k + 1)! = (k + 1)k!:

(2k+2k+1)=(2k+2)(2k+1)(k+1)2(2kk)=2(2k+1)k+1(2kk)\binom{2k + 2}{k + 1} = \frac{(2k + 2)(2k + 1)}{(k + 1)^2}\binom{2k}{k} = \frac{2(2k + 1)}{k + 1}\binom{2k}{k}.

Now 2(2k+1)k+1=4k+2k+1<4\frac{2(2k + 1)}{k + 1} = \frac{4k + 2}{k + 1} < 4 because 4k+2<4k+44k + 2 < 4k + 4. Using the assumption:

(2k+2k+1)<4(2kk)<422k2=22k=22(k+1)2\binom{2k + 2}{k + 1} < 4\binom{2k}{k} < 4\cdot 2^{2k - 2} = 2^{2k} = 2^{2(k + 1) - 2}.

So P(k+1)P(k + 1) holds. By induction, (2nn)<22n2\binom{2n}{n} < 2^{2n - 2} for all integers n5n \ge 5.

Mark notes: 1 mark for the base case n=5n = 5, 1 mark for expressing (2k+2k+1)\binom{2k+2}{k+1} in terms of (2kk)\binom{2k}{k}, 1 mark for bounding the ratio by 44 and completing the step.

ExamExplained