Binomial Theorem
Understanding the Binomial Theorem
The Binomial Theorem provides a quick and efficient way to expand a binomial expression raised to any power, such as (a+b)n. Instead of manually multiplying the terms over and over, you can use a formula based on combinations.
The Binomial Formula
The general formula for expanding (a+b)n is:
(a+b)n=∑k=0n(kn)an−kbk
Here's what the pieces mean:
- n is the power to which the binomial is raised.
- k is the index of the term, starting from 0 and going up to n.
- (kn) (read as "n choose k") is the binomial coefficient, calculated as k!(n−k)!n!.
Pascal's Triangle Connection
You don't always have to calculate (kn) manually. The coefficients for any power n directly correspond to the n-th row of Pascal's Triangle (starting with row 0 at the top).
Example 1: Expanding a Binomial
Problem: Expand (2x−3)4.
Solution: Here, a=2x, b=−3, and n=4. The coefficients for n=4 (from Pascal's Triangle or (k4)) are 1,4,6,4,1.
Let's build each term:
- k=0: 1⋅(2x)4⋅(−3)0=16x4
- k=1: 4⋅(2x)3⋅(−3)1=4⋅(8x3)⋅(−3)=−96x3
- k=2: 6⋅(2x)2⋅(−3)2=6⋅(4x2)⋅(9)=216x2
- k=3: 4⋅(2x)1⋅(−3)3=4⋅(2x)⋅(−27)=−216x
- k=4: 1⋅(2x)0⋅(−3)4=1⋅1⋅81=81
Combine them to get the final expansion: 16x4−96x3+216x2−216x+81
Example 2: Finding a Specific Coefficient
Sometimes you only need a single term from the expansion, not the whole thing.
Problem: Find the coefficient of x3 in (x+2)7.
Solution: The general term in the expansion is given by (kn)an−kbk. For (x+2)7, a=x, b=2, and n=7. The general term is: (k7)(x)7−k(2)k
We want the term where the power of x is 3. Set the exponent equal to 3: 7−k=3⟹k=4
Now, plug k=4 into the general term: (47)(x)3(2)4
Calculate the parts:
- (47)=4!3!7!=3×2×17×6×5=35
- 24=16
Multiply them together: 35⋅x3⋅16=560x3
The coefficient of x3 is 560.