Mathematics: Analysis & Approaches · Topic 1: Number & algebra

Binomial theorem (HL emphasis)

Lesson 3

Binomial theorem (HL emphasis)

5 min read
AI Explain — Ask anything
AI Illustrate — Make it visual

Why This Matters

# Binomial Theorem (HL Emphasis) - Summary The binomial theorem provides a systematic method for expanding expressions of the form (a + b)ⁿ using binomial coefficients, expressed as ⁿCᵣ or through Pascal's triangle, where the general term is ⁿCᵣ · aⁿ⁻ʳ · bʳ. At HL level, students must master finding specific terms in expansions, working with rational and negative indices (for |x| < 1), and applying the theorem to approximate values and solve complex algebraic problems. This topic is consistently examined in Paper 2, often appearing as multi-step problems requiring coefficient identification, term manipulation, or integration with calculus and proof techniques.

Key Words to Know

01
Binomial — An algebraic expression that has exactly two terms, usually joined by addition or subtraction (e.g., x + y).
02
Expansion — The process of multiplying out all the terms in an expression like (a + b)ⁿ to remove the parentheses.
03
Coefficient — The numerical factor that multiplies a variable or a product of variables in an algebraic term (e.g., the '3' in 3x²).
04
Binomial Coefficient (ⁿCᵣ) — The number of ways to choose 'r' items from a set of 'n' items without regard to the order; it's the number in front of each term in a binomial expansion.
05
General Term (Tᵣ₊₁) — A formula (ⁿCᵣ) aⁿ⁻ᵣ bᵣ that allows you to find any specific term in a binomial expansion without having to expand the whole thing.
06
Pascal's Triangle — A triangular array of numbers where each number is the sum of the two numbers directly above it, providing an easy way to find binomial coefficients for small positive integer powers.
07
Infinite Series Expansion — A special form of the binomial theorem used when the power 'n' is not a positive integer, resulting in an expansion with infinitely many terms, valid only under certain conditions.
08
Condition for Validity (|x| < 1) — For the infinite binomial series (1+x)ⁿ, the expansion is only accurate if the absolute value of x is less than 1 (meaning x is between -1 and 1).

Core Concepts & Theory

The Binomial Theorem provides a formula for expanding expressions of the form $(a+b)^n$ where $n$ is a positive integer. The expansion is:

(a+b)n=r=0n(nr)anrbr=(n0)an+(n1)an1b+(n2)an2b2++(nn)bn(a+b)^n = \sum_{r=0}^{n} \binom{n}{r} a^{n-r}b^r = \binom{n}{0}a^n + \binom{n}{1}a^{n-1}b + \binom{n}{2}a^{n-2}b^2 + \cdots + \binom{n}{n}b^n

Binomial Coefficient: $\binom{n}{r} = \frac{n!}{r!(n-r)!}$ represents the number of ways to choose $r$ objects from $n$ objects. Also written as $^nC_r$ or $C(n,r)$.

Pascal's Triangle provides a visual method for finding binomial coefficients, where each entry equals the sum of the two entries above it.

General Term Formula: The $(r+1)^{\text{th}}$ term in the expansion of $(a+b)^n$ is: Tr+1=(nr)anrbrT_{r+1} = \binom{n}{r}a^{n-r}b^r

This formula is essential for finding specific terms without full expansion.

Key Properties:

  • $\binom{n}{0} = \binom{n}{n} = 1$
  • $\binom{n}{r} = \binom{n}{n-r}$ (symmetry property)
  • Sum of coefficients: $(1+1)^n = 2^n$

Memory Aid - COEFF: Choose coefficients, Order powers of first term (descending), Exponents of second term (ascending), Find specific terms, Factorials in calculations.

Extended applications at HL include finding coefficients of specific terms, approximations for large $n$, and connections to probability distributions.

Detailed Explanation with Real-World Examples

The binomial theorem appears throughout mathematics, science, and finance—not just abstract algebra!

Financial Applications: When calculating compound interest with small variations, $(1+r)^n$ expansions help approximate investment growth. For example, if interest rates fluctuate slightly, binomial expansions provide quick estimates without recalculating exact values.

