Sequences, Series & Matrices

Binomial Theorem & Pascal's Triangle

🔢 Sequences, Series & Matrices
🔺

Binomial Theorem & Pascal's Triangle

Expand (a + b)ⁿ efficiently using the binomial theorem.

The Binomial Theorem provides a formula for expanding (a + b)ⁿ without repeated multiplication. The coefficients are the binomial coefficients C(n, k), which also form Pascal's Triangle.

(a+b)n=k=0n(nk)ankbk(a+b)^n = \sum_{k=0}^{n} \binom{n}{k} a^{n-k} b^k

Pascal's Triangle (first 5 rows)

Row 0: 1Row 1: 1 1Row 2: 1 2 1Row 3: 1 3 3 1Row 4: 1 4 6 4 1

Each entry is the sum of the two entries above it. Row n gives coefficients for (a+b)ⁿ.

✏️Expand (x + 2)⁴
(x+2)⁴ = C(4,0)x⁴(2)⁰ + C(4,1)x³(2)¹ + C(4,2)x²(2)² + C(4,3)x¹(2)³ + C(4,4)x⁰(2)⁴ = x⁴ + 8x³ + 24x² + 32x + 16.
(x+2)4=x4+8x3+24x2+32x+16(x+2)^4 = x^4 + 8x^3 + 24x^2 + 32x + 16
💡

Remember This!

To find a specific term in (a+b)ⁿ without full expansion: the (k+1)th term is C(n,k)·aⁿ⁻ᵏ·bᵏ. This is useful when n is large.

✏️ Try It!

What is the coefficient of x² in the expansion of (x + 3)⁵?

Practice with CalcVerse
Take Quiz 📝 — 25 Questions