document.write( "Question 1010644: One number is 3 less than a second number. Twice the second number is 12 more than 3 times the first. Find the two numbers. \n" ); document.write( "
Algebra.Com's Answer #626126 by fractalier(6550)![]() ![]() You can put this solution on YOUR website! Call the two numbers, x and y. Then we have \n" ); document.write( "x = y - 3 ad \n" ); document.write( "2y = 12 + 3x \n" ); document.write( "Now substitute the first into the second equation and we get \n" ); document.write( "2y = 12 + 3(y - 3) \n" ); document.write( "2y = 12 + 3y - 9 \n" ); document.write( "2y = 3y + 3 \n" ); document.write( "-y = 3 \n" ); document.write( "y = -3 \n" ); document.write( "x = -3 - 3 = -6 \n" ); document.write( "(-6, -3) \n" ); document.write( " |