Loading...
Loading...
When you roll two dice and take the maximum, what is the expected value?
Example: If you roll 2 and 5, max(2, 5) = 5.
For the maximum to equal k, we need at least one die to show k, and neither die to show more than k.
Key insight:
Since dice are independent, we can multiply probabilities.
| Max = k | 2k - 1 | P(Max = k) | k × P(k) |
|---|---|---|---|
| 1 | 1 | ||
| 2 | 3 | ||
| 3 | 5 | ||
| 4 | 7 | ||
| 5 | 9 | ||
| 6 | 11 |
On average, the maximum of two dice is about 4.47.
The expected maximum is between the single die (3.5) and the sum divided by 2 (3.5). Taking the max gives you an advantage of about 1 point on average!
In games with "advantage" mechanics (roll twice, take higher):