document.write( "Question 780658: find three consecutive integers such that the sum of the first and third is at most 40
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #806221 by CubeyThePenguin(3113) You can put this solution on YOUR website! consecutive integers: (x-1), x, (x+1)\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "(x-1) + (x+3) <= 40 \n" ); document.write( "2x + 2 <= 40 \n" ); document.write( "2x <= 38 \n" ); document.write( "x <= 19\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "The largest possible value of the three integers are 18, 19, and 20. \n" ); document.write( " |