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.
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.
Expand $(x+2)^4$ using the Binomial Theorem.
Solution- Coefficients from row $n=4$ of Pascal's triangle: $1,\,4,\,6,\,4,\,1$.
- 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$.
- Simplify each term: $x^4+8x^3+24x^2+32x+16$.
Answer: $(x+2)^4=x^4+8x^3+24x^2+32x+16$.
Expand $(2x-3)^3$.
Solution- Coefficients from row $n=3$: $1,\,3,\,3,\,1$, with $a=2x,\ b=-3$.
- $(2x)^3+3(2x)^2(-3)+3(2x)(-3)^2+(-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$.
Using the Binomial Theorem, evaluate $(102)^4$ as $(100+2)^4$.
Solution- 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$.
- $=100000000+4(1000000)(2)+6(10000)(4)+4(100)(8)+16$.
- $=100000000+8000000+240000+3200+16$.
- Add: $108243216$.
Answer: $(102)^4=108243216$.
Find the sum of the binomial coefficients in the expansion of $(1+x)^{12}$.
Solution- The sum of all coefficients is found by putting $x=1$.
- $(1+1)^{12}=2^{12}$.
- $2^{12}=4096$.
Answer: The sum of the coefficients is $4096$.
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- Row $n=5$ is $1,\,5,\,10,\,10,\,5,\,1$; the adjacent pair $10$ and $5$ are $\binom{5}{3}$ and $\binom{5}{4}$.
- The entry directly below them in row $n=6$ is $\binom{6}{4}=\binom{5}{3}+\binom{5}{4}$.
- $=10+5=15$.
Answer: The entry is $15$ (indeed row $n=6$ is $1,6,15,20,15,6,1$).
Expand $\left(x+\dfrac{1}{x}\right)^4$ and state the constant term.
Solution- Coefficients $1,\,4,\,6,\,4,\,1$ with $a=x,\ b=\dfrac{1}{x}$.
- $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}$.
- $=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$.
Evaluate $(98)^3$ exactly using the Binomial Theorem.
Solution- Write $98=100-2$ and use $n=3$ with $a=100,\ b=-2$.
- $(100-2)^3=100^3+3(100)^2(-2)+3(100)(-2)^2+(-2)^3$.
- $=1000000-60000+1200-8$.
- Add: $941192$.
Answer: $(98)^3=941192$.
Use the Binomial Theorem to approximate $(1.01)^5$, keeping terms up to $x^2$.
Solution- Write $1.01=1+0.01$, so we need $(1+x)^5$ with $x=0.01$.
- $(1+x)^5=1+5x+10x^2+10x^3+\cdots$; later terms are tiny for $x=0.01$.
- 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$).
Expand $\left(2x-\dfrac{1}{x}\right)^5$ in full.
Solution- Coefficients from row $n=5$: $1,5,10,10,5,1$, with $a=2x,\ b=-\dfrac{1}{x}$.
- 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$.
- $=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}$.
Find the value of $(\sqrt{3}+1)^4+(\sqrt{3}-1)^4$.
Solution- Add the two expansions; the odd-power terms (with one $\sqrt3$) cancel and the even-power terms double.
- $(\sqrt3+1)^4+(\sqrt3-1)^4=2\big[\binom{4}{0}(\sqrt3)^4+\binom{4}{2}(\sqrt3)^2+\binom{4}{4}\big]$.
- $=2[\,9+6(3)+1\,]=2[\,9+18+1\,]=2(28)=56$.
Answer: $(\sqrt{3}+1)^4+(\sqrt{3}-1)^4=56$.
Prove that $\binom{n}{0}+\binom{n}{2}+\binom{n}{4}+\cdots=2^{n-1}$ (sum of even-position coefficients).
Solution- 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$.
- Put $x=-1$: $\binom{n}{0}-\binom{n}{1}+\binom{n}{2}-\cdots=0$, i.e. $E-O=0$.
- 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}$).
Find a rational approximation of $(0.99)^4$ correct to two decimal places.
Solution- Write $0.99=1-0.01$, so we need $(1-x)^4$ with $x=0.01$.
- $(1-x)^4=1-4x+6x^2-\cdots$; keep the first two terms for two-place accuracy.
- $\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$.