Find coefficient of x⁵ in expansion of (1+x)¹⁰

easy 2 min read

Question

Find the coefficient of x5x^5 in the expansion of (1+x)10(1+x)^{10}.

Solution — Step by Step

The general term ((r+1)(r+1)th term) in the expansion of (1+x)n(1 + x)^n is:

Tr+1=(nr)(1)nr(x)r=(nr)xrT_{r+1} = \binom{n}{r} (1)^{n-r} (x)^r = \binom{n}{r} x^r

For (1+x)10(1+x)^{10}, we have n=10n = 10.

We need the term containing x5x^5, so we set r=5r = 5:

T5+1=T6=(105)x5T_{5+1} = T_6 = \binom{10}{5} x^5
(105)=10!5!5!=10×9×8×7×65×4×3×2×1=30240120=252\binom{10}{5} = \frac{10!}{5! \cdot 5!} = \frac{10 \times 9 \times 8 \times 7 \times 6}{5 \times 4 \times 3 \times 2 \times 1} = \frac{30240}{120} = 252

The 6th term in the expansion is 252x5252x^5.

The coefficient of x5x^5 is 252.

Why This Works

The Binomial Theorem tells us that (1+x)n=r=0n(nr)xr(1+x)^n = \sum_{r=0}^{n} \binom{n}{r} x^r. Each term (nr)xr\binom{n}{r} x^r gives the coefficient of xrx^r directly as (nr)\binom{n}{r}.

The binomial coefficient (105)=252\binom{10}{5} = 252 counts the number of ways to choose 5 positions (out of 10 brackets) to contribute an xx, while the remaining 5 brackets contribute 1. This combinatorial interpretation makes intuitive sense.

Alternative Method — Pascal’s Triangle

The coefficients of (1+x)10(1+x)^{10} are the 11th row of Pascal’s triangle. The 6th entry (starting from 1 at position 0) is 252. For lower powers of nn, Pascal’s triangle is faster than computing (nr)\binom{n}{r}.

For (105)\binom{10}{5}, note the symmetry: (105)=(10105)=(105)\binom{10}{5} = \binom{10}{10-5} = \binom{10}{5}. For large values, always check if it’s easier to compute from the smaller side. (105)\binom{10}{5} and (10095)\binom{100}{95} take the same conceptual effort — always use (1005)\binom{100}{5} (the smaller version).

Common Mistake

Students sometimes write TrT_r instead of Tr+1T_{r+1} for the general term, leading to an off-by-one error. The standard convention is that the first term is T1T_1 (when r=0r = 0), the second term is T2T_2 (when r=1r = 1), and so on. So x5x^5 corresponds to r=5r = 5 and T6T_6 — not T5T_5. Always double-check by expanding the first few terms manually.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next