An urn contains $6$ white and $4$ black balls. A fair die is rolled and that number of balls are chosen from the urn. Find the probability that the balls selected are white.
I know the basic way to go about solving the problem.
Let $W$ be the event of finally drawing all white balls. Let $P(n)$ denote the probability of appearance of $n$ on the die.
We want: $$P(W) = P(1)P(W\mid 1)+ P(2)P(W\mid 2)+\dots \implies P(W) = \dfrac{1}{6}\left(\sum_{i=1}^6P(W\mid i)\right)$$
Now, I am actually facing trouble in computing $P(W/i)$. I saw author's method and in it he has used $P(W\mid i) = \dfrac{^6C_i}{^{10}C_i}$
but I fail to understand how that can be true when all white balls are identical and all black balls are identical.
Here, $^6C_i$ denotes the combination of $i$ different things from 6 different objects, doesn't it? How can that be used here?
The probability of drawing $i$ white balls is the probability of drawing a white ball and then (without replacement) drawing a second white ball, and so on up to $i$
The first ball drawn has a probability of $\frac{6}{10}$ of being white
Given that the first ball drawn is white, the second ball drawn has a probability of $\frac{5}{9}$ of being white
An so on up to the $i$th ball having a probability of $\frac{6-i+1}{10-i+1}$ of being white
So the probability all $i$ balls drawn are white is $$\frac{6 \times 5 \times \cdots \times(6-i+1)}{10 \times 9 \times \cdots \times(10-i+1)} = \dfrac{\frac{6!}{(6-i)!}}{\frac{10!}{(10-i)!} }= \dfrac{\frac{6!}{(6-i)!i!}}{\frac{10!}{(10-i)!i!}} = \dfrac{^6C_i}{^{10}C_i}$$