The Binomial Theorem
For any non-negative integer n:
(x+y)n=∑k=0n(kn)xn−kyk
Expanded:
(x+y)n=(0n)xn+(1n)xn−1y+(2n)xn−2y2+⋯+(nn)yn
Common Expansions
(x+y)2
x2+2xy+y2
(x+y)3
x3+3x2y+3xy2+y3
(x+y)4
x4+4x3y+6x2y2+4xy3+y4
(x−y)n
(x−y)n=∑k=0n(kn)xn−k(−y)k=∑k=0n(−1)k(kn)xn−kyk
General Term
The (k+1)-th term in the expansion of (x+y)n:
Tk+1=(kn)xn−kyk
Example: Find the 4th term of (2x+3)7:
- k=3 (4th term)
T4=(37)(2x)7−3(3)3=35⋅16x4⋅27=15120x4
Special Cases
Sum of Binomial Coefficients
Let x=y=1:
(1+1)n=∑k=0n(kn)=2n
Alternating Sum
Let x=1, y=−1:
(1−1)n=∑k=0n(−1)k(kn)=0 for n≥1
Sum of Even/Odd Coefficients
∑k even(kn)=∑k odd(kn)=2n−1
Binomial Identities
Pascal's Identity
(kn)=(k−1n−1)+(kn−1)
Vandermonde's Identity
(rm+n)=∑k=0r(km)(r−kn)
Sum of Squares
∑k=0n(kn)2=(n2n)
Weighted Sum
∑k=0nk(kn)=n⋅2n−1
∑k=0nk2(kn)=n(n+1)⋅2n−2
Multinomial Theorem
For (x1+x2+⋯+xm)n:
(x1+x2+⋯+xm)n=∑(n1,n2,…,nmn)x1n1x2n2⋯xmnm
where the sum is over all non-negative integers n1,…,nm with n1+n2+⋯+nm=n.
Multinomial Coefficient
(n1,n2,…,nmn)=n1!n2!⋯nm!n!
Example: Expand (x+y+z)3:
=x3+y3+z3+3x2y+3x2z+3xy2+3y2z+3xz2+3yz2+6xyz
Applications
Counting Subsets
Coefficient of xk in (1+x)n is (kn) = number of k-subsets.
Probability
In binomial distribution, (kn)pk(1−p)n−k is probability of k successes in n trials.
Combinatorial Proofs
Prove (kn)=(n−kn):
Algebraic:
(kn)=k!(n−k)!n!=(n−k)!k!n!=(n−kn)
Combinatorial: Choosing k elements to include is the same as choosing n−k to exclude.
From Binomial Theorem:
(1+x)n=(x+1)n
Coefficient of xk on left is (kn).
Coefficient of xk on right (letting xk=xn−(n−k)) is (n−kn).
Newton's Generalized Binomial Theorem
For any real α and ∣x∣<1:
(1+x)α=∑k=0∞(kα)xk
where:
(kα)=k!α(α−1)(α−2)⋯(α−k+1)
Example: (1+x)−1=1−x+x2−x3+⋯=∑k=0∞(−1)kxk