Skip to main content
ExamExplained
TAS · Specialist Mathematics
Specialist Mathematics study scene
§-Syllabus dot point
TASSpecialist MathematicsSyllabus dot point

How can we prove a statement is true for every positive integer using induction?

Prove statements for all positive integers using the principle of mathematical induction.

The principle of mathematical induction, the base case and inductive step, and proofs for sums, divisibility and inequalities, with worked examples for TCE Mathematics Specialised Unit 3.

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

This dot point introduces the first formal proof technique of the course. Induction is the standard way to prove a statement that should hold for every positive integer, such as a formula for a sum, a divisibility fact, or an inequality. The logic is rigorous and the layout is expected to be precise, so examiners reward a clear, conventional structure.

The principle

The image is a line of dominoes: the base case tips the first one, and the inductive step guarantees that each falling domino tips the next, so they all fall.

Required layout

A complete induction proof should clearly state the proposition P(n)P(n), prove the base case, write down the inductive hypothesis explicitly, perform the inductive step ending at the P(k+1)P(k+1) statement, and finish with a concluding sentence invoking the principle of induction. Missing any of these costs marks even when the algebra is correct.

Divisibility proofs

For divisibility, the trick in the inductive step is to write the k+1k+1 expression in terms of the kk expression, so the inductive hypothesis can be substituted.

Inequality proofs

Inequalities use the same structure, but the inductive step adds or multiplies by a quantity rather than rearranging to an exact formula. State clearly each direction of inequality used.

Why this matters

Induction is the rigorous backbone for any result indexed by the positive integers, and the disciplined layout it demands carries over to all proof writing. Mastering the three proof types here, sums, divisibility and inequalities, covers the great majority of induction questions you will meet.

Exam-style practice questions

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

TCE 20246 marksUse mathematical induction to prove that 1×3+2×32+3×33++n×3n=34[(2n1)3n+1]1 \times 3 + 2 \times 3^2 + 3 \times 3^3 + \cdots + n \times 3^n = \dfrac{3}{4}\left[(2n - 1)3^n + 1\right] for n1n \ge 1.
Show worked answer →

Let P(n)P(n) be the statement that the sum equals 34[(2n1)3n+1]\dfrac{3}{4}\left[(2n - 1)3^n + 1\right].

Base case (n=1n = 1): the left side is 1×3=31 \times 3 = 3 and the right side is 34[(2(1)1)31+1]=34[3+1]=3\dfrac{3}{4}\left[(2(1) - 1)3^1 + 1\right] = \dfrac{3}{4}[3 + 1] = 3. So P(1)P(1) is true.

Inductive step: assume P(k)P(k) is true, so the sum to kk terms equals 34[(2k1)3k+1]\dfrac{3}{4}\left[(2k - 1)3^k + 1\right]. Add the (k+1)(k+1)th term, (k+1)3k+1(k + 1)3^{k+1}, to both sides. The new sum is 34[(2k1)3k+1]+(k+1)3k+1\dfrac{3}{4}\left[(2k - 1)3^k + 1\right] + (k + 1)3^{k+1}.

Write the 3k3^k term as 14(2k1)3k+1\dfrac{1}{4}(2k - 1)3^{k+1} and combine over 3k+13^{k+1}: 3k+1[2k14+(k+1)]=3k+16k+34=34(2k+1)3k+13^{k+1}\left[\dfrac{2k - 1}{4} + (k + 1)\right] = 3^{k+1}\cdot\dfrac{6k + 3}{4} = \dfrac{3}{4}(2k + 1)3^{k+1}. With the constant +34+\dfrac{3}{4} this is 34[(2(k+1)1)3k+1+1]\dfrac{3}{4}\left[(2(k+1) - 1)3^{k+1} + 1\right], which is P(k+1)P(k+1).

Since P(1)P(1) holds and P(k)P(k) implies P(k+1)P(k+1), by induction P(n)P(n) is true for all n1n \ge 1. Markers reward a correct base case, an explicit inductive assumption, and clean algebra reaching the target form.

