I have these $n$ equations, with $n$ variables. Variables are first $n$ positive integers, constants can be any rational number including zero. Given that there is always a solution, how do we find a solution to the system:
\begin{align}
ax^{1}+by^{1}+cz^{1}+\cdots&=k_{1}\\
ax^{2}+by^{2}+cz^{2}+\cdots&=k_{2}\\
ax^{3}+by^{3}+cz^{3}+\cdots&=k_{3}
\end{align}
so on ... till
$$ax^{n}+by^{n}+cz^{n}+\cdots=k_{n}$$
for variables $x,y,z\in \{1,2\ldots, n\}$.
The value of constants $a$,$b$,$c$... remain same in all these equations.
And these constants can also be equal to each other. For e.g: $a = b$ so that values of $x$ and $y$ can become interchangeable. In such cases one working solution is suffice.
Can we find a solution or determine none exist in polynomial time?
Edit: For the sake of clarity here is a simple example.
If $n=3$, I know $x,y,z$ can only take 1, 2 or 3 as their values. So if I have $x + y + z = 9$, I clearly know that $x, y$ and $z$ are all 3. But if I have $x + y + z = 6$, I don't know whether they are $2,2,2$ or $1,2,3$. Then I can make use of $x^2 + y^2 + z^2 = 14$. Then I will know they are $1,2,3$.