A man is distributing his coin collection with 35 coins to h
A man is distributing his coin collection with 35 coins to his five grandchildren. How many ways are there to distribute the coins if:
a. The coins are all the same
b. The coins are all distinct
c. The coins are the same and each grandchild gets the same number of coins.
d. The coins are all distinct and each grandchild gets the same number of coins.
Solution
Let\'s call the amount-to-be-divvied N, where we know that 5 < N < 35. Let nk denote the amount left over after k rounds of giving. We\'ll also say that n0=N, since there are N coins left to be distributed after 0 rounds of giving.
Thus, we have
n0 = N, while
nk+1 = (5/35)(nk-1). This expression is because the butler starts the (k+1)st round by taking his coin, then the (k+1)st child takes of what\'s left (there\'s nk-1 left at this point),
Thus,
n0 = N
n1 = (5/35)(N-1)
n2 = (5/35)[(5/35)(N-1)-1], etc.
I\'ll also let you verify that
n5 = (535*N - sum[i=5 to 1] 45*355-i )/55, and that this simplifies to
n5 = (1024*N - 8404)/55. We\'re almost done, hang in there! What this tells us is that, since n5 must be an integer (this is what\'s left for the grandchildren), we have
1024*N - 8404 = 0 (mod 55). But, we also know that n5 must be divisible by another factor of 5, since the 5 grandchildren split n5 equally between themselves. Thus, all told, we have

