Solving two polynomials in two variables
Solving two polynomials in two variables I had an algorithm for solving two polynomials in 2 variables by converting it into an equation in 1 variable. I'll see if I can remember it. Let us start with 2 polynomials. (solution: x=2 y=3). We try to eliminate x. (1) x 2 +4xy+2y 2 +3x+4y - 64 = 0 (2) 3x 2 -xy + y 2 +5x-y -22 = 0 First eliminate x 2 (3) =- (2) +3 (1) : 13xy +5y 2 +4x +13y -170 = 0 or (13y+4)x + (5y 2 +13y -170) = 0 Next use this equation to eliminate x 2 again from (1) . (1) .(13y+4) : (13y+4)x 2 + (52y 2 +55y+12)x + (13y+4)(2y 2 +4y - 64) = 0 - (3) .x: (13y+4)x 2 + (5y 2 +13y -170)x = 0 =(4) : (47y 2 +42y+182)x + (13y+4)(2y 2 +4y - 64) = 0 Now use these two linear equations to eliminate x: (13y+4) (4) - (47y 2 +42y+182) (3) : (13y+4)(13y+4)(2y 2 +4y - 64) - (47y 2 +42y+182)(5y 2 +13y -170) =0 or (y-3) ...