While the binomial models nn independent trials (draws with replacement), the hypergeometric models nn draws without replacement from a finite urn. The key difference: without replacement the probabilities are not independent — each draw changes the composition of the urn.

Property — XHyp(N,K,n)X\sim\text{Hyp}(N,K,n)

An urn contains NN objects, of which KK are “successes” and NKN-K are “failures”. You draw nn objects without replacement. If XX is the number of successes drawn, then P(X=k)=(Kk)(NKnk)(Nn),max(0,n(NK))kmin(n,K).P(X=k) = \frac{\binom{K}{k}\binom{N-K}{n-k}}{\binom{N}{n}}, \qquad \max(0,\,n-(N-K))\le k\le \min(n,K). Mean and variance: μ=E[X]=nKN,σ2=nKNNKNNnN1.\mu = E[X] = n\cdot\frac{K}{N}, \qquad \sigma^2 = n\cdot\frac{K}{N}\cdot\frac{N-K}{N}\cdot\frac{N-n}{N-1}.

Observation — Reading the formula

  • (Kk)\binom{K}{k}: ways of choosing the kk successes among the KK available.
  • (NKnk)\binom{N-K}{n-k}: ways of choosing the nkn-k failures among the NKN-K available.
  • (Nn)\binom{N}{n}: total ways of choosing nn objects among NN (denominator = possible cases).

It is a pure combinatorial calculation: the ratio between favourable cases and possible cases (classical probability).

Topics: Probability distributions
Concepts: Hypergeometric distribution · Expected value · Variance
Methods: Hypergeometric distribution
Skills: Combinatorics · Probability calculation