Solutions — Pascal’s Triangle and the Binomial Theorem
-
Q1 — Pascal’s Triangle Rows
Building from row 6 (1 6 15 20 15 6 1), add adjacent pairs:
Row 7:
1, (1+6)=7, (6+15)=21, (15+20)=35, (20+15)=35, (15+6)=21, (6+1)=7, 1
1 7 21 35 35 21 7 1
Row 8:
1, 8, 28, 56, 70, 56, 28, 8, 1
1 8 28 56 70 56 28 8 1
Row sums: 27 = 128 and 28 = 256. ✓
-
Q2 — Pascal’s Rule
(a) C(7, 3) = (7 × 6 × 5)/(3!) = 210/6 = 35.
C(7, 4) = C(7, 3) = 35 (by symmetry).
C(7, 3) + C(7, 4) = 35 + 35 = 70.
C(8, 4) = (8 × 7 × 6 × 5)/(4!) = 1680/24 = 70. ✓
(b) By Pascal’s rule C(n, r) + C(n, r+1) = C(n+1, r+1), with n = 9, r = 3:
C(10, 4) = C(9, 3) + C(9, 4) = 84 + 126 = 210
-
Q3 — Expand Using the Binomial Theorem
(a) (x + 1)4: row 4 coefficients are 1, 4, 6, 4, 1.
= C(4,0)x4(1)0 + C(4,1)x3(1)1 + C(4,2)x2(1)2 + C(4,3)x(1)3 + C(4,4)(1)4
= x4 + 4x3 + 6x2 + 4x + 1
(b) (a + b)3: row 3 coefficients are 1, 3, 3, 1.
= C(3,0)a3 + C(3,1)a2b + C(3,2)ab2 + C(3,3)b3
= a3 + 3a2b + 3ab2 + b3
-
Q4 — Expand (x + 2)4
General term: Tr+1 = C(4, r) x4−r 2r
r C(4,r) 2r Term 0 1 1 x4 1 4 2 8x3 2 6 4 24x2 3 4 8 32x 4 1 16 16 (x + 2)4 = x4 + 8x3 + 24x2 + 32x + 16
-
Q5 — Find a Specific Term
General term of (x + 2)5: Tr+1 = C(5, r) x5−r 2r
We need the power of x to be 3: set 5 − r = 3, giving r = 2.
T3 = C(5, 2) × x3 × 22 = 10 × 4 × x3
The term containing x3 is 40x3.
-
Q6 — Find the Constant Term
Write the expression as (x + 3x−1)6.
General term: Tr+1 = C(6, r) (x)6−r (3x−1)r = C(6, r) 3r x6−r−r = C(6, r) 3r x6−2r
For a constant term: 6 − 2r = 0 ⇒ r = 3.
T4 = C(6, 3) × 33 × x0 = 20 × 27 = 540
-
Q7 — Sum of Coefficients
(a) The sum of the binomial coefficients in (1 + x)8 is found by setting x = 1:
(1 + 1)8 = 28 = 256
That is, C(8,0) + C(8,1) + C(8,2) + … + C(8,8) = 1 + 8 + 28 + 56 + 70 + 56 + 28 + 8 + 1 = 256. ✓
(b) Row 5 of Pascal’s triangle: 1, 5, 10, 10, 5, 1.
Sum = 1 + 5 + 10 + 10 + 5 + 1 = 32 = 25. ✓
-
Q8 — Expand (2x − 3)4
Write as (2x + (−3))4. General term: Tr+1 = C(4, r) (2x)4−r (−3)r
r = 0: 1 × 16x4 × 1 = 16x4
r = 1: 4 × 8x3 × (−3) = −96x3
r = 2: 6 × 4x2 × 9 = 216x2
r = 3: 4 × 2x × (−27) = −216x
r = 4: 1 × 1 × 81 = 81
(2x − 3)4 = 16x4 − 96x3 + 216x2 − 216x + 81
Note: the alternating sign pattern arises from (−3)r.
-
Q9 — Find the Coefficient of x4
General term of (3 + 2x)7: Tr+1 = C(7, r) 37−r (2x)r = C(7, r) 37−r 2r xr
For x4: set r = 4.
T5 = C(7, 4) × 33 × 24 × x4
C(7, 4) = C(7, 3) = (7 × 6 × 5)/(3!) = 35
= 35 × 27 × 16 = 35 × 432 = 15 120
The coefficient of x4 is 15 120.
-
Q10 — Coefficient of x3 in a Product Expansion
Method 1 (Combine exponents):
(1 + x)5(1 + x)3 = (1 + x)8
Coefficient of x3 = C(8, 3) = (8 × 7 × 6)/(3!) = 336/6 = 56
Method 2 (Cross-multiplication verification):
Collect all pairs (xj from first) × (x3−j from second), j = 0, 1, 2, 3:
C(5,0)×C(3,3) + C(5,1)×C(3,2) + C(5,2)×C(3,1) + C(5,3)×C(3,0)
= 1×1 + 5×3 + 10×3 + 10×1 = 1 + 15 + 30 + 10 = 56. ✓