Question
Find the coefficient of in the expansion of .
Solution — Step by Step
The general term (th term) in the expansion of is:
For , we have .
We need the term containing , so we set :
The 6th term in the expansion is .
The coefficient of is 252.
Why This Works
The Binomial Theorem tells us that . Each term gives the coefficient of directly as .
The binomial coefficient counts the number of ways to choose 5 positions (out of 10 brackets) to contribute an , while the remaining 5 brackets contribute 1. This combinatorial interpretation makes intuitive sense.
Alternative Method — Pascal’s Triangle
The coefficients of are the 11th row of Pascal’s triangle. The 6th entry (starting from 1 at position 0) is 252. For lower powers of , Pascal’s triangle is faster than computing .
For , note the symmetry: . For large values, always check if it’s easier to compute from the smaller side. and take the same conceptual effort — always use (the smaller version).
Common Mistake
Students sometimes write instead of for the general term, leading to an off-by-one error. The standard convention is that the first term is (when ), the second term is (when ), and so on. So corresponds to and — not . Always double-check by expanding the first few terms manually.