Say we have $11$ grey and $15$ white mice, so $26$ in total in a container we can't see. We want to take $5$ of them home. What is the probability of at least two of them being grey?
- 2 grey: The probability of the first being grey is $\frac{11}{26}$ the second grey is $\frac{10}{25}$, the last three white $\frac{15\cdot 14 \cdot 13}{24\cdot 23\cdot 22}$.
- 3 grey: $\frac{11\cdot 10 \cdot 9 \cdot 15\cdot 14\cdot 13}{26\cdot 25\cdot 24\cdot 23\cdot 22}$
- 4 grey: $\frac{11\cdot 10 \cdot 9 \cdot 8 \cdot 15\cdot 14}{26\cdot 25\cdot 24\cdot 23\cdot 22}$
- 5 grey: $\frac{11\cdot 10 \cdot 9 \cdot 8 \cdot 7\cdot 15}{26\cdot 25\cdot 24\cdot 23\cdot 22}$
And the probability of at least $2$ grey is the sum of these?
Let us do the computations explicitly. Fix some $g,w\ge 0$, $g+w=5$, and the question is which is the exact probability $$P(g,w)$$ to choose exactly $g$ Gray and $w$ White mice. First, each such choice depends on the positions we make the choices, for instance, for $g=2$, $w=3$ we have $$\binom 52=\binom 53=\frac{4\cdot 5}{1\cdot 2}=10$$ possibilities to consider the "positions" we extract the corresponding color, the list would be
Let us fix one of the above patterns. Then we have $11\cdot 10$ possibilities to extract the two $G$ at the two places they appear, and $15\cdot 14\cdot 13$ possibilities for the $WWW$. So explicitly, the probabilities are: $$ \begin{aligned} P(5G,0W) &= \binom 50\cdot \frac {\color{red}{11\cdot10\cdot 9\cdot 8\cdot 7}} {26\cdot 25\cdot 24\cdot 23\cdot 22}\ , \\ P(4G,1W) &= \binom 51\cdot \frac {\color{red}{11\cdot10\cdot 9\cdot 8} \cdot \color{blue}{15}} {26\cdot 25\cdot 24\cdot 23\cdot 22}\ , \\ P(3G,2W) &= \binom 52\cdot \frac {\color{red}{11\cdot10\cdot 9} \cdot \color{blue}{15\cdot 14}} {26\cdot 25\cdot 24\cdot 23\cdot 22}\ , \\ P(2G,3W) &= \binom 53\cdot \frac {\color{red}{11\cdot10}\cdot \color{blue}{15\cdot 14\cdot 13}} {26\cdot 25\cdot 24\cdot 23\cdot 22}\ , \\ P(1G,4W) &= \binom 54\cdot \frac {\color{red}{11} \cdot \color{blue}{15\cdot 14\cdot 13\cdot12}} {26\cdot 25\cdot 24\cdot 23\cdot 22}\ , \\ P(0G,5W) &= \binom 55\cdot \frac {\color{blue}{15\cdot 14\cdot 13\cdot12\cdot 11}} {26\cdot 25\cdot 24\cdot 23\cdot 22}\ . \end{aligned} $$ Let us use computer aid to see these numbers, here sage...
The needed probability is thus
Or (humanly much) simpler