Given $N$ identical balls I have to distribute them into $n$ boxes. Any number of balls can be in one box.
What is the probability of having $l$ balls in one box?
Is this correct?
$p(l) = \frac{1}{n^{l-1}} \binom{N}{l} = \frac{1}{n^{l-1}} \frac{N!}{(N-l)!l!}$
I asked this one differently, with an explanation of how to reach to the formula: Understanding the $n!$ in the probability of $l$ events from a set of $N$ to happen at the same timestep out of $n$ total but I didn't get any feedback.
And now, based on these two related questions, I think my expression might be correct.
Probability of exactly one empty box when n balls are randomly placed in n boxes.
- the boxes are numbered and you want the probability to have $l$ balls in box number one
- the boxes are not numbered and you want the probability to have $l$ balls in at least one box
- the boxes are not numbered and you want the probability to have $l$ balls in exactly one box
– Exodd Feb 22 '18 at 09:43lballs in at leastonebox – myradio Feb 22 '18 at 09:561/n. --- In how many ways can I chooselballs fromNballs:binomial (N, l). --- Then,1/n * bin(N, l)is the proba of taking l balls and putting them into one specific box. --- Now, since we have n boxes, we have to SUM thisntimes, or multiply byn, but I think is incorrect your suggestion multiplying thisntimes (or put it to the power ofn). Assuming the sum that I comment is how I got my expression. – myradio Feb 22 '18 at 19:50