document.write( "Question 339: I cannot understand how to do this problem:\r
\n" );
document.write( "\n" );
document.write( "Find two consecutive integers such that the sum of 2 times the first integer and 4 times the second integer is 46.\r
\n" );
document.write( "\n" );
document.write( "thank you
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #155 by ichudov(507)![]() ![]() You can put this solution on YOUR website! You simply rewrite the problem using the plus sign instead of sum, and the multiplication sign instead of \"times\". \r \n" ); document.write( "\n" ); document.write( "consecutive integers means tat the second integer is the first integer plus one.\r \n" ); document.write( "\n" ); document.write( "So:\r \n" ); document.write( "\n" ); document.write( "integer*2 + (integer+1)*4 = 46\r \n" ); document.write( "\n" ); document.write( "or\r \n" ); document.write( "\n" ); document.write( "6*integer = 42\r \n" ); document.write( "\n" ); document.write( "or\r \n" ); document.write( "\n" ); document.write( "integer = 7. Checking:\r \n" ); document.write( "\n" ); document.write( "2*7+4*8 = 46. \n" ); document.write( " |