LATEX VERIFIED PROOFS
📐 ALGEBRA & POLYNOMIALS

Binomial Theorem & Pascal Triangle Guide: Expansion & Combinatorics

Master the Binomial Theorem (a+b)^n, Pascal Triangle construction, finding general term coefficients, combinatorics nCr, and worked expansion examples.

AP
Dr. Sarah Chen • SolveCalc Math Lab
Sept 2026 Edition
7 min read
🎓 High School & College Prep

Executive Summary: Binomial Power Mechanics

The Binomial Theorem provides a closed-form algebraic formula to expand powers of binomials (a + b)ⁿ without tedious iterative polynomial multiplication:

01 // TERM COUNT LAW

For any non-negative integer power n, expanding (a + b)ⁿ produces exactly (n + 1) terms. The sum of powers of a and b in every term is always n.

02 // GENERAL TERM FORMULA

The (r + 1)-th term is given by Tᵣ₊₁ = ⁿCᵣ · aⁿ⁻ʳ · bʳ. Use this to pinpoint any isolated term or constant term without expanding the entire polynomial.

03 // ALTERNATING SIGNS

For differences (a - b)ⁿ, the signs alternate strictly: +, -, +, -, ... because odd powers of (-b) yield negative terms.

Expanding (x + y)² = x² + 2xy + y² is elementary. Expanding (x + y)³ = x³ + 3x²y + 3xy² + y³ takes a few lines of scratch work. But expanding (2x - 3y)⁸ or locating the constant term in (x² + 1/x)¹² by brute-force polynomial distribution requires dozens of tedious steps susceptible to arithmetic error.

The Binomial Theorem, discovered in historical antiquity across Persia, India, and China before its formal European synthesis by Blaise Pascal and Sir Isaac Newton, unites algebraic expansions directly with combinatorial counting principles.

§ 01 COMBINATORIAL FOUNDATIONS

Combinatorics & The Binomial Coefficient C(n, k)

When we evaluate the product of n identical binomials (a + b)(a + b)...(a + b), each term in the resulting polynomial is formed by choosing either 'a' or 'b' from each of the n parenthetical factors.

To calculate how many ways we can form the term aⁿ⁻ᵏbᵏ, we simply ask: In how many ways can we choose k instances of 'b' from n available parentheses?

ⁿCₖ = inom{n}{k} = rac{n!}{k!(n - k)!}

This insight demonstrates why combinations—the cornerstone of discrete mathematics and probability—are the precise coefficients of polynomial powers.

§ 02 PASCAL'S TRIANGLE

Pascal's Triangle Structure & Recursive Symmetries

Pascal's Triangle organizes these binomial coefficients into an infinite triangular array where every entry is the sum of the two numbers immediately above it:

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

This recursion is formally stated by Pascal's Identity:

inom{n}{k} = inom{n-1}{k-1} + inom{n-1}{k}

Crucial symmetries include:

  • Symmetry Property: inom{n}{k} = inom{n}{n-k} (Choosing k items is equivalent to leaving behind n - k items).
  • Row Sum Identity: The sum of all elements in Row n is exactly 2ⁿ, which represents the total number of subsets of an n-element set.
§ 03 THE MASTER FORMULA

The Formal Binomial Theorem & General Term T(r+1)

For any non-negative integer n, the Binomial Theorem states:

(a + b)ⁿ = sum_{r=0}^{n} inom{n}{r} a^{n-r} b^r = inom{n}{0}aⁿ + inom{n}{1}aⁿ⁻¹b + ... + inom{n}{n}bⁿ

When tackling exam problems, you will rarely be asked to expand a power beyond n = 5 entirely. Instead, questions will test your command of the General Term Formula:

Tᵣ₊₁ = inom{n}{r} a^{n-r} b^r

Note that r is always one less than the term's sequential position (e.g. for the 4th term, r = 3).

§ 04 EXTENDED ALGEBRA

Alternating Signs, Fractional Powers & Convergence

When the binomial involves subtraction (a - b)ⁿ, replace b with (-b):

Tᵣ₊₁ = inom{n}{r} a^{n-r} (-b)^r = (-1)^r inom{n}{r} a^{n-r} b^r

Newton extended the theorem to negative and fractional exponents: (1 + x)ⁿ where n ∈ ℝ. For non-integer n, the expansion generates an infinite series that converges if and only if |x| < 1:

(1 + x)ⁿ = 1 + nx + rac{n(n-1)}{2!}x² + rac{n(n-1)(n-2)}{3!}x³ + ...

This power series expansion forms the mathematical engine behind Taylor series and numerical approximations in high-performance computer graphics and scientific computing.

§ 05 WORKED EXAMPLES

Step-by-Step Worked Problems & Finding Specific Terms

Example 1: Expanding with Coefficients

Expand completely: (2x - 3)⁴

Row 4 coefficients are: 1, 4, 6, 4, 1

Term 1 (r=0): 1 · (2x)⁴ · (-3)⁰ = 1 · 16x⁴ · 1 = 16x⁴

Term 2 (r=1): 4 · (2x)³ · (-3)¹ = 4 · 8x³ · (-3) = -96x³

Term 3 (r=2): 6 · (2x)² · (-3)² = 6 · 4x² · 9 = +216x²

Term 4 (r=3): 4 · (2x)¹ · (-3)³ = 4 · 2x · (-27) = -216x

Term 5 (r=4): 1 · (2x)⁰ · (-3)⁴ = 1 · 1 · 81 = +81

Expansion: 16x⁴ - 96x³ + 216x² - 216x + 81

Example 2: Finding the Constant (Term Independent of x)

Find the constant term in the expansion of (x² + 2/x)⁶

General term: Tᵣ₊₁ = ⁶Cᵣ · (x²)⁶⁻ʳ · (2/x)ʳ

Simplify x exponents: x^{2(6-r)} · x^{-r} = x^{12 - 2r - r} = x^{12 - 3r}

For a constant term, the power of x must be 0: 12 - 3r = 0 → 3r = 12 → r = 4

Substitute r = 4: T₅ = ⁶C₄ · (2)⁴

⁶C₄ = 6! / (4! 2!) = (6 × 5) / 2 = 15

T₅ = 15 · 16 = 240

Final Answer: The constant term is 240 (the 5th term).

Binomial Theorem Frequently Asked Questions

Why is 0! defined as 1 in the binomial coefficient formula?

In combinatorics, 0! = 1 preserves consistency. For example, inom{n}{0} = n! / (0!(n-0)!) must equal 1 because there is exactly 1 way to choose zero elements from a set of n elements (namely, choosing the empty set). If 0! were 0, binomial coefficients would trigger division by zero.

How is the Binomial Theorem applied in probability?

The binomial probability distribution models independent trials with two outcomes (success p and failure q = 1 - p). The probability of exactly k successes in n trials is P(X = k) = inom{n}{k} pᵏ qⁿ⁻ᵏ, which is precisely the (k+1)-th term in the binomial expansion of (q + p)ⁿ = 1ⁿ = 1.

💡

SolveCalc Pedagogical Insight

FRACTAL MATH

If you take Pascal's Triangle up to thousands of rows and shade all odd numbers black while leaving even numbers white, the resulting geometric pattern is identical to the Sierpiński Triangle, a famous self-similar fractal!

This connection between basic modular arithmetic (n mod 2) and fractal geometry illustrates how deeply interconnected algebraic combinations and chaos theory are.

📚 Related Math Guides & Masterclasses

📄 Printable Exam Cheatsheet

Download the Polynomials & Algebra Cheat Sheet (PDF)

Free, laminated-style reference summary with high-yield formulas, step-by-step rules, and exam shortcuts.