Question:
A mother has 10 identical coins, and 3 kids.
a) If the first kids gets 3 coins, and the last kid gets 2 coins. How many ways can she spread the rest of the coins?
b) If the second kid only gets 3 coins. How many ways can she spread the coins?
c) If the second kid can have 3 coins or more. How many ways ?
d) If the second kid can have at most 3 coins. How many ways ?
My solution:
a) r = 10 - 3 - 2 = 5 coins leftover
r = 5
n = 3
No order, and repetitions are allowed.
$\therefore$ $n+r-1\choose r$
$\therefore$ $3+5-1\choose 5$ is the answer
b) The second kid is restricted to 3 coins only. Then n = 2, and r = 7.
$\therefore$ $n+r-1\choose r$
$\therefore$ $2+7-1\choose 7$ is the answer
c)
r = 10 - 3 = 7
n = 3 (because the second kid can still receive the rest of the coins)
$\therefore$ $n+r-1\choose r$
$\therefore$ $3+7-1\choose 7$ is the answer
d)
$2+10−1 \choose 10$+$2+9−1 \choose 9$+$2+8−1 \choose 8$+$2+7−1 \choose 7$
Am I right with my logic ?