Why induction is needed at all
Check that 1 + 3 + 5 + … + (2n − 1) = n² for n = 1, 2, 3 and 4 and it works every time. That is evidence, not proof — there are infinitely many cases left and no amount of checking will finish them.
Mathematical induction is the tool that closes the gap. It proves a statement for every natural number by proving just two things: that it holds at the start, and that whenever it holds for one number it must hold for the next.
The standard picture is a row of dominoes. Knock the first one over, and show that any falling domino knocks over the one after it, and the whole infinite row goes down. Miss either half and nothing follows.
The two halves each carry marks, and each fails on its own
Without the basis, the induction step proves only "if it ever holds, it keeps holding" — and it might never hold. Without the inductive step, checking P(1) proves one case. Examiners routinely give a statement that is false to catch students who write the ritual without checking it, so do the basis honestly.
Writing an induction proof that gets full marks
The proof has a fixed shape and the marks are attached to its parts. Write the statement P(n) explicitly, do the basis, state the assumption in full, and in the inductive step aim deliberately at the expression you want to reach.
The single most useful habit: at the start of the inductive step, write down what P(k+1) claims, by substituting k+1 into the formula. That gives you a target, and the algebra then has somewhere to go.
Prove by induction that 1 + 2 + 3 + … + n = n(n + 1)/2 for all n ≥ 1.
- Basis. For n = 1 the left side is 1 and the right side is
1(2)/2 = 1. They agree, so P(1) is true.Always evaluate both sides separately. Writing "obviously true" earns nothing. - Hypothesis. Assume
1 + 2 + … + k = k(k + 1)/2for some k ≥ 1.This is an assumption, not a claim — say "assume", and name the k. - Target. P(k+1) claims that the sum to k+1 equals
(k + 1)(k + 2)/2.Substituting k+1 into the formula tells you exactly where the algebra must land. - Sum to k+1
= [1 + 2 + … + k] + (k + 1) = k(k+1)/2 + (k + 1), using the hypothesis on the bracket.This is the only place the hypothesis is used, and using it must be visible. - Factor out
(k + 1):(k + 1)[k/2 + 1] = (k + 1)(k + 2)/2, which is the target.Taking out the common factor is almost always the move that finishes an induction on a sum. - Conclusion. P(1) is true and P(k) ⟹ P(k+1), so by induction P(n) holds for all n ≥ 1. ∎The concluding sentence is a mark. Write it out every time.
Proved by induction for all n ≥ 1.
The binomial theorem
Expanding (a + b)² by hand is fine. (a + b)⁷ is not. The binomial theorem gives every term of the expansion directly, and its coefficients are the numbers in Pascal's triangle — which are exactly the ⁿCᵣ of the previous chapter, because choosing which brackets contribute a b is a combination problem.
Notice the pattern in the powers: they always total n. As the power of a falls from n to 0, the power of b rises from 0 to n, and there are n + 1 terms in all.
- n
- the power of the bracketa positive integer here
- r
- counts from 0so r = 0 gives the first term
- ⁿCᵣ
- the binomial coefficientrow n of Pascal’s triangle
Each entry is the sum of the two above it. Row n holds the coefficients of (a + b)n, and the same numbers answer "how many ways can r things be chosen from n" — the two chapters are one idea.
Finding one particular term
A full expansion is rarely wanted. The examinable skill is to reach into the middle of it and pull out one term — the term in x⁵, or the constant term, or the coefficient of x³ — without writing the rest.
The method: write the general term, simplify the power of x, set that power equal to what the question asks for, and solve for r. Then substitute that r back.
Find the term independent of x in the expansion of (2x + 1/x²)⁹.
- General term:
T_(r+1) = ⁹Cᵣ (2x)⁹⁻ʳ (1/x²)ʳ.Take a = 2x and b = x⁻², keeping the 2 inside the bracket where it belongs. - Collect the powers of x:
x⁹⁻ʳ × x⁻²ʳ = x⁹⁻³ʳ.Add the indices. This is the step that turns the question into an equation. - "Independent of x" means the power is zero:
9 − 3r = 0, sor = 3.A constant term is the term in x⁰. If r had come out fractional, no such term would exist — a valid answer. - Substitute r = 3:
⁹C₃ (2)⁶ = 84 × 64 = 5376.The 2⁶ comes from (2x)⁶ — forgetting to raise the coefficient 2 to its power is the usual error.
5376
Two facts worth carrying
Setting a = b = 1 in the theorem gives Σ ⁿCᵣ = 2ⁿ — the sum of any row of Pascal's triangle is a power of two, which also says a set of n elements has 2ⁿ subsets. And setting a = 1, b = −1 shows the alternating sum of a row is zero.
Before you leave this chapter
- Induction needs all four parts: basis, hypothesis, inductive step, conclusion.
- Write down what P(k+1) claims before starting the algebra — it gives the target.
- The hypothesis must be used visibly somewhere in the inductive step.
- (a + b)ⁿ has n + 1 terms; the powers of a and b always sum to n.
- T_(r+1) = ⁿCᵣ aⁿ⁻ʳ bʳ. To find a specific term, set the power of x equal to what is asked and solve for r.
The binomial series when the power is not a positive integer
The expansion of (1 + x)ⁿ stops after n + 1 terms only because ⁿCr eventually multiplies by zero. If n is negative or fractional that never happens, so the expansion continues forever — it becomes an infinite series.
An infinite series is only useful if it converges, and this one does so only when |x| < 1. That condition is not decoration: outside it the terms grow and the sum is meaningless. Stating the condition is almost always worth a mark on its own.
- n
- any rational numbernegative and fractional powers included
- |x| < 1
- the validity conditionwithout it the series does not converge
- a
- the constant termmust be factored out to reach the standard form
Expand (4 + x)^(1/2) in ascending powers of x up to the term in x², and state the values of x for which the expansion is valid.
- Factor out the 4: (4 + x)^(1/2) = 4^(1/2)(1 + x/4)^(1/2) = 2(1 + x/4)^(1/2).The series only applies to (1 + something)ⁿ, so the constant must come out first. This step is where most marks are lost.
- Apply the series with n = ½ and x replaced by x/4: 1 + ½(x/4) + [½(−½)/2](x/4)².Every occurrence of x in the formula becomes x/4, including inside the square.
- = 1 + x/8 − (1/8)(x²/16) = 1 + x/8 − x²/128.The third coefficient is ½ × (−½) ÷ 2 = −1/8, and (x/4)² = x²/16.
- Multiply by the 2: 2 + x/4 − x²/64.The factored constant must be brought back in — forgetting it is the other standard error.
- Valid for |x/4| < 1, that is |x| < 4.The condition applies to whatever replaced x in the standard form, so it scales with the factored constant.
2 + x/4 − x²/64, valid for |x| < 4
The validity condition scales too
For (1 + 3x)ⁿ the condition is |3x| < 1, so |x| < ⅓. For (4 + x)ⁿ it is |x/4| < 1, so |x| < 4. Quoting |x| < 1 regardless of what was substituted is a guaranteed lost mark, and it is the most frequent error in this topic after forgetting to factor out the constant.