How the Lottery Odds Calculator works
To win a lottery jackpot you have to match every number the machine draws. Because the order in which the balls come out does not matter, the number of different tickets that could possibly be drawn is a combination, written C(n, k) or "n choose k". Your odds of holding the winning ticket are simply 1 divided by that count.
The formula
If a game asks you to pick k numbers from a pool of n, the number of possible tickets is:
C(n, k) = n! / ( k! × (n − k)! )
Your odds of winning the jackpot with a single ticket are 1 in C(n, k), and your probability is 1 / C(n, k). If the game also draws a separate bonus ball (a Powerball or "extra" ball) from its own pool of m numbers, you must match that too, so the total number of tickets becomes C(n, k) × m.
Why order does not matter
If order mattered you would use permutations, which are much larger. But a lottery ticket like {4, 8, 15, 16, 23, 42} is the same winning ticket no matter what sequence the balls are drawn in. Dividing the permutation count by k! removes those duplicate orderings, which is exactly what the combination formula does.
Common reference points
- 6 from 49 (classic Lotto): C(49, 6) = 13,983,816 → about 1 in 14 million.
- 6 from 59 (UK Lotto): C(59, 6) = 45,057,474 → about 1 in 45 million.
- US Powerball (5 from 69, plus 1 Powerball from 26): C(69, 5) × 26 = 11,238,513 × 26 = 292,201,338 → about 1 in 292 million.
- US Mega Millions (5 from 70, plus 1 Mega Ball from 25): C(70, 5) × 25 = 12,103,014 × 25 = 302,575,350 → about 1 in 303 million.
Buying more tickets
Each additional distinct ticket adds one more chance out of the fixed total. If C(n, k)×m is the total number of tickets and you buy T of them, your odds improve to 1 in C(n, k)×m / T. Buying 10 tickets in a 1-in-14-million game gives roughly 1 in 1.4 million — better, but still overwhelmingly unlikely.