- #1
aaaeee123
- 2
- 0
Homework Statement
There are m different buckets of marbles where each bucket has a different number of colored marbles (m). The total number of marbles is the same in each bucket and is K.
There are K individuals who walk past each bucket and pick 1 marble out of each one (so all marbles are given out).
What is the probability for an individual to have at least 2 colored marbles?
Homework Equations
The Attempt at a Solution
I have been trying to think of this as:
Prob(at least 2 colored marbles) = 1 - [prob(no colored marbles) + prob(exactly 1 colored marble)].
And where
prob(no colored marbles) = ((K-m[1])/K) * ((K-m[2])/K) * ... * ((K-m)/K)
prob(no colored marbles) = (1-(m[1]/K)) * ... * (1-(m/K))
I am having trouble figuring out the prob(exactly 1 colored marble). Is it from the binomial distribution with binomial parameter (sum_i(m))?
Also, from a larger standpoint, I am not sure this approach is correct due to the fact that the marbles are not replaced. The buckets are independent but clearly what the first person draws affects the second person, etc. So, should I be using a hypergeometric distribution?
Thanks in advance!