Physics & Engineering: Binomial approximations simplify complex calculations. When $(1+x)^n$ where $|x| < 1$, we can approximate: $(1+x)^n \approx 1 + nx$ for small $x$. This appears in:

  • Relativity theory: time dilation calculations at low velocities
  • Optics: lens equations with small angle approximations
  • Error analysis: propagating measurement uncertainties

Probability Theory: The binomial coefficient $\binom{n}{r}$ counts outcomes in probability. If you flip a coin 10 times, $\binom{10}{3}$ gives the number of ways to get exactly 3 heads.

Analogy - The Ice Cream Parlor: Imagine choosing $r$ scoops from $n$ flavors where order doesn't matter—that's $\binom{n}{r}$. Now, if you want to know all possible combinations of vanilla (a) and chocolate (b) in different proportions, that's $(a+b)^n$!

Computer Science: Binomial coefficients optimize algorithms in combinatorial problems, network routing, and data compression.

Think of $(a+b)^3$ as distributing three multiplication operations: you choose 'a' or 'b' each time. The coefficient counts how many ways you get each combination (like $a^2b$ appearing 3 times: abb, bab, bba).

Worked Examples & Step-by-Step Solutions

Example 1: Find the coefficient of $x^5$ in the expansion of $(2x-3)^8$.

Solution: Using general term: $T_{r+1} = \binom{8}{r}(2x)^{8-r}(-3)^r$

For $x^5$ term, we need $(2x)^{8-r} = (2x)^5$, so $8-r=5 \Rightarrow r=3$

$T_4 = \binom{8}{3}(2x)^5(-3)^3$ $= \frac{8!}{3!5!} \times 32x^5 \times (-27)$ $= 56 \times 32 \times (-27) \times x^5$ $= -48384x^5$

Coefficient = -48384

Examiner note: Students often forget the negative sign or miscalculate powers of 2.


Example 2: In $(1+2x)^6$, find the term independent of $x$ in the expansion of $(1+2x)^6 \times (1-\frac{1}{x})^4$.

Solution: General terms:

  • From $(1+2x)^6$: $\binom{6}{r}(2x)^r$
  • From $(1-\frac{1}{x})^4$: $\binom{4}{s}(-\frac{1}{x})^s$

Combined term: $\binom{6}{r}\binom{4}{s}2^r(-1)^s x^{r-s}$

For constant term: $r-s=0 \Rightarrow r=s$

Possible values: $r=s=0,1,2,3,4$ (but $r \leq 6$, $s \leq 4$)

$\sum_{r=0}^{4} \binom{6}{r}\binom{4}{r}2^r(-1)^r$

$= 1-48+240-320+80 = -47$

Examiner note*: This multi-step problem tests coefficient identification across products—worth 6-7 marks.***

Common Exam Mistakes & How to Avoid Them

Mistake 1: Incorrect General Term Index Error: Using $T_r$ instead of $T_{r+1}$ Why it happens: Confusion betwee...

This section is locked

Cambridge Exam Technique & Mark Scheme Tips

Command Word Strategies:

"Find" or "Determine" (3-4 marks): Show clear working. State which term you're finding...

This section is locked

2 more sections locked

Upgrade to Starter to unlock all study notes, audio listening, and more.

Exam Tips

  • 1.Always identify 'a', 'b', and 'n' correctly at the start, paying close attention to any negative signs for 'b'.
  • 2.If asked for a specific term (e.g., the 6th term), remember to use r = (term number - 1) in the general term formula Tᵣ₊₁ = (ⁿCᵣ) aⁿ⁻ᵣ bᵣ.
  • 3.For HL, distinguish between positive integer 'n' (finite expansion, use ⁿCᵣ) and non-positive integer/fractional 'n' (infinite series expansion, remember |x| < 1).
  • 4.Practice using your calculator's nCr function to quickly find binomial coefficients, but also understand how to calculate them by hand.
  • 5.When 'a' or 'b' are expressions (e.g., 2x or -3y), use parentheses when substituting them into the formula to avoid power mistakes like (2x)² ≠ 2x².
Ask Aria anything!

Your AI academic advisor