Classic and simple problem: Three indistinguishable dice (6-sided) are rolled at the same time. What's the probability that we have rolled three of a kind?
Now I know that the answer is $\frac{1}{36}$, as explained for example in a thread on this site here.
But when I think about it from the following way, I get another solution. Where's my error?
Order does not count, so the space of possible outcomes is $\Omega = \{(x_1 \leq x_2 \leq x_3)\ \lvert\ x_i \in \{1, \cdots, 6\} \}$ with $\lvert\Omega\rvert = \binom{6+3-1}{3} = 56$.
The set of outcomes we want is $\{(1,1,1),\cdots(6,6,6)\}$ with cardinality 6. So the probability of rolling three of a kind is $\frac{6}{56}$.
Can you point me to my thinking error? Thanks in advance!