What the generator is and is not doing
Each line comes from crypto.getRandomValues, the browser's interface to the operating system entropy pool, reduced into the range of remaining numbers by rejection sampling. Values landing in the incomplete final block of the 32-bit range are discarded and redrawn, so no number is even fractionally more likely than another. Drawing without replacement is done by removing each pick from the pool, which is the same thing a physical machine does.
That is a claim about the generator, not about the lottery. An unbiased generator produces a line exactly as likely to win as a biased one, as a line you chose yourself, or as the quick pick from the terminal. The only reason to care about the sampling being correct is that a tool claiming to be random should be, not because it changes anything about the outcome.
The odds, and where they come from
The page computes the odds from the format rather than looking them up, so a custom game gets a correct figure too. The number of ways to choose k numbers from a pool of n is the binomial coefficient, and a separate bonus ball multiplies that by its own pool size.
| Game | Format | Top prize odds |
|---|---|---|
| Powerball | 5 from 69, 1 from 26 | 1 in 292,201,338 |
| Mega Millions | 5 from 70, 1 from 24 | 1 in 290,472,336 |
| Lotto 6/49 | 6 from 49 | 1 in 13,983,816 |
| 6/45 | 6 from 45 | 1 in 8,145,060 |
These are difficult numbers to feel. One in 292 million is roughly the chance of picking one specific second out of the next nine years and three months. Buying a hundred lines a week for fifty years covers about 260,000 combinations, which is under a tenth of one percent of the Powerball space.
Due numbers, hot numbers and other things that are not real
Draws are independent. The machine retains no record of what it did last time, and a ball that has not appeared in fifty draws is exactly as likely to appear next as one that came up on Saturday. The belief that it is somehow owed an appearance is the gambler's fallacy, and it survives because human intuition expects short sequences to look balanced while genuine randomness produces clumps and gaps that look like patterns.
Frequency tables published as lottery statistics are real data describing the past and carrying no information about the future. Over a few thousand draws some numbers will inevitably have appeared more often than others, purely as variance, and nothing about that persists. The same goes for systems built on sums, spreads, odd-even balance and consecutive pairs. Any filter you apply removes combinations from consideration, and every combination removed was exactly as likely as the ones you kept.
The one thing your choice does change
Number selection cannot change your chance of winning. It can change how much a win is worth, and only for jackpots that are split among winners.
People do not choose randomly. Dates confine picks to 1 through 31, leaving the high numbers underplayed. Straight lines and neat patterns on the slip are common. The previous draw's winning numbers get played heavily the following week. Sequences like 1-2-3-4-5-6 attract far more players than most people expect, on the theory that nobody else would. A line made of unpopular choices therefore has fewer co-holders, so if it does come up, the jackpot divides fewer ways.
The size of this effect is worth being clear about. It does nothing whatever to the probability of winning, it applies only to pari-mutuel jackpots and not to fixed lower-tier prizes, and it improves an expected value that is negative to begin with — every major lottery returns well under a dollar per dollar staked, which is what funds the prizes and the state programmes behind them. If the ticket is entertainment priced at a couple of dollars, that is a coherent thing to buy. If it is a plan, the arithmetic does not support it, and no generator changes that.
Questions people ask
Do generated numbers win more often than ones I pick myself?
No, and neither do quick picks from the terminal. Every combination in the pool carries identical odds, so the source of the numbers is irrelevant to whether they come up. Quick picks account for a majority of jackpot wins for the simple reason that they account for a majority of tickets sold, which is a statement about ticket volume rather than about luck. The only genuine difference between a random line and a self-chosen one is that random lines are less likely to collide with the date-based and pattern-based lines that thousands of other people play, so a win would be shared fewer ways.
Is it better to buy more lines or play more often?
Buying more lines in one draw improves your odds for that draw slightly more efficiently, because the lines are distinct and cannot duplicate each other, while independent draws over time can repeat combinations. The effect is negligible either way. Ten lines in one Powerball draw is 10 in 292 million rather than 1 in 292 million — ten times better, and still essentially zero. Both approaches carry the same negative expected return per dollar, so the amount you spend matters and the schedule does not.
Why exclude numbers if it does not improve the odds?
Because people have reasons that are not about odds. Some want to avoid the numbers on last week's ticket, some are covering a syndicate where each member takes a different set, some are checking that a line they already hold is not duplicated. The tool supports it and states plainly what it does: excluding numbers narrows the set of combinations you can draw, and every combination removed had exactly the same chance as every one kept. If exclusions are being used as a system, they are not one.
How do I use these on an actual ticket?
Copy the numbers and mark them on a play slip, or read them to the clerk. Most lotteries let you fill in only some numbers and have the terminal fill the rest, which is what the include-in-every-line field is for if you want the same few numbers across several lines. Check the rules for your specific game before buying, since pool sizes and bonus ball formats change — Mega Millions altered both its bonus pool and its ticket price in 2025, and this generator uses the current format rather than the historical one.