Eight indistinguishable objects are to be randomly put into six buckets. What is the probability that at least three buckets will receive the objects?
My approach was to let X= the number of buckets that receive objects, and then the required probability is
$P(X≥3) = 1- P(X=1) - P(X=2)$
$= 1 - [(6C1)(1/6)^8 + (6C2)(2/6)^8]$ $= 0.99771$
My reasoning was that for all of the objects falling into one bucket, there are 6 possible buckets $(6C1)$, and the probability for eight objects to fall into the same bucket in a row is $(1/6)^8 $
By the same logic, for all of the objects to be divided into two of the six buckets, there are $(6C2)$ possible ways to choose those two buckets...And the probability is $(2/6)^8 $.
Then, the probability that at least three buckets will receive objects is 1- (the probability of only one bucket receiving all the objects + two buckets receiving all the objects)
However, the answer given to this question was 0.8904. Where am I going wrong, and is there a better way to approach questions like this? Does it fall into any specific discrete distribution?
Note:
I also tried
$1- [(6C1)(1/6)^8] - (6C2)[(1/6)^7(5/6) + (1/6)^6(5/6)^2 + (1/6)^5(5/6)^3 + (1/6)^4(5/6)^4 + (1/6)^3(5/6)^5 + (1/6)^2(5/6)^6 + (1/6)(5/6)^7]$
And got $0.8721$. I am not sure if this approach is better.
The official answer is incorrect. Coming to your approach, it is correct except that you have a small mistake when you are distributing objects to two buckets.
$\displaystyle P(X=1) = {6 \choose 1} \cdot \frac{1}{6^8}$
$\displaystyle P(X=2) = {6 \choose 2} \cdot \frac{2^8 - 2}{6^8}$
Please note that $2^8$ will also count the two arrangements where all objects go to one of the two chosen buckets. So we subtract $2$ from $2^8$.
Therefore,
$\displaystyle P(X \geq 3) = 1 - P(X=1) - P(X=2) = \frac{23275}{23328}$