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.

Reading the formula correctly. The two symbols $a$ and $b$ are the whole first and second entries of the bracket — including any sign, number or power they carry. In $(2x-3)^n$ you must take $a=2x$ and $b=-3$, never just $x$ and $3$; the minus sign rides along with $b$, so $b^r=(-3)^r$ alternates the signs of the expansion. Forgetting to carry the coefficient or the sign is the single most common slip in this whole chapter.

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$. Adding and subtracting those two results shows the sum of the even-position coefficients equals the sum of the odd-position ones, each being $2^{n-1}$. 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. To find row $n$ you only need row $n-1$, so the triangle is a quick hand method whenever $n$ is small (say $n\le 8$); for larger $n$ the factorial formula is faster.

$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$

Using the theorem to evaluate numbers. A power like $(1.01)^5$ or $98^3$ becomes easy once you write the base as a sum or difference of a round number and a small number, then apply the expansion. Write $1.01=1+0.01$ and $98=100-2$. Because each later term carries a higher power of the small piece, the terms shrink fast — so for an approximation you may keep only the first two or three terms, while for an exact value you keep them all. This is why $(1+x)^n\approx 1+nx$ for very small $x$: every term from $x^2$ onward is negligible.

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$.

7
Worked Example
Evaluate $(98)^3$ exactly using the Binomial Theorem.
Solution
  1. Write $98=100-2$ and use $n=3$ with $a=100,\ b=-2$.
  2. $(100-2)^3=100^3+3(100)^2(-2)+3(100)(-2)^2+(-2)^3$.
  3. $=1000000-60000+1200-8$.
  4. Add: $941192$.

Answer: $(98)^3=941192$.

8
Worked Example
Use the Binomial Theorem to approximate $(1.01)^5$, keeping terms up to $x^2$.
Solution
  1. Write $1.01=1+0.01$, so we need $(1+x)^5$ with $x=0.01$.
  2. $(1+x)^5=1+5x+10x^2+10x^3+\cdots$; later terms are tiny for $x=0.01$.
  3. Keep three terms: $1+5(0.01)+10(0.01)^2=1+0.05+0.001=1.051$.

Answer: $(1.01)^5\approx 1.051$ (the exact value is $1.0510100501$).

9
Worked Example
Expand $\left(2x-\dfrac{1}{x}\right)^5$ in full.
Solution
  1. Coefficients from row $n=5$: $1,5,10,10,5,1$, with $a=2x,\ b=-\dfrac{1}{x}$.
  2. Term by term: $(2x)^5+5(2x)^4\!\left(-\dfrac1x\right)+10(2x)^3\!\left(-\dfrac1x\right)^2+10(2x)^2\!\left(-\dfrac1x\right)^3+5(2x)\!\left(-\dfrac1x\right)^4+\left(-\dfrac1x\right)^5$.
  3. $=32x^5-80x^3+80x-\dfrac{40}{x}+\dfrac{10}{x^3}-\dfrac{1}{x^5}$.

Answer: $\left(2x-\dfrac{1}{x}\right)^5=32x^5-80x^3+80x-\dfrac{40}{x}+\dfrac{10}{x^3}-\dfrac{1}{x^5}$.

10
Worked Example
Find the value of $(\sqrt{3}+1)^4+(\sqrt{3}-1)^4$.
Solution
  1. Add the two expansions; the odd-power terms (with one $\sqrt3$) cancel and the even-power terms double.
  2. $(\sqrt3+1)^4+(\sqrt3-1)^4=2\big[\binom{4}{0}(\sqrt3)^4+\binom{4}{2}(\sqrt3)^2+\binom{4}{4}\big]$.
  3. $=2[\,9+6(3)+1\,]=2[\,9+18+1\,]=2(28)=56$.

Answer: $(\sqrt{3}+1)^4+(\sqrt{3}-1)^4=56$.

11
Worked Example
Prove that $\binom{n}{0}+\binom{n}{2}+\binom{n}{4}+\cdots=2^{n-1}$ (sum of even-position coefficients).
Solution
  1. Put $x=1$ in $(1+x)^n$: $\binom{n}{0}+\binom{n}{1}+\cdots+\binom{n}{n}=2^n$. Call the even-index sum $E$ and the odd-index sum $O$, so $E+O=2^n$.
  2. Put $x=-1$: $\binom{n}{0}-\binom{n}{1}+\binom{n}{2}-\cdots=0$, i.e. $E-O=0$.
  3. Adding the two equations: $2E=2^n$, so $E=2^{n-1}$.

Answer: $\binom{n}{0}+\binom{n}{2}+\cdots=2^{n-1}$ (and likewise the odd-position coefficients sum to $2^{n-1}$).

12
Worked Example
Find a rational approximation of $(0.99)^4$ correct to two decimal places.
Solution
  1. Write $0.99=1-0.01$, so we need $(1-x)^4$ with $x=0.01$.
  2. $(1-x)^4=1-4x+6x^2-\cdots$; keep the first two terms for two-place accuracy.
  3. $\approx 1-4(0.01)=1-0.04=0.96$ (the $6x^2$ term is $0.0006$, too small to affect two places).

Answer: $(0.99)^4\approx 0.96$.

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$.
  • Take $a$ and $b$ as the whole bracket entries — carry every sign, number and power (so $b=-3$ alternates the signs).
  • 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$); even- and odd-position coefficients each sum to $2^{n-1}$.
  • To evaluate numbers, split the base as round $\pm$ small (e.g. $98=100-2$), expand, and truncate for an approximation; $(1+x)^n\approx 1+nx$ for small $x$.
  • $\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$.