document.write( "Question 704087: Find 3 consecutive integers so that 3 times the first increased by twice the
\n" );
document.write( "second is 2 less than 4 times the third one.
\n" );
document.write( "My idea starts: 3x + 2x = 4x - 2 \n" );
document.write( "
Algebra.Com's Answer #433915 by sachi(548)![]() ![]() You can put this solution on YOUR website! let the 3 consecutive integers are x-1 ,x & x+1 \n" ); document.write( "now 3 times the first increased by twice the second is 2 less than 4 times the third one \n" ); document.write( "so 3(x-1)+2x=4(x+1)-2 \n" ); document.write( "or 3x-3+2x=4x+4-2 \n" ); document.write( "or x=5 \n" ); document.write( "so the 3 consecutive integers are 4,5,6 \n" ); document.write( "ans \n" ); document.write( " |