Question:
There are $2n+1$ identical books to be put in a bookcase with three shelves. In how many ways can this be done if each pair of shelves together contains more books than the other shelf?
My Approach:
Let $x_1$ = number of books on shelf $1$,
$\quad$ $x_2$ = number of books on shelf $2$
$\quad$ $x_3$ = number of books on shelf $3$
We are given that $x_1+x_2>x_3$, $x_2+x_3>x_1$, $x_1+x_3>x_2$ and $x_1+x_2+x_3=2n+1$
Substitute $a=x_1+x_2-x_3$, $b=x_2+x_3-x_1$ and $c=x_1+x_3-x_2$, to get
$a,b,c>0$ and $a+b+c=2n+1$
This is just the strong composition
So, the answer is $\binom{2n+1-1}{3-1}=\binom{2n}{2}$
But the answer at the back of my book is $\binom{n+1}{2}$. Where did I go wrong?
Note: This is not a duplicate question as it explicitly asks for verification of proof.