Imagine there is an urn with $10$ colored balls. There are five colors present in the urn, and two balls of each color.
What is the probability that there is exactly one pair of the same color when you draw $6$ balls from an urn in one go?
What is wrong with my appproach:
$1/10\cdot 1/1 \cdot 8/8 \cdot 6/7 \cdot 4/6 \cdot 2/5.$
Reason: For the first ball we have one out of $10$ balls -> $1/10$
the second ball is the one that has the same color than the first -> $1/1$
for the third ball we have $8$ balls left, we can choose -> $8/8$
for the fourth ball we have $7$ balls left, but we can only choose out of $6$ since we must not choose the same color -> $6/7$
for the fifth ball we have $6$ balls left, but we can only choose out of $4$ since we must not choose the same color -> $4/6$
for the sixth ball we have $5$ balls left, but we can only choose out of $2$ since we must not choose the same color -> $2/5$
I know that my solution is wrong but I don't know why. I don't want to have the right solution, but the exact reason at which point my solution is wrong and how could it been fixed. I know that in my approach the balls are drawn from an urn one after another without replacement by taking into account the order. But in the experiment the balls are drawn in one go without taking into account the order. Is that the mistake in thinking? How can I adjust my solution to come to the right result? What is my mistake in reasoning?
If you want to do it the multiplication way, you'd start with
We get $(10/10)(1/9)(8/8)(6/7)(4/6)(2/5)= \frac{8}{315}$
But there is still a hitch . We have chosen the pair together but they could actually be placed in $\binom62$ ways in the order, so multiply to get $\frac8{315}\binom62 = \frac8{21}$
NOTE
I have solved the problem using the path you had taken, but personally I'd solve it using combinations, as there is less chance of error
Choose a color and choose $2$ from it
Choose one each from the remaining colors
This gives $$\frac{\binom51\binom22\times \binom21\binom21\binom21\binom21}{\binom{10}6} = \frac8{21}$$
This could, of course, be abbreviated to just $\dfrac{5\times2^4}{\binom{10}6}$,
but the full form shows the process most transparently