Exercise 7.2 — Q1: Binomial Theorem Expansions
For any positive integer n, the Binomial Theorem states:
(a+b)n=∑r=0n(rn)an−rbr
where the binomial coefficient is:
(rn)=r!(n−r)!n!
The general term (the (r+1)-th term) of the expansion is:
Tr+1=(rn)an−rbr,r=0,1,2,…,n
The expansion of (a+b)n has n+1 terms.
- If n is even: one middle term, T2n+1
- If n is odd: two middle terms, T2n+1 and T2n+3
Binomial coefficients can be read directly from Pascal's Triangle:
n=0:n=1:n=2:n=3:n=4:111134121361141
Each entry is the sum of the two entries directly above it. The r-th entry (0-indexed) in row n gives (rn).
Using the Binomial Theorem with a=x, b=y, n=4:
(x+y)4=(04)x4+(14)x3y+(24)x2y2+(34)xy3+(44)y4
=x4+4x3y+6x2y2+4xy3+y4
Here a=2x, b=−3, n=3:
(2x−3)3=(03)(2x)3+(13)(2x)2(−3)+(23)(2x)(−3)2+(33)(−3)3
=8x3+3(4x2)(−3)+3(2x)(9)+(−27)
=8x3−36x2+54x−27
Here n=6 (even), so the middle term is T26+1=T4.
T4=T3+1=(36)x6−3(2)3=20⋅x3⋅8=160x3