The question:- Suppose we have an infinite number of Red balls, Green balls, White balls, and Blue balls, and we need to select $10$ balls. We are required to find the probability that a selection contains balls of all the different colours.
(The essence of having an "infinite" no. of balls is that the composition remains the same after each draw, so the probabilities aren't affected).
Approach-1: Suppose the no. of Red,Green,White,Blue balls selected are $r,g,w,b$ . Then :
Favourable cases: No. of integer solutions of the equation $r+g+w+b=10$, such that $r,g,w,b >0$=$9\choose 3$=$84$.
Total cases: No. of integer solutions of the equation $r+g+w+b=10$, such that $r,g,w,b \geq 0$=$13\choose3$=$286$.
Which gives the (correct answer) as $42/143$.
Approach 2: Each selection has $4$ options: i.e select $r,g,w$ or $b$. Therefore, there are $4^{10}$ total options.
By the principle of inclusion-exclusion, the favorable cases must be: $4^{10}$-$4\choose1$$3^{10}$+$4\choose2$$2^{10}$-$4\choose3$$1^{10}$.
However, this approach doesnt give the correct answer. Whats wrong in using the IEP here?
Approach 2 should give the correct answer. What source claims that the answer in approach 1 is correct? Approach 1 treats all $286$ cases as equally likely, which is false. For example, picking $5$ red and $5$ green is much more likely than picking $10$ red balls.