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$.
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$:
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:
- Combinatorial Symmetry: Selecting $k$ items to include is equivalent to selecting $n - k$ items to exclude:
- 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:
Algebraic proof of Pascal's Identity verifies this relationship:
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$:
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:
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:
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$):
- Write out the general term $T_{k+1}$ with explicit powers.
- Collect the variable exponents into a single linear equation in $k$: $p(n - k) - q k = m$.
- 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.
- 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:
The total probability across all possible outcomes sums to 1 as an immediate consequence of the Binomial Theorem:
Pascal's Triangle & Binomial Coefficients Table
| Row ($n$) | Binomial Expansion | Row 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$.
- Determine the term independent of $x$ (the constant term).
- 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: Separate the numerical and variable factors:
Step 2: Solve for the Constant Term ($x^0$). The constant term corresponds to an exponent of zero on $x$: 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: Compute each component:
Step 3: Solve for the Coefficient of $x^6$. Set the variable exponent equal to 6: This corresponds to the 5th term ($T_5$). Evaluate the coefficient: Compute each component: Both specific terms are completely determined.
What is the coefficient of x^3 in the algebraic expansion of (2x - 3)^7?
What is the term independent of x (the constant term) in the binomial expansion of (x^2 + 2 / x)^6?
What is the sum of all coefficients in the expansion of the binomial (3x - 2y)^5?
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?