document.write( "Question 306430: The largest of 2 integers is one more than three times the smaller. If the sum of the two integers is 37, find the larger integer. \n" ); document.write( "
Algebra.Com's Answer #219299 by sejackson91(8)![]() ![]() ![]() You can put this solution on YOUR website! so first call the larger integer A and the smaller integer B, \n" ); document.write( "then rewrite the problem in formula form: \n" ); document.write( "A = 1+3*B \n" ); document.write( "A + B = 37 \n" ); document.write( "now solve: \n" ); document.write( "A = 37-B \n" ); document.write( "37-B=1+3*B \n" ); document.write( "36 = 4*B \n" ); document.write( "8 = B \n" ); document.write( "A = 1 + 3*B \n" ); document.write( "A = 1 + 3*8 \n" ); document.write( "A = 25 \n" ); document.write( " |