Description |
Models the number of successes in a sample drawn without replacement from a finite population containing both successes and failures (e.g., drawing red balls from an urn without replacing them) |
Support (Domain) |
X ∈ {max(0, n-N+K), ..., min(n, K)} |
Finite or Infinite? |
Finite |
Bounds/Range |
[max(0, n-N+K), min(n, K)] |
Parameters |
N (population size), K (number of success states in population), n (number of draws), where N, K, n are positive integers with K ≤ N and n ≤ N |
Number of trials known/fixed beforehand? |
Yes, n is fixed before the experiment |
Selection Property/Mechanism |
Sampling without replacement from finite population; fixed number of draws; counting successes in sample; each item can only be selected once |
PMF (Probability Mass Function) |
P(X = k) = [C(K, k) × C(N-K, n-k)] / C(N, n) |
CDF (Cumulative Distribution Function) |
P(X ≤ k) = Σ(i=0 to k) [C(K, i) × C(N-K, n-i)] / C(N, n) |
Mean |
E[X] = n × (K/N) |
Variance |
Var(X) = n × (K/N) × (1 - K/N) × [(N-n)/(N-1)] |
Standard Deviation |
σ = √[n × (K/N) × (1 - K/N) × (N-n)/(N-1)] |