I have a problem finding solutions to systems that contain 2 equations with 2 variables each and are second degree. Example :
\begin{cases}x^2 + x + y^2 + y - 18 = 0 &&(1)\\ x^2 + xy + y^2 - 12 = 0 & &(2)\end{cases}
What I do :
- find the solutions of x (in terms of y) in the first equation - $ x_1,x_2 $
- solve the second equation using $x_1,x_2$ (so i can get an equation of second degree with one variable - y)
- substitude the solutions of the second equation in the $x_1$ and $x_2$ and find the final answer
The problem here is that to find on of the $x$ I spend $10$ minutes and to solve the problem i need $40$ minutes. I make a lot of mistakes... Is there a faster and safer way ?
I suggest that you should make use of symmetry the system has. In this system, if $(x,y)=(p,q)$ is the solution of the system, then so is $(x,y)=(q,p)$. This indicates that we can rewrite the system in terms of elementary symmetric polynomials, i.e. $x+y$ and $xy$. This procedure yields $$(x+y)^2+(x+y)-2xy-18=0;\quad (x+y)^2-xy-12=0.$$ This system is solved to obtain $(x+y,xy)=(3,-3),\ (-2,-8)$ and thus we obtain $(x,y)=((3+\sqrt{21})/2,(3-\sqrt{21})/2), (2,-4)$ and permutation of each.