How does mathematical induction prove statements about all positive integers, including inequalities and divisibility results?
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 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
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 beyond simple series sums to harder divisibility results, inequalities, and cases requiring careful algebraic manipulation in the inductive step.
The structure of an induction proof
To prove that holds for all integers :
- Base case: verify directly.
- Inductive hypothesis: assume is true for some arbitrary integer .
- Inductive step: using the hypothesis, prove .
- Conclusion: by the principle of mathematical induction, holds for all integers .
The logic is a chain. The base case starts it; the inductive step lets each true statement force the next, so truth propagates from to every later integer.
Induction on a series
Prove that for all integers .
Base case (): the left side is ; the right side is . Equal, so holds.
Inductive step: assume . Then
The bracket is , so
which is exactly the formula with . The result follows by induction.
Induction on divisibility
Prove that is divisible by for all integers .
Base case (): , which is divisible by .
Inductive step: assume for some integer , so . Then
Since is an integer, is divisible by . The result follows by induction.
Induction on inequalities
Prove that for all integers .
Base case (): and , and , so holds.
Inductive step: assume for some . Then . It suffices to show for . Now
and for this is . Hence , completing the step.
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.
2021 HSC3 marksProve by mathematical induction that n! > 2^n, for integers n >= 9.Show worked answer →
Let P(n) be the statement n! > 2^n.
Base case n = 9: LHS = 9! = 362880 and RHS = 2^9 = 512. Since 362880 > 512, P(9) is true.
Inductive step: assume P(k) holds for some integer k >= 9, that is k! > 2^k. Show P(k + 1), i.e. (k + 1)! > 2^(k + 1).
(k + 1)! = (k + 1) . k! > (k + 1) . 2^k (using the assumption k! > 2^k).
Since k >= 9, we have k + 1 >= 10 > 2, so (k + 1) . 2^k > 2 . 2^k = 2^(k + 1).
Therefore (k + 1)! > 2^(k + 1), so P(k + 1) is true.
By the principle of mathematical induction, n! > 2^n for all integers n >= 9.
Mark notes: 1 mark for verifying the base case n = 9, 1 mark for using the assumption to write (k + 1)! > (k + 1) 2^k, 1 mark for completing the inequality and stating the conclusion.
2023 HSC4 marks(i) Show that k^2 - 2k - 3 >= 0 for k >= 3. (ii) Hence, or otherwise, use mathematical induction to prove that 2^n >= n^2 - 2, for all integers n >= 3.Show worked answer →
Part (i). Factor: k^2 - 2k - 3 = (k - 3)(k + 1). For k >= 3, both factors are non-negative, so (k - 3)(k + 1) >= 0. Hence k^2 - 2k - 3 >= 0 for k >= 3.
Part (ii). Let P(n) be 2^n >= n^2 - 2.
Base case n = 3: LHS = 2^3 = 8, RHS = 3^2 - 2 = 7. Since 8 >= 7, P(3) is true.
Inductive step: assume 2^k >= k^2 - 2 for some k >= 3. Then
2^(k + 1) = 2 . 2^k >= 2(k^2 - 2) = 2k^2 - 4.
We want 2^(k + 1) >= (k + 1)^2 - 2 = k^2 + 2k - 1. Compare:
2k^2 - 4 - (k^2 + 2k - 1) = k^2 - 2k - 3 >= 0 for k >= 3 by part (i).
So 2k^2 - 4 >= k^2 + 2k - 1, giving 2^(k + 1) >= (k + 1)^2 - 2. Thus P(k + 1) holds.
By induction, 2^n >= n^2 - 2 for all integers n >= 3.
Mark notes: 1 mark for part (i); then 1 mark for the base case, 1 mark for using the assumption to get 2^(k+1) >= 2k^2 - 4, 1 mark for invoking part (i) to finish the inductive step.
2024 HSC3 marksUse mathematical induction to prove that C(2n, n) < 2^(2n - 2), for all integers n >= 5, where C(2n, n) = (2n)!/(n! n!).Show worked answer →
Let P(n) be the statement C(2n, n) < 2^(2n - 2).
Base case n = 5: C(10, 5) = 252 and 2^(2(5) - 2) = 2^8 = 256. Since 252 < 256, P(5) is true.
Inductive step: assume C(2k, k) < 2^(2k - 2) for some k >= 5. Consider
C(2k + 2, k + 1) = (2k + 2)!/((k + 1)! (k + 1)!).
Relate it to C(2k, k): (2k + 2)! = (2k + 2)(2k + 1)(2k)! and (k + 1)! = (k + 1) k!, so
C(2k + 2, k + 1) = [(2k + 2)(2k + 1)] / [(k + 1)^2] . C(2k, k) = [2(2k + 1)/(k + 1)] . C(2k, k).
Now 2(2k + 1)/(k + 1) = (4k + 2)/(k + 1) < 4 because 4k + 2 < 4k + 4. Using the assumption:
C(2k + 2, k + 1) < 4 . C(2k, k) < 4 . 2^(2k - 2) = 2^2 . 2^(2k - 2) = 2^(2k) = 2^(2(k + 1) - 2).
So P(k + 1) holds. By induction, C(2n, n) < 2^(2n - 2) for all integers n >= 5.
Mark notes: 1 mark for the base case n = 5, 1 mark for expressing C(2k+2, k+1) in terms of C(2k, k), 1 mark for bounding the ratio by 4 and completing the step.