Binomial Theorem
What is it? 🤔
The Binomial Theorem provides a formula to expand expressions raised to a power, like (a + b)n, without tedious multiplication. It's essential in algebra, calculus, and probability for efficient computation.
The Formula
For any positive integer n:
(a + b)n = ∑k=0n [ nCk * an-k * bk ]
Where nCk = n! / (k!(n-k)!) is the binomial coefficient.
Step-by-Step Guide
- Identify a, b, and n from (a + b)n.
- Calculate terms for k = 0 to n. Each term is: nCk * an-k * bk.
- Sum all terms to get the full expansion.
Example 1: Expand (x + 2)3
Here, a=x, b=2, n=3.
k=0: 3C0*x3*20 = 1*x³*1 = x³
k=1: 3C1*x2*21 = 3*x²*2 = 6x²
k=2: 3C2*x1*22 = 3*x*4 = 12x
k=3: 3C3*x0*23 = 1*1*8 = 8
Result: x³ + 6x² + 12x + 8
Example 2: Expand (2x - y)4
Here, a=2x, b=-y, n=4. Watch the signs!
k=0: 4C0*(2x)4*(-y)0 = 1*16x⁴*1 = 16x⁴
k=1: 4C1*(2x)3*(-y)1 = 4*8x³*(-y) = -32x³y
k=2: 4C2*(2x)2*(-y)2 = 6*4x²*y² = 24x²y²
k=3: 4C3*(2x)1*(-y)3 = 4*2x*(-y³) = -8xy³
k=4: 4C4*(2x)0*(-y)4 = 1*1*y⁴ = y⁴
Result: 16x⁴ - 32x³y + 24x²y² - 8xy³ + y⁴
Common Mistakes
- Sign errors: When b is negative, alternate signs start with + for k=0.
- Coefficient mistakes: Remember to apply the exponent to the entire term, e.g., (2x)³ = 8x³.
- Missing terms: There are always n+1 terms. Check your count.
Tips & Tricks
- Pascal's Triangle: Use it for binomial coefficients when n is small.
- Symmetry: nCk = nCn-k. Calculate half the coefficients.
- Find specific terms: Use the general term formula without full expansion.
Practice Suggestions
Start with positive n, then try negative b. Practice finding specific terms (e.g., "find the x² term in (3x-1)⁵"). Use online binomial theorem calculators to check your work.