Question: n+1 balls are put into n bins. What is the probability that all of the bins are not empty (contain 1 ball at least)?
What I did:
Choose n balls from the n+1 ${n+1 \choose n}$, order them in the bins (n!), choose one bin to put the remaining ball in (n). That sums up to: ${n+1 \choose n}n!n$. I think there's a double count somewhere, but it all seems logical to me... Anyone can please explain me what I have counted twice? ($|\Omega|$ - is the number of ways to put the balls in the bins) $|\Omega| = n^{n+1}$ of course. So the probability is ${{n+1 \choose n}n!n} \over {n^{n+1}}$
How many ways ate there to put $n+1$ balls into $n$ bins? How many ways are there such that every bin has at least one ball?