1 Answers
📚 What is Hypergeometric Distribution?
The Hypergeometric distribution is a discrete probability distribution that describes the probability of $k$ successes (drawing without replacement) in $n$ draws, from a finite population of size $N$ that contains exactly $K$ successes. In simpler terms, it’s used when you want to know the probability of getting a specific number of successful outcomes when you're pulling items from a group without putting them back.
📜 History and Background
While not directly attributable to a single inventor, the concepts behind hypergeometric distribution emerged from the study of combinatorial problems in probability, particularly those involving sampling without replacement. Its formalization as a distinct distribution became more prominent as statistical theory advanced. Key figures in early probability theory, such as Jacob Bernoulli and later statisticians, contributed to the understanding of distributions involving sampling from finite populations.
🔑 Key Principles
- 📦 Finite Population: The population size ($N$) is finite and known.
- 🚫 Sampling without Replacement: Once an item is selected, it is not returned to the population.
- 🎯 Fixed Number of Successes: The total number of successes ($K$) in the population is fixed.
- 🔢 Fixed Number of Draws: A fixed number of draws ($n$) are made from the population.
- ✅ Probability Mass Function (PMF): The probability of observing exactly $k$ successes in $n$ draws is given by the formula: $P(X = k) = \frac{{\binom{K}{k} \binom{N-K}{n-k}}}{{\binom{N}{n}}}$ where $\binom{a}{b}$ represents the binomial coefficient, calculated as $\frac{a!}{b!(a-b)!}$.
🌍 Real-world Examples
Example 1: Quality Control
Imagine a batch of 20 smartphones, where 5 are defective. If you randomly select 3 smartphones, what's the probability that exactly 2 are defective?
Here, $N = 20$ (total smartphones), $K = 5$ (defective smartphones), $n = 3$ (smartphones selected), and $k = 2$ (defective smartphones in the sample). Plugging these values into the hypergeometric PMF: $P(X = 2) = \frac{{\binom{5}{2} \binom{15}{1}}}{{\binom{20}{3}}} = \frac{{10 * 15}}{{1140}} = \frac{150}{1140} ≈ 0.1316$ So, there's approximately a 13.16% chance that exactly 2 out of the 3 selected smartphones are defective.
Example 2: Card Games
Suppose you draw 5 cards from a standard deck of 52 cards. What is the probability of getting exactly 2 Aces?
Here, $N = 52$ (total cards), $K = 4$ (Aces), $n = 5$ (cards drawn), and $k = 2$ (Aces in the hand). Thus, $P(X = 2) = \frac{{\binom{4}{2} \binom{48}{3}}}{{\binom{52}{5}}} = \frac{{6 * 17296}}{{2598960}} = \frac{103776}{2598960} ≈ 0.0399$ Thus, the probability of drawing exactly 2 Aces is about 3.99%.
Example 3: Team Selection
From a group of 12 students, 7 are girls. If you randomly select a team of 5 students, what is the probability that exactly 3 are girls?
Here, $N = 12$ (total students), $K = 7$ (girls), $n = 5$ (students selected), and $k = 3$ (girls in the team). $P(X = 3) = \frac{{\binom{7}{3} \binom{5}{2}}}{{\binom{12}{5}}} = \frac{{35 * 10}}{{792}} = \frac{350}{792} ≈ 0.4414$ The probability of selecting a team of 5 with exactly 3 girls is approximately 44.14%.
🎯 Conclusion
The Hypergeometric distribution is a powerful tool for calculating probabilities in scenarios involving sampling without replacement. Understanding its key principles and applications allows for more accurate decision-making in various fields, from quality control to games of chance. So next time you are faced with a scenario involving sampling without replacement, remember the hypergeometric distribution!
Join the discussion
Please log in to post your answer.
Log InEarn 2 Points for answering. If your answer is selected as the best, you'll get +20 Points! 🚀