Drawing without Replacement: why 'no repeats' Matters
Ask for a random number and you'll get a number. Ask for a random number with no repeats and you've just added a rule that changes everything about how the draw has to work. That single phrase, "no repeats," is the difference between a tool that simply spits out numbers and one that has to remember every number it has already produced and refuse to give it out again.
Most people only notice this distinction when it breaks something: a raffle that calls the same ticket twice, a bingo cage that repeats a number mid-game, or a seating draw that assigns two people to the same seat. This guide explains the two modes plainly, shows you exactly when repeats are fine (even necessary) and when they quietly ruin a draw, and gives you a simple test you can run in your head before setting up any random number tool.
The Two Modes, Plainly
Every random draw from a fixed range works one of two ways, and the names sound more technical than the idea actually is.
With replacement means each number goes back into the pool immediately after it's drawn, so it can be drawn again on the next pick. Picture drawing a numbered ball from a bag, writing it down, and dropping it straight back in before the next draw. The pool never shrinks, and the odds of any specific number never change from one draw to the next.
Without replacement means once a number is drawn, it's removed from the pool for good. The next draw comes from a slightly smaller set, and that number can never come up again in the same session. This is drawing the ball and setting it aside in a tray instead of dropping it back in the bag.
Neither mode is "more random" than the other. Both are genuinely random draws; they just answer a different question. With replacement answers "what's the outcome of this one independent event?" Without replacement answers "how do I fairly work through a fixed set of items exactly once each?" Picking the wrong mode for your situation is what causes trouble, not the randomness itself.
If you want the mechanical, tool-by-tool breakdown of how to configure either mode, our draw without replacement guide covers the settings in detail. This post is the conceptual companion: it's about recognizing which mode a given job actually needs before you touch any settings at all.
Why Repeats Are Sometimes Exactly Right
It feels intuitive to assume "no repeats" is always the safer, fairer choice. It isn't. Plenty of everyday random-number jobs are only correct because repeats are allowed.
The clearest example is a die. Roll a standard six-sided die and get a 4, then roll again, and there is nothing wrong with getting another 4. Each roll is a completely independent event; the die has no memory of its last result, and it shouldn't. If you configured a digital die to remove numbers after they came up, by your fourth roll you'd only have two faces left to choose from, and the odds would be nothing like a real die. We cover this exact trap in our guide to replacing a physical 1-6 roll with a number wheel: the tool has to be set to allow repeats, or the simulation is broken.
The same logic applies anywhere you're modeling repeated independent chances rather than working through a finite set. A daily "pick of the day" that draws from the same list every morning should be able to repeat, because Tuesday's pick has no bearing on what Wednesday's should be. Monte Carlo simulations, random sampling with replacement in statistics, and any "what if this happened again" thought experiment all depend on repeats being allowed. Turning replacement off in these cases doesn't make the result fairer; it makes it wrong, because you've secretly given later draws better odds by shrinking the field for them.
Where Repeats Genuinely Break Things
On the other side of the line sit jobs where a repeat isn't just undesirable, it's meaningless or actively unfair.
Multi-prize raffles. If you're drawing five ticket numbers for five different prizes, the same ticket number cannot legitimately win twice in one draw. Once ticket #482 wins the first prize, it has to come out of the pool before you draw for the second prize. Our raffle number generator guide walks through exactly this setup, including the common mistake of leaving the range set to tickets printed rather than tickets actually sold, which is a separate but related trap in the same kind of draw.
Bingo calling. This is the strictest case there is. A called number that repeats isn't just unfair, it's nonsense, since every card on the floor has already accounted for that number the first time it was called. Calling it again gives no new information and can create confusion about whether a card should mark it twice. Our bingo number calling guide covers why every calling format, 75-ball, 90-ball, or otherwise, depends entirely on repeats being switched off for the whole game.
Unique assignment. Any time you're assigning something one-to-one, seats, turn order, locker numbers, task order among a group of people, a repeat would mean two people getting the same seat or the same turn slot. The whole point of the draw is to produce a complete, non-overlapping assignment, so replacement has to stay off until every person or item has been placed.
Sampling without double-counting. If you're pulling a random subset of entries, survey respondents, or records for review, and each one should only be selected once, this is sampling without replacement by definition. Drawing the same record twice wastes a pick and, in a statistical context, quietly biases your sample toward whichever items happened to get drawn more than once.
The Dice Case, As the Clearest Contrast
It's worth sitting with the dice example a moment longer, because it makes the whole concept concrete in a way abstract rules don't.
A single die roll from 1-6 should always allow repeats: every roll is independent, and the odds of any face should be identical every single time, regardless of what came up before. That's the "with replacement" case in its purest form.
But now say you want to simulate rolling two dice and summing them, the classic 2-12 range used in board games. Here's the trap: it might seem efficient to just draw one number from 2-12 directly. Don't. That produces a flat distribution where 2 and 12 are exactly as likely as 7, which is not how two dice actually behave. Real dice produce a bell-shaped curve, because there are six ways to make a 7 (1+6, 2+5, 3+4, 4+3, 5+2, 6+1) and only one way to make a 2 or a 12. The correct method is to roll two separate 1-6 draws, each independently allowing repeats within itself, and add the results together. Same underlying rule, with replacement, applied correctly rather than shortcut into the wrong shape of randomness.
That's the nuance worth remembering: the "no repeats" question isn't just about turning a setting on or off, it's about correctly identifying what the individual random event actually is before you draw it.
The Test: Could This Legitimately Happen Twice?
If you only take one thing from this guide, take this question. Before running any draw, ask: could this specific outcome legitimately happen twice in the real-world situation I'm modeling?
If yes, allow repeats. A die face coming up again, a "pick of the day" landing on the same item on two different days, a simulation representing two separate independent chances, all of these can legitimately repeat in real life, so your draw should allow it too.
If no, turn repeats off. A ticket winning two prizes in the same raffle, a bingo number being called twice in one game, two people getting assigned the same seat, none of these can legitimately happen in reality, so a random tool that allows them isn't modeling your situation correctly, no matter how random the individual numbers are.
This test cuts through the instinct to treat "no repeats" as automatically the more careful or fair-sounding option. Careful means matching the setting to the real situation, not defaulting to whichever one sounds stricter.
What Changes Underneath, and Why It's Still Fair
One thing that trips people up: when you draw without replacement, the odds for each individual draw actually shift as the pool shrinks. If you're drawing from 100 raffle tickets, the first draw gives every ticket a 1-in-100 chance. Once one is removed, the second draw gives every remaining ticket a 1-in-99 chance, then 1-in-98, and so on. Those aren't the same odds as the first draw, and that can look suspicious if you're not expecting it.
It's still completely fair, because every ticket that hasn't been drawn yet has exactly the same odds as every other remaining ticket at that same moment. Fairness in a without-replacement draw isn't about every draw across the whole session having identical odds, it's about every eligible entry having equal odds at the point it's eligible. The pool shrinking is not a flaw; it's the entire mechanism that prevents a repeat, and it's mathematically identical to the classic "draw a name from a hat and set it aside" method people have trusted for generations.
A Quick Setup Checklist
Before you run a random number draw, work through these in order:
- Define the real-world event. Are you modeling something that could genuinely repeat (a die roll, an independent daily pick) or something that must be unique (a prize, a seat, a called number)?
- Set the range to match reality, not aspiration. For a raffle, that's tickets sold, not tickets printed. For bingo, that's the full call range for your format.
- Decide replacement based on the test above, not on instinct or on what "sounds" more rigorous.
- If you need several unique picks in one session (multiple raffle prizes, several bingo calls, a full seating chart), make sure replacement is off for the entire session, not just the first draw, so nothing already chosen can resurface later.
- If you need repeated independent events (dice, daily picks, simulations), double-check that replacement is on and that you're not accidentally shrinking the pool between draws.
The Bottom Line
"Random number, no repeats" is a request with two very different correct answers depending on what you're actually drawing. Independent events, like a single die roll, need repeats allowed to stay accurate. Unique, one-time outcomes, like raffle prizes, bingo calls, or seat assignments, need repeats switched off to stay meaningful. The test is simple: could this outcome legitimately happen twice in the real situation you're modeling? Answer that honestly before you touch a single setting, and the rest of the draw takes care of itself. For the practical, tool-level walkthrough of turning replacement on or off, our draw without replacement guide is the natural next stop, and our number wheel supports both modes if you want to try the difference for yourself.
Frequently Asked Questions
It means each number can only be drawn once per session; once it comes up, it's removed from the pool and can't be selected again. This is also called drawing "without replacement," and it's the right setting whenever an outcome must be unique, like a raffle prize or a bingo call.
Yes, always. Each die roll is an independent event, and a real die has no memory of its previous result, so a digital die that blocks repeats will produce incorrect odds after just a few rolls.
Because the pool of remaining numbers shrinks by one after every draw, which slightly increases the odds for everything still left. This doesn't make the draw unfair, every number still remaining has identical odds to every other remaining number at that moment, exactly like drawing names from a hat one at a time.
Yes, and it's common. A bingo game keeps replacement off for the calling sequence but might use a separate, independent draw (with replacement) to pick a bonus number for a side game. Treat each distinct random decision on its own merits using the test in this guide.
If replacement stays on, the same ticket could legitimately be drawn for two different prizes, which most raffle rules don't allow and which entrants will rightly see as unfair. Always switch replacement off before drawing for a second, third, or later prize in the same raffle.