18.2 Binomial Theorem, Pascal's Triangle & General Term Determination

Key Takeaways

  • The Binomial Theorem states that $(a + b)^n = \sum_{k=0}^n \binom{n}{k} a^{n-k} b^k$, expanding into exactly $n + 1$ terms where the sum of powers in each term is $n$.
  • Binomial coefficients $\binom{n}{k} = \frac{n!}{k!(n - k)!}$ correspond to row $n$ of Pascal's Triangle, governed by Pascal's Identity $\binom{n}{k} = \binom{n-1}{k-1} + \binom{n-1}{k}$ and symmetry $\binom{n}{k} = \binom{n}{n-k}$.
  • The general $(k+1)$-th term formula $T_{k+1} = \binom{n}{k} a^{n-k} b^k$ indexes terms starting from $k = 0$; finding the $m$-th term requires setting $k = m - 1$.
  • To find constant terms or specific power coefficients in rational binomials $\left(A x^p + B x^{-q}\right)^n$, express exponents as a linear equation in $k$ and solve for the integer index $k \in \{0, 1, \dots, n\}$.
  • The sum of all coefficients in $(a x + b y)^n$ is evaluated instantaneously by substituting $x = 1$ and $y = 1$, yielding $(a + b)^n$.
Last updated: September 2026

18.2 Binomial Theorem, Pascal's Triangle & General Term Determination

Combinatorial Foundations: Combinations & Factorial Notation

The algebraic expansion of polynomial powers is intimately connected to combinatorics. The number of distinct subsets of size $k$ that can be selected from an $n$-element set without regard to order is given by the combination formula, denoted $\binom{n}{k}$ (read '$n$ choose $k$') or ${}_nC_k$: (nk)=n!k!(nk)!for 0kn\binom{n}{k} = \frac{n!}{k!(n - k)!} \quad \text{for } 0 \le k \le n

where $n! = n \times (n - 1) \times \dots \times 2 \times 1$, with the fundamental convention $0! = 1$. The combination values satisfy two structural algebraic properties:

  1. Combinatorial Symmetry: Selecting $k$ items to include is equivalent to selecting $n - k$ items to exclude: (nk)=(nnk)\binom{n}{k} = \binom{n}{n - k}
  2. Boundary Values: For any non-negative integer $n$, $\binom{n}{0} = 1$ and $\binom{n}{n} = 1$.

Pascal's Triangle & Pascal's Identity

When combinations are arranged sequentially by row $n$ and entry $k$, they form Pascal's Triangle. The generating mechanism that produces each interior entry by adding the two adjacent numbers directly above it is formalized as Pascal's Identity: (nk)=(n1k1)+(n1k)for 1kn1\binom{n}{k} = \binom{n - 1}{k - 1} + \binom{n - 1}{k} \quad \text{for } 1 \le k \le n - 1

Algebraic proof of Pascal's Identity verifies this relationship: (n1)!(k1)!(nk)!+(n1)!k!(n1k)!=(n1)!kk!(nk)!+(n1)!(nk)k!(nk)!=(n1)![k+nk]k!(nk)!=n!k!(nk)!=(nk)\frac{(n-1)!}{(k-1)!(n-k)!} + \frac{(n-1)!}{k!(n-1-k)!} = \frac{(n-1)! \cdot k}{k!(n-k)!} + \frac{(n-1)! \cdot (n-k)}{k!(n-k)!} = \frac{(n-1)![k + n - k]}{k!(n-k)!} = \frac{n!}{k!(n-k)!} = \binom{n}{k}

Key geometric and algebraic invariants of Pascal's Triangle include:

  • Row Sums: The sum of entries in row $n$ equals $2^n$: $\sum_{k=0}^n \binom{n}{k} = 2^n$. This represents the total number of subsets of an $n$-element set (the cardinality of the power set).
  • Alternating Row Sums: For any row $n \ge 1$, the alternating sum of entries is identically zero: $\sum_{k=0}^n (-1)^k \binom{n}{k} = 0$.

The Binomial Theorem: Formulation & Properties

