document.write( "Question 39885: Consecutive integers.
\n" );
document.write( "I need to find three consecutive integers such that the sum of their squares is 77. \n" );
document.write( "
Algebra.Com's Answer #25334 by vidhyak(98)![]() ![]() ![]() You can put this solution on YOUR website! Let the 3 integers be x, x+1, x+2\r \n" ); document.write( "\n" ); document.write( "x^2 + (x+1)^2 + (x+2)^2 = 77 \n" ); document.write( "x^2 + x^2 + 2x + 1 + x^2 + 4x + 4 = 77 \n" ); document.write( "3x^2 + 6x + 5 = 77 \n" ); document.write( "3x^2 + 6x - 72 = 0\r \n" ); document.write( "\n" ); document.write( "
\n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Solving you get 4, -6\r \n" ); document.write( "\n" ); document.write( "The 3 integers are 4,5,6 or -6,-5,-4 \n" ); document.write( " |