For someone to pick the same toy:
Jon picks car1 and car2
Given 3 people
Hans
Thomas
Jon
And 6 toys:
Car1, Car2, Doll1, Doll2, Ball1, Ball2
Each person is given 2 toys, calculate the probability of someone getting the same toy. (there are two instances of each toy).
The way I tried to solve it is this way:
- Only Jon gets the same toys
- Only Thomas gets the same toys
- Only Hans gets the same toys
For 1-3, the probability is as follows:
Hans picks up any toy (5 toys are left)
Jon has to pick any toy that is not what Hans picked (4 options out of 5)
Thomas has to pick the toy which Hans picked (1 options out of 4)
Hans has to pick the same kind of toy he has (1 out of 3)
So the probability for scenario 1 is:
(4/5)*(3/4)*(1/3) = (1/5)
So for 1-3 the probability is 1/5
Now I have the probability of only 2 getting the same toy, which is not possible as the 3rd person by default also gets the same toy, so the probability is 0.
And the last option is that all 3 get the same instance of a toy.
(4/5)*(2/4)*(1/3)*(1/2) = (1/15)
Overall, the probability of at least one getting two instances of the same toy is: 1/15 + 3*(1/5)
But it seems I am wrong? Any help will be appreciated.
The probability of the 1st scenario (only Hans picks the same toy) is $$\frac{4}{5}\left(\frac{1}{4}\cdot\frac{1}{3}+\frac{2}{4}\cdot\frac{1}{3}\cdot\frac{1}{2}\right)=\frac{2}{15}$$
PS: The probability that at least one player gets the same toy is $$3\cdot\frac{2}{15}+\frac{1}{15}=\frac{7}{15}$$