Home / Blog / Algebra
Algebra

Binomial Theorem & Pascal Triangle Guide: Expansion & Combinatorics

Expanding $(a + b)^n$ by hand for large powers like $n = 6$ or $n = 10$ would take pages of tedious algebraic multiplication. The Binomial Theorem and Pascal's Triangle provide a powerful mathematical shortcut that computes coefficients instantly using combinations $\binom{n}{k}$. In this guide, we explore the theory, proofs, term calculations, and practical applications.

1. Constructing Pascal's Triangle

Pascal's Triangle is a triangular array of binomial coefficients. Each number in the triangle is the sum of the two numbers directly above it in the preceding row:

Row 0: 1 Row 1: 1 1 Row 2: 1 2 1 Row 3: 1 3 3 1 Row 4: 1 4 6 4 1 Row 5: 1 5 10 10 5 1 Row 6: 1 6 15 20 15 6 1

Notice that Row $n$ contains the exact coefficients for expanding $(a + b)^n$. For instance, Row 3 has numbers 1, 3, 3, 1, which correspond to $(a + b)^3 = 1a^3 + 3a^2b + 3ab^2 + 1b^3$.

2. The Binomial Theorem Formula

For any positive integer $n$, the expansion of $(a + b)^n$ is given by the algebraic series:

• Binomial Theorem: (a + b)ⁿ = Σ [ k=0 to n ] n aⁿ⁻ᵏ bᵏ • Combination Formula: n = nCr = n! / [ k! (n - k)! ]

The powers of $a$ start at $n$ and decrease by 1 in each subsequent term down to 0, while the powers of $b$ start at 0 and increase by 1 up to $n$. The sum of exponents in every term is always equal to $n$.

3. Finding the General k-th Term

When an exam question asks for a specific term (such as the 5th term or the coefficient of $x^7$) without requiring the full expansion, use the general term formula:

• General Term Formula: T_(k+1) = n aⁿ⁻ᵏ bᵏ • Note: The (k + 1)-th term uses exponent k for the second binomial component.

4. Step-by-Step Worked Expansion Examples

Worked Example 1: Expanding (2x - 3)⁴

Problem: Expand $(2x - 3)^4$ completely.

Solution Steps:

  1. Identify $a = 2x$, $b = -3$, and $n = 4$.
  2. Fetch Row 4 coefficients from Pascal's Triangle: 1, 4, 6, 4, 1.
  3. Term 1 ($k=0$): $1 cdot (2x)^4 cdot (-3)^0 = 1 cdot (16x^4) cdot 1 = 16x^4$.
  4. Term 2 ($k=1$): $4 cdot (2x)^3 cdot (-3)^1 = 4 cdot (8x^3) cdot (-3) = -96x^3$.
  5. Term 3 ($k=2$): $6 cdot (2x)^2 cdot (-3)^2 = 6 cdot (4x^2) cdot 9 = 216x^2$.
  6. Term 4 ($k=3$): $4 cdot (2x)^1 cdot (-3)^3 = 4 cdot (2x) cdot (-27) = -216x$.
  7. Term 5 ($k=4$): $1 cdot (2x)^0 cdot (-3)^4 = 1 cdot 1 cdot 81 = 81$.

Final Expanded Polynomial: $16x^4 - 96x^3 + 216x^2 - 216x + 81$.

Worked Example 2: Finding a Specific Coefficient

Problem: Find the coefficient of $x^3$ in the expansion of $(x + 2)^7$.

Solution Steps:

  1. General term is $T_{k+1} = inom{7}{k} x^{7-k} 2^k$.
  2. We need the exponent of $x$ to be 3, so set $7 - k = 3 implies k = 4$.
  3. Substitute $k = 4$: $T_5 = inom{7}{4} x^3 2^4$.
  4. Calculate $inom{7}{4} = rac{7 imes 6 imes 5}{3 imes 2 imes 1} = 35$.
  5. Calculate $2^4 = 16$.
  6. Multiply: $35 imes 16 = 560$.

Answer: The coefficient of $x^3$ is 560.

5. Real-World Applications in Probability & Polynomials

Test Concepts with CalcSolver

Verify calculations and explore interactive solvers on CalcSolver.

Open Factorial & Combination Tool

Frequently Asked Questions (FAQs)

Why does Pascal's triangle match combinations nCr?
The entry in row n at position k counts the number of ways to choose k items from n items (nCr).
Can the Binomial Theorem be used for negative or fractional exponents?
Yes! Newton's generalized Binomial Theorem allows infinite series expansions for any real exponent n when |x| < 1.