If $a,b,c \in \mathbb R$ and $a \neq 0$ then for the system of quadratic equations in n variables $x_1, x_2 ... x_n$
$ax_1^2+bx_1+c=x_2$
$ax_2^2+bx_2+c=x_3$ .
.
.
$ax_n^2+bx_n+c=x_1$
$1)$ show that that the equations have no solutions if $(b-1)^2<4ac$
$2)$ find the solutions if $(b-1)^2>4ac$
My Attempt:
I was able to do the first part by adding all the equations and converting them into summations of quadratic equations,
$$ax_1^2+x_1(b-1)+c + ax_2^2+x_2(b-1)+c ... ax_n^2+x_n(b-1) + c=0$$
for this to have no solution, $(b-1)^2<4ac$
But, how do you find the solutions if there are any (for the condition $(b-1)^2>4ac$)
One thing that can be done is just to substitute and then solve the resulting $f(x^{2n})$ polynomial. But that would be too much work. Is there any other easier way to find the solutions?
Any help would be appreciated.