Applying the hypergeometric
Sampling without replacement gives the same mean but lower variance than sampling with replacement. Here's when this matters in practice.
The finite population correction
| Scenario | FPC | Interpretation |
|---|---|---|
| ≈ 1 | Single draw, almost no difference | |
| 0 | Draw everyone, no randomness left | |
| ≈ 1 | Small sample, nearly independent |
Rule of thumb: If (sample is less than 5% of population), the binomial approximation is fine.
Quality control
You're inspecting a batch of 100 items, 10 of which are defective. You test 20 items.
Simulate batch inspections and see how detection probability depends on sample size and defect rate:
Most defects slip through with only 10 tested
Explore how the probability of accepting a batch changes as the true defect rate varies:
Polling
Card games
Dealing cards is always without replacement.
The calculation:
When to use each
| Use Binomial when... | Use Hypergeometric when... |
|---|---|
| Sampling with replacement | Sampling without replacement |
| Population is very large | Population is finite and small |
| (approximation) | |
| Trials are independent | Trials are dependent |
Common mistakes
Summary
| Distribution | Mean | Variance |
|---|---|---|
| Binomial | ||
| Hypergeometric |
How you sample changes the variance, not the mean. Without replacement reduces uncertainty because outcomes become negatively correlated.
What's next
We've seen that random variables can be independent (binomial) or dependent (hypergeometric). But what exactly does independence mean for random variables? That's our next topic.