document.write( "Question 99967: One integer is 6 more than a second integer. Three times the first integer when added to two times the second integer is less than 22. Determine the largest possible values of the two integers.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #72793 by edjones(8007)![]() ![]() You can put this solution on YOUR website! a=b-6 \n" ); document.write( "3a+2b<22 \n" ); document.write( ". \n" ); document.write( "replace a with b-6: 3(b-6)+2b<22 \n" ); document.write( "3b-18+2b<22 \n" ); document.write( "5b-18<22 \n" ); document.write( "5b<40 \n" ); document.write( "b<8 \n" ); document.write( "the largest possible values are: 7 and 1 \n" ); document.write( "Ed \n" ); document.write( " |