The multinomial theorem generalizes the binomial: (...+)^n = sum [n!/(!...!)] * ..., summed over all non-negative integers ,..., with ...+ = n.
The multinomial coefficient n!/(!...!) counts the number of permutations of n objects with objects of type i. The number of terms in the expansion is C(n+k-1, k-1) by stars and bars.
For trinomials (k=3): (a+b+c)^n has C(n+2, 2) terms. The coefficient of (where p+q+r=n) is n!/(p!*q!*r!).
Practical approach for JEE: Most problems involve finding a specific coefficient in (1+x+)^n or similar. Method: identify all tuples (,...,) that give the desired power of x, compute the multinomial coefficient for each, and sum.
Alternative factorization: (1+x+) = , so (1+x+)^n = (1-)^n*(1-x)^{-n}. This converts the multinomial into a product of two binomial series, often simplifying coefficient extraction.
The negative binomial series (1-x)^{-n} = C(n+r-1,r)* is essential for this approach. Combined with the finite expansion of (1-)^n, coefficient extraction becomes a two-term convolution.