An ice-cream truck stops at a park and randomly distributes 10 ice-cream cones among 20 children. What is the probability that a randomly selected child receiving no ice-cream cone? Exactly one ice-cream cone? Two or more ice-cream cones?
My current approach is to find all the integer compositions of 10 ice-cream cones using 20 children, where (obviously) zeros are allowed. So, for example, one of the integer compositions might be:
1+1+1+1+2+4+0+0+0+0+0+0+0+0+0+0+0+0+0+0=20 In the above integer composition, 14 out of 20 children received no ice-cream, 4/20 children received one ice-cream cone, and 2/20 children received 2 or more ice-cream cones. I can perform a Monte Carlo simulation with many random integer compositions to get probabilities.
p(x=0) = 0.66 p(x=1) = 0.24 p(x=2) = 0.08 p(x=3) = 0.01 p(x=4) through p(x=10) = less than 0.01 --- p(x>=0 & x <= 10) = 1 It would seem that this pattern is a discrete probability distribution. Can someone please point out the name of the distribution? For some reason I am having trouble seeing how one of the common distributions (Poisson, binomial, etc.) fits this problem!