Number of ways in which 3 people can throw a normal die to have a total score of 11
My approach:
The answer can be obtained by finding the coefficient of $x^{11}$ in the expansion of $(x+x^2+x^3+x^4+x^5+x^6)^3$.
General term $T=\frac{3}{a!b!c!d!e!f!} x^{a+2b+3c+4d+5e+6f}$
where $a+b+c+d+e+f=3$ and $a+2b+3c+4d+5e+6f=11$
But I can't figure out how to solve further.
An easier way to solve this would probably be as follows:
If Person 1 gets a 1, the Person 2 & 3 need a combined 10, which can be done in 3 ways.
If Person 1 gets a 2, the Person 2 & 3 need a combined 9, which can be done in 4 ways.
If Person 1 gets a 3, the Person 2 & 3 need a combined 8, which can be done in 5 ways.
If Person 1 gets a 4, the Person 2 & 3 need a combined 7, which can be done in 6 ways.
If Person 1 gets a 5, the Person 2 & 3 need a combined 6, which can be done in 5 ways.
If Person 1 gets a 6, the Person 2 & 3 need a combined 5, which can be done in 4 ways.
Adding this up, there are 27 total ways to get 11.