document.write( "Question 960867: Find two consecutive even natural numbers such that the sum of their squares is 340 .
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #587237 by Theo(13342)![]() ![]() You can put this solution on YOUR website! the two consecutive numbers are x and x + 2. \n" ); document.write( "x^2 + (x+2)^2 = 340 \n" ); document.write( "simplify to get: \n" ); document.write( "x^2 + x^2 + 4x + 4 = 340 \n" ); document.write( "combine like terms to get: \n" ); document.write( "2x^2 + 4x + 4 = 340 \n" ); document.write( "subtract 340 from both sides to get: \n" ); document.write( "2x^2 + 4x - 336 = 0 \n" ); document.write( "factor out the 2 to get: \n" ); document.write( "x^2 + 2x - 168 = 0 \n" ); document.write( "factor the quadratic to get: \n" ); document.write( "(x-12) * (x+14) = 0 \n" ); document.write( "x is equal to 12. \n" ); document.write( "x + 2 is equal to 14. \n" ); document.write( "x^2 + (x+2)^2 is equal to 12^2 + 14^2 which is equal to 340. \n" ); document.write( " \n" ); document.write( " |