How many ways are there to distribute 15 identical marbles into 5 non-empty groups?
Note : The order of the groups does not matter.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
a+b+c+d+e=15, give -1 to each variable on left and use stripes-bars method (I dont know what you say) and then get the answer as 14C4=1001. Why is this wrong?
Log in to reply
This would be the answer if each group of marbles was going to a specific person or place. For the sake of this problem, the groups are identical , meaning the order of the groups does not matter.
When the order of groups doesn't matter, the distribution 1 ∣ 2 ∣ 3 ∣ 4 ∣ 5 is the same as 5 ∣ 4 ∣ 3 ∣ 2 ∣ 1 and any other permutation of those numbers.
Unfortunately, a stars and bars approach won't work for this problem, because you can't just divide 1 0 0 1 by 5 ! to get the answer. This is because there's a different number of permutations depending on how many groups are the same size.
1 ∣ 2 ∣ 3 ∣ 4 ∣ 5 2 ∣ 2 ∣ 3 ∣ 3 ∣ 5 5 ! = 1 2 0 permutations ( 2 5 ) ( 2 3 ) ( 1 1 ) = 3 0 permutations
This kind of problem, identical objects into identical bins , is deceptively harder than identical objects into distinct bins .
Log in to reply
Thanks I did not know this before! Slots different and variables identical for that. Thanks
Problem Loading...
Note Loading...
Set Loading...
Relevant wiki: Identical Objects into Identical Bins
Let p ( n , r ) be the number of distributions of n identical objects into r identical bins, and let p ( n ) be the number of distributions of n identical objects into any number of identical bins. (These are equivalent to the number of partitions of an integer into r parts or any number of parts)
This problem is asking for p ( 1 5 , 5 ) .
We use a number of identities and theorems on the identical objects into identical bins page.
p ( 1 5 , 5 ) = p ( 1 0 , 1 ) + p ( 1 0 , 2 ) + p ( 1 0 , 3 ) + p ( 1 0 , 4 ) + p ( 1 0 , 5 ) = 1 + 5 + p ( 1 0 , 3 ) + p ( 1 0 , 4 ) + p ( 5 )
p ( 1 5 , 5 ) = 6 + p ( 1 0 , 3 ) + p ( 1 0 , 4 ) + 7 = p ( 1 0 , 3 ) + p ( 1 0 , 4 ) + 1 3
p ( 1 0 , 3 ) = p ( 7 , 1 ) + p ( 7 , 2 ) + p ( 7 , 3 ) = 1 + 3 + p ( 7 , 3 ) = p ( 7 , 3 ) + 4
p ( 7 , 3 ) = p ( 4 , 1 ) + p ( 4 , 2 ) + p ( 4 , 3 ) = 1 + 2 + 1 = 4
p ( 1 0 , 3 ) = p ( 7 , 3 ) + 4 = 4 + 4 = 8
p ( 1 0 , 4 ) = p ( 6 , 1 ) + p ( 6 , 2 ) + p ( 6 , 3 ) + p ( 6 , 4 ) = 1 + 3 + p ( 3 ) + p ( 2 ) = 4 + 3 + 2 = 9
p ( 1 5 , 5 ) = p ( 1 0 , 3 ) + p ( 1 0 , 4 ) + 1 3 = 8 + 9 + 1 3 = 3 0
Thus, there are 3 0 ways to distribute the 15 marbles into 5 non-empty group.