The hypergeometric distribution is a model that describes the probability of a specific number of successes in a series of draws without replacement from a finite population. This is exactly the kind of situation our light bulb problem presents.
This distribution is related to the concepts of combinatorics and probability without replacement. It calculates the probability of getting a certain number of successes (in our case, defective bulbs) in a certain number of draws from a population with a known amount of successes, without returning any draws back to the population.
The formula for the hypergeometric probability is: \[ P(X = k) = \frac{{{K \choose k} {{N-K} \choose {n-k}}}}{{N \choose n}} \] where:
- \( N \) is the population size (50 bulbs),
- \( n \) is the number of draws (5 bulbs),
- \( K \) is the total number of successful states in the population (2 defective bulbs),
- \( k \) is the number of successful states in the sample (the number of defective bulbs we are calculating for, at least one in our problem).
By using this approach, we avoid overestimating the probability by treating each draw as independent when it's not since the bulbs aren't replaced. It gives us a more precise and realistic probability calculation for scenarios akin to our exercise.