[Math] Urns and sampling – Combination Problem

combinatoricsprobability

I've been trying to solve this exercise for a few hours, I can't seem to get the right answer. Can someone share the intuition or twist behind this problem? I'll perhaps try to take it from there.

An urn contains 10 blue balls , 5 yellow balls and 5 red balls. Six
balls are drawn from the urn and discarded, their color unnoticed. A
second sample of 8 balls is then drawn without replacement. What is
the probability that the latter contains 4 blue balls, 1 yellow ball
and 3 red balls.

Best Answer

"Six balls are drawn from the urn and discarded, their color unnoticed."

This part is only there to confuse you. Obviously each individual ball have the same odds of being part of the second sample, so this problem is exactly the same as simply drawing 8 balls from the urn when the 20 balls are still in it:

An urn contains 10 blue balls , 5 yellow balls and 5 red balls. A sample of 8 balls is drawn without replacement. What is the probability that it contains 4 blue balls, 1 yellow ball and 3 red balls ?

Can you take on from there ?

Edit: to go a bit further, taking comment into account. The total number of possible draws is $\binom{20}{8}$

You just have to calculate the number of favourable draws: $\binom{10}{4}\binom{5}{1}\binom{5}{3}$ and take the quotient.

Related Question