From an urn containing $M$ white balls and $N-M$ black balls, $r$ balls have been lost. The probability of drawing a white ball is: Given ($N\gt M\gt r)$.
My Thinking: We know that before the balls have been lost $P$(white)=$\frac{M}{N}$. Now when $r=1$, $$P_{white}=(\frac{M}{N})(\frac{M-1}{N-1})+(\frac{N-M}{N})(\frac{M}{N-1})=\frac{M}{N}$$ but now for $r=2$ ($3$ possibilities), the situation gets bit complicated and further for $r=3$ gets further tough. So I want to derive(I think it will involve binomial maybe) a general term for this probability and also to prove that the probability always remains i.e, $P$(white)=$\frac{M}{N}$ independent of the balls drawn. How can we prove this?
The probability that a particular while ball is drawn is the probability that it was not lost, times the conditional probability that it is drawn, given that it wasn't lost.
The probability that it wasn't lost is $$\frac{N-r}{N}$$ and the conditional probability that is drawn, given that it wasn't lost is $$\frac1{N-r}$$ so that probability that it is drawn is $$\frac{N-r}{N}\cdot\frac1{N-r}=\frac1N$$
Summing over all white balls, we find the probability that a white ball is drawn is $$\frac MN$$
Of course, I'm assuming that each ball has an equal probability of being lost, and that all relevant events are independent.