In review — free for everyone. While a book is in review you are one of its reviewers: read it, use it, and tell us what is wrong. When the reports settle, the Class 11 pass is ₹999 for the year and this book’s PDF is ₹299.
Where the coefficients come from
Multiply $(a+b)^3$ out the long way, without collecting terms yet.
$(a+b)(a+b)(a+b)$ is three brackets. To build one term you take a letter from each bracket and multiply them together. Every choice of letters gives a term, so there are $2 \times 2 \times 2 = 8$ terms before any collecting.
List the ones that give $a^2 b$ — two a factors and one b. The b can come from the first bracket, or the second, or the third. Three terms, so the collected coefficient is 3.
Now $a b^2$, two b factors and one a. The single a can come from any of the three brackets. Three terms again, coefficient 3.
And $a^3$? Every bracket must hand over its a. One way only, so the coefficient is 1. The same goes for $b^3$.
Collecting gives
$(a+b)^3 = a^3 + 3a^2 b + 3a b^2 + b^3,$
and every coefficient turned out to be a COUNT — the number of ways of choosing which brackets contributed the b.
Counting which $r$ things to choose out of $n$ is exactly $C(n,r)$, from the last chapter. Here $C(3,1) = 3$, and it matches.
The coefficients are not a separate fact to memorise. They are combination counts, and Pascal’s Triangle is a fast way of reading them rather than a second rule.
The binomial theorem
The pattern from the opener, stated in general. For any positive integer n,
$(a+b)^n = \sum_{r=0}^n C(n,r) a^{n-r} b^r \cdot$
Take it apart. The sum runs over $r = 0, 1, 2, \ldots, n$, so the expansion has exactly $n+1$ terms — one more than the power, which is worth keeping as a check.
Within the term for a given r, the exponent of b is r and the exponent of a is $n-r$. Those two always add to n, in every term. That is the second useful check.
And the coefficient is $C(n,r)$: the number of ways to choose which r of the n brackets hand over their b.
Read the extremes to see that it fits. At $r = 0$ the term is $C(n,0) a^n = a^n$, which is a taken from every bracket. At $r = n$ it is $C(n,n) b^n = b^n$. Both coefficients are 1, as they must be — there is only one way to take everything from the same letter.
*Two checks before any arithmetic: $n+1$ terms, and exponents summing to n in each of them.*
Expand $(x+y)^4$
- $n = 4$, $a = x$, $b = y$
Expect $4 + 1 = 5$ terms. - $C(4,0)x^4 + C(4,1)x^3 y + C(4,2)x^2 y^2 + C(4,3)x y^3 + C(4,4)y^4$
Write the skeleton first, letting r run from 0 to 4 and keeping the exponents adding to 4 — doing both the powers and the coefficients at once is where terms get dropped. - $C(4,0) = 1$, $C(4,1) = 4$, $C(4,2) = 6$, $C(4,3) = 4$, $C(4,4) = 1$
Fill in the coefficients. - $(x+y)^4 = x^4 + 4 x^3 y + 6 x^2 y^2 + 4 x y^3 + y^4$
Combine the skeleton and the coefficients. - $4+0$, $3+1$, $2+2$, $1+3$, $0+4$
Run the checks: five terms, matching $n+1$, and in each term the exponents add to 4. - $1, 4, 6, 4, 1$
The coefficients read the same forwards and backwards — the symmetry $C(n,r) = C(n, n-r)$ from the last chapter, turning up in every expansion.
The same counts, read off a triangle
Every coefficient in this chapter is some $C(n,r)$, and there is a way to get a whole row of them without evaluating any.
PASCAL’S TRIANGLE arranges the values in a grid. Row n holds the $n+1$ coefficients of $(a+b)^n$, left to right, from $C(n,0)$ through to $C(n,n)$.
The first rows are 1; then 1, 1; then 1, 2, 1; then 1, 3, 3, 1; then 1, 4, 6, 4, 1. That last one is the row which just produced the expansion of $(x+y)^4$.
The construction rule is the point of the thing. Every entry is the SUM of the two entries diagonally above it, and every row starts and ends with a 1.
That rule is not a new fact either. It is Pascal’s rule from the last chapter, $C(n,r) + C(n, r-1) = C(n+1, r)$, drawn as a picture. The two entries above a given place are exactly the two combination counts on the left of that identity.
Small n and a whole row wanted: build the triangle. Large n, or one term out of many: use the formula.
Build row 5 of Pascal’s Triangle
- Row 4 is $1, 4, 6, 4, 1$
Start from the row already known. - $1+4 = 5$, then $4+6 = 10$, then $6+4 = 10$, then $4+1 = 5$
Each entry after the first sums the two above it — build each row from the one above, never from scratch. - Row 5 is $1, 5, 10, 10, 5, 1$
Count the entries: six, which is $n+1$ with $n = 5$. Correct. - $(a+b)^5 = a^5 + 5a^4 b + 10a^3 b^2 + 10a^2 b^3 + 5a b^4 + b^5$
These are the coefficients of $(a+b)^5$. - $C(5,2) = (5 \times 4)/(2 \times 1) = 10$
Check one entry against the formula — it agrees. - $C(5,2)$ and $C(5,3)$
The row is symmetric again, and it has to be: the two count the same thing from opposite ends.
One term at a time
Expanding everything to reach one term is wasteful, and for a large power it is not practical at all. There is a formula for a single term.
The $(r+1)$th term of $(a+b)^n$, written $T_{r+1}$, is $T_{r+1} = C(n,r) a^{n-r} b^r$.
That is one summand of the theorem, lifted out and given a name.
The indexing needs care, and it is the source of the commonest error in this chapter. The formula produces the $(r+1)$th term, not the rth. So $r = 0$ gives $T_1$, the FIRST term. $r = 1$ gives $T_2$. And so on up.
The working rule: to find the kth term, set $r + 1 = k$, so $r = k - 1$. Subtract one before substituting, every time.
The reason for the offset is that r counts how many b factors a term carries, and the first term carries none. Counting from zero is natural for r and unnatural for term positions, and the formula sits across both conventions.
*The formula is indexed by r and the question is indexed by position. They differ by one, so substitute $r = k-1$.*
Find the 3rd term of $(x+2)^6$
- $T_3 = T_{r+1}$, so $r + 1 = 3$ and $r = 2$
Position first — subtracting that one is the whole of the care needed here. - $n = 6$, $a = x$, $b = 2$
Identify the pieces. - $T_3 = C(6,2) x^{6-2} 2^2 = C(6,2) x^4 2^2$
Substitute into $T_{r+1} = C(n,r) a^{n-r} b^r$. - $C(6,2) = (6 \times 5)/(2 \times 1) = 15$, $2^2 = 4$
Evaluate. - $T_3 = 15 \times 4 \times x^4 = 60 x^4$
Multiply through. - $n - r = 6 - 2 = 4$
Sanity-check the exponent of x. A slip putting $r = 3$ would silently give the 4th term instead, which is why the check is worth the second it takes.
Find the term independent of x in $(x + 1/x)^6$
- $T_{r+1} = C(6,r) x^{6-r} (1/x)^r$
Write the general term with $n = 6$, $a = x$, $b = 1/x$ — independent of x means the power of x must come out as zero, so the real question is which r makes that happen. - $(1/x)^r = x^{-r}$, so $x^{6-r} x^{-r} = x^{6-2r}$
Simplify the powers of x. - $T_{r+1} = C(6,r) x^{6-2r}$
Rewrite the general term with the combined exponent. - $6 - 2r = 0$, so $r = 3$
Set that exponent to zero and solve, rather than hunting term by term. - $C(6,3) x^0 = 20 \times 1 = 20$
Substitute back — the constant term is 20. r came out a whole number between 0 and 6, which it has to; a fraction or an out-of-range value would mean no such term exists, and that is a real answer, not a failed attempt.
The middle term
The expansion of $(a+b)^n$ has $n+1$ terms, and how many sit in the middle depends on whether that count is odd or even.
If n is EVEN then $n+1$ is odd, and an odd list has exactly ONE middle entry. It is the $(n/2 + 1)$th term.
If n is ODD then $n+1$ is even, and an even list has no single middle. It has TWO: the $((n+1)/2)$th and $((n+3)/2)$th terms.
Rather than memorise those four expressions, rebuild them. With $n = 6$ there are 7 terms, so the middle one is the 4th, and $6/2 + 1 = 4$ agrees. With $n = 7$ there are 8 terms, so the middle two are the 4th and 5th, and $(7+1)/2 = 4$ and $(7+3)/2 = 5$ agree.
Once the POSITION is known, nothing new is needed. Convert it to r by subtracting one, then feed it to the general term formula.
Count the terms, find the middle position, subtract one to get r. The formulas are that count written out.
Find the middle term of $(x+2)^6$
- $n = 6$ (even), so $6 + 1 = 7$ terms
Even n gives an odd number of terms — exactly one middle one. - $n/2 + 1 = 6/2 + 1 = 4$
Its position is half of n, plus one. The 4th term is wanted. - $r + 1 = 4$, so $r = 3$
Convert position to r. - $T_4 = C(6,3) x^3 2^3$
Substitute into $T_{r+1} = C(n,r) a^{n-r} b^r$ with $a = x$ and $b = 2$. - $C(6,3) = 20$, $2^3 = 8$, so $T_4 = 20 \times 8 \times x^3 = 160 x^3$
Evaluate. - $n - r = 3$
Two checks: the exponent of x matches, and with 7 terms the 4th genuinely sits three in from each end.
Find the middle terms of $(x+2)^7$
- $n = 7$ (odd), so $7 + 1 = 8$ terms
Odd n gives an even number of terms and no single middle — two terms share the centre, and each is worked separately. - $(7+1)/2 = 4$ and $(7+3)/2 = 5$
Their positions are the 4th and 5th terms. - $r + 1 = 4$, so $r = 3$; $T_4 = C(7,3) x^{7-3} 2^3 = C(7,3) x^4 2^3$
Take the 4th term. - $C(7,3) = 35$, $2^3 = 8$, so $T_4 = 35 \times 8 \times x^4 = 280 x^4$
Evaluate it. - $r + 1 = 5$, so $r = 4$; $T_5 = C(7,4) x^3 2^4$
Take the 5th term. - $C(7,4) = 35$, $2^4 = 16$, so $T_5 = 35 \times 16 \times x^3 = 560 x^3$
Evaluate it. - $C(7,3) = C(7,4) = 35$
The symmetry again — a useful sign the two positions were picked correctly, though only the coefficients coincide.
When the sign is a minus
Nothing new is needed for a minus sign. Substitute.
Write $a - b$ as $a + (-b)$ and put it through the theorem:
$(a-b)^n = \sum_{r=0}^n C(n,r) a^{n-r} (-b)^r \cdot$
The only piece that changed is $(-b)^r$, and its behaviour is simple. A negative number raised to an EVEN power is positive; raised to an ODD power it is negative.
So terms with even r keep their sign and terms with odd r flip. Since r runs $0, 1, 2, 3, \ldots$, the signs run plus, minus, plus, minus and so on, alternating from the first term.
The coefficients themselves do NOT change. $C(n,r)$ counts choices and knows nothing about signs, so row 4 of Pascal’s Triangle is still $1, 4, 6, 4, 1$ for $(a-b)^4$. It is only the signs in front that alternate.
That also settles the last term. It is the one with $r = n$, so an $(a-b)^n$ expansion ends on a plus when n is even and a minus when n is odd.
Same coefficients, alternating signs, starting with a plus. Both facts come out of the one substitution.
Expand $(x-2)^4$
- $a = x$, $b = 2$
The minus is handled by alternating signs, not by changing a or b. - Row 4: $1, 4, 6, 4, 1$
Pascal’s Triangle gives the coefficients — unchanged by the minus. - $x^4 - 4 x^3 (2) + 6 x^2 (2)^2 - 4 x (2)^3 + (2)^4$
Write the skeleton with alternating signs, the powers of x running down from 4 and the powers of 2 running up. - $2, 4, 8, 16$
Evaluate the powers of 2 as their own pass — mixing that arithmetic with the sign pattern is how a minus goes missing. - $4 \times 2 = 8$, $6 \times 4 = 24$, $4 \times 8 = 32$, $1 \times 16 = 16$
Multiply term by term. - $(x-2)^4 = x^4 - 8 x^3 + 24 x^2 - 32 x + 16$
Combine the skeleton and the evaluated terms. - 5 terms alternating from a plus; last term positive
Check the signs — n is even, so the last term should be positive, and it is.
One count underneath every term
One combinatorial fact runs through the whole chapter.
In $(a+b)^n$, the term where r of the n brackets contribute a b has coefficient $C(n,r)$ — the count of ways to choose those r brackets. Everything else is bookkeeping on top of that.
PASCAL’S TRIANGLE is the same count read off a grid, row by row, using Pascal’s rule instead of the formula. Convenient for small n and whole rows.
THE GENERAL TERM, $T_{r+1} = C(n,r) a^{n-r} b^r$, is one summand pulled out so a single term can be found without the rest. Its index is offset by one from the term’s position, so $r = k-1$.
A MINUS SIGN changes only signs. Substituting $-b$ makes every odd-r term negative and leaves $C(n,r)$ alone.
THE MIDDLE TERM is the general term evaluated at the centre of the list — one term if n is even, two if n is odd, because the expansion has $n+1$ of them.
Every formula here is the same count with different bookkeeping. If one is forgotten, go back to choosing r brackets out of n.
Two traps this chapter sets
THE TRAP. To expand $(x-2)^4$, work out $(x+2)^4$ and keep the answer as it stands, because the coefficients are the same either way: $x^4 + 8 x^3 + 24 x^2 + 32 x + 16$.
THE REALITY. Half of that is right, which is what makes it dangerous. The coefficients ARE the same. The SIGNS are not.
Substituting $-b$ leaves $C(n,r)$ untouched but attaches $(-1)^r$ to each term. When r is odd that factor is $-1$, so those terms turn negative.
The correct expansion is $x^4 - 8 x^3 + 24 x^2 - 32 x + 16$.
Compare the two term by term. The 1st, 3rd and 5th agree. The 2nd and 4th are off by a sign, and those are exactly the odd-r terms. Two terms out of five are wrong, and nothing about the arithmetic looks careless.
The check takes a moment. An $(a-b)^n$ expansion must alternate, starting with a plus. If two consecutive terms carry the same sign, something has been copied that should have been substituted.
The coefficients transfer between the two expansions. The signs never do.
THE TRAP. To find the 5th term of an expansion, put $r = 5$ into $C(n,r) a^{n-r} b^r$.
THE REALITY. That gives the 6th term. The formula is $T_{r+1} = C(n,r) a^{n-r} b^r$, so the subscript is $r+1$, not r.
Line the cases up and it is plain. $r = 0$ gives $T_1$. $r = 1$ gives $T_2$. $r = 2$ gives $T_3$. The value of r is always one less than the position.
So the 5th term needs $r + 1 = 5$, which is $r = 4$.
The offset is not arbitrary. r counts how many b factors a term carries, and the first term carries none — it is all a. Term positions start at 1 and r starts at 0, and the formula has to straddle both conventions.
What makes this one costly is that the wrong answer is a perfectly well-formed term. It has a sensible coefficient and sensible exponents. It is simply the wrong term, and nothing about it looks wrong.
The guard is the exponent. In the kth term the power of a should be $n - (k-1)$. Work that out independently and compare.
Subtract one from the position before substituting. Then check the exponent of a agrees.
Practice set
- practice Expand $(x+3)^4$ using the binomial theorem.
- practice What is the coefficient of $a^3 b^4$ in the expansion of $(a+b)^7$?
- practice Find the 6th term in the expansion of $(x+2)^9$ using the general term formula.
- practice Find the term independent of x in the expansion of $(x + 1/x^2)^9$.
- practice Find the middle term in the expansion of $(x+3)^8$.
Answers
- $x^4 + 12 x^3 + 54 x^2 + 108 x + 81$
- $35$
- $4032 x^4$
- $84$
- $5670 x^4$
- practice Expand $(x-2)^5$ using the binomial theorem.
- practice How many middle terms does the expansion of $(a+b)^9$ have?
Answers
- $x^5 - 10 x^4 + 40 x^3 - 80 x^2 + 80 x - 32$
- $2$
Chapter-end problems
- board-easy Find the number of terms in the expansion of $(x+y)^9$.
- board-easy Using Pascal’s Triangle, write the coefficients in the expansion of $(a+b)^4$.
- board-easy Expand $(x+1)^3$ using the binomial theorem.
- board-easy Find the 3rd term, $T_3$, in the expansion of $(x+2)^5$.
- board-easy Find the 4th term in the expansion of $(a-b)^6$.
- board-easy Find $C(8,3)$, the coefficient of the $a^5 b^3$ term in $(a+b)^8$.
- board-easy How many terms does the expansion of $(2x-3y)^{10}$ have?
- board-easy Find the middle term of $(x+1)^4$.
- board-easy Find the middle terms of $(x+1)^5$.
- board-easy Expand $(x-2)^3$ using the alternating-sign expansion.
- board-standard Find the coefficient of $x^5$ in the expansion of $(x+3)^8$.
- board-standard Find the term independent of x in $(x + 1/x)^8$.
- board-standard Find the coefficient of $x^4$ in the expansion of $(2x-3)^6$.
- board-standard Find the 5th term in the expansion of $(x-2y)^7$.
- board-standard Find the middle term of $(2x+3y)^6$.
- board-standard Find the middle terms of $(x-1)^9$.
- board-standard Using Pascal’s Triangle, build row 6 from row 5 ($1, 5, 10, 10, 5, 1$) and read off the coefficients of $(a+b)^6$.
- board-standard Find the term independent of x in $(2x - 1/x)^6$.
Answers
- $10$ terms
- $1, 4, 6, 4, 1$
- $x^3+3x^2+3x+1$
- $40 x^3$
- $-20 a^3 b^3$
- $56$
- $11$
- $6x^2$
- $T_3=10x^3, T_4=10x^2$
- $x^3-6x^2+12x-8$
- $1512$
- $70$
- $2160$
- $560 x^3 y^4$
- $4320 x^3 y^3$
- $T_5=126x^5, T_6=-126x^4$
- $1, 6, 15, 20, 15, 6, 1$
- $-160$
- board-standard Find the coefficient of $x^3$ in the expansion of $(1-2x)^5$.
- board-standard Find the coefficient of $x^4$ in the expansion of $(3+2x)^5$.
- board-standard Find the coefficient of $x^7$ in the expansion of $(x+2)^{10}$.
- board-standard A binomial expansion has 9 terms. Find $n$.
- JEE Find the term independent of x in $(x^2 - 1/x)^9$.
- JEE Find the coefficient of $x^5 y^7$ in the expansion of $(x+2y)^{12}$.
- JEE Find $n$ so that $C(14,n) = C(14,n+2)$.
- JEE Find the coefficient of $x^9$ in the expansion of $(x^2 - 1/x)^{12}$.
- JEE In the expansion of $(\sqrt{2} + \sqrt{3})^6$, how many terms are rational?
- JEE Find the sum of the binomial coefficients in the expansion of $(1+x)^{10}$.
- JEE Find the middle term of $(2x-3y)^8$.
- JEE Find $r$ so that $C(37,r) = C(37,r+1)$.
Answers
- $-80$
- $240$
- $960$
- $n=8$
- $84$
- $101376$
- $n=6$
- $-792$
- $4$
- $1024$
- $90720 x^4 y^4$
- $r=18$
- Find the 5th term in the expansion of $(x+3)^7$.
Check your answer
- Find the 6th term in the expansion of $(x+2)^8$.
Check your answer
- Find the coefficient of $x^4$ in the expansion of $(x+1)^9$.
Check your answer
- Find the coefficient of $x^3$ in the expansion of $(2x+1)^7$.
Check your answer
- Find the middle term of $(x+2)^8$.
Check your answer
- Find the coefficient of the middle term of $(x+1)^{10}$.
Check your answer
- Find the middle terms of $(x+1)^7$.
Check your answer
- Find the middle terms of $(x+1)^9$.
Check your answer
- Find the coefficient of $x^3$ in the expansion of $(x-1)^4$.
Check your answer
- Find the coefficient of $x^2$ in the expansion of $(x-2)^5$.
Check your answer
- Find the number of terms in the expansion of $(x+y)^{12}$.
Check your answer
- Find the number of terms in the expansion of $(a-b)^{15}$.
Check your answer
- Using Pascal’s Triangle, find the coefficient of the 3rd term in the expansion of $(a+b)^6$.
Check your answer
- Find the coefficient of the $a^6 b^3$ term in the expansion of $(a+b)^9$.
Check your answer
- Find the term independent of x in the expansion of $(x + 1/x)^{10}$.
Check your answer
- Find the term independent of x in the expansion of $(x^2 + 1/x)^9$.
Check your answer
- If the expansion of $(1+x)^n$ has 12 terms, find $n$.
Check your answer
- If $T_{r+1}$ is the 7th term of an expansion, find $r$.
Check your answer
- In any single term of the expansion of $(a+b)^{11}$, what is the sum of the exponents of a and b?
Check your answer
- Find the coefficient of $x^5$ in the expansion of $(x-3)^8$.
Check your answer