Distributions and Statistical Models
Calculates the probability of k successes in n draws, without replacement, from a finite population of size N that contains exactly K objects with that feature.
Explore real-world scenarios to understand how the hypergeometric distribution is applied.
What is the probability of drawing exactly 2 aces in a 5-card hand from a standard 52-card deck?
N: 52, K: 4
n: 5, k: 2
A batch of 100 computer chips contains 10 defective ones. If you randomly select 8 chips for inspection, what's the chance of finding exactly 1 defective chip?
N: 100, K: 10
n: 8, k: 1
In a pond with 200 fish, 50 are tagged. If a researcher catches 20 fish, what is the probability that exactly 5 of them are tagged?
N: 200, K: 50
n: 20, k: 5
In a lottery, 6 numbers are drawn from 49. To win a prize, you must match at least 3 numbers. What is the probability of matching exactly 3 numbers if you bought one ticket?
N: 49, K: 6
n: 6, k: 3
• Population Size (N): The total number of items you are drawing from. • Successes in Population (K): The total number of items with the desired characteristic. • Sample Size (n): How many items you draw. • Successes in Sample (k): The specific number of successful items you are interested in.
• C(K, k): The number of ways to choose k successes from the K available successes in the population. • C(N-K, n-k): The number of ways to choose the remaining n-k items (failures) from the N-K failures in the population. • C(N, n): The total number of ways to choose a sample of size n from the entire population of size N.