Okay, so this is my problem: How many outcomes where exactly ONE number occurs exactly TWO times ex (2, 1, 2, 5) or (3, 6, 6, 1) but NOT (1, 2, 1, 2) or (3, 1, 3, 3)
My solution: So the first throw has 6 possibilities, then this must be followed by one throw with only ONE possibility, then followed by a throw with 5 possibilities, followed by a throw with 4 possibilities. Then this gives me: 6 * 1 * 5 * 4 = 120 outcomes
This solution gave me 0 points, so my question is where do I go wrong?
Forget the dice, suppose you just had to pick four numbers from 1 to 6 , and you can repeat numbers. For your case, we would need to firstly pick the number that is going to be appearing twice - there are 6 ways to do it
Now, we need to pick two distinct numbers from the remaining 5 - there's ${5 \choose 2}$ ways of doing that
Now for order - we have a sequence of the type $A A B C$ - hence the total number of permutations of this list is $\frac{4!}{2!}$
Put it all together
$$N = 6 \times {5 \choose 2}\times \frac{4!}{2!}$$
Probability = $\frac{N}{6^4}$