document.write( "Question 478485: find two consecutive even numbers if the sum of their squares is 100.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #327839 by amoresroy(361)![]() ![]() You can put this solution on YOUR website! Let x = the first even number \n" ); document.write( " x + 2= the second even number\r \n" ); document.write( "\n" ); document.write( "x^2 + (x+2)^2 = 100 \n" ); document.write( "x^2 + x^2 + 4x +4 = 100 \n" ); document.write( "2x^2 + 4x -96 = 0 \n" ); document.write( "Divide by 2 to get \n" ); document.write( "x^2 + 2x -48 = 0 \n" ); document.write( "Solve for x by factoring \n" ); document.write( "(x-6)(x+8)= 0 \n" ); document.write( " x = 6 \n" ); document.write( "x+2 = 8\r \n" ); document.write( "\n" ); document.write( "The two consecutive even numbers are 6 and 8.\r \n" ); document.write( "\n" ); document.write( "To check \n" ); document.write( "6*6 + 8*8 = 36 + 64 = 100 \n" ); document.write( " |