Understanding the average of a dice roll
The "average" of a dice roll is its expected value — the long-run mean total you would get if you rolled the dice a huge number of times and averaged the results. For a single fair die, it is simply the average of all the face values. A standard six-sided die shows 1, 2, 3, 4, 5, and 6 with equal probability, so its average is (1 + 2 + 3 + 4 + 5 + 6) ÷ 6 = 21 ÷ 6 = 3.5.
Notice that 3.5 is not a value the die can ever actually land on — it sits exactly between 3 and 4. That is normal: the mean of a distribution need not be an attainable outcome. It just tells you where the results balance out over the long run.
The formula
For a fair die with S equally likely sides numbered 1 to S, the values form an arithmetic sequence, and the average of an evenly spaced set is the midpoint of its endpoints:
- Single die: average = (1 + S) ÷ 2 = (S + 1) / 2
- N identical dice: average total = N × (S + 1) / 2
- With a modifier m (e.g. "2d6 + 3"): average = N × (S + 1) / 2 + m
Averages add, so you never need to enumerate all combinations. Rolling 2d6 averages 2 × 3.5 = 7; rolling 3d6 averages 3 × 3.5 = 10.5; rolling 4d6 averages 14. This additivity holds even for mixed dice — 1d20 + 1d6 averages 10.5 + 3.5 = 14.
Reference averages for common dice
- d4: (4 + 1)/2 = 2.5
- d6: (6 + 1)/2 = 3.5
- d8: (8 + 1)/2 = 4.5
- d10: (10 + 1)/2 = 5.5
- d12: (12 + 1)/2 = 6.5
- d20: (20 + 1)/2 = 10.5
- d100 (percentile): (100 + 1)/2 = 50.5
Spread: minimum, maximum, and variance
The average alone hides how widely rolls scatter. For N dice with S sides, the total ranges from a minimum of N (every die shows 1) to a maximum of N × S (every die shows S). The variance of one fair die is (S² − 1) / 12; for a d6 that is (36 − 1)/12 ≈ 2.917, giving a standard deviation of about 1.708. Because independent dice add their variances, N dice have variance N × (S² − 1)/12 and standard deviation √N times that of a single die. So 2d6 has variance ≈ 5.833 and a standard deviation of about 2.415 around its mean of 7.
Why the average matters
Expected value is the backbone of tabletop game balance, probability homework, and any decision where a die (or die-like random draw) determines an outcome. Game designers compare a monster's average damage per round; students verify that repeated simulations converge on the theoretical mean; and gamblers can see that no betting streak changes the underlying per-roll average.