Say I have a polynomial and I want to know which components it consists of.
As an example, $$yx^2 + y^2 = 2y + 63 - 7x^2 \iff yx^2 + 7x^2 + y^2 - 2y - 63 = 0\\ \iff (y+7)(y+x^2-9) = 0 \iff \begin{cases} y = -7,\\y = 9 - x^2\end{cases}$$
There are some techniques for some easy equations, but is there a general algorithm for solving such things?