Fiveable

📈College Algebra Unit 13 Review

QR code for College Algebra practice questions

13.6 Binomial Theorem

13.6 Binomial Theorem

Written by the Fiveable Content Team • Last updated August 2025
Written by the Fiveable Content Team • Last updated August 2025
📈College Algebra
Unit & Topic Study Guides

The Binomial Theorem gives you a formula for expanding expressions like (a+b)n(a + b)^n without multiplying the binomial by itself over and over. This matters most when the exponent is large, where manual expansion would take forever and invite errors.

Binomial Theorem and Its Applications

The Binomial Theorem Formula

The theorem expands any binomial (a+b)n(a + b)^n, where nn is a non-negative integer, into a sum of terms:

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

Each term in the expansion has three pieces:

  • A binomial coefficient (nk)\binom{n}{k}, which tells you the numerical multiplier
  • A power of aa that decreases from nn down to 00
  • A power of bb that increases from 00 up to nn

The binomial coefficient is calculated with factorials:

(nk)=n!k!(nk)!\binom{n}{k} = \frac{n!}{k!(n-k)!}

Recall that n!n! (read "n factorial") means the product of all positive integers from 11 to nn. For example, 4!=4321=244! = 4 \cdot 3 \cdot 2 \cdot 1 = 24. By definition, 0!=10! = 1.

Expanding (2x3)4(2x - 3)^4 step by step:

  1. Identify a=2xa = 2x, b=3b = -3, and n=4n = 4. Notice that the subtraction is handled by making bb negative.

  2. Write the expansion using the formula: (2x3)4=k=04(4k)(2x)4k(3)k(2x - 3)^4 = \sum_{k=0}^{4} \binom{4}{k} (2x)^{4-k} (-3)^k

  3. Compute each term by plugging in k=0,1,2,3,4k = 0, 1, 2, 3, 4:

    • k=0k=0: (40)(2x)4(3)0=116x41=16x4\binom{4}{0}(2x)^4(-3)^0 = 1 \cdot 16x^4 \cdot 1 = 16x^4
    • k=1k=1: (41)(2x)3(3)1=48x3(3)=96x3\binom{4}{1}(2x)^3(-3)^1 = 4 \cdot 8x^3 \cdot (-3) = -96x^3
    • k=2k=2: (42)(2x)2(3)2=64x29=216x2\binom{4}{2}(2x)^2(-3)^2 = 6 \cdot 4x^2 \cdot 9 = 216x^2
    • k=3k=3: (43)(2x)1(3)3=42x(27)=216x\binom{4}{3}(2x)^1(-3)^3 = 4 \cdot 2x \cdot (-27) = -216x
    • k=4k=4: (44)(2x)0(3)4=1181=81\binom{4}{4}(2x)^0(-3)^4 = 1 \cdot 1 \cdot 81 = 81
  4. Combine: (2x3)4=16x496x3+216x2216x+81(2x-3)^4 = 16x^4 - 96x^3 + 216x^2 - 216x + 81

Notice how the signs alternate. That always happens when bb is negative, because odd powers of a negative number stay negative while even powers become positive.

Application of Binomial Theorem, Binomial theorem - Wikipedia

Finding a Specific Term

You don't always need the full expansion. To find just one term, use the fact that the (k+1)(k+1)th term is:

(nk)ankbk\binom{n}{k} a^{n-k} b^{k}

The trick is figuring out which value of kk gives you the term you want. Since aa has exponent nkn - k, you solve for kk based on the power you're looking for.

Example: Find the coefficient of x3x^3 in (2x3)4(2x - 3)^4.

  1. You need the power of xx to be 33. Since a=2xa = 2x and its exponent is 4k4 - k, set 4k=34 - k = 3, giving k=1k = 1.

  2. Calculate the binomial coefficient: (41)=4!1!3!=2416=4\binom{4}{1} = \frac{4!}{1! \cdot 3!} = \frac{24}{1 \cdot 6} = 4

  3. Build the full term: 4(2x)3(3)1=48x3(3)=96x34 \cdot (2x)^3 \cdot (-3)^1 = 4 \cdot 8x^3 \cdot (-3) = -96x^3

So the coefficient of x3x^3 is 96-96.

Application of Binomial Theorem, Use the Binomial Theorem | College Algebra

Pascal's Triangle for Binomial Expansion

Pascal's Triangle is a shortcut for finding binomial coefficients without computing factorials. It's a triangular array where each number is the sum of the two numbers directly above it:

</>Code
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

The entries in row nn give you the binomial coefficients for (a+b)n(a + b)^n. For instance, row 3 contains 1, 3, 3, 1, so:

(a+b)3=1a3+3a2b+3ab2+1b3(a + b)^3 = 1a^3 + 3a^2b + 3ab^2 + 1b^3

To use Pascal's Triangle for expansion:

  1. Find the row that matches your exponent nn
  2. Write each coefficient from that row
  3. Attach decreasing powers of aa (from nn down to 00) and increasing powers of bb (from 00 up to nn)

Pascal's Triangle works well for small exponents. For larger values of nn, the factorial formula is more practical since building the triangle row by row gets tedious.

  • Factorial (n!n!): The product of all positive integers up to nn. Factorials are the building blocks of binomial coefficients.
  • Permutation: An arrangement of objects in a specific order. Permutations use the same factorial calculations that appear in binomial coefficients.
  • Polynomial: A more general expression with multiple terms (binomials are polynomials with exactly two terms). The Binomial Theorem produces a polynomial as its output.
  • Algebraic expansion: The process of multiplying out grouped expressions to remove parentheses. The Binomial Theorem is a shortcut that handles this for any (a+b)n(a + b)^n.