For any real or complex numbers $a$ and $b$ and any non-negative integer $n$, the Binomial Theorem provides the closed-form expansion of $(a + b)^n$: (a+b)n=k=0n(nk)ankbk=(n0)an+(n1)an1b+(n2)an2b2++(nn)bn(a + b)^n = \sum_{k=0}^n \binom{n}{k} a^{n-k} b^k = \binom{n}{0}a^n + \binom{n}{1}a^{n-1}b + \binom{n}{2}a^{n-2}b^2 + \dots + \binom{n}{n}b^n

Expansion properties tested on the FTCE examination include:

  • Term Count: The complete expansion contains exactly $n + 1$ terms.
  • Homogeneous Total Degree: The sum of exponents of $a$ and $b$ in every individual term is constant: $(n - k) + k = n$.
  • Sum of All Coefficients: Setting all variable terms to 1 evaluates the sum of coefficients instantaneously: substituting $x = 1, y = 1$ into $(c_1 x + c_2 y)^n$ yields $(c_1 + c_2)^n$.

The General $(k+1)$-th Term Formula

Because the summation index starts at $k = 0$, the terms are indexed sequentially:

  • $1$st term ($k = 0$): $T_1 = \binom{n}{0} a^n b^0$
  • $2$nd term ($k = 1$): $T_2 = \binom{n}{1} a^{n-1} b^1$
  • In general, the $(k+1)$-th term is given by: Tk+1=(nk)ankbkT_{k+1} = \binom{n}{k} a^{n-k} b^k

A ubiquitous candidate error is confusing the term order $m$ with the index parameter $k$. To find the 6th term, one must set $k = 6 - 1 = 5$, not $k = 6$.

When expressions involve negative signs, fractions, or algebraic powers, each component must be partitioned carefully into its numerical coefficient and variable exponent: (Axp+Bxq)n    Tk+1=(nk)(Axp)nk(Bxq)k=(nk)AnkBkxp(nk)qk\left(A x^p + B x^{-q}\right)^n \implies T_{k+1} = \binom{n}{k} (A x^p)^{n-k} (B x^{-q})^k = \binom{n}{k} A^{n-k} B^k x^{p(n-k) - q k}


Finding Specific Terms & Constant Terms

To identify a term possessing a specific power of $x$ (such as $x^m$, or the constant term where $x^0 = 1$):

  1. Write out the general term $T_{k+1}$ with explicit powers.
  2. Collect the variable exponents into a single linear equation in $k$: $p(n - k) - q k = m$.
  3. Solve for $k$. If $k$ is an integer in the domain $0 \le k \le n$, the term exists; if $k$ is fractional or outside the domain, the coefficient of that power is 0.
  4. Substitute the solved integer $k$ back into the coefficient expression $\binom{n}{k} A^{n-k} B^k$ to evaluate the exact numerical value.

Combinatorics & the Binomial Probability Distribution

The Binomial Theorem provides the mathematical foundation for the binomial probability distribution. In an experiment consisting of $n$ independent and identical Bernoulli trials, where each trial results in either 'success' with probability $p$ or 'failure' with probability $q = 1 - p$, the probability of obtaining exactly $k$ successes is given by: P(X=k)=(nk)pk(1p)nkfor k{0,1,2,,n}P(X = k) = \binom{n}{k} p^k (1 - p)^{n-k} \quad \text{for } k \in \{0, 1, 2, \dots, n\}

The total probability across all possible outcomes sums to 1 as an immediate consequence of the Binomial Theorem: k=0nP(X=k)=k=0n(nk)pk(1p)nk=(p+(1p))n=1n=1\sum_{k=0}^n P(X = k) = \sum_{k=0}^n \binom{n}{k} p^k (1 - p)^{n-k} = (p + (1 - p))^n = 1^n = 1


Pascal's Triangle & Binomial Coefficients Table

