We throw a fair dice $n$ times. For each digit between 1 and 6, we count its frequency - the number of times the dice landed on this digit. What is the probability that at least two digits have the same frequency?
Initially I thought it is simple... the frequency of each digit is just a binomial random variable with $p=1/6$, so the probability that its frequency is $k$ is just:
$${n\choose k} (1/6)^k(5/6)^{n-k}$$
We can find, for each $k$, the probability that at least two digits have frequency $k$, then sum over all $k$.
The problem is, the variables are dependent, since the sum of all frequencies is $n$.
So what is the solution?