Binomial Theorem: Edge Cases and Subtle Traps (5)

medium 2 min read

Question

Find the term independent of xx in the expansion of (x21x)9\left(x^2 - \frac{1}{x}\right)^9.

Solution — Step by Step

The (r+1)(r+1)-th term of (a+b)n(a + b)^n is Tr+1=(nr)anrbrT_{r+1} = \binom{n}{r} a^{n-r} b^r.

Here a=x2a = x^2, b=1/xb = -1/x, n=9n = 9:

Tr+1=(9r)(x2)9r(1x)r=(9r)(1)rx182rrT_{r+1} = \binom{9}{r} (x^2)^{9-r} \left(-\frac{1}{x}\right)^r = \binom{9}{r} (-1)^r x^{18 - 2r - r}

=(9r)(1)rx183r= \binom{9}{r} (-1)^r x^{18 - 3r}

For the term independent of xx:

183r=0    r=618 - 3r = 0 \implies r = 6

T7=(96)(1)6=(96)=(93)=987321=84T_7 = \binom{9}{6} (-1)^6 = \binom{9}{6} = \binom{9}{3} = \frac{9 \cdot 8 \cdot 7}{3 \cdot 2 \cdot 1} = 84

Final answer: The term independent of xx is 8484.

Why This Works

The general term packages all the binomial structure in one expression. To find a specific feature (constant term, coefficient of xkx^k, middle term), we just set up an equation in rr and solve.

The (1)r(-1)^r factor matters when rr is odd — many students forget this and report a wrong sign. Here r=6r = 6 is even, so the sign stays positive.

Alternative Method

Multinomial expansion or generating functions — both work but are massive overkill for a single-term query. The general term approach is the standard JEE technique.

For “term independent of xx” problems, the recipe is mechanical: write the general term, set the exponent of xx to zero, solve for rr, plug back. If rr comes out non-integer, no such term exists — be ready to report “no such term.”

Common Mistake

The classic error: forgetting to handle the sign in (1/x)r(-1/x)^r. The negative sign carries an extra factor of (1)r(-1)^r. If the question asked for the coefficient of x3x^3, we’d find r=5r = 5 and the sign would be (1)5=1(-1)^5 = -1 — a different answer than the unsigned binomial coefficient.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next