Data
Are hot and cold numbers real? Testing the full drawing record
Every lottery site publishes a hot-numbers table. We ran the two tests that decide whether those tables contain any information at all.
"Hot" numbers are the ones drawn most often recently; "cold" numbers are the laggards. Both tables are easy to compute and impossible to resist. The question is whether the ranking carries any information about the next drawing — and that question has a definite answer.
The current tables
| Game | Most drawn | Least drawn | Longest current dry spell |
|---|---|---|---|
| Mega Millions | 10 (85), 17 (82), 31 (80), 3 (78), 14 (77) | 51 (51), 67 (52), 65 (53), 45 (53), 50 (55) | ball 8, 49 drawings |
| Powerball | 21 (124), 61 (124), 64 (123), 28 (119), 27 (118) | 13 (76), 26 (81), 49 (82), 46 (83), 34 (84) | ball 23, 72 drawings |
In Powerball the gap between the top and bottom of that table is 48 appearances — ball 21 has been drawn 124 times and ball 13 only 76. Presented as a bar chart it looks like a clear signal.
Test 1: does the whole distribution deviate from fair?
The chi-square goodness-of-fit test compares all 70 (or 69) observed counts against the counts a fair machine would produce, and reports the probability of seeing a deviation at least this large by chance.
| Game | Expected per ball | Chi-square | df | p-value | Verdict |
|---|---|---|---|---|---|
| Mega Millions | 65.7 | 60.3 | 69 | 0.76 | consistent with a fair game |
| Powerball | 100.9 | 78.0 | 68 | 0.19 | consistent with a fair game |
A p-value of 0.76 means that if the game is perfectly fair, you would see counts at least this uneven about 76% of the time. That is not evidence of anything. Both games pass comfortably.
Test 2: are the extremes more extreme than chance allows?
A fair distribution still produces a most-drawn and a least-drawn ball — someone has to come first. So the right question is not "is there a hottest number" but "is the hottest number hotter than a fair game would produce". We generated 4,000 synthetic histories per game with a uniform random generator and recorded the extremes.
| Statistic | Real record | Fair simulation | Simulated 95th percentile |
|---|---|---|---|
| Mega Millions: highest ball count | 85 | 85.1 | 92 |
| Mega Millions: hottest-minus-coldest | 34 | 37.3 | 46 |
| Powerball: highest ball count | 124 | 124.6 | 133 |
| Powerball: hottest-minus-coldest | 48 | 46.1 | 56 |
The real extremes sit right on the simulated averages. Randomness is lumpy: spreading a few thousand appearances over seventy slots reliably produces a leader several appearances clear of the field, and a straggler equally far behind. The existence of a hot number is a mathematical certainty. Its identity is noise.
Test 3: does "hot" stay hot?
Information that predicts the future is stable. Superstition is not. Shorten the analysis window on either of our generator pages — from the full matrix era to the last 400 or last 120 drawings — and the hot list reshuffles almost completely, which is precisely what you expect from a table built on sampling noise. A ranking that changes every time you change the window is not measuring a property of the balls.
So why does this site show hot and cold numbers?
Because the statistics are genuinely interesting, because seeing them measured properly is the fastest cure for believing in them, and because weighting a random draw by frequency produces lines that look plausible without changing anyone's odds. Our generators let you set the frequency, dry-spell and momentum weights to zero, which gives exact uniform randomness, and we verify that with a chi-square test in our own test suite.
If a site charges you for a hot-numbers system, the two tests above are the ones to ask them to run. The law of independent trials explains why the answer cannot come out any other way.