$x_1, x_2, ..., x_{n}$ satisfies $$1^j x_1 + 2^j x_2 + \dots + n^j x_{n} = {(n+1)}^j,$$ where $j = 1, 2, ..., n$.
Find $x_1 + x_2 + \dots + x_{n}$ and $1^{n+1}x_1 + 2^{n+1}x_2 + \dots + n^{n+1}x_{n}$.
My thoughts: the given constraints can be expressed in a matrix
$$A=
\begin{bmatrix}
\frac{1}{n+1} & \frac{2}{n+1} & ... & \frac{n}{n+1} \\
(\frac{1}{n+1})^2 & (\frac{2}{n+1})^2 & ... & (\frac{n}{n+1})^2 \\
... \\
(\frac{1}{n+1})^{n} & (\frac{2}{n+1})^{n} & ... & (\frac{n}{n+1})^{n} \\
\end{bmatrix}
$$
Then $X = A^{-1} [1, 1,..., 1]^{T}$ but i don't see any special properties with this matrix. Trying the elimination doesn't lead me anywhere either..
Thorough some experiments from smaller $n$, I can find that $x_i=(-1)^{i+1}{n \choose i}$, and by observing the original equations, it does seem to work, but I'd like to find a way to derive the answers, rather than guessing and verifying it.