Solved – Multinomial distribution for 4 side dice roll

dicemultinomial-distributionprobability

Suppose I roll a 4-side dice 25 time to get a final sum between 25 and 100. How I calculated the distribution of probability for each sum between 25 and 100?

Best Answer

There are several approaches:

  1. Use the normal distribution as an approximation as described in whuber's link to the earlier question, or use some of the other suggestions there. The mean will be 62.5 while the variance will be 31.25.
  2. Do a recurrence starting with $f(i,0)=0$ except when $i=0$ in which case $f(0,0)=1$, and then use $f(i,j+1)=f(i-4,j)/4+f(i-3,j)/4+f(i-2,j)/4+f(i-1,j)/4$ to find $f(i,25)$
  3. Expand $(x/4+x^2/4+x^3/4+x^4/4)^{25}$, for example by putting Expand[(x/4+x^2/4+x^3/4+x^4/4)^25] into Wolfram Alpha and press "=" then "show more terms" several times
  4. Hope somebody has already done some recurrence calculations for you, which they have in rows 925-1000 of an OEIS table and then divide the results by $4^{25} = 1125899906842624$