Dice Sum Probability Calculator

This calculator finds the exact probability of rolling a specific sum on any number of identical dice. Enter the number of dice, the number of faces on each die, and the target sum you want to hit. The calculator uses a dynamic-programming approach to count every ordered combination of die faces that adds up to your target, then divides by the total number of equally likely outcomes. Results are shown as an exact count of ways, total outcomes, and probability percentage. This is useful for tabletop RPG game design, board game balancing, and classroom probability exercises.

6
36
16.67%

Dice sum probability formula

P(sum = S, n dice, f faces) = ways(S, n, f) / f^n
ways(S, n, f) counted by dynamic programming over compositions of S

The number of ways to roll sum S on n dice each with f faces equals the number of ordered n-tuples (d(1), d(2), ..., d(n)) where each d(i) is between 1 and f and the values sum to S. This is computed iteratively: start with a distribution over 1 die, then convolve with the single-die distribution n-1 more times.

Dice probability in game design

  • Two standard d6 produce a bell-shaped distribution centered on 7, which is why that sum appears most often in games like Monopoly.
  • Adding more dice narrows the relative spread (coefficient of variation decreases) and makes extreme outcomes rarer.
  • Polyhedral dice (d4 through d20) produce flat individual distributions but still form bell curves when multiple are summed.
  • Game designers use these probabilities to calibrate combat difficulty, reward rarity, and pacing.

Dice sum probability: frequently asked questions

How is dice sum probability calculated?

The probability equals the number of ways to achieve the target sum divided by the total number of outcomes (faces^dice). The number of ways is found by counting ordered compositions of the target using integers between 1 and the number of faces.

What is the most likely sum for two six-sided dice?

The sum of 7 is the most likely result when rolling two standard six-sided dice. There are 6 ways to roll a 7 out of 36 possible outcomes, giving a probability of 1/6, or about 16.67%.

Can I use this for non-standard dice?

Yes. Enter the number of faces (sides) your die has. Common polyhedral dice used in tabletop games include d4, d6, d8, d10, d12, and d20. The calculator works for any number of faces from 2 upward.

Why does the probability drop sharply at extreme sums?

Extreme sums (like the minimum or maximum possible) can only be achieved one way each. As the target moves toward the middle of the range, more combinations add up to it, so the probability increases and peaks near the center.

What is the total possible range of sums for n dice with f faces?

The minimum sum is n (all dice show 1) and the maximum sum is n times f (all dice show the highest face). Any integer between n and n*f is achievable.

Official sources

Reviewed by the CalculatorHub team, edited by James Graham, 15 June 2026. See our methodology.