I'm a physicist, and I've come across a problem in my research where I need to solve a set of equations looking like (e.g. in 3D)
$$r_1 + r_2 + r_3 = k_1$$ $$r_1^2 + r_2^2 + r_3^2 = k_2$$ $$r_1^3 + r_2^3 + r_3^3 = k_3$$
Where the $\{k_n\}$ are known and the $\{r_n\}$ are the roots I need to solve for. The roots can be complex, but will always appear in conjugate pairs (by the way I construct these things in the first place).
Ideally I need to generalise this to the nth case (where there will always be $n$ unknowns and $n$ equations following the pattern above). Numerical solutions are fine, as long as they're reasonably cheap.
If it's the case that there isn't always a unique solution to these things, then I may have to rethink my strategy for the problem as a whole.
Thanks in advance.