Probability Calculator
Calculate probability for basic events, combinations, permutations, dice, cards and coins
Example: rolling a number ⤠3 on a 10-sided die ā 3 favourable, 10 total
// Formula Reference
Understanding Probability
Probability measures how likely an event is to occur, expressed as a number between 0 (impossible) and 1 (certain). It can also be expressed as a percentage (0ā100%) or as odds (e.g. 3:1 against).
Key Formulas
Combinations vs Permutations
Combinations count selections where order doesn't matter. Choosing 3 people from 10 for a committee ā {A,B,C} is the same as {C,A,B}. Permutations count arrangements where order matters. Choosing a president, vice-president and secretary from 10 people ā {A,B,C} and {C,A,B} are different outcomes.
From the Blog
// 0 to 1 Scale
Probability is always between 0 (impossible) and 1 (certain). 0.5 = 50% chance. Anything above 1 or below 0 indicates an error.
// Complement Rule
It's often easier to calculate P(not happening) and subtract from 1. P(at least one 6 in 3 rolls) = 1 ā P(no 6 in 3 rolls).
// Independent Events
For independent events, multiply probabilities. P(two heads) = P(head) Ć P(head) = 0.5 Ć 0.5 = 0.25.
// Gamblers Fallacy
Past outcomes don't affect future independent events. After 10 heads in a row, the next flip is still 50/50.