I was doing the following problem:
given $a, b, c, d \in \mathbb{R}$ and
$a+b+c+d=1$, $a^2+b^2+c^2+d^2=2$, $a^3+b^3+c^3+d^3=3$ and $a^4+b^4+c^4+d^4=4$.
Find $a^n+b^n+c^n+d^n$ (I am looking for a closed kind of formula)
Now, I can already do it in one way. We can find the elementary symmetric polynomials using newton's identity and then solve the quartic to find the values of $a, b, c, d$.
But I realise that my method is computationally heavy. And more importantly once the number of variables is increased there is no guarantee that we can solve for the roots. Also, the problem does not really need the values of $a, b, c, d$ explicitly.
The above observations motivate me to find an alternative way to find a an alternative technique to solve problems like this(may be in a more general setting).
So, can someone help me?