Unconventional Statistics With Dice – Expected Minimum Roll from 3 dice

In a previous post I discussed the potential benefits for using Monte Carlo simulations in place of traditional statistical modeling. Here, I would like to consider an interesting stats puzzle that I found to be non-trivial (read hard), which has a relatively tidy solution. First, we will investigate the solution using Monte Carlo methods. Second, we will generate an analytical solution. Hopefully the results from these two methods agree. If charity begins at home, probabilistic insights start with dice. So we will do exactly that.

The problem statement

Consider 3 dice sitting on the table in front of you. You pick up the dice and roll them all at once. The result?

4, 6, 5.  Now take the minimum of these rolls. "4"

Write this number down and roll again.  "1, 2, 1" with a minimum of "1". Rolling one more time produces "5, 5, 4" with a minimum of "4". Now lets look at the average of all these results.

mean([4, 1, 4] = 3

When conducting this process  3 times we found the average result to be 3. What if we did this an infinite number of times? What value do we expect average result to converge to? Hint: It's not 1

We can start this problem by simulating the process. A simulation will give us a value to "sanity check" our eventual analytical solution. Here is some Python code for running a Monte Carlo simulation for this problem statement.

import random
import numpy as np

TRIAL_COUNT = 100_000
DICE_PER_TRIAL = 3


def minimum_of_dice(number_of_dice: int) -> int:
    return min(random.randint(1, 6) for _ in range(number_of_dice))


def run_trials(number_of_trials: int, dice_per_trial: int) -> list[int]:
    results = []
    for _ in range(number_of_trials):
        result = minimum_of_dice(dice_per_trial)
        results.append(result)
    return results


def display_stats(results: list[int]):
    print(f'The minimum "minimum" seen: {min(results)}')
    print(f'The maximum "minimum" seen: {max(results)}')
    print(
        f"Mean: {sum(results)/len(results):.4f} +- {2*np.std(results)/np.sqrt(len(results)):.4f}"
    )


def main():
    print(f"Running {TRIAL_COUNT:,d} trials with {DICE_PER_TRIAL} dice each")
    results = run_trials(TRIAL_COUNT, DICE_PER_TRIAL)
    display_stats(results)


if __name__ == "__main__":
    main()
Python code for simulating the minimum roll out of 3 rolled dice.
Running 100,000 trials with 3 dice each
The minimum "minimum" seen: 1
The maximum "minimum" seen: 6
Mean: 2.0405 +- 0.0072
The results from running the above Python code

From this code you can see that I have minimum_of_dice to represent running the trial once, run_trials to ramp up to N trials and record the results. I calculate the uncertainty in the mean using the following formula:

σ is the standard deviation of the data set.

z = 2, the z-score for a 95% confidence interval

N=100,000 is the number of trials in this test

Using this calculation, we can predict that expected minimum roll will fall somewhere between 2.0333 and 2.0477.

Analytical Calculations

We are looking for the expected minimum from rolling 3 dice. So we have:

To get the expected minimum, lets first determine the CDF for Xmin.

Since we are working in a discrete context we can calculate the PDF for Xmin using the following equation:

Tabulating these probabilities:

A table containing the probabilities of the minimum roll our of 3 dice being "x"

Finally, using the a formula for expected value:

and this 49/24 figure is our answer. We can see this calculation falls within our confidence interval of (2.0333, 2.0477) so I am feeling pretty good about the correctness of our answer.

This methodology can be generalized to dice with more than 6 sides or trials with more than three dice. I will leave that as an exercise for the reader. If you discover a novel approach to this problem or have something like it that you think I might enjoy. Contact me on social media!

Twitter, LinkedIn, or email me at contact[at]thornewolf (dot) com

Subscribe to Thorne Wolfenbarger - Blog

Don’t miss out on the latest issues. Sign up now to get access to the library of members-only issues.
jamie@example.com
Subscribe