I need to solve three types of system of equations in general form:
System of two linear equation ($Ax + By + C = 0$) which can be done perfectly by calculating D, Dx, Dy.
System of two equations which is $Ax + Bxy + Cy + D = 0$
System of two conic equations which is $Ax^2+Bxy+Cy^2+Dx+Ey+F=0$
My question is: is there any effective way to solve type 2 and type 3 ?
Thanks for reading. Any answers are appreciated !
For 2, let us consider the problem of two equations (I assume no potential accident !) such as $$A_1 x + B_1x y + C_1y + D_1 = 0$$ $$A_2 x + B_2x y + C_2y + D_2 = 0$$ From the first equation, you can eliminate $y$ and obtain $$y=-\frac{A_1 x+D_1}{B_1 x+C_1}$$ and replace $y$ in the second equation. Multiply the result by $B_1 x+C_1$ and expand. You arrive to a quadratic equation in $x$. Compute the roots for $x$ and compute $y$'s accordingly.
For 3, the problem is much more difficult and I suppose that only numerical methods could be used (Newton-Raphson for example) but they would require a reasonable starting point.