document.write( "Question 914188: The sum of two numbers is 15. Three times one of the number is 11 less than 5 times the other. Find the number. \n" ); document.write( "
Algebra.Com's Answer #554990 by fave(7)![]() ![]() You can put this solution on YOUR website! let a and b represent the numbers \n" ); document.write( " a+b=15 from the first statement \n" ); document.write( " 3a=5b-11 from the second statement \n" ); document.write( "make b the subject of formular in the first equation \n" ); document.write( " b=15-a \n" ); document.write( "substitute b into the second equation \n" ); document.write( " 3a=5(15-a)-11 \n" ); document.write( " 3a=75-5a-11 \n" ); document.write( " 3a=64-5a \n" ); document.write( " 3a+5a=64 \n" ); document.write( " a=8 \n" ); document.write( "from the first equation,a+b=15,so b=15-8=7 \n" ); document.write( "the numbers are 8 and 7 \n" ); document.write( " |