Row ($n$)Binomial ExpansionRow Coefficients $\binom{n}{k}$Row Sum ($2^n$)
0$(a + b)^0$$1$$2^0 = 1$
1$(a + b)^1$$1,; 1$$2^1 = 2$
2$(a + b)^2$$1,; 2,; 1$$2^2 = 4$
3$(a + b)^3$$1,; 3,; 3,; 1$$2^3 = 8$
4$(a + b)^4$$1,; 4,; 6,; 4,; 1$$2^4 = 16$
5$(a + b)^5$$1,; 5,; 10,; 10,; 5,; 1$$2^5 = 32$
6$(a + b)^6$$1,; 6,; 15,; 20,; 15,; 6,; 1$$2^6 = 64$

Worked Exemplar: Determining Specific Terms in a Rational Expansion

Problem: Consider the binomial expansion of $\left(2x^2 - \frac{3}{x}\right)^9$.

  1. Determine the term independent of $x$ (the constant term).
  2. Determine the coefficient of $x^6$.

Step 1: Set Up the General Term Formula. Identify $a = 2x^2$, $b = -3x^{-1}$, and $n = 9$. The general $(k+1)$-th term is: Tk+1=(9k)(2x2)9k(3x)k=(9k)29k(x2)9k(3)k(x1)kT_{k+1} = \binom{9}{k} (2x^2)^{9-k} \left(-\frac{3}{x}\right)^k = \binom{9}{k} 2^{9-k} (x^2)^{9-k} (-3)^k (x^{-1})^k Separate the numerical and variable factors: Tk+1=(9k)29k(3)kx2(9k)k=(9k)29k(3)kx183kT_{k+1} = \binom{9}{k} 2^{9-k} (-3)^k x^{2(9-k) - k} = \binom{9}{k} 2^{9-k} (-3)^k x^{18 - 3k}

Step 2: Solve for the Constant Term ($x^0$). The constant term corresponds to an exponent of zero on $x$: 183k=0    3k=18    k=618 - 3k = 0 \implies 3k = 18 \implies k = 6 Because $k = 6$ is an integer satisfying $0 \le 6 \le 9$, the constant term exists and corresponds to the $(6 + 1) = 7\text{th}$ term ($T_7$). Evaluate the coefficient: Constant Term=(96)296(3)6=(93)23(3)6\text{Constant Term} = \binom{9}{6} 2^{9-6} (-3)^6 = \binom{9}{3} 2^3 (-3)^6 Compute each component: (93)=9×8×73×2×1=84\binom{9}{3} = \frac{9 \times 8 \times 7}{3 \times 2 \times 1} = 84 23=8,(3)6=7292^3 = 8, \quad (-3)^6 = 729 Constant Term=84×8×729=672×729=489,888\text{Constant Term} = 84 \times 8 \times 729 = 672 \times 729 = 489,888

Step 3: Solve for the Coefficient of $x^6$. Set the variable exponent equal to 6: 183k=6    3k=12    k=418 - 3k = 6 \implies 3k = 12 \implies k = 4 This corresponds to the 5th term ($T_5$). Evaluate the coefficient: Coefficient of x6=(94)294(3)4=(94)25(3)4\text{Coefficient of } x^6 = \binom{9}{4} 2^{9-4} (-3)^4 = \binom{9}{4} 2^5 (-3)^4 Compute each component: (94)=9×8×7×64×3×2×1=126\binom{9}{4} = \frac{9 \times 8 \times 7 \times 6}{4 \times 3 \times 2 \times 1} = 126 25=32,(3)4=812^5 = 32, \quad (-3)^4 = 81 Coefficient of x6=126×32×81=4,032×81=326,592\text{Coefficient of } x^6 = 126 \times 32 \times 81 = 4,032 \times 81 = 326,592 Both specific terms are completely determined.

Test Your Knowledge

What is the coefficient of x^3 in the algebraic expansion of (2x - 3)^7?

A
B
C
D
Test Your Knowledge

What is the term independent of x (the constant term) in the binomial expansion of (x^2 + 2 / x)^6?

A
B
C
D
Test Your Knowledge

What is the sum of all coefficients in the expansion of the binomial (3x - 2y)^5?

A
B
C
D
Test Your Knowledge

A fair game uses a biased six-sided die where the probability of rolling a multiple of 3 (either a 3 or 6) is p = 1/3. If the die is rolled 6 times independently, what is the exact probability of rolling a multiple of 3 exactly 4 times?

A
B
C
D