Binomial Theorem

The binomial theorem asserts that for any positive integer n, the expression ( a + b )^{n} can be expanded as a finite sum of n + 1 terms.

Statement

The binomial theorem asserts that for any positive integer $n$, the expression $( a + b )^{n}$ can be expanded as a finite sum of $n + 1$ terms. Each term consists of a binomial coefficient multiplied by a power of $a$ and a power of $b$: \(( a + b )^{n} = ( \frac{n}{0} ) a^{n} b^{0} + ( \frac{n}{1} ) a^{n - 1} b^{1} + \ldots + ( \frac{n}{n - 1} ) a^{1} b^{n - 1} + ( \frac{n}{n} ) a^{0} b^{n}\)


The formula is composed of the following elements:

  • $n$, the exponent term, is a positive integer $n \in \mathbb{N}^{+}$.
  • $a$ is raised to a decreasing power, from $n$ to $0$.
  • $b$ is raised to an increasing power from $0$ to $n$.
  • The term $( \frac{n}{k} )$ is the binomial coefficient, where $k$ takes values between $0$ and $n$.
The coefficients $( \frac{n}{k} )$ appearing in the expansion correspond exactly to the entries of the $n$-th row of Pascal’s Triangle. The symmetry $( \frac{n}{k} ) = ( \frac{n}{n - k} )$ reflects the fact that choosing $k$ elements from $n$ is equivalent to leaving out $n - k$.

In its compact form, the binomial theorem can be expressed as the summation of $n + 1$ terms:

\[( a + b )^{n} = \sum_{k = 0}^{n} ( \frac{n}{k} ) a^{n - k} b^{k}\]

Binomial coefficient

The binomial coefficient represents the number of ways to choose $k$ items from a larger set of $n$ elements, ignoring the order of selection. In combinatorics, it is commonly referred to as n choose k, and is denoted by the notation:

\[( \frac{n}{k} ) = \{ \frac{n !}{k ! ( n - k ) !} & 0 \leq k \leq n \\ 0 & n < k\]
  • $n , k \in \mathbb{N}$.
  • $n$ is the total number of elements in the set.
  • $k$ is the number of items to be selected.
  • $n !$ and $( n - k ) !$ are the factorials of the natural numbers $n$ and $n - k$ respectively.

Proof

There are two standard proofs of the theorem. The first is based on a combinatorial argument. The expansion of $( a + b )^{n}$ can be viewed as the product of $n$ identical factors:

\[( a + b )^{n} = \underset{n \text{factors}}{\underbrace{( a + b ) ( a + b ) \hdots ( a + b )}}\]

Each term in the expanded product results from selecting either $a$ or $b$ from each factor. A term of the form $a^{n - k} b^{k}$ occurs when $b$ is chosen from exactly $k$ of the $n$ factors, and $a$ from the remaining $n - k$. The number of such selections is $( \frac{n}{k} )$, which enumerates the $k$-element subsets of the $n$ factors. Summing over all possible values of $k$ from $0$ to $n$ establishes the theorem.


The second proof uses mathematical induction on $n$. For $n = 1$, the identity becomes $( a + b )^{1} = a + b$, which is clearly valid. Assume the theorem holds for some integer $n \geq 1$. Multiplying both sides of the inductive hypothesis by $( a + b )$ yields:

\[( a + b )^{n + 1} & = ( a + b ) \sum_{k = 0}^{n} ( \frac{n}{k} ) a^{n - k} b^{k} \\ & = \sum_{k = 0}^{n} ( \frac{n}{k} ) a^{n - k + 1} b^{k} + \sum_{k = 0}^{n} ( \frac{n}{k} ) a^{n - k} b^{k + 1}\]

Re-index the second sum by letting $j = k + 1$ and separate the edge terms as follows:

\[= a^{n + 1} + \sum_{k = 1}^{n} [ ( \frac{n}{k} ) + ( \frac{n}{k - 1} ) ] a^{n + 1 - k} b^{k} + b^{n + 1}\]

Apply Pascal’s identity, $( \frac{n}{k} ) + ( \frac{n}{k - 1} ) = ( \frac{n + 1}{k} )$, to the interior terms to obtain:

\[( a + b )^{n + 1} = \sum_{k = 0}^{n + 1} ( \frac{n + 1}{k} ) a^{n + 1 - k} b^{k}\]

This expression is the binomial theorem for $n + 1$, which completes the induction.

Example 1

Expand $( x + 2 )^{4}$ using the binomial theorem, with $a = x$, $b = 2$, and $n = 4$.

Applying the formula:

\[( x + 2 )^{4} = \sum_{k = 0}^{4} ( \frac{4}{k} ) x^{4 - k} \cdot 2^{k}\]

Computing each term:

\[k = 0 & ( \frac{4}{0} ) x^{4} \cdot 2^{0} = x^{4} \\ k = 1 & ( \frac{4}{1} ) x^{3} \cdot 2^{1} = 8 x^{3} \\ k = 2 & ( \frac{4}{2} ) x^{2} \cdot 2^{2} = 24 x^{2} \\ k = 3 & ( \frac{4}{3} ) x^{1} \cdot 2^{3} = 32 x \\ k = 4 & ( \frac{4}{4} ) x^{0} \cdot 2^{4} = 16\]

Summing all terms we obtain: \(( x + 2 )^{4} = x^{4} + 8 x^{3} + 24 x^{2} + 32 x + 16\)

Example 2

For a binomial involving subtraction, the binomial theorem applies with $b$ replaced by a negative value. The signs alternate in the expansion because $( - 1 )^{k}$ yields a positive value for even $k$ and a negative value for odd $k$. The expansion of $( x - 1 )^{5}$, where $a = x$, $b = - 1$, and $n = 5$, is as follows:

\[( x - 1 )^{5} = \sum_{k = 0}^{5} ( \frac{5}{k} ) x^{5 - k} \cdot ( - 1 )^{k}\]

Each term in the expansion is computed as follows:

\[k = 0 & ( \frac{5}{0} ) x^{5} \cdot ( - 1 )^{0} = x^{5} \\ k = 1 & ( \frac{5}{1} ) x^{4} \cdot ( - 1 )^{1} = - 5 x^{4} \\ k = 2 & ( \frac{5}{2} ) x^{3} \cdot ( - 1 )^{2} = 10 x^{3} \\ k = 3 & ( \frac{5}{3} ) x^{2} \cdot ( - 1 )^{3} = - 10 x^{2} \\ k = 4 & ( \frac{5}{4} ) x^{1} \cdot ( - 1 )^{4} = 5 x \\ k = 5 & ( \frac{5}{5} ) x^{0} \cdot ( - 1 )^{5} = - 1\]

Summing all terms we have:

\[( x - 1 )^{5} = x^{5} - 5 x^{4} + 10 x^{3} - 10 x^{2} + 5 x - 1\]

Selected resources