Skip to content
trace
Trace Tell
MathsWorked problem

Mathematical induction, without the leap of faith

Induction feels like cheating until you see what the inductive step is really doing. A worked Extension 1 proof, reasoned from the idea up.

12 June 2026 · 2 min read

Students often distrust induction. It looks like you assume the thing you are trying to prove. You do not. You assume it for one value and earn it for the next. Here is the idea, then a full worked proof.

The idea, in one sentence

If a statement is true for n=1n = 1, and being true for some n=kn = k forces it to be true for n=k+1n = k+1, then it topples like dominoes through every positive integer.

The base case tips the first domino. The inductive step guarantees each domino knocks over the next. Together they cover all of them.

The claim

Prove that for all integers n1n \ge 1:

1+2+3++n=n(n+1)21 + 2 + 3 + \cdots + n = \frac{n(n+1)}{2}

Step 1: base case

Check n=1n = 1. The left side is 11. The right side is 122=1\dfrac{1 \cdot 2}{2} = 1. They agree, so the statement holds for n=1n = 1.

Step 2: inductive step

Assume it holds for some n=kn = k. That is our one free assumption:

1+2++k=k(k+1)21 + 2 + \cdots + k = \frac{k(k+1)}{2}

Now show it must then hold for n=k+1n = k+1. Add the next term, k+1k+1, to both sides:

1+2++k+(k+1)=k(k+1)2+(k+1)1 + 2 + \cdots + k + (k+1) = \frac{k(k+1)}{2} + (k+1)

The reasoning is now pure algebra. Factor out (k+1)(k+1) on the right:

=(k+1)(k2+1)=(k+1)k+22=(k+1)(k+2)2= (k+1)\left(\frac{k}{2} + 1\right) = (k+1)\cdot\frac{k+2}{2} = \frac{(k+1)(k+2)}{2}

That is exactly the formula with k+1k+1 in place of nn. So truth at kk forces truth at k+1k+1.

Step 3: conclude

The statement is true for n=1n = 1, and truth at any kk forces truth at k+1k+1. By induction it holds for all integers n1n \ge 1.

The trace: notice we never assumed the final result. We assumed one case and did honest algebra to reach the next. Write the proof so a reader can see that distinction, and you will not lose marks for "circular reasoning".