What did I do wrong ?
How many integer solutions are there to the equation $x_1 + x_2 + x_3 = 15$ subject to the constraints that $x_1 ≥ 1$, $x_2 ≥ 1$, $x_3 ≥ 1$?
Putting $y_1=x_1-1$, $y_2=x_2-1$ and $y_3=x_3-1$, we have the equation $y_1+y_2+y_3=10$.
So now I can use the proposition that says that the number of solutions of $x_1+x_2+...+x_k=n$ is $\binom {n+k-1}{k-1}$.
So, for $y_1+y_2+y_3=10$ we have $\binom {10+3-1}{3-1}=\binom {12}{2}=66$.
However, Wolfram Alpha says it has $90$ solutions.