If we have $n$ bucket and $\beta$ balls and each ball is thrown to a bucket randomly, then what is the probability of "Every bucket at least has a ball in it"?
I tried 2 ways:
- I try to calculate from the inverse, and then I can give the probability of bucket $i$ has at least one ball $$p_i=1-\left(\frac{n-1}{n}\right)^\beta,$$ but they seem not independent that I can't just multiply them up;
- I try to calculate the number of samples that $\beta$ balls cover $m$ buckets, but I can't see the pattern in it.
Where should I go?
Thank you.