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

How do we use induction to prove an inequality holds for every positive integer?

Prove inequalities involving an integer parameter nn using mathematical induction

A focused answer to the HSC Maths Extension 1 dot point on induction for inequalities. The four-part structure, the use-then-strengthen two-step that turns the hypothesis into the n = k + 1 inequality, the growth-comparison view, choosing the right base case, and fully worked proofs including 2^n greater than n squared, n factorial beating 2^n, and a sum inequality.

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

NESA wants you to use mathematical induction to prove that an inequality involving an integer parameter nn holds for every nn from some starting value onward. The four-part skeleton is identical to a series proof, but the inductive step is harder, because an inequality only gives you a bound, not an equation, so you cannot simply substitute and simplify. Instead you use the hypothesis to take one step, and then you have to close the gap to the target with a second, separate inequality. Getting that second step right, and checking it actually holds for your range of nn, is where the marks live.

The answer

The four-part structure

The structure is the same template as every induction, adapted to an inequality E(n)F(n)E(n) \le F(n) (or strict, or reversed) for all nn0n \ge n_0:

  1. Base case: verify the inequality directly at n=n0n = n_0, evaluating both sides.
  2. Inductive hypothesis: assume the inequality holds at n=kn = k (for some kn0k \ge n_0).
  3. Inductive step: use the hypothesis to derive the inequality at n=k+1n = k + 1.
  4. Conclusion: by the principle of mathematical induction, the inequality holds for all nn0n \ge n_0.

The use-then-strengthen two-step (the core technique)

The technique that makes inductive steps for inequalities work is a two-step chain: use the hypothesis to bound the k+1k + 1 expression, then strengthen that bound until it reaches the target. Concretely, to prove LHS(k+1)>RHS(k+1)\text{LHS}(k + 1) > \text{RHS}(k + 1):

  1. Use the hypothesis. Rewrite LHS(k+1)\text{LHS}(k + 1) in terms of LHS(k)\text{LHS}(k) (for example 2k+1=22k2^{k + 1} = 2 \cdot 2^k), then replace LHS(k)\text{LHS}(k) by the bound the hypothesis gives. This produces an intermediate expression GG with LHS(k+1)>G\text{LHS}(k + 1) > G.
  2. Strengthen to the target. Show separately that GRHS(k+1)G \ge \text{RHS}(k + 1). This is a pure algebra inequality with no induction in it; you usually rearrange it to "something 0\ge 0" and verify that for all kn0k \ge n_0.

Chaining the two gives LHS(k+1)>GRHS(k+1)\text{LHS}(k + 1) > G \ge \text{RHS}(k + 1), hence LHS(k+1)>RHS(k+1)\text{LHS}(k + 1) > \text{RHS}(k + 1). The art is choosing the intermediate GG so that both links hold; usually GG is "the hypothesis bound, scaled up the same way the LHS was".

The growth-comparison view

A useful way to see why the step works is to compare how fast each side grows. Write LHS(k+1)=LHS(k)+ΔL\text{LHS}(k + 1) = \text{LHS}(k) + \Delta_{\text{L}} and RHS(k+1)=RHS(k)+ΔR\text{RHS}(k + 1) = \text{RHS}(k) + \Delta_{\text{R}}, where the Δ\Deltas are the increments. The hypothesis says LHS(k)RHS(k)\text{LHS}(k) \ge \text{RHS}(k). If you can show the left side grows at least as fast, ΔLΔR\Delta_{\text{L}} \ge \Delta_{\text{R}}, then adding the two inequalities gives LHS(k+1)RHS(k+1)\text{LHS}(k + 1) \ge \text{RHS}(k + 1). For an exponential-versus-polynomial inequality the left side eventually grows much faster, which is exactly why the inequality holds once nn is large enough, and why these statements usually start at n=4n = 4 or n=5n = 5 rather than n=1n = 1.

Choosing the right base case

Many inequalities are simply false for small nn and only become true past a threshold. The base case must be the smallest value for which the claim is asserted, so always check the stated range. For 2n>n22^n > n^2 the inequality fails at n=2,3,4n = 2, 3, 4 (for instance 24=16<16=422^4 = 16 < 16 = 4^2 is not strict, and 23=8<92^3 = 8 < 9) and first holds at n=5n = 5, which is why the question says n5n \ge 5. Start the base case there.

