I want to find all coefficients of polynomial expression using multinomial theorem. For eg. coefficients of (a+b+c+d+e)^9.

At this wikipedia link, Multinomial coefficients is given as follows: enter image description here

But i dont understand how can i get the values of all the coefficients?

I know that for a binomial expression((a+b)^4) -> pascal's triangle is used to find coefficients, for a trinomial expression ((a+b+c)^5) -> pascal's pyramid is used to find coefficients. But how to find coefficients of a polynomial expression?

Thanks a lot for help

Regards

link|improve this question

77% accept rate
So you're not happy with the closed formula given here en.wikipedia.org/wiki/Multinomial_theorem but you want a recursive formula instead? – Henrik Feb 3 '11 at 10:46
math.stackexchange.com – EMMERICH Feb 3 '11 at 10:47
Thanks for replying. I want to get coefficients for all the terms of for eg. (a+b+c+d+e)^5. General formula for getting coefficients of (a+b+c+....)^n. By wikipedia link i dont understand how do i get all the individual terms. REgards – user427969 Feb 3 '11 at 12:25
feedback

1 Answer

up vote 1 down vote accepted

You need to list all 5-tuples that add up to 9. IE

9,0,0,0,0
8,1,0,0,0
...
0,0,0,0,9 

Each tuple corresponds to a monomial term, with a coefficient given by multinomial theorem. The monomial term is a^k1 b^k2 c^k3 d^k4 e^k5. For the first tuple in the list k1=9,k2=0,k3=0...

link|improve this answer
hi thanks that helped a lot. Regards – user427969 Feb 4 '11 at 1:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.