You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
The binomial expansion allows us to expand expressions of the form (a + b)^n where n is a positive integer. This is a key topic in Edexcel A-Level Mathematics (9MA0) and links algebra to combinatorics.
| Term | Meaning |
|---|---|
| Binomial | An expression with exactly two terms, e.g. (a + b) |
| Binomial expansion | The expanded form of (a + b)^n |
| nCr (or "n choose r") | The binomial coefficient: n! / (r!(n-r)!) |
| Pascal's triangle | A triangular array where each entry is the sum of the two above it |
| n! (n factorial) | n x (n-1) x (n-2) x ... x 2 x 1; also 0! = 1 |
Each row gives the coefficients for expanding (a + b)^n:
| n | Coefficients |
|---|---|
| 0 | 1 |
| 1 | 1 1 |
| 2 | 1 2 1 |
| 3 | 1 3 3 1 |
| 4 | 1 4 6 4 1 |
| 5 | 1 5 10 10 5 1 |
| 6 | 1 6 15 20 15 6 1 |
(a + b)^n = ∑ (r = 0 to n) nCr x a^(n-r) x b^r
Written out:
(a + b)^n = nC0 x a^n + nC1 x a^(n-1) x b + nC2 x a^(n-2) x b² + ... + nCn x b^n
The formula for the binomial coefficient is:
nCr = n! / (r!(n - r)!)
Expand (x + y)^4.
Using Pascal's row for n = 4: 1, 4, 6, 4, 1
(x + y)^4 = x^4 + 4x³y + 6x²y² + 4xy³ + y^4
Expand (2x + 3)³.
Using Pascal's row for n = 3: 1, 3, 3, 1
= 1(2x)³ + 3(2x)²(3) + 3(2x)(3²) + 1(3³)
= 8x³ + 3(4x²)(3) + 3(2x)(9) + 27
= 8x³ + 36x² + 54x + 27
Expand (x - 2)^5.
Treat as (x + (-2))^5. Row for n = 5: 1, 5, 10, 10, 5, 1
= x^5 + 5x^4(-2) + 10x³(-2)² + 10x²(-2)³ + 5x(-2)^4 + (-2)^5
= x^5 - 10x^4 + 40x³ - 80x² + 80x - 32
For larger n, Pascal's triangle becomes impractical. Use the nCr formula or calculator button instead.
nCr = n! / (r!(n-r)!)
Examples:
Shortcut: nCr = n x (n-1) x ... x (n-r+1) / r!
Find the coefficient of x³ in the expansion of (1 + x)^10.
The general term is 10Cr x 1^(10-r) x x^r = 10Cr x x^r
For x³, we need r = 3:
10C3 = (10 x 9 x 8) / (3 x 2 x 1) = 720/6 = 120
Find the coefficient of x^4 in the expansion of (3 + 2x)^7.
General term: 7Cr x 3^(7-r) x (2x)^r = 7Cr x 3^(7-r) x 2^r x x^r
For x^4, r = 4:
7C4 x 3³ x 2^4 = 35 x 27 x 16 = 15120
The (r + 1)th term of (a + b)^n is:
T(r+1) = nCr x a^(n-r) x b^r
Find the 4th term in the expansion of (2x - 3y)^6.
The 4th term has r = 3:
T(4) = 6C3 x (2x)³ x (-3y)³
= 20 x 8x³ x (-27y³)
= 20 x 8 x (-27) x x³y³
= -4320x³y³
Find the term independent of x in the expansion of (x + 2/x)^6.
General term: 6Cr x x^(6-r) x (2/x)^r = 6Cr x 2^r x x^(6-r) x x^(-r) = 6Cr x 2^r x x^(6-2r)
For the term independent of x: 6 - 2r = 0, so r = 3
T(4) = 6C3 x 2³ = 20 x 8 = 160
| Property | Statement |
|---|---|
| Symmetry | nCr = nC(n-r) |
| Sum of coefficients | Sum of all nCr (r = 0 to n) = 2^n |
| First and last | nC0 = nCn = 1 |
| Recurrence | nCr = (n-1)C(r-1) + (n-1)Cr |
Find the sum of the binomial coefficients in the expansion of (a + b)^12.
Sum = 2^12 = 4096
(This is obtained by setting a = b = 1 in the expansion.)
| Tip | Detail |
|---|---|
| Signs | Watch negative signs carefully — (-2)³ = -8 but (-2)^4 = 16 |
| Calculator | Use the nCr button for large n; check your answer with a small case first |
| Coefficient vs term | "Coefficient of x³" means the numerical part only; "term in x³" includes x³ |
| Independent of x | Set the power of x to zero and solve for r |
| Show your method | Write out the nCr, the powers, then simplify |
Edexcel 9MA0 specification, Year 1 Pure, Section 4 — Sequences and series, sub-strand "Binomial expansion of (a+bx)n for positive integer n" covers the binomial expansion of (a+bx)n for positive integer n; the notations n! and (rn); link to binomial probabilities. Extend to any rational n in Year 2 (refer to the official specification document for exact wording). The formula (rn)=r!(n−r)!n! and the expansion (a+b)n=∑r=0n(rn)an−rbr are listed in the Edexcel formula booklet (section 2 — Binomial series). However, examiners regularly award marks for explicit factorial working rather than booklet quotation, so candidates should be prepared to derive coefficients directly.
Synoptic reach is wide. (1) Combinatorics: (rn) counts the number of r-element subsets of an n-element set, the structural reason every term in the expansion has its specific coefficient. (2) Probability: the binomial distribution X∼B(n,p) uses exactly the same coefficients — P(X=r)=(rn)pr(1−p)n−r is one term of the expansion of (p+(1−p))n=1n=1. (3) Statistics: hypothesis tests for binomial proportions in 9MA0-03 lean on these coefficients. (4) Year 2 binomial for rational n: the same identity is extended via Taylor's theorem to (1+x)n for non-integer n, with the convergence constraint ∣x∣<1. (5) Estimation: truncating the expansion at the first few terms gives rapid approximations, e.g. 1.0210≈1+10(0.02)+45(0.02)2=1.218, accurate to three significant figures.
Question (8 marks):
(a) Find the first four terms, in ascending powers of x, in the expansion of (2−3x)5. Give each coefficient as an integer. (5)
(b) Hence find the coefficient of x3 in the expansion of (1+4x)(2−3x)5. (3)
Solution with mark scheme:
(a) Step 1 — apply the binomial theorem.
Using (a+b)n=∑r=0n(rn)an−rbr with a=2, b=−3x, n=5:
(2−3x)5=∑r=05(r5)25−r(−3x)r
M1 — correct general structure with a=2, b=−3x, and binomial coefficients identified. Common error: students absorb the minus into the coefficient halfway through and lose track of signs.
Step 2 — compute the first four terms (r=0,1,2,3).
r=0: (05)25(−3x)0=1⋅32⋅1=32.
r=1: (15)24(−3x)1=5⋅16⋅(−3x)=−240x.
r=2: (25)23(−3x)2=10⋅8⋅9x2=720x2.
r=3: (35)22(−3x)3=10⋅4⋅(−27x3)=−1080x3.
M1 — correct application of (r5) values 1,5,10,10 (Pascal's triangle row n=5, or factorial calculation).
M1 — correct evaluation of 25−r powers 32,16,8,4.
A1 — correct first three terms 32−240x+720x2.
A1 — correct fourth term −1080x3, with the negative sign preserved through (−3x)3=−27x3.
Total for (a): 5 marks (M3 A2).
(b) Step 1 — identify which products give x3.
(1+4x)(2−3x)5: the x3 term arises from two products — 1×(coefficient of x3 in expansion)+4x×(coefficient of x2 in expansion).
M1 — recognising both contributing terms. The single most common error here is forgetting the second product entirely.
Step 2 — compute.
From (a): coefficient of x3 is −1080, coefficient of x2 is 720.
Coefficient of x3 in full expansion: 1⋅(−1080)+4⋅720=−1080+2880=1800.
M1 — correct combination of coefficients with correct signs.
A1 — final coefficient 1800.
Total for (b): 3 marks. Grand total: 8 marks (M5 A3).
Question (6 marks): In the binomial expansion of (3+kx)7, where k is a non-zero constant, the coefficient of x2 is twice the coefficient of x3.
(a) Show that k=−56. (4)
(b) Hence find the coefficient of x4 in the expansion. (2)
Mark scheme decomposition by AO:
(a)
(b)
Total: 6 marks split AO1 = 4, AO2 = 2. This is a typical Paper 1 binomial item — the AO2 mark sits at the modelling step where the candidate must convert "twice the coefficient" into a correct algebraic equation, including correctly handling the sign.
Connects to:
Combinatorics — counting subsets: (rn) is the number of r-element subsets of an n-element set. The expansion of (1+x)n is the generating function for these counts. Setting x=1 gives 2n=∑r=0n(rn), the total number of subsets of an n-set. Setting x=−1 gives 0=∑r=0n(−1)r(rn), proving the alternating-sign identity.
Statistics — the binomial distribution (9MA0-03): if X∼B(n,p) then P(X=r)=(rn)pr(1−p)n−r. Summing over all r: ∑r=0n(rn)pr(1−p)n−r=(p+(1−p))n=1. The fact that probabilities sum to 1 is exactly the binomial theorem.
Year 2 — binomial expansion for rational n: the formula extends to (1+x)n=1+nx+2!n(n−1)x2+3!n(n−1)(n−2)x3+… for any real n, valid when ∣x∣<1. For positive integer n, the series terminates because n(n−1)(n−2)⋯(n−n)=0; for non-integer n it does not terminate, hence the convergence requirement.
Pascal's triangle and identities: the recurrence (rn)=(r−1n−1)+(rn−1) is the row-construction rule for Pascal's triangle. It is provable directly from the factorial form and underlies every combinatorial identity in this area. Vandermonde's identity (rm+n)=∑k=0r(km)(r−kn) generalises the multiplication of two binomial expansions.
Differentiation of (1+x)n: differentiating the expansion term-by-term gives n(1+x)n−1=∑r=1nr(rn)xr−1. Substituting x=1 produces the identity ∑r=1nr(rn)=n⋅2n−1 — a slick non-combinatorial proof of a counting result. Substituting x=−1 gives a related alternating identity.
Binomial questions on 9MA0 split AO marks roughly as follows:
| AO | Typical share | Earned by |
|---|---|---|
| AO1 (knowledge / procedure) | 60–70% | Quoting the formula correctly, computing factorial coefficients, evaluating powers, writing terms in ascending order |
| AO2 (reasoning / interpretation) | 20–30% | Identifying which products contribute to a target term, setting up equations from "coefficient of xk equals…", justifying sign conventions, recognising when terms terminate |
| AO3 (problem-solving) | 5–15% | Multi-step problems combining binomial with differentiation, integration, or probability; estimation problems requiring justification of accuracy |
Examiner-rewarded phrasing: "the general term is (rn)an−rbr"; "the coefficient of xk is obtained by setting r=k in the general term"; "since the expansion has n+1 terms for positive integer n, the series terminates"; "by the symmetry property (rn)=(n−rn)". Phrases that lose marks: writing "+..." as the final term in a finite expansion (suggesting the candidate doesn't realise it terminates); leaving (25) unevaluated when an integer is requested; collecting like terms incorrectly when sign-bearing brackets are involved.
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.