Understanding the 6-sided dice roller
A standard six-sided die (a "d6") lands on each face 1 through 6 with equal probability 1/6. When you roll several dice and add them up, the individual uniform distributions combine into a bell-shaped distribution over the possible totals. This calculator enumerates every possible outcome exactly to tell you how likely any target sum is — no simulation, no approximation.
How the probability is computed
Rolling N dice produces 6N equally likely ordered outcomes (36 for two dice, 216 for three, and so on). The probability of a given total s is simply the number of outcomes that add up to s, divided by 6N:
- P(sum = s) = (ways to make s) / 6N
- P(sum ≤ s) and P(sum ≥ s) add up the ways for every total on that side of s.
The "ways to make s" are found by convolution: start with one die, then repeatedly combine the running distribution with another die's 1–6 faces. For two dice the counts form a symmetric triangle — 1, 2, 3, 4, 5, 6, 5, 4, 3, 2, 1 for totals 2 through 12 — so a 7 (six ways) is exactly six times as likely as a 2 or a 12 (one way each).
Mean and spread of the total
- Mean: one die averages (1+2+3+4+5+6)/6 = 3.5, so N dice average 3.5 × N.
- Variance: one die has variance 35/12 ≈ 2.9167, so N dice have variance 35N/12 and standard deviation √(35N/12) ≈ 1.708 × √N.
So two dice average 7 with an SD of about 2.42; three dice average 10.5 (SD ≈ 2.96); four dice average 14 (SD ≈ 3.42).
Common reference values (two dice)
- P(2) = P(12) = 1/36 ≈ 2.78%
- P(3) = P(11) = 2/36 ≈ 5.56%
- P(7) = 6/36 ≈ 16.67% (the most likely total)
- P(sum ≥ 10) = 6/36 ≈ 16.67%; P(sum ≤ 4) = 6/36 ≈ 16.67%