Common patterns

  • Exponential beats polynomial: 2n>n22^n > n^2 for n5n \ge 5, 3n>n33^n > n^3 for n4n \ge 4. Step the exponential up by its base, then strengthen.
  • Factorial beats exponential: n!>2nn! > 2^n for n4n \ge 4. Stepping up multiplies the factorial by (k+1)(k + 1), which quickly dominates the doubling.
  • Sum or product inequalities: bounds on a running sum of fractions, or on a product. Split off the last term (as for series), apply the hypothesis, then strengthen.

A note on direction and strictness

Inequalities are fragile under algebra in a way equations are not. Multiplying both sides by a quantity preserves the direction only if that quantity is positive; multiply by a negative and the inequality flips. And a strict inequality (>>) does not automatically survive: if every step uses \ge, you only get \ge at the end. To keep strictness, make sure at least one link in the chain is genuinely strict (the "use" link is strict whenever the hypothesis is strict and you scale by a positive factor).

How exam questions ask about inequalities

  • "Prove by mathematical induction that E(n)>F(n)E(n) > F(n) for nn0n \ge n_0": the standard wording. The given n0n_0 is your base case.
  • "Prove that 2n>n22^n > n^2 for all integers n5n \ge 5": a named exponential-versus-polynomial inequality. Step up the exponential, then strengthen with a quadratic-positivity argument.
  • "Show that n!>2nn! > 2^n for n4n \ge 4": factorial versus exponential; the step multiplies by (k+1)(k + 1).
  • "Prove i=1n1i221n\sum_{i = 1}^{n} \frac{1}{i^2} \le 2 - \frac{1}{n}": a sum bound. Split off the last term, apply the hypothesis, then verify the remaining inequality.
  • "For what values of nn is E(n)>F(n)E(n) > F(n)? Prove your answer.": test small nn to find the threshold n0n_0, then prove it by induction from n0n_0.

Edge cases and what-ifs

  • Finding the threshold yourself. If the question does not give n0n_0, test small values until the inequality first holds, then prove it from there. State clearly which is the base case.
  • Non-strict base, strict elsewhere. A base case can be an equality (as in the sum inequality at n=1n = 1, where both sides equal 11). A \le claim is satisfied by equality, so that is fine; you only need strictness when the claim itself is strict.
  • The strengthening inequality fails near the threshold. Sometimes the pure-algebra inequality only holds from a slightly larger kk than the base case. If so, the base case must be raised to where both the base check and the strengthening hold. Always confirm the threshold of the strengthening step.
  • Reversed inequalities. For a "\le" or "<<" claim the method is the mirror image: bound above instead of below. The two-step chain still applies, with the inequalities pointing the other way.

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-style3 marksProve by mathematical induction that 3n>2n+13^n > 2 n + 1 for all integers n2n \ge 2.
Show worked answer →

Base (n=2n = 2): 32=93^2 = 9 and 2(2)+1=52(2) + 1 = 5. Since 9>59 > 5, the inequality holds.

Hypothesis: assume 3k>2k+13^k > 2 k + 1 for some integer k2k \ge 2.

Step: 3k+1=33k>3(2k+1)=6k+33^{k + 1} = 3 \cdot 3^k > 3(2 k + 1) = 6 k + 3 using the hypothesis.

Now 6k+3(2k+3)=2(k+1)+16 k + 3 \ge (2 k + 3) = 2(k + 1) + 1 since 6k+3(2k+3)=4k06 k + 3 - (2 k + 3) = 4 k \ge 0 for k2k \ge 2.

Hence 3k+1>2(k+1)+13^{k + 1} > 2(k + 1) + 1.

Conclusion: by mathematical induction, 3n>2n+13^n > 2 n + 1 for all integers n2n \ge 2.

HSC-style4 marksProve by mathematical induction that 2n>n22^n > n^2 for all integers n5n \ge 5.
Show worked answer →

Base (n=5n = 5): 25=322^5 = 32 and 52=255^2 = 25. Since 32>2532 > 25, the inequality holds.

Hypothesis: assume 2k>k22^k > k^2 for some integer k5k \ge 5.

Step: 2k+1=22k>2k22^{k + 1} = 2 \cdot 2^k > 2 k^2 using the hypothesis.

It suffices to show 2k2(k+1)22 k^2 \ge (k + 1)^2. Now 2k2(k+1)2=k22k12 k^2 - (k + 1)^2 = k^2 - 2 k - 1, which is 0\ge 0 when k1+22.41k \ge 1 + \sqrt{2} \approx 2.41.

Since k5k \ge 5, this holds, so 2k2(k+1)22 k^2 \ge (k + 1)^2 and therefore 2k+1>(k+1)22^{k + 1} > (k + 1)^2.

Conclusion: by mathematical induction, 2n>n22^n > n^2 for all integers n5n \ge 5.

ExamExplained