Probability that less dice thrown will beat more dice thrown?

126 Views Asked by At

I'm trying to figure out a general equation to determine the probability that the sum of $m$ dice will be greater than the sum of $n$ dice, where $m < n$. For example, if I roll $4$ dice, what's the probability that I will beat a roll of $6$ dice? Assume standard $6$ sided dice. I've been trying to adapt the answer I found here, but I think it's really a completely separate problem.

1

There are 1 best solutions below

2
On

You can compute the probability distribution of the sum of $k$ dice using generating series: the generating series is $$ \left(\frac{x+x^2+x^3+x^4+x^5+x^6}{6}\right)^k.$$ Given the two probability distributions for $k=n$ and $k=m$, it is easy to compute the probability that one sum beats the other.

I don't think you can obtain a more explicit formula. For large $m,n$, you can probably obtain a good estimate using the central limit theorem: roughly speaking, the sum of $k$ dice is distributed roughly $N(3.5k,(35/12)k)$. So the difference of a sum of $m$ dice and a sum of $n$ dice is distributed roughly $N(3.5(m-n),(35/12)(m+n))$. The probability that this is positive is roughly $\Pr[N(0,1)>\frac{3.5(n-m)}{\sqrt{(35/12)(n+m)}}]$, which you can look up in tables.