Binomial theorem applications — finding specific terms, coefficient patterns

medium CBSE JEE-MAIN 3 min read

Question

Find the coefficient of x5x^5 in the expansion of (2x3)8(2x - 3)^8.

(CBSE 11 / JEE Main — Binomial Theorem)


Binomial Problem Type Decision Tree

flowchart TD
    A["Binomial Problem"] --> B{What is asked?}
    B -->|"Specific term (r+1)th"| C["T_{r+1} = nCr a^{n-r} b^r"]
    B -->|"Coefficient of x^k"| D["Set power of x = k, solve for r"]
    B -->|"Middle term"| E{"n even or odd?"}
    B -->|"Term independent of x"| F["Set power of x = 0"]
    B -->|"Sum of coefficients"| G["Put x = 1"]
    E -->|Even: n=2m| H["(m+1)th term"]
    E -->|Odd: n=2m+1| I["(m+1)th and (m+2)th terms"]

Solution — Step by Step

In the expansion of (a+b)n(a + b)^n, the general (r+1)(r+1)th term is:

Tr+1=(nr)anrbrT_{r+1} = \binom{n}{r}a^{n-r}b^r

Here a=2xa = 2x, b=3b = -3, n=8n = 8:

Tr+1=(8r)(2x)8r(3)r=(8r)28r(3)rx8rT_{r+1} = \binom{8}{r}(2x)^{8-r}(-3)^r = \binom{8}{r}2^{8-r}(-3)^r \cdot x^{8-r}

We need x8r=x5x^{8-r} = x^5, so 8r=58 - r = 5, giving r=3r = 3.

T4=(83)(2)5(3)3T_4 = \binom{8}{3}(2)^5(-3)^3 =56×32×(27)= 56 \times 32 \times (-27) =56×(864)= 56 \times (-864) Coefficient of x5=48384\boxed{\text{Coefficient of } x^5 = -48384}

Why This Works

The binomial theorem expands (a+b)n(a + b)^n into n+1n + 1 terms. Each term has aa raised to a decreasing power and bb raised to an increasing power, with binomial coefficients (nr)\binom{n}{r} in front. The power of xx in each term is determined by the exponent structure — setting this equal to the desired power gives us the specific term.


Alternative Method — Pascal’s Triangle for Small n

For small values of nn (up to 6-7), Pascal’s triangle gives the binomial coefficients quickly:

Row 8: 1, 8, 28, 56, 70, 56, 28, 8, 1

The r=3r = 3 coefficient is 56 (4th entry, starting from 0). Then multiply by 25×(3)32^5 \times (-3)^3 as before.

For JEE Main, the “term independent of xx” problem is a favourite. In expansions like (x+1/x)n(x + 1/x)^n, the general term has xn2rx^{n-2r}. Setting n2r=0n - 2r = 0 gives the term independent of xx. This pattern appears every 2-3 years in JEE Main.


Common Mistake

The biggest error: forgetting the negative sign. In (2x3)8(2x - 3)^8, the second term is 3-3, not 33. So (3)r(-3)^r alternates signs: positive for even rr, negative for odd rr. With r=3r = 3, (3)3=27(-3)^3 = -27. Students who write +27+27 get the magnitude right but the sign wrong — costing full marks.

Another common slip: confusing Tr+1T_{r+1} with TrT_r. The general term formula uses rr starting from 0 — so T4T_4 corresponds to r=3r = 3, not r=4r = 4.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →