document.write( "Question 40824: how do you solve this system of equation:
\n" );
document.write( "x^2+y^2=36
\n" );
document.write( "x+y=4 \n" );
document.write( "
Algebra.Com's Answer #26228 by fractalier(6550)![]() ![]() You can put this solution on YOUR website! Well, graphing might help but is often not precise enough to give a perfect solution...your best bet is to do it using algebra by solving the second equation for x or y and then plugging it in to the first...like this... \n" ); document.write( "x^2+y^2=36 \n" ); document.write( "x+y=4 \n" ); document.write( "gives \n" ); document.write( "y = 4 - x and \n" ); document.write( "x^2 + (4 - x)^2 = 36 \n" ); document.write( "x^2 + 16 - 8x + x^2 = 36 \n" ); document.write( "2x^2 - 8x - 20 = 0 \n" ); document.write( "x^2 - 4x - 10 = 0 (can't factor, use quadratic) \n" ); document.write( "x = (4 ± sqrt(16 + 40)) / 2 \n" ); document.write( "x = (4 ± 2*sqrt(14)) / 2 \n" ); document.write( "x = 2 ± sqrt(14) \n" ); document.write( "Now plug either of these solutions into the second eqn to get the y's that correspond to each x... \n" ); document.write( "y = 4 - (2 + sqrt(14) = 2 - sqrt(14) \n" ); document.write( "y = 4 - (2 - sqrt(14) = 2 + sqrt(14) \n" ); document.write( " |