Dice Calculator
Enter number of dice and sides to compute the min, max, average total and number of possible combinations.
Input Data
Results
2
12
7
36
At a glance:n dice of d sides: min total = n; max = n×d; average = n×(d+1)/2; combinations = dⁿ.
Formula
minSum = diceCount.
maxSum = diceCount × sides.
avgSum = diceCount × (sides + 1) ÷ 2.
combinations = sides ^ diceCount.
How to Use
- Enter the number of dice and sides per die.
- Get the range, average and combination count instantly.
FAQ
Does this actually roll dice?
This calculator gives statistical info (range, average, combinations), not a random roll; the actual total is still probabilistic.
Why are there so many combinations?
Each extra die multiplies combinations by d; e.g. 8 dice of 20 sides give 20⁸ combinations.
Related Tools
References
Content reviewed by the Calculatorism editorial team. Results are for reference only; please refer to the relevant authorities for the official figures.