Binomial Expansion.
Subtopic Navigator
Lesson Objectives
- Understand the binomial theorem for positive integer indices
- Expand expressions of the form $(a + b)^n$ where $n$ is a positive integer
- Use Pascal's triangle to find binomial coefficients
- Use the binomial coefficient formula $\binom{n}{r} = \frac{n!}{r!(n-r)!}$
- Find specific terms in a binomial expansion using the general term formula
- Apply binomial expansion to solve problems involving approximations and combinations
Introduction to Binomial Expansion
The binomial theorem provides a formula for expanding expressions of the form $(a + b)^n$ where $n$ is a positive integer. Instead of multiplying $(a + b)$ by itself $n$ times, which becomes tedious for large $n$, the binomial theorem gives a direct way to write the expansion. This theorem has applications in algebra, probability, combinatorics, and calculus.
For any positive integer $n$:
$$(a + b)^n = \sum_{r=0}^{n} \binom{n}{r} a^{n-r} b^r$$
where $\binom{n}{r} = \frac{n!}{r!(n-r)!}$ is the binomial coefficient.
• Binomial Expression: An algebraic expression containing two terms (e.g., $x + y$, $2a - 3b$).
• Binomial Theorem: A formula for expanding $(a + b)^n$ for positive integer $n$.
• Binomial Coefficient: $\binom{n}{r}$ (read as "n choose r") represents the number of ways to choose r items from n items.
• Pascal's Triangle: A triangular array of numbers where each entry is the sum of the two above it, giving binomial coefficients.
• General Term: $T_{r+1} = \binom{n}{r} a^{n-r} b^r$ (the $(r+1)$-th term in the expansion).
The Binomial Theorem
The binomial theorem states that for any positive integer $n$: $$(a + b)^n = \binom{n}{0}a^n + \binom{n}{1}a^{n-1}b + \binom{n}{2}a^{n-2}b^2 + \cdots + \binom{n}{n-1}ab^{n-1} + \binom{n}{n}b^n$$ The expansion has $n+1$ terms. The powers of $a$ decrease from $n$ to $0$, while the powers of $b$ increase from $0$ to $n$.
1. Identify $a$, $b$, and $n$ in the expression $(a + b)^n$.
2. Write the sum from $r = 0$ to $r = n$ of $\binom{n}{r} a^{n-r} b^r$.
3. Calculate each binomial coefficient $\binom{n}{r}$.
4. Simplify each term by evaluating powers and coefficients.
5. Combine like terms if necessary (usually the expansion is left as a sum of distinct terms).
Problem: Expand $(x + y)^2$.
Solution:
$(x + y)^2 = \binom{2}{0}x^2 + \binom{2}{1}x^1y^1 + \binom{2}{2}y^2$
$\binom{2}{0} = 1$, $\binom{2}{1} = 2$, $\binom{2}{2} = 1$
$= x^2 + 2xy + y^2$
Problem: Expand $(2x + 3)^3$.
Solution:
$(2x + 3)^3 = \binom{3}{0}(2x)^3 + \binom{3}{1}(2x)^2(3) + \binom{3}{2}(2x)(3)^2 + \binom{3}{3}(3)^3$
$\binom{3}{0}=1$, $\binom{3}{1}=3$, $\binom{3}{2}=3$, $\binom{3}{3}=1$
$= 1 \cdot 8x^3 + 3 \cdot 4x^2 \cdot 3 + 3 \cdot 2x \cdot 9 + 1 \cdot 27$
$= 8x^3 + 36x^2 + 54x + 27$
Problem: Expand $(x - 2)^4$.
Solution:
Write as $(x + (-2))^4$.
$\binom{4}{0}x^4 + \binom{4}{1}x^3(-2) + \binom{4}{2}x^2(-2)^2 + \binom{4}{3}x(-2)^3 + \binom{4}{4}(-2)^4$
$\binom{4}{0}=1$, $\binom{4}{1}=4$, $\binom{4}{2}=6$, $\binom{4}{3}=4$, $\binom{4}{4}=1$
$= 1 \cdot x^4 + 4 \cdot x^3 \cdot (-2) + 6 \cdot x^2 \cdot 4 + 4 \cdot x \cdot (-8) + 1 \cdot 16$
$= x^4 - 8x^3 + 24x^2 - 32x + 16$
Problem: Expand $(3a - 2b)^3$.
Solution:
$(3a + (-2b))^3$
$= \binom{3}{0}(3a)^3 + \binom{3}{1}(3a)^2(-2b) + \binom{3}{2}(3a)(-2b)^2 + \binom{3}{3}(-2b)^3$
$= 1 \cdot 27a^3 + 3 \cdot 9a^2 \cdot (-2b) + 3 \cdot 3a \cdot 4b^2 + 1 \cdot (-8b^3)$
$= 27a^3 - 54a^2b + 36ab^2 - 8b^3$
Practice for Concept 1 (Basic Binomial Expansion)
- Expand $(x + y)^3$.
- Expand $(2x + 1)^4$.
- Expand $(x - 3)^3$.
- Expand $(4x + 5y)^2$.
- Expand $(a - 2b)^5$.
Pascal's Triangle
Pascal's Triangle is a triangular arrangement of numbers that gives binomial coefficients. Each number is the sum of the two numbers directly above it. Row $n$ (starting with row 0) contains the coefficients $\binom{n}{0}, \binom{n}{1}, \dots, \binom{n}{n}$.
| Row 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 |
1. Locate row $n$ in Pascal's Triangle (remember row 0 is for $(a+b)^0$).
2. The numbers in that row are the binomial coefficients.
3. Write terms with decreasing powers of $a$ and increasing powers of $b$.
4. Multiply each term by the corresponding coefficient.
Problem: Expand $(x + y)^5$ using Pascal's Triangle.
Solution:
Row 5 of Pascal's Triangle: 1, 5, 10, 10, 5, 1
$(x + y)^5 = x^5 + 5x^4y + 10x^3y^2 + 10x^2y^3 + 5xy^4 + y^5$
Problem: Expand $(2x - y)^4$ using Pascal's Triangle.
Solution:
Row 4: 1, 4, 6, 4, 1
$(2x - y)^4 = 1 \cdot (2x)^4 + 4 \cdot (2x)^3(-y) + 6 \cdot (2x)^2(-y)^2 + 4 \cdot (2x)(-y)^3 + 1 \cdot (-y)^4$
$= 16x^4 + 4 \cdot 8x^3 \cdot (-y) + 6 \cdot 4x^2 \cdot y^2 + 4 \cdot 2x \cdot (-y^3) + y^4$
$= 16x^4 - 32x^3y + 24x^2y^2 - 8xy^3 + y^4$
Practice for Concept 2 (Pascal's Triangle)
- Write row 7 of Pascal's Triangle.
- Expand $(a + b)^6$ using Pascal's Triangle.
- Expand $(x + 2)^4$ using Pascal's Triangle.
- Expand $(3 - p)^5$ using Pascal's Triangle.
- What is the coefficient of $x^3y^2$ in $(x + y)^5$?
Binomial Coefficients Formula
The binomial coefficient $\binom{n}{r}$ (read as "n choose r") can be calculated using the formula: $$\binom{n}{r} = \frac{n!}{r!(n-r)!}$$ where $n! = n \times (n-1) \times (n-2) \times \cdots \times 2 \times 1$, and $0! = 1$.
1. $\binom{n}{0} = \binom{n}{n} = 1$
2. $\binom{n}{r} = \binom{n}{n-r}$ (symmetry)
3. $\binom{n}{r} + \binom{n}{r-1} = \binom{n+1}{r}$ (Pascal's rule)
4. $\binom{n}{1} = n$, $\binom{n}{2} = \frac{n(n-1)}{2}$
Problem: Calculate $\binom{7}{3}$.
Solution:
$\binom{7}{3} = \frac{7!}{3! \cdot 4!} = \frac{7 \times 6 \times 5 \times 4!}{3 \times 2 \times 1 \times 4!} = \frac{7 \times 6 \times 5}{6} = 35$
Problem: Calculate $\binom{10}{8}$ using symmetry.
Solution:
$\binom{10}{8} = \binom{10}{2} = \frac{10 \times 9}{2} = 45$
Problem: Find the coefficient of $x^4$ in the expansion of $(2x + 3)^6$.
Solution:
General term: $T_{r+1} = \binom{6}{r} (2x)^{6-r} (3)^r$
We want $6 - r = 4$ → $r = 2$
$T_3 = \binom{6}{2} (2x)^4 (3)^2 = 15 \cdot 16x^4 \cdot 9 = 15 \cdot 144 \cdot x^4 = 2160x^4$
Coefficient is 2160.
Problem: Find the term independent of $x$ in $(x^2 + \frac{1}{x})^9$.
Solution:
General term: $T_{r+1} = \binom{9}{r} (x^2)^{9-r} (\frac{1}{x})^r = \binom{9}{r} x^{18-2r} x^{-r} = \binom{9}{r} x^{18-3r}$
For term independent of $x$, power of $x$ is 0: $18 - 3r = 0$ → $r = 6$
$T_7 = \binom{9}{6} = \binom{9}{3} = \frac{9 \times 8 \times 7}{3 \times 2 \times 1} = 84$
Answer: The constant term is 84.
Be careful when the binomial has coefficients other than 1. Remember to raise the entire term (including coefficients) to the appropriate power. Also, when finding a specific term, ensure you correctly identify the value of $r$.
Practice for Concept 3 (Binomial Coefficients)
- Calculate $\binom{8}{3}$.
- Calculate $\binom{12}{10}$ using symmetry.
- Find the coefficient of $x^3$ in $(x + 2)^7$.
- Find the term in $x^5$ in $(2x - 1)^8$.
- Find the coefficient of $x^4$ in $(x^2 + \frac{2}{x})^6$.
The General Term
The $(r+1)$-th term in the expansion of $(a + b)^n$ is given by: $$T_{r+1} = \binom{n}{r} a^{n-r} b^r$$ This formula is useful for finding specific terms without expanding the entire expression.
1. Write the general term $T_{r+1} = \binom{n}{r} a^{n-r} b^r$.
2. Substitute the expressions for $a$ and $b$ (including coefficients).
3. Simplify the powers of $x$ (or the variable of interest).
4. Set the exponent equal to the desired power to solve for $r$.
5. Substitute $r$ back into the general term to find the coefficient.
Problem: Find the middle term in the expansion of $(x + y)^8$.
Solution:
For $n = 8$ (even), there is one middle term at $r = \frac{n}{2} = 4$.
$T_{5} = \binom{8}{4} x^{8-4} y^4 = 70 x^4 y^4$
Answer: $70x^4y^4$
Problem: Find the two middle terms in $(x + y)^7$.
Solution:
For $n = 7$ (odd), there are two middle terms at $r = 3$ and $r = 4$.
$T_4 = \binom{7}{3} x^{4} y^3 = 35 x^4 y^3$
$T_5 = \binom{7}{4} x^{3} y^4 = 35 x^3 y^4$
Answer: $35x^4y^3$ and $35x^3y^4$
Problem: In the expansion of $(1 + x)^{10}$, which term has the greatest coefficient?
Solution:
Coefficients are $\binom{10}{r}$. These are symmetric and increase to the middle.
The greatest coefficient occurs at $r = 5$: $\binom{10}{5} = 252$
Answer: $T_6 = 252x^5$
Problem: Find the coefficient of $x^7$ in $(x^2 - \frac{1}{x})^{10}$.
Solution:
General term: $T_{r+1} = \binom{10}{r} (x^2)^{10-r} (-\frac{1}{x})^r = \binom{10}{r} (-1)^r x^{20-2r} x^{-r} = \binom{10}{r} (-1)^r x^{20-3r}$
Set $20 - 3r = 7$ → $3r = 13$ → $r = \frac{13}{3}$ not an integer → no $x^7$ term.
Answer: The coefficient is 0 (no such term).
When using the general term, remember that $T_{r+1}$ corresponds to $r$ starting from 0. So the first term is when $r = 0$, the second term when $r = 1$, and so on. For the term with $x^k$, solve for $r$; if $r$ is not an integer between 0 and $n$, the term does not exist.
Practice for Concept 4 (General Term)
- Find the 4th term in the expansion of $(x + y)^9$.
- Find the middle term in $(a + b)^6$.
- Find the coefficient of $x^5$ in $(2x - 3)^7$.
- Find the term independent of $x$ in $(x + \frac{2}{x})^8$.
- Find the coefficient of $x^4$ in $(x^2 - \frac{1}{x^2})^6$.
Methods & Techniques
Mastering binomial expansion requires understanding patterns and using efficient calculation methods.
1. Check number of terms: There should be $n+1$ terms.
2. Check symmetry of coefficients: For $(a+b)^n$, coefficients are symmetric.
3. Check sum of coefficients: Substitute $a = b = 1$ → sum of coefficients = $2^n$.
4. Check for specific values: Substitute a small value like $a = 1$, $b = 1$ and compare with $2^n$.
Original expansion: $(x + 2)^4 = x^4 + 8x^3 + 24x^2 + 32x + 16$
Check:
Number of terms: 5 = $4 + 1$ ✓
Coefficients symmetric? 1, 8, 24, 32, 16 → Not symmetric because b = 2 affects symmetry? Actually $(x+2)^4$ coefficients not symmetric around centre because of the 2. Substitute $x = 1$: $(3)^4 = 81$. Sum of coefficients = $1 + 8 + 24 + 32 + 16 = 81$ ✓
• Pitfall 1: Forgetting to raise the coefficient inside the bracket to the power → Solution: Write $(kx)^n = k^n x^n$.
• Pitfall 2: Sign errors when $b$ is negative → Solution: Write $b$ as $(-b)$ and keep track of $(-1)^r$.
• Pitfall 3: Off-by-one errors in the general term → Solution: Remember $T_{r+1}$ corresponds to power $b^r$.
• Pitfall 4: Incorrect simplification of binomial coefficients → Solution: Use symmetry $\binom{n}{r} = \binom{n}{n-r}$ to simplify calculations.
• Pitfall 5: Forgetting that $0! = 1$ → Solution: Memorise this special case.
| n | Expansion of $(a + b)^n$ |
|---|---|
| 0 | $1$ |
| 1 | $a + b$ |
| 2 | $a^2 + 2ab + b^2$ |
| 3 | $a^3 + 3a^2b + 3ab^2 + b^3$ |
| 4 | $a^4 + 4a^3b + 6a^2b^2 + 4ab^3 + b^4$ |
| 5 | $a^5 + 5a^4b + 10a^3b^2 + 10a^2b^3 + 5ab^4 + b^5$ |
Technique Practice
- Verify that the expansion of $(x + 1)^4$ has sum of coefficients $16$.
- Check the symmetry of coefficients in $(a + b)^6$.
- Identify the error: A student expanded $(x - 2)^3$ as $x^3 - 6x^2 + 12x - 6$. Correct it.
- For $(2x + 3)^4$, verify the coefficient of $x^2$ is 216.
Real-World Applications
Binomial expansion has applications in probability, statistics, finance, physics, and computer science.
Scenario: A coin is flipped 5 times. The probability of getting exactly 3 heads is given by $\binom{5}{3} (\frac{1}{2})^5$.
Problem: Calculate this probability.
Solution:
$\binom{5}{3} = 10$, $(\frac{1}{2})^5 = \frac{1}{32}$
Probability = $10 \times \frac{1}{32} = \frac{10}{32} = \frac{5}{16} = 0.3125$
Scenario: An investment grows at 5% per year. After 3 years, the value is $P(1.05)^3$. Expand to estimate.
Problem: Expand $(1 + 0.05)^3$.
Solution:
$(1 + 0.05)^3 = 1 + 3(0.05) + 3(0.05)^2 + (0.05)^3 = 1 + 0.15 + 0.0075 + 0.000125 = 1.157625$
The investment grows by approximately 15.76% over 3 years.
Scenario: The relativistic factor $\gamma = (1 - \frac{v^2}{c^2})^{-1/2}$. For small $v/c$, we use binomial expansion.
Problem: Expand $(1 - x)^{-1/2}$ to first two terms where $x = v^2/c^2$ is small.
(Note: For negative indices, the binomial theorem extends to infinite series)
Approximate $(1 - x)^{-1/2} \approx 1 + \frac{1}{2}x$ for small $x$.
Scenario: A committee of 3 people is to be chosen from 10 candidates. The number of ways is $\binom{10}{3}$.
Problem: Calculate $\binom{10}{3}$.
Solution:
$\binom{10}{3} = \frac{10 \times 9 \times 8}{3 \times 2 \times 1} = 120$ ways.
Cross-Curricular Connections
- Probability: Binomial distribution, Bernoulli trials
- Statistics: Combinations, permutations
- Finance: Compound interest calculations
- Physics: Binomial approximations in relativity and quantum mechanics
- Computer Science: Binary representations, combinatorial algorithms
Cumulative Practice Exercises
Try these problems on your own. Show all working steps. Use the verification strategies to check your answers.
- Expand $(x + y)^4$ fully.
- Expand $(2a - b)^5$ fully.
- Expand $(3x + 2)^3$ fully.
- Using Pascal's Triangle, expand $(p + q)^6$.
- Calculate $\binom{9}{4}$.
- Calculate $\binom{15}{13}$ using symmetry.
- Find the coefficient of $x^4$ in $(x + 3)^8$.
- Find the coefficient of $x^3$ in $(2x - 1)^7$.
- Find the term independent of $x$ in $(x + \frac{1}{x})^6$.
- Find the middle term in $(a + b)^{10}$.
- Find the 5th term in the expansion of $(x - 2y)^8$.
- Find the coefficient of $x^5$ in $(x^2 + \frac{1}{x})^7$.
- Find the sum of coefficients in $(2x - 3y)^5$.
- Error analysis: A student expanded $(x + 2)^5$ and got $x^5 + 10x^4 + 40x^3 + 80x^2 + 80x + 32$. Is this correct? If not, correct it.
- In the expansion of $(1 + x)^{12}$, which term has the greatest coefficient?
Answers to Cumulative Exercises
- Problem: $(x + y)^4$
Answer: $x^4 + 4x^3y + 6x^2y^2 + 4xy^3 + y^4$ - Problem: $(2a - b)^5$
Answer: $32a^5 - 80a^4b + 80a^3b^2 - 40a^2b^3 + 10ab^4 - b^5$ - Problem: $(3x + 2)^3$
Answer: $27x^3 + 54x^2 + 36x + 8$ - Problem: $(p + q)^6$
Answer: $p^6 + 6p^5q + 15p^4q^2 + 20p^3q^3 + 15p^2q^4 + 6pq^5 + q^6$ - Problem: $\binom{9}{4}$
Answer: $126$ - Problem: $\binom{15}{13}$
Answer: $\binom{15}{2} = 105$ - Problem: Coefficient of $x^4$ in $(x + 3)^8$
Answer: $\binom{8}{4} \cdot 3^4 = 70 \cdot 81 = 5670$ - Problem: Coefficient of $x^3$ in $(2x - 1)^7$
Answer: $r=4$ gives $x^3$ term? Check: $(2x)^{7-r}(-1)^r$, $7-r=3$ → $r=4$, coefficient = $\binom{7}{4} \cdot 2^3 \cdot (-1)^4 = 35 \cdot 8 = 280$ - Problem: Term independent of $x$ in $(x + \frac{1}{x})^6$
Answer: $r=3$, $\binom{6}{3} = 20$ - Problem: Middle term in $(a + b)^{10}$
Answer: $r=5$, $T_6 = \binom{10}{5} a^5 b^5 = 252 a^5 b^5$ - Problem: 5th term in $(x - 2y)^8$ ($r=4$)
Answer: $T_5 = \binom{8}{4} x^{4} (-2y)^4 = 70 \cdot x^4 \cdot 16y^4 = 1120 x^4 y^4$ - Problem: Coefficient of $x^5$ in $(x^2 + \frac{1}{x})^7$
Answer: $(x^2)^{7-r} (x^{-1})^r = x^{14-2r-r} = x^{14-3r}$. Set $14-3r=5$ → $3r=9$ → $r=3$. Coefficient = $\binom{7}{3} = 35$ - Problem: Sum of coefficients in $(2x - 3y)^5$
Answer: Substitute $x=1$, $y=1$: $(2 - 3)^5 = (-1)^5 = -1$ - Problem: Error analysis: $(x + 2)^5$ correct expansion?
Answer: Correct: $x^5 + 10x^4 + 40x^3 + 80x^2 + 80x + 32$ ✓ The student's expansion is correct. - Problem: Greatest coefficient in $(1 + x)^{12}$
Answer: $\binom{12}{6} = 924$ (middle term, $r=6$)
Conclusion & Summary
The binomial theorem provides a powerful and efficient method for expanding expressions of the form $(a + b)^n$ where $n$ is a positive integer. The coefficients can be found using Pascal's Triangle or the formula $\binom{n}{r} = \frac{n!}{r!(n-r)!}$.
Key Takeaways:
1. Binomial Theorem: $(a + b)^n = \sum_{r=0}^{n} \binom{n}{r} a^{n-r} b^r$.
2. Pascal's Triangle: Provides binomial coefficients without calculation.
3. Binomial Coefficient Formula: $\binom{n}{r} = \frac{n!}{r!(n-r)!}$.
4. General Term: $T_{r+1} = \binom{n}{r} a^{n-r} b^r$ for finding specific terms.
5. Properties: Symmetry $\binom{n}{r} = \binom{n}{n-r}$, sum of coefficients = $2^n$ (when $a=b=1$).
6. Applications: Probability (binomial distribution), combinatorics, approximations.
Keep practicing expansions and finding specific terms. Binomial theorem is essential for advanced mathematics, statistics, and physics!
Video Resource
Watch this video for more examples of binomial expansion using Pascal's Triangle and the binomial theorem.
A Digital Learning & Technology Solutions Hub Ltd. Package (RC123456).
Share your ANSWER in the Chat. Indicate TITLE e.g Linear Equation 1. .....2. e.t.c
