document.write( "Question 1069061: Find three biggest consecutive natural number such that sum of twice the first and three more than the third is at most 25 \n" ); document.write( "
Algebra.Com's Answer #805664 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( "2(x - 1) + (x + 1) + 3 <= 25 \n" ); document.write( "2x - 2 + x + 4 <= 25 \n" ); document.write( "3x <= 23 \n" ); document.write( "x <= 23/3 = 7.66\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "The largest possible values of the integers are 6, 7, and 8. \n" ); document.write( " |