I have an urn with 100 balls; 10 colors with each 10 balls.
Now I draw 10 balls from the urn without replacement - I want to calculate the probability of getting 3 or more of any color.
How do I calculate this? My problem is that for example the event "more than 3 greens" and "more than 3 yellows" are not exclusive, there are possible draws which fit into both categories. So I cant the hypergeometric distribution and multiply it by 10.
I feel like this question is school level.... I got a math degree, so the answer doesnt need to be super basic, I just suck at stochastics. Help greatly appreciated.
There are $\frac{100!}{90!}$ possible combinations. To get an answer compute the number of combinations $(C)$where there are at most $2$ of any color. The combinations can be broken down into $6$ sets depending on how many balls appear twice. These are $A_k=90^k\times 10^{10-2k}$ and The number of permutations for each $k$ are $B_k=\frac{10!}{(k!)^2(10-2k)!}$ $C=\sum_{k=0}^5 A_kB_k$, giving $Q=\frac{90!C}{100!}$ as the probability of no more than $2$ of any color and the desired result is $P=1-Q$
Calculating $Q$ i s tedious but not impossible.