TCE 20227 marksUse mathematical induction to prove that 1123+1234++1n(n+1)(n+2)=n(n+3)4(n+1)(n+2)\dfrac{1}{1\cdot 2\cdot 3} + \dfrac{1}{2\cdot 3\cdot 4} + \cdots + \dfrac{1}{n(n+1)(n+2)} = \dfrac{n(n+3)}{4(n+1)(n+2)} for n1n \ge 1.
Show worked answer →

Let P(n)P(n) be the given statement.

Base case (n=1n = 1): the left side is 1123=16\dfrac{1}{1\cdot 2\cdot 3} = \dfrac{1}{6} and the right side is 1×44×2×3=424=16\dfrac{1 \times 4}{4 \times 2 \times 3} = \dfrac{4}{24} = \dfrac{1}{6}. So P(1)P(1) is true.

Inductive step: assume P(k)P(k), so the sum to kk terms is k(k+3)4(k+1)(k+2)\dfrac{k(k + 3)}{4(k + 1)(k + 2)}. Add the next term 1(k+1)(k+2)(k+3)\dfrac{1}{(k + 1)(k + 2)(k + 3)}. Over the common denominator 4(k+1)(k+2)(k+3)4(k + 1)(k + 2)(k + 3) the numerator is k(k+3)2+4=k3+6k2+9k+4=(k+1)2(k+4)k(k + 3)^2 + 4 = k^3 + 6k^2 + 9k + 4 = (k + 1)^2(k + 4).

So the new sum is (k+1)(k+4)4(k+2)(k+3)=(k+1)((k+1)+3)4((k+1)+1)((k+1)+2)\dfrac{(k + 1)(k + 4)}{4(k + 2)(k + 3)} = \dfrac{(k + 1)\big((k + 1) + 3\big)}{4\big((k + 1) + 1\big)\big((k + 1) + 2\big)}, which is P(k+1)P(k+1).

By the principle of induction P(n)P(n) holds for all n1n \ge 1. The key step markers look for is factorising the cubic numerator to expose the (k+1)(k + 1) factor.

TCE 20236 marksUse mathematical induction to prove that 1221+2222+3223++n22n=2n+1(n22n+3)61^2\cdot 2^1 + 2^2\cdot 2^2 + 3^2\cdot 2^3 + \cdots + n^2\cdot 2^n = 2^{n+1}(n^2 - 2n + 3) - 6 for n1n \ge 1.
Show worked answer →

Let P(n)P(n) be the statement above.

Base case (n=1n = 1): the left side is 1221=21^2\cdot 2^1 = 2 and the right side is 22(12+3)6=4×26=22^2(1 - 2 + 3) - 6 = 4 \times 2 - 6 = 2. So P(1)P(1) is true.

Inductive step: assume P(k)P(k), so the sum is 2k+1(k22k+3)62^{k+1}(k^2 - 2k + 3) - 6. Add the (k+1)(k+1)th term (k+1)22k+1(k + 1)^2\cdot 2^{k+1}, giving a new sum 2k+1(k22k+3)6+(k+1)22k+12^{k+1}(k^2 - 2k + 3) - 6 + (k + 1)^2 2^{k+1}.

Factor out 2k+12^{k+1}: 2k+1[k22k+3+(k+1)2]6=2k+1[2k2+4]6=2k+2(k2+2)62^{k+1}\left[k^2 - 2k + 3 + (k + 1)^2\right] - 6 = 2^{k+1}\left[2k^2 + 4\right] - 6 = 2^{k+2}(k^2 + 2) - 6.

The target is 2k+2((k+1)22(k+1)+3)62^{k+2}\big((k+1)^2 - 2(k+1) + 3\big) - 6, and (k+1)22(k+1)+3=k2+2(k+1)^2 - 2(k+1) + 3 = k^2 + 2, matching exactly. So P(k+1)P(k+1) holds. By induction P(n)P(n) is true for all n1n \ge 1. Markers reward the base case, a stated assumption, and the algebra that collapses k22k+3+(k+1)2k^2 - 2k + 3 + (k+1)^2 to 2(k2+2)2(k^2 + 2).

ExamExplained