Free Dice Probability Calculator

Calculate the exact probability of any dice roll. Select dice type, number of dice, and target sum to see instant results with distribution charts.

Exact sum of 7

16.6667%

16.6667%

Fraction

1/6

Decimal

0.166667

Total Outcomes

36

Sum Distribution — 2d6

0.0%4.2%8.3%12.5%16.7%23456789101112SumProbability

Pro Tips

AND vs OR: Use AND when both events must happen together (multiply probabilities). Use OR when at least one event must happen (add probabilities, subtract overlap).

Independent events: Two events are independent if the outcome of one does not affect the other. Drawing cards with replacement is independent; drawing without replacement is dependent.

Permutations vs Combinations: Use permutations when order matters (arrangements, rankings). Use combinations when order does not matter (teams, groups, selections).

Dice shorthand: 2d6 means 2 six-sided dice. 3d20 means 3 twenty-sided dice. This notation is standard in tabletop gaming and probability.

Coin flip insight: The binomial distribution governs coin flips. For a fair coin, the probability is symmetric around n/2, and the spread grows with the square root of n.

Last updated: March 2026

Understanding Dice Probability

Dice probability is one of the most intuitive introductions to probability theory. A single fair die gives each face an equal chance of appearing: 1/4 for a d4, 1/6 for a d6, 1/8 for a d8, and so on. The challenge becomes more interesting when you roll multiple dice and care about the sum, because different sums can be achieved in different numbers of ways.

For two six-sided dice, the minimum sum is 2 and the maximum is 12, but the 11 possible sums are far from equally likely. The sum of 7 has six ways to occur, while 2 and 12 each have only one. This uneven distribution is what makes games like craps, backgammon, and Settlers of Catan strategically interesting: some outcomes are predictably more common than others.

How Dice Probabilities Are Calculated

For a single die with s sides, each outcome from 1 to s has probability 1/s. When rolling multiple dice, the total number of outcomes is s raised to the power of n (the number of dice). For 2d6, that is 6^2 = 36. For 3d8, it is 8^3 = 512. For 10d20, it is 20^10 = over 10 trillion.

Rather than listing every outcome, this calculator uses dynamic programming to build a frequency table. It starts with one die, then iteratively adds each additional die by combining its possible face values with all previously computed sums. This approach computes exact probabilities for up to 10 dice of any type in milliseconds, because it tracks how many ways each sum can occur rather than enumerating individual rolls.

Dice in Tabletop Gaming

Tabletop role-playing games like Dungeons & Dragons use a variety of polyhedral dice. The standard set includes d4, d6, d8, d10, d12, and d20. Each serves a different purpose: d20 for attack rolls and ability checks, d6 and d8 for weapon damage, d4 for small damage like daggers, and d12 for heavy weapons like greataxes. Understanding the probability distributions helps players make better tactical decisions.

The notation NdS (for example, 3d6) means rolling N dice each with S sides and summing the results. Character creation in classic D&D uses 3d6 for each ability score, producing a bell-shaped distribution centered around 10.5 with a range of 3 to 18. The 4d6-drop-lowest variant shifts the average upward to about 12.2, creating more heroic characters. This calculator lets you explore these distributions visually.

The Central Limit Theorem and Dice

One of the most important results in probability is the Central Limit Theorem: the sum of many independent random variables approaches a normal (bell curve) distribution regardless of the original distribution. You can see this directly with dice. A single d6 has a flat, uniform distribution. Two d6 produce a triangular distribution. Three or more d6 create an increasingly smooth bell curve. By the time you reach 5d6, the distribution is almost perfectly normal.

The mean of NdS is always N times (S+1)/2, and the standard deviation is sqrt(N) times sqrt((S^2-1)/12). For 2d6, the mean is 7 and the standard deviation is about 2.42. For 10d6, the mean is 35 and the standard deviation is about 5.40. These formulas let you quickly estimate probabilities even without a calculator.

Frequently Asked Questions

What is the most common result when rolling two six-sided dice?

The most common sum is 7, with a probability of 6/36 or about 16.67%. There are six combinations that produce 7: (1,6), (2,5), (3,4), (4,3), (5,2), (6,1). The sums 2 and 12 are the least common, each with only one combination and a probability of 1/36 or about 2.78%.

How does this calculator compute dice probabilities?

The calculator uses dynamic programming to enumerate all possible outcomes. For each die added, it builds a frequency table of all achievable sums. For 2d6, there are 36 combinations. For 10d6, there are over 60 million. The algorithm tracks sum frequencies efficiently without listing every individual roll, producing exact results in milliseconds.

What dice types are supported?

The calculator supports d4 (tetrahedron), d6 (cube), d8 (octahedron), d10 (pentagonal trapezohedron), d12 (dodecahedron), and d20 (icosahedron). These are the standard polyhedral dice used in tabletop RPGs like Dungeons & Dragons and Pathfinder. You can roll up to 10 dice of any type.

How do I calculate the probability of rolling at least a certain number?

Select 'Sum greater than X' from the Target dropdown and enter your threshold value. The calculator sums the probabilities of all outcomes strictly greater than X. For example, to find the probability of rolling above 7 on 2d6, set the target to 7 with 'Sum greater than X' to get about 41.67%.

Why is the distribution chart bell-shaped for multiple dice?

When you roll multiple dice, the Central Limit Theorem applies. The sum of many independent random variables approaches a normal (bell curve) distribution regardless of the underlying distribution. With one die, the distribution is flat (uniform). With two dice, it becomes triangular. With three or more, it closely approximates a bell curve. More dice produce a narrower, taller bell shape relative to the range.

What is the probability of rolling all sixes?

For n six-sided dice, the probability of all sixes is (1/6)^n. For 1 die it is 16.67%, for 2 dice it is 2.78%, for 3 dice it is 0.46%, for 4 dice it is 0.077%, and for 6 dice it is about 0.002% or roughly 1 in 46,656. The probability drops exponentially with each additional die.

Related Tools