document.write( "Question 675663:  Find the greatest  possible pair of integers such that one integer is 3 more than twice the other and their sum is less than 42.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #419986 by Alan3354(69443)    You can put this solution on YOUR website! Find the greatest possible pair of integers such that one integer is 3 more than twice the other and their sum is less than 42. \n" ); document.write( "---------------- \n" ); document.write( "n + 2n+3 < 42 \n" ); document.write( "3n + 3 < 42 \n" ); document.write( "3n < 39 \n" ); document.write( "n < 13 \n" ); document.write( "--> 12 & 27 \n" ); document.write( "12 + 27 = 39 \n" ); document.write( "============ \n" ); document.write( "The next greater pair is \n" ); document.write( "13 & 29 \n" ); document.write( "13 + 29 = 42 (not less than 42, doesn't work) \n" ); document.write( "  |