Ordered Triples Summing to 20
How many ordered triples $(a, b, c)$ of positive integers satisfy $a + b + c = 20$?
Hints
- This is a constrained integer partition problem. Think about how to reduce "positive integers" to "non-negative integers."
- Substitute $a' = a - 1$, $b' = b - 1$, $c' = c - 1$ so that $a', b', c' \geq 0$ and apply stars and bars.
- After substitution you need the number of non-negative integer solutions to $a' + b' + c' = 17$, which is $\binom{19}{2}$.
Worked Solution
How to Think About It: This is a textbook stars-and-bars problem. You are distributing 20 identical units among 3 labeled bins, each bin getting at least 1. The "at least 1" constraint is the only wrinkle -- handle it by substituting away the minimum.
Quick Estimate: With 3 variables summing to 20, the answer should be on the order of