🧮 Brain Teaser

The Pepys–Newton Problem: Which Bet Is Best?

Samuel Pepys wrote Isaac Newton in 1693 asking which of the following three events is most likely:

(A) Getting at least one 6 when rolling 6 fair dice

(B) Getting at least two 6s when rolling 12 fair dice

(C) Getting at least three 6s when rolling 18 fair dice

Which option gives the highest probability? Most people's first instinct is that they are all equal — is that right?

binomial distributionexpectation vs probabilityCLT intuitionclassic puzzle

Answer: The Pepys–Newton Problem

Key Idea / Intuition

Each scenario has the same expected number of sixes (1, 2, and 3 respectively, since the expected number of sixes in nn dice is n/6n/6). So at first glance, all three might seem equally likely. But expectation and probability are not the same thing! The key is that in each case, you need to meet or exceed the mean — and the probability of doing so depends on the skewness and spread of the binomial distribution. With fewer dice, the distribution is more spread and asymmetric, so the probability of hitting at least the mean is higher. As nn grows, the distribution becomes more symmetric and the probability of reaching the mean from below approaches 1/21/2. So (A) > (B) > (C).


Formal Proof / Solution

Each scenario follows a Binomial distribution with success probability p=1/6p = 1/6.

Option (A): At least one 6 in 6 dice

P(A)=1P(no 6s in 6 dice)=1(56)6P(A) = 1 - P(\text{no 6s in 6 dice}) = 1 - \left(\frac{5}{6}\right)^6

=15666=11562546656=31031466560.6651= 1 - \frac{5^6}{6^6} = 1 - \frac{15625}{46656} = \frac{31031}{46656} \approx \mathbf{0.6651}

Option (B): At least two 6s in 12 dice

P(B)=1P(0 sixes)P(1 six)P(B) = 1 - P(0 \text{ sixes}) - P(1 \text{ six})

P(0)=(56)120.1122P(0) = \left(\frac{5}{6}\right)^{12} \approx 0.1122

P(1)=(121)(16)1(56)11=1216(56)1112160.13460.2692P(1) = \binom{12}{1}\left(\frac{1}{6}\right)^1\left(\frac{5}{6}\right)^{11} = 12 \cdot \frac{1}{6} \cdot \left(\frac{5}{6}\right)^{11} \approx 12 \cdot \frac{1}{6} \cdot 0.1346 \approx 0.2692

P(B)=10.11220.26920.6187P(B) = 1 - 0.1122 - 0.2692 \approx \mathbf{0.6187}

Option (C): At least three 6s in 18 dice

P(C)=1P(0)P(1)P(2)P(C) = 1 - P(0) - P(1) - P(2)

P(0)=(56)180.0376P(0) = \left(\frac{5}{6}\right)^{18} \approx 0.0376

P(1)=(181)16(56)1718160.04510.1353P(1) = \binom{18}{1}\frac{1}{6}\left(\frac{5}{6}\right)^{17} \approx 18 \cdot \frac{1}{6} \cdot 0.0451 \approx 0.1353

P(2)=(182)136(56)161531360.05410.2299P(2) = \binom{18}{2}\frac{1}{36}\left(\frac{5}{6}\right)^{16} \approx 153 \cdot \frac{1}{36} \cdot 0.0541 \approx 0.2299

P(C)=10.03760.13530.22990.5973P(C) = 1 - 0.0376 - 0.1353 - 0.2299 \approx \mathbf{0.5973}

Summary

| Option | Dice | Mean sixes | Probability | |--------|------|-----------|-------------| | A | 6 | 1 | ≈ 0.6651 | | B | 12 | 2 | ≈ 0.6187 | | C | 18 | 3 | ≈ 0.5973 |

Option (A) wins, despite all having the same expected number of sixes.

Why does this happen?

The binomial distribution Bin(n,1/6)\text{Bin}(n, 1/6) is right-skewed for small nn: the median lies below the mean. As nn \to \infty, by the CLT the distribution becomes symmetric and P(at least mean)1/2P(\text{at least mean}) \to 1/2. For small nn, the probability of meeting the mean is significantly above 1/21/2, and this effect is strongest for n=6n = 6. Newton correctly identified (A) as the best bet.

Source: Fifty Challenging Problems in Probability with Solutions, Frederick Mosteller, Problem 19

Type: ProbabilitySource: Fifty Challenging Problems in Probability with Solutions, Frederick Mosteller, Problem 19Edit on GitHub ↗