Calculate dice probability for a specific total, all dice showing the same value, or at least one target face with exact ratio and percent.

Dice Probability Calculator

Used for equals, at least, and at most.

Dice Probability Formula

The dice probability calculator counts the number of outcomes that match your condition, then divides by the total number of possible outcomes.

P = W / T
  • P = probability as a decimal
  • W = number of winning outcomes
  • T = total number of possible outcomes
T = s^n
  • T = total outcomes
  • s = number of sides per die
  • n = number of dice

For a specific sum, the calculator builds the count of ways each sum can occur. If all dice have the same number of sides, the number of ways to roll a sum can be represented as:

W(k) = coefficient of x^k in (x + x^2 + ... + x^s)^n
  • W(k) = number of ways to roll the sum k
  • k = target sum
  • s = sides per die
  • n = number of dice

The calculator supports four probability types:

P(\text{sum equals } k) = W(k) / T
P(\text{sum is at least } k) = (W(k) + W(k+1) + ... + W(ns)) / T
P(\text{sum is at most } k) = (W(n) + W(n+1) + ... + W(k)) / T
P(a \le \text{sum} \le b) = (W(a) + W(a+1) + ... + W(b)) / T
  • Sum equals counts only outcomes where the dice add exactly to the target sum.
  • Sum is at least counts all outcomes from the target sum up to the maximum possible sum.
  • Sum is at most counts all outcomes from the minimum possible sum up to the target sum.
  • Sum is between counts all outcomes from the minimum selected sum through the maximum selected sum, including both endpoints.

Common Dice Sum Probabilities

For two standard six-sided dice, there are 36 total outcomes. The sums near 7 are more likely because they can be made in more ways.

Sum Ways to Roll It Probability Percent
211/362.777778%
322/365.555556%
433/368.333333%
544/3611.111111%
655/3613.888889%
766/3616.666667%
855/3613.888889%
944/3611.111111%
1033/368.333333%
1122/365.555556%
1211/362.777778%

Possible Sum Ranges by Dice Setup

Dice Setup Minimum Sum Maximum Sum Total Outcomes
1d6166
2d621236
3d6318216
4d64241,296
2d10220100
2d20240400

Dice Probability Examples

Example 1: Probability that 2d6 equals 7

You roll 2 dice with 6 sides each. The total outcomes are:

T = 6^2 = 36

The sum 7 can occur in 6 ways: 1+6, 2+5, 3+4, 4+3, 5+2, and 6+1.

P = 6 / 36 = 0.166667 = 16.666667%

Example 2: Probability that 3d6 is at least 15

You roll 3 dice with 6 sides each. The total outcomes are:

T = 6^3 = 216

The sums 15, 16, 17, and 18 have 10, 6, 3, and 1 outcomes, for 20 winning outcomes total.

P = 20 / 216 = 0.092593 = 9.259259%

Dice Probability FAQ

Why is rolling a 7 with two dice more likely than rolling a 2?

A 7 can be made in 6 different ordered ways with two six-sided dice. A 2 can only be made one way, by rolling 1 and 1. Since each ordered dice result is equally likely, sums with more combinations have higher probability.

What does “outcomes against” mean?

Outcomes against are the possible outcomes that do not match your selected condition. If there are 36 total outcomes and 6 winning outcomes, then there are 30 outcomes against.

What are the minimum and maximum possible sums?

The minimum possible sum is the number of dice, because each die can roll at least 1. The maximum possible sum is the number of dice multiplied by the number of sides per die. For example, 4 dice with 6 sides have a minimum sum of 4 and a maximum sum of 24.