document.write( "Question 1105797: You split $2000 between two savings accounts. Account A pays 2% annual interest and Account B pays 5% annual interest. After one year, you have earned a total of $77.50 in interest. How
\n" );
document.write( "much did you invest in each account? \n" );
document.write( "
Algebra.Com's Answer #720746 by addingup(3677)![]() ![]() You can put this solution on YOUR website! Let the amount you invest at 2% be x \n" ); document.write( "Then, the amount invested at 5% will be 2000 - x \n" ); document.write( "So: \n" ); document.write( "0.02x + 0.05(2000 - x) = 77.50 \n" ); document.write( "0.02x + 100 - 0.05x = 77.50 \n" ); document.write( "-0.03x = -22.50 \n" ); document.write( "x = 750 this is the amount invested at 2% \n" ); document.write( "2000 - 750 = the amount at 5% \n" ); document.write( " |