I've got some homework that asks:
Determine the number of integer solutions of $x_1 + x_2 + x_3 + x_4 + x_5 = 32$ where $x_i > 3$ for $1 \le i \le 5$.
My solution is as follows:
$C(32 + 5 - 1, 32) = C(36, 32)$. This does not consider the restriction that $x_i > 3$.
If we remove $((3 + 1) \cdot 5) = 20$ possibilities from 32, we are left with 12 objects to distribute into 5 places. This becomes:
$C(12 + 5 - 1, 12) = C(16, 12) = 1820$ possible solutions.
..
Is my approach of "removing" the 4 possibilities from each of the 5 $x_i$'s the correct method? I think that this removes the possibilities of there being 0, 1, 2 or 3 objects in each of the 5 $x_i$.
Thanks