If N fair 6 sided dice are thrown, what is the probability that the sum of the thrown dice is at least X?
2026-04-02 20:56:12.1775163372
On
Probability that the sum of N dice is at least X
3.9k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
There are 2 best solutions below
3
On
The chance of hitting exactly sum $p$ with $n$ $s-$sided dice is:
$$P(p,n,s) = \frac{1}{s^n}\sum_{k=0}^n(-1)^k\binom{n}{k}\binom{p-sk-1}{n-1}$$
Summing from $x$ to $6n$ and substituting $s = 6$ gives:
$$\sum_{p=x}^{6n} \frac{1}{6^n}\sum_{k=0}^n(-1)^k\binom{n}{k}\binom{p-6k-1}{n-1}$$
$$\sum_{p=x}^{6n} \binom{p-6k-1}{n-1} = \frac{1}{n}\left((n+6k-x)\binom{x-6k-1}{n-1} + (5n-6k+1)\binom{6n-6k}{n-1}\right)$$
Giving the somewhat ugly closed form, but very efficient to evaluate:
$$ \frac{1}{n6^n}\sum_{k=0}^n(-1)^k\binom{n}{k}\left((n+6k-x)\binom{x-6k-1}{n-1} + (5n-6k+1)\binom{6n-6k}{n-1}\right)$$
Assuming fair cubical dice with numbers 1 through 6, the PDF and CDF for the sum $X$ on two dice is given in the table below.
The CDF $P(X \le x)$ gives the probabilities that $X$ is at most $k,$ for $k = 2, 3, \dots, 12.$
I will leave it to you to add a line to the table that gives the probabilities $P(X \ge k)$ for the relevant values of $k$. Then maybe you can deal with $N > 2$ dice.
You don't provide much context about the source of this problem. So it is difficult to say whether you are supposed to use normal approximations, symbolic software such as Mathematica, simulations in statistical software, or a convolution formula.