Find all triples of non-negative real numbers $(a,b,c)$ such that: $$\begin{cases}a^2+ab=c \\ b^2+bc=a \\ c^2+ca=b \end{cases}$$
Attempt: $$b= \frac{-c+\sqrt{c^2-4a}}{2}$$ $$2c^2+2ca=-c+\sqrt{c^2-4a}$$ $$2c^2+c(2a+1)=+\sqrt{c^2-4a}$$ $$4c^2+2c^3(2a+1)+4a^2+4a+1=c^2-4a$$
Applies the quadratic formula again and leaves $a$ in terms of $c$. Finally, we have $b$ in terms of $c$, since $c^2+ca=b$. Then we have all the solutions with $a$ varying
Am I right?