Skip to main content
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.

Generated by Claude Opus 4.79 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

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.

2024 TASC6 marksUse mathematical induction to prove that 1 x 3 + 2 x 3^2 + 3 x 3^3 + ... + n x 3^n = (3/4)[(2n - 1)3^n + 1] for n >= 1.
Show worked answer →

Let P(n) be the statement that the sum equals (3/4)[(2n - 1)3^n + 1].

  1. Base case (n = 1). Left side = 1 x 3 = 3. Right side = (3/4)[(2(1) - 1)3^1 + 1] = (3/4)[3 + 1] = 3. So P(1) is true.

  2. Inductive step. Assume P(k) is true: the sum to k terms = (3/4)[(2k - 1)3^k + 1].

  3. Add the (k + 1)th term, (k + 1)3^(k+1), to both sides. The new sum = (3/4)[(2k - 1)3^k + 1] + (k + 1)3^(k+1).

  4. Write the 3^k term as (1/4)(2k - 1)3^(k+1) and combine over 3^(k+1): 3^(k+1)[(2k - 1)/4 + (k + 1)] = 3^(k+1)(6k + 3)/4 = (3/4)(2k + 1)3^(k+1). With the constant +3/4 this is (3/4)[(2(k+1) - 1)3^(k+1) + 1], which is P(k + 1).

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

2022 TASC7 marksUse mathematical induction to prove that 1/(1.2.3) + 1/(2.3.4) + ... + 1/(n(n+1)(n+2)) = (n(n+3))/(4(n+1)(n+2)) for n >= 1.
Show worked answer →

Let P(n) be the given statement.

  1. Base case (n = 1). Left side = 1/(1.2.3) = 1/6. Right side = (1 x 4)/(4 x 2 x 3) = 4/24 = 1/6. So P(1) is true.

  2. Assume P(k): the sum to k terms = k(k + 3) / [4(k + 1)(k + 2)].

  3. Add the next term 1/[(k + 1)(k + 2)(k + 3)]. The new sum = k(k + 3)/[4(k + 1)(k + 2)] + 1/[(k + 1)(k + 2)(k + 3)].

  4. Use common denominator 4(k + 1)(k + 2)(k + 3): numerator = k(k + 3)^2 + 4 = k^3 + 6k^2 + 9k + 4 = (k + 1)^2(k + 4).

  5. So the sum = (k + 1)(k + 4)/[4(k + 2)(k + 3)] = (k + 1)((k + 1) + 3)/[4((k + 1) + 1)((k + 1) + 2)], which is P(k + 1).

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

2023 TASC6 marksUse mathematical induction to prove that 1^2 x 2^1 + 2^2 x 2^2 + 3^2 x 2^3 + ... + n^2 x 2^n = 2^(n+1)(n^2 - 2n + 3) - 6 for n >= 1.
Show worked answer →

Let P(n) be the statement above.

  1. Base case (n = 1). Left side = 1^2 x 2^1 = 2. Right side = 2^2(1 - 2 + 3) - 6 = 4 x 2 - 6 = 2. So P(1) is true.

  2. Assume P(k): the sum = 2^(k+1)(k^2 - 2k + 3) - 6.

  3. Add the (k + 1)th term (k + 1)^2 x 2^(k+1). New sum = 2^(k+1)(k^2 - 2k + 3) - 6 + (k + 1)^2 2^(k+1).

  4. Factor 2^(k+1): 2^(k+1)[k^2 - 2k + 3 + (k + 1)^2] - 6 = 2^(k+1)[2k^2 + 4] - 6 = 2^(k+2)[k^2 + 2] - 6.

  5. The target is 2^(k+2)((k+1)^2 - 2(k+1) + 3) - 6, and (k+1)^2 - 2(k+1) + 3 = k^2 + 2, matching exactly. So P(k + 1) holds.

  6. By induction P(n) is true for all n >= 1. Markers reward the base case, a stated assumption, and the algebra that collapses k^2 - 2k + 3 + (k+1)^2 to 2(k^2 + 2).