One D$30$ dice is rolled three times, will the difference between the maximum and minimum value be greater than $15$?
So I guess this is the same as just picking three random numbers between $1-30$, and looking at the biggest and smallest number to see if the difference is greater than $15$. But what I am wondering is; How do I calculate the different probabilities here?
First choose which two dice will be min and max. For each combination of min and max on the two chosen dice, the third dice will be between min and max.
There are $3 \cdot 2 = 6$ ways to choose two dice and which will be max and which will be min.
If dice A has min and dice B has max,
For example, if A shows $1$ then B must show between $17$ and $30$ for the difference to be greater than $15$. If B is $17$, C can be any number between $1$ and $17$. So you can count the number of permissible outcomes as,
$\displaystyle 6 \cdot \sum_{i=1}^{14} \sum_{j=16+i}^{30} (j - i - 1)$
This does not include cases when the third number is equal to min or max. There are $ \ 3 \cdot (15-i) \ $ possibilities for third number to be equal to min and same for third number to be equal to max. So the final expression is,
$\displaystyle 6 \cdot \sum_{i=1}^{14} \sum_{j=16+i}^{30} (j - i) = 12810$
Now divide by the total of $30^3$ unrestricted outcomes for desired probability.