With vs without replacement sampling

By Jude Wallis · Published

With replacement, each item is returned before the next pick, so every draw has the same probabilities and the draws are independent. Without replacement, items are not returned, so the pool shrinks and each draw changes the probabilities for the next, making the draws dependent.

AP Statistics: Unit 2 (topics 1.11 Random Sampling, 2.6 Conditional Probability, 2.7 Independent Events and Unions of Events). Sampling with and without replacement are defined in Unit 1 topic 1.11 of the Fall 2026 course. The probability effect is handled in Unit 2: independent draws use P(A)P(B) (topic 2.7), while dependent draws use the general multiplication rule P(A)P(B|A) (topic 2.6). The 10% condition (n at most 10% of N) lets without-replacement sampling be treated as approximately independent.

With vs without replacement: the short answer

The difference is whether you put each pick back before the next one. With replacement, you return the item, so the pool never changes, every draw faces the same probabilities, and the draws are independent. Without replacement, you keep each item out, so the pool shrinks, the probabilities shift on every draw, and the draws are dependent.

That one choice decides how you multiply. Independent draws let you multiply the same probability each time, while dependent draws force you to update the probability using what has already been removed.

Sampling with replacement

With replacement, an item selected from the population is returned before the next selection, so it can be chosen again. Because the pool is restored each time, the probability of any outcome stays the same on every draw, and the draws are independent.

That independence makes the arithmetic simple. For two draws, P(A then B)=P(A)P(B)P(A \text{ then } B) = P(A) \cdot P(B), using the same probabilities each time. This is the setup behind the binomial distribution, which requires a fixed probability of success across independent trials. Flipping a coin or rolling a die behaves like sampling with replacement, since nothing is used up.

Sampling without replacement

Without replacement, an item is selected only once and is not returned, so the pool gets smaller with each draw. The probabilities change from draw to draw, which makes the draws dependent: what you pick first affects what is left for the second.

Here you use the general multiplication rule with a conditional probability: P(A then B)=P(A)P(BA)P(A \text{ then } B) = P(A) \cdot P(B \mid A), where P(BA)P(B \mid A) reflects the smaller, updated pool. Dealing cards, drawing names from a hat, or selecting people for a committee all work this way, because once chosen, an item is gone. Most real sampling is done without replacement, so no one is surveyed twice.

With vs without replacement side by side

FeatureWith replacementWithout replacement
Item returned before next pickYesNo
Can the same item repeatYesNo
Pool size across drawsConstantShrinks each draw
Probabilities across drawsStay the sameChange each draw
Draws areIndependentDependent
Two-draw formulaP(A)P(B)P(A) \cdot P(B)P(A)P(BA)P(A) \cdot P(B \mid A)
Typical exampleCoin flips, dice rollsDealing cards, surveys

When to use which, and the 10% shortcut

Use with replacement when items truly can repeat, or when a model such as the binomial assumes independent trials with a constant probability. Use without replacement for most real sampling, where each person or object is selected at most once.

There is a useful bridge between them. When you sample without replacement but the sample is small relative to the population, the probabilities barely move, so the draws are close enough to independent to treat with the simpler with-replacement math. The AP course formalizes this as the 10% condition: when sampling without replacement, if the sample size nn is at most 10% of the population size NN, you may treat the draws as approximately independent.

The classic mix-up and how to avoid it

The classic error is multiplying the same probability twice for a without-replacement problem, which ignores that the pool shrank. Drawing two red marbles is not 410×410\frac{4}{10} \times \frac{4}{10} when you do not replace the first; the second draw must use the smaller pool.

Two habits prevent it. First, read whether the item is returned: words like 'replace,' 'put back,' or 'with replacement' signal constant probabilities, while 'without replacement,' 'do not return,' or dealing and selecting people signal a shrinking pool. Second, for without-replacement draws, update both the count of successes and the total before the next fraction, so the denominator drops by one on each successive draw.

Where this fits in AP Statistics

The two sampling strategies are defined in Unit 1 topic 1.11, and the probability machinery lives in Unit 2: independent events and the multiplication rule in topics 2.6 and 2.7. The binomial probability model, computed with the binomial probability calculator, assumes independent trials, which is the with-replacement setup.

The 10% condition shows up again in inference, where sampling without replacement is treated as approximately independent as long as the sample is at most 10% of the population. Keeping disjoint separate from independent events helps here, since replacement is about independence across draws, not about whether two events can co-occur.

Two red marbles, two different answers

A bag holds 10 marbles: 4 red and 6 blue. You draw 2 marbles. Find the probability that both are red, first with replacement and then without replacement.

  1. With replacement, the first draw is red with probability 410\frac{4}{10}.

  2. Since the marble is returned, the second draw is also red with probability 410\frac{4}{10}.

  3. Multiply the independent draws: 410×410=16100=0.16\frac{4}{10} \times \frac{4}{10} = \frac{16}{100} = 0.16.

  4. Without replacement, the first draw is still red with probability 410\frac{4}{10}.

  5. Now one red is gone, leaving 3 red among 9 marbles, so the second draw is red with probability 39\frac{3}{9}.

  6. Multiply using the conditional probability: 410×39=1290\frac{4}{10} \times \frac{3}{9} = \frac{12}{90}.

  7. Simplify: 1290=2150.133\frac{12}{90} = \frac{2}{15} \approx 0.133.

With replacement, P(both red)=0.16P(\text{both red}) = 0.16. Without replacement, P(both red)=2150.133P(\text{both red}) = \frac{2}{15} \approx 0.133. The without-replacement answer is smaller because removing the first red leaves fewer reds in a smaller pool for the second draw.

Frequently asked questions

Does replacement affect whether draws are independent?

Yes. Sampling with replacement keeps the pool and its probabilities constant, so the draws are independent. Sampling without replacement shrinks the pool, so each draw changes the probabilities for the next, making the draws dependent.

What is the 10% condition?

When you sample without replacement, the draws are not truly independent, but if the sample size nn is at most 10% of the population size NN, the probabilities barely change. In that case you may treat the draws as approximately independent, which is why the condition matters in AP inference.

Does the binomial distribution assume with or without replacement?

The binomial model assumes independent trials with a constant probability of success, which matches sampling with replacement. You can still apply it to sampling without replacement when the 10% condition holds, since the draws are then close enough to independent.