Binomial Theorem
The Binomial Expansion
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.
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.
- 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$.
- 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$.
- 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$.
- 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$.
- 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$).
- 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$.
- $(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.
General and Middle Term
Writing out a whole expansion is wasteful when a question asks for just one term. The general term is a single formula that produces any term you want by plugging in its position.
Here $T_{r+1}$ is the $(r+1)$th term of $(a+b)^n$. The off-by-one is the only thing to watch: $r=0$ gives the first term $T_1=a^n$, $r=1$ gives the second term, and so on up to $r=n$ for the last term $T_{n+1}=b^n$. So to reach the $k$th term, set $r=k-1$. For the common form $(1+x)^n$ the general term simplifies to $T_{r+1}=\binom{n}{r}x^{r}$.
The middle term depends on whether $n$ is even or odd, because there are $n+1$ terms in all:
The logic is simple. With $n+1$ terms total, an even $n$ gives an odd count of terms, so there is one term dead in the centre at position $\frac{n}{2}+1$. An odd $n$ gives an even count, leaving two terms sharing the middle.
| $n$ | Number of terms $(n+1)$ | Parity of $n$ | Middle term(s) |
|---|---|---|---|
| $4$ | $5$ | even | $T_3$ (one) |
| $6$ | $7$ | even | $T_4$ (one) |
| $5$ | $6$ | odd | $T_3,\,T_4$ (two) |
| $7$ | $8$ | odd | $T_4,\,T_5$ (two) |
Deeper Insight — read $r$ as a counter, not a position: Almost every error with the general term comes from confusing the index $r$ with the term number. Think of $r$ as a counter that starts at zero — it counts how many factors of $b$ a term carries, and equivalently how many of the $n$ brackets contributed a $b$. That is exactly why $\binom{n}{r}$ appears: it counts the choices of those $r$ brackets, the same subset-counting from the previous topic. Because $r$ starts at $0$, the term number is always one more, hence $T_{r+1}$. Once you fix this in your mind, middle terms stop being a memorised rule: the centre of $n+1$ slots is at slot $\frac{n+1}{2}+\frac12=\frac{n}{2}+1$ when that is a whole number (even $n$), and otherwise the two slots straddling the centre are the middle pair. Treat the formula as a way of selecting a term and the parity question answers itself.
- For the 5th term set $r=k-1=4$ in $T_{r+1}=\binom{n}{r}a^{n-r}b^{r}$ with $n=7,\ a=2x,\ b=3$.
- $T_5=\binom{7}{4}(2x)^{7-4}(3)^4=\binom{7}{4}(2x)^3(3)^4$.
- $\binom{7}{4}=35,\ (2x)^3=8x^3,\ 3^4=81$.
- $T_5=35\cdot 8x^3\cdot 81=22680\,x^3$.
Answer: $T_5=22680\,x^3$.
- $n=10$ is even, so there is one middle term at position $\frac{n}{2}+1=6$, i.e. $r=5$.
- $T_6=\binom{10}{5}x^{10-5}\left(\dfrac{1}{x}\right)^{5}=\binom{10}{5}x^{5}\cdot x^{-5}$.
- $\binom{10}{5}=252$ and the powers of $x$ cancel.
Answer: The middle term is $T_6=252$.
- $n=7$ is odd, so the two middle terms are $T_{\frac{n+1}{2}}=T_4$ and $T_{\frac{n+3}{2}}=T_5$.
- $T_4$ (here $r=3$): $\binom{7}{3}(2x)^4(-y)^3=35\cdot 16x^4\cdot(-y^3)=-560\,x^4y^3$.
- $T_5$ (here $r=4$): $\binom{7}{4}(2x)^3(-y)^4=35\cdot 8x^3\cdot y^4=280\,x^3y^4$.
Answer: Middle terms are $T_4=-560\,x^4y^3$ and $T_5=280\,x^3y^4$.
- For $(1+x)^n$ the general term is $T_{r+1}=\binom{n}{r}x^{r}$, so the power of $x$ equals $r$.
- Set $r=5$ with $n=15$: coefficient $=\binom{15}{5}$.
- $\binom{15}{5}=\dfrac{15\cdot14\cdot13\cdot12\cdot11}{5!}=\dfrac{360360}{120}=3003$.
Answer: The coefficient of $x^5$ is $3003$.
- There are $n+1=13$ terms; the 6th term from the end is the $(13-6+1)=8$th term from the start.
- For the 8th term set $r=7$: $T_8=\binom{12}{7}a^{12-7}b^{7}=\binom{12}{7}a^5b^7$.
- $\binom{12}{7}=\binom{12}{5}=792$.
Answer: The 6th term from the end is $T_8=792\,a^5b^7$.
- $n=8$ is even, so the single middle term is at $\frac{n}{2}+1=5$, i.e. $r=4$.
- $T_5=\binom{8}{4}\left(\dfrac{x}{3}\right)^{4}(9y)^{4}=70\cdot\dfrac{x^4}{81}\cdot 6561\,y^4$.
- $\dfrac{6561}{81}=81$, so $T_5=70\cdot 81\,x^4y^4=5670\,x^4y^4$.
Answer: The middle term is $T_5=5670\,x^4y^4$.
- The general term is $T_{r+1}=\binom{n}{r}a^{n-r}b^{r}$; to get the $k$th term set $r=k-1$.
- For $(1+x)^n$ the general term reduces to $T_{r+1}=\binom{n}{r}x^{r}$, so the power of $x$ equals $r$.
- If $n$ is even there is one middle term $T_{\frac{n}{2}+1}$; if $n$ is odd there are two, $T_{\frac{n+1}{2}}$ and $T_{\frac{n+3}{2}}$.
- The $k$th term from the end is the $(n-k+2)$th term from the beginning.
- Read $r$ as a counter starting at $0$ — it records how many factors of $b$ the term carries.
Coefficients and Independent Term
Many exam questions never ask for a full expansion at all. They ask for one targeted piece — the term free of $x$, the coefficient of a specific power, or the numerically greatest term. Each is solved by squeezing the right value of $r$ out of the general term.
Term independent of $x$ (the constant term): Write the general term, collect every power of $x$ into a single exponent, set that exponent equal to $0$, and solve for $r$. If that $r$ is a non-negative integer $\le n$, the constant term is $T_{r+1}$ for that $r$; if it is not an integer, no constant term exists.
Coefficient of a given power $x^m$: Same idea — set the combined exponent of $x$ equal to $m$, solve for $r$, then read off $\binom{n}{r}$ times the numerical part. Distinguish the coefficient (the number multiplying $x^m$) from the binomial coefficient $\binom{n}{r}$, since powers of constants inside the bracket also contribute.
Numerically greatest term in $(1+x)^n$ (for a fixed numerical $x$): consecutive terms are compared through their ratio
The terms increase while this ratio exceeds $1$ and decrease once it drops below $1$, so the greatest term sits where the ratio crosses $1$. Find the largest $r$ with $T_{r+1}\ge T_r$ — i.e. the integer part of $\dfrac{(n+1)|x|}{1+|x|}$ — and that locates the numerically greatest term.
| Question type | Set up | Then |
|---|---|---|
| Term independent of $x$ | combined power of $x=0$ | solve for $r$, evaluate $T_{r+1}$ |
| Coefficient of $x^m$ | combined power of $x=m$ | solve for $r$, read coefficient |
| Numerically greatest term | $\dfrac{T_{r+1}}{T_r}\ge 1$ | largest such $r$ locates it |
Deeper Insight — every special term is the same one question: It looks like three separate techniques, but constant terms, coefficient-hunting, and greatest terms are all one move: control the exponent of $x$, then evaluate the binomial coefficient that subset-counting provides. Because $T_{r+1}=\binom{n}{r}a^{n-r}b^{r}$ packs every power into a function of the single counter $r$, you are really solving a small linear equation in $r$ to pick the term you care about. The constant term is just "power $=0$", the coefficient question is "power $=m$", and the greatest term swaps the equation for an inequality on the ratio of neighbours. Recognising this shared skeleton means you never memorise three recipes — you set up the general term once and ask what value of $r$ the question is secretly demanding. The recurring $\binom{n}{r}$ is, as always, the count of how many of the $n$ brackets supplied the second symbol.
- General term: $T_{r+1}=\binom{9}{r}(x^2)^{9-r}\left(\dfrac{1}{x}\right)^{r}=\binom{9}{r}x^{18-2r}\cdot x^{-r}=\binom{9}{r}x^{18-3r}$.
- For the constant term set the exponent $18-3r=0\Rightarrow r=6$.
- Constant term $=\binom{9}{6}=\binom{9}{3}=84$.
Answer: The term independent of $x$ is $84$.
- General term: $T_{r+1}=\binom{10}{r}x^{10-r}\left(-\dfrac{2}{x}\right)^{r}=\binom{10}{r}(-2)^{r}x^{10-2r}$.
- Set $10-2r=6\Rightarrow r=2$.
- Coefficient $=\binom{10}{2}(-2)^2=45\cdot 4=180$.
Answer: The coefficient of $x^6$ is $180$.
- $T_{r+1}=\binom{6}{r}\left(\dfrac{3}{2}x^2\right)^{6-r}\left(-\dfrac{1}{3x}\right)^{r}$; the power of $x$ is $2(6-r)-r=12-3r$.
- Set $12-3r=0\Rightarrow r=4$.
- $T_5=\binom{6}{4}\left(\dfrac{3}{2}\right)^{2}\left(-\dfrac{1}{3}\right)^{4}=15\cdot\dfrac{9}{4}\cdot\dfrac{1}{81}=15\cdot\dfrac{9}{324}=15\cdot\dfrac{1}{36}=\dfrac{5}{12}$.
Answer: The term independent of $x$ is $\dfrac{5}{12}$.
- General term: $T_{r+1}=\binom{12}{r}(x^2)^{r}=\binom{12}{r}x^{2r}$.
- Set $2r=10\Rightarrow r=5$.
- Coefficient $=\binom{12}{5}=792$.
Answer: The coefficient of $x^{10}$ is $792$.
- $T_{r+1}=\binom{7}{r}x^{7-r}\left(\dfrac{1}{x^2}\right)^{r}=\binom{7}{r}x^{7-3r}$.
- For a constant term need $7-3r=0\Rightarrow r=\dfrac{7}{3}$.
- $\dfrac{7}{3}$ is not a whole number, so no value of $r$ works.
Answer: There is no term independent of $x$.
- Locate the peak using $\dfrac{(n+1)|x|}{1+|x|}=\dfrac{11\cdot\frac{2}{3}}{1+\frac{2}{3}}=\dfrac{\frac{22}{3}}{\frac{5}{3}}=\dfrac{22}{5}=4.4$; the integer part is $4$, so the greatest is $T_{4+1}=T_5$ (here $r=4$).
- $T_5=\binom{10}{4}x^{4}=210\left(\dfrac{2}{3}\right)^{4}=210\cdot\dfrac{16}{81}=\dfrac{3360}{81}$.
- $\dfrac{3360}{81}=\dfrac{1120}{27}\approx 41.48$.
Answer: The numerically greatest term is $T_5=\dfrac{1120}{27}$.
- For a special term, write $T_{r+1}=\binom{n}{r}a^{n-r}b^{r}$ and force the exponent of $x$ to the value the question wants.
- Term independent of $x$: set the combined power of $x$ to $0$; if the resulting $r$ is not a whole number, no constant term exists.
- Coefficient of $x^m$: set the combined power to $m$; remember constants inside the bracket also contribute to the coefficient.
- Numerically greatest term in $(1+x)^n$: use $\dfrac{T_{r+1}}{T_r}=\dfrac{n-r+1}{r}|x|$ and find where the ratio crosses $1$.
- All three are one skill: control the power of $x$, then evaluate the binomial coefficient $\binom{n}{r}$.