Binomial Theorem • Topic 1 of 3

Binomial Theorem for a Positive Integral Index and Pascal's Triangle

Expanding $(a+b)^2$ or $(a+b)^3$ by hand is easy, but $(a+b)^{10}$ would mean multiplying ten brackets together. The Binomial Theorem gives the entire expansion of $(a+b)^n$ for any positive integer $n$ in one stroke, without doing the multiplication.

$$(a+b)^n=\sum_{r=0}^{n}\binom{n}{r}a^{n-r}b^{r}=\binom{n}{0}a^n+\binom{n}{1}a^{n-1}b+\binom{n}{2}a^{n-2}b^2+\cdots+\binom{n}{n}b^n$$

The numbers $\binom{n}{r}={}^{n}C_r=\dfrac{n!}{r!\,(n-r)!}$ are the binomial coefficients. Read the expansion column by column: the power of $a$ falls from $n$ down to $0$, the power of $b$ rises from $0$ up to $n$, and in every single term the two powers add to $n$. There are exactly $n+1$ terms.

Properties worth memorising: The expansion is symmetric because $\binom{n}{r}=\binom{n}{n-r}$, so coefficients read the same forwards and backwards. Putting $a=b=1$ gives $\binom{n}{0}+\binom{n}{1}+\cdots+\binom{n}{n}=2^n$ (the sum of all coefficients), while $a=1,\,b=-1$ gives the alternating sum $\binom{n}{0}-\binom{n}{1}+\cdots=0$. A handy special case is $(1+x)^n=\sum_{r=0}^{n}\binom{n}{r}x^{r}$.

Pascal's Triangle generates these coefficients without any factorials. Each row begins and ends in $1$, and every interior number is the sum of the two numbers diagonally above it — the identity $\binom{n}{r}=\binom{n-1}{r-1}+\binom{n-1}{r}$, known as Pascal's rule.

$n$Coefficients (row of Pascal's triangle)Row sum $=2^n$
$0$$1$$1$
$1$$1\quad 1$$2$
$2$$1\quad 2\quad 1$$4$
$3$$1\quad 3\quad 3\quad 1$$8$
$4$$1\quad 4\quad 6\quad 4\quad 1$$16$
$5$$1\quad 5\quad 10\quad 10\quad 5\quad 1$$32$

Deeper Insight — why the coefficients are exactly ${}^{n}C_r$: The binomial coefficient is not a mysterious lookup number; it is a count. When you expand $(a+b)^n=(a+b)(a+b)\cdots(a+b)$ with $n$ brackets, every term in the product is formed by choosing either $a$ or $b$ from each bracket. A term $a^{n-r}b^{r}$ arises whenever you pick $b$ from exactly $r$ of the $n$ brackets and $a$ from the rest — and the number of ways to choose those $r$ brackets is precisely $\binom{n}{r}$, the number of $r$-element subsets of an $n$-element set. This is why Pascal's identity $\binom{n}{r}=\binom{n-1}{r-1}+\binom{n-1}{r}$ holds: a subset either contains a fixed element (choose the other $r-1$ from $n-1$) or it does not (choose all $r$ from $n-1$). The same subset-counting also explains why all the coefficients add to $2^n$: that is the total number of subsets of an $n$-set. Seeing algebra and counting as two views of one idea makes the whole chapter feel inevitable rather than memorised.

Pascal's triangle with rows for n equals zero to five Pascal's Triangle 1 11 121 1331 14641 15101051 n = 0n = 1n = 2n = 3n = 4n = 5 each number = sum of the two above it (4 + 6 = 10) Powers of a fall while powers of b rise in the expansion Pattern of (a + b)⁴ a⁴4a³b6a²b²4ab³b⁴ power of a: 4 → 0   power of b: 0 → 4   sum stays 4 in every term
1
Worked Example
Expand $(x+2)^4$ using the Binomial Theorem.
Solution
  1. Coefficients from row $n=4$ of Pascal's triangle: $1,\,4,\,6,\,4,\,1$.
  2. Take $a=x,\ b=2$, powers of $x$ falling and powers of $2$ rising: $x^4+4x^3(2)+6x^2(2^2)+4x(2^3)+2^4$.
  3. Simplify each term: $x^4+8x^3+24x^2+32x+16$.

Answer: $(x+2)^4=x^4+8x^3+24x^2+32x+16$.

2
Worked Example
Expand $(2x-3)^3$.
Solution
  1. Coefficients from row $n=3$: $1,\,3,\,3,\,1$, with $a=2x,\ b=-3$.
  2. $(2x)^3+3(2x)^2(-3)+3(2x)(-3)^2+(-3)^3$.
  3. $=8x^3+3(4x^2)(-3)+3(2x)(9)-27=8x^3-36x^2+54x-27$.

Answer: $(2x-3)^3=8x^3-36x^2+54x-27$.

3
Worked Example
Using the Binomial Theorem, evaluate $(102)^4$ as $(100+2)^4$.
Solution
  1. Apply the $n=4$ expansion with $a=100,\ b=2$: $\binom{4}{0}100^4+\binom{4}{1}100^3(2)+\binom{4}{2}100^2(2^2)+\binom{4}{3}100(2^3)+\binom{4}{4}2^4$.
  2. $=100000000+4(1000000)(2)+6(10000)(4)+4(100)(8)+16$.
  3. $=100000000+8000000+240000+3200+16$.
  4. Add: $108243216$.

Answer: $(102)^4=108243216$.

4
Worked Example
Find the sum of the binomial coefficients in the expansion of $(1+x)^{12}$.
Solution
  1. The sum of all coefficients is found by putting $x=1$.
  2. $(1+1)^{12}=2^{12}$.
  3. $2^{12}=4096$.

Answer: The sum of the coefficients is $4096$.

5
Worked Example
Use Pascal's rule $\binom{n}{r}=\binom{n-1}{r-1}+\binom{n-1}{r}$ to find the entry below $10$ and $5$ in row $n=5$.
Solution
  1. Row $n=5$ is $1,\,5,\,10,\,10,\,5,\,1$; the adjacent pair $10$ and $5$ are $\binom{5}{3}$ and $\binom{5}{4}$.
  2. The entry directly below them in row $n=6$ is $\binom{6}{4}=\binom{5}{3}+\binom{5}{4}$.
  3. $=10+5=15$.

Answer: The entry is $15$ (indeed row $n=6$ is $1,6,15,20,15,6,1$).

6
Worked Example
Expand $\left(x+\dfrac{1}{x}\right)^4$ and state the constant term.
Solution
  1. Coefficients $1,\,4,\,6,\,4,\,1$ with $a=x,\ b=\dfrac{1}{x}$.
  2. $x^4+4x^3\!\cdot\!\dfrac{1}{x}+6x^2\!\cdot\!\dfrac{1}{x^2}+4x\!\cdot\!\dfrac{1}{x^3}+\dfrac{1}{x^4}$.
  3. $=x^4+4x^2+6+\dfrac{4}{x^2}+\dfrac{1}{x^4}$; the term with no $x$ is $6$.

Answer: Expansion $=x^4+4x^2+6+\dfrac{4}{x^2}+\dfrac{1}{x^4}$; the constant term is $6$.

Key Points

  • $(a+b)^n=\sum_{r=0}^{n}\binom{n}{r}a^{n-r}b^{r}$ has exactly $n+1$ terms, with the powers of $a$ and $b$ always adding to $n$.
  • The coefficients $\binom{n}{r}=\dfrac{n!}{r!(n-r)!}$ are symmetric: $\binom{n}{r}=\binom{n}{n-r}$.
  • Pascal's triangle builds each row by adding adjacent entries above: $\binom{n}{r}=\binom{n-1}{r-1}+\binom{n-1}{r}$.
  • Sum of all coefficients $=2^n$ (put $a=b=1$); the alternating sum is $0$ (put $a=1,b=-1$).
  • $\binom{n}{r}$ counts the $r$-element subsets of an $n$-set — the bridge between algebra and combinatorics.
Tap an option to check your answer0 / 4
Q1.The number of terms in the expansion of $(a+b)^n$ is:
Explanation: There are $n+1$ terms.
Q2.$(a+b)^2=$
Explanation: Square of a binomial.
Q3.The sum of the binomial coefficients in $(1+x)^n$ is:
Explanation: Put $x=1$.
Q4.Row $4$ of Pascal's triangle (for $(a+b)^4$) is:
Explanation: Coefficients of $(a+b)^4$.