A crate of 10 parts holds 4 defective. Sample 3. The chance of at most one defective is 2/3 without replacement, but 0.648 if you wrongly treat it as binomial. One key word, "without replacement," picks the distribution.
independent trials, each a success with probability ; counts the successes.
, . Use it when the number of trials is fixed and stays constant, which means sampling with replacement or from an effectively infinite population.
Draw items without replacement from a population of containing successes; counts the successes drawn.
The mean is , the same as a binomial with . The variance adds a finite-population correction:
Common mistakes
- Treating without-replacement sampling as binomial. The crate problem is hypergeometric (0.667), not binomial (0.648). The "without replacement" wording is the tell. Trap: 0.648.
- Mixing the negative binomial conventions. counts FAILURES before the -th success. If a problem counts total TRIALS, the mean is . Read which one is asked.
- Dropping the finite-population correction. The hypergeometric variance includes . Using with overstates the variance.
Bottom line
- Binomial(): successes in independent trials at a constant . , ; requires constant and independence.
- Hypergeometric: successes drawing WITHOUT replacement from items containing . ; variance carries the correction .
- Negative binomial(): failures before the -th success. , ; is geometric.
- Key-word test: with replacement (or huge population) is binomial; without replacement from a finite population is hypergeometric; "until the -th success" is negative binomial.
Exam shortcut
Read for the sampling scheme before you compute. "With replacement is binomial, without replacement is hypergeometric, until the -th success is negative binomial." For a negative binomial given its moments, "variance over mean is one over " backs out in a single step, then the mean gives .
The full lesson (about 2,113 words, 14 min read) adds 3 worked examples, all 6 common mistakes, a self-check, free in the app.
Learning objectives
- 2a
- 2b
- 2c
- 2d
- 2e
- 2f
Browse all free Exam P lessons or jump into free Exam P practice questions.