Tested tool guide
Tested browser tools
Checked August 16, 2026
What Probability Calculator does, with a checked example
Enter a scenario such as a number of coin flips, dice rolls, or card draws, plus the outcome you want, and the tool returns the probability of that outcome. It counts equally likely outcomes and uses combinations, so repeated trials such as 3 heads in 5 flips and hands drawn without replacement such as 2 aces in 5 cards are both handled, along with custom events where you set your own per-trial success probability. The most common surprise is the gap between exactly and at least: exactly 3 heads in 5 flips is 31.25%, while at least 3 heads is 50%.
Worked example
A concrete input and expected output from the current implementation.
Input
5 coin flips, exactly 3 heads, fair coin
->
Expected output
Probability: 0.3125 (31.25%)
Each flip has 2 outcomes, so 5 flips give 2^5 = 32 equally likely sequences. The number of sequences with exactly 3 heads is the combination C(5,3) = 10, so the probability is 10/32 = 0.3125.