document.write( "Question 1048386: Marina had RM24,500 to invest. She divided the money into three different accounts. At the end of the year, she had made RM1,300 in interest. The annual yield on each of the three accounts was 4%, 5.5%, and 6%. If the amount of money in the 4% account was four times the amount of money in the 5.5% account, how much had she placed in each account?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #664115 by ankor@dixie-net.com(22740) You can put this solution on YOUR website! Marina had RM24,500 to invest. \n" ); document.write( " She divided the money into three different accounts. \n" ); document.write( " At the end of the year, she had made RM1,300 in interest. \n" ); document.write( " The annual yield on each of the three accounts was 4%, 5.5%, and 6%. \n" ); document.write( " If the amount of money in the 4% account was four times the amount of money in the 5.5% account, how much had she placed in each account? \n" ); document.write( ": \n" ); document.write( "let a = amt in the 4% acct \n" ); document.write( "let b = amt in the 5.5% acct \n" ); document.write( "let c = amt in the 6% \n" ); document.write( ": \n" ); document.write( "\"Marina had RM 24,500 to invest.\" \n" ); document.write( "a + b + c = 24500 \n" ); document.write( "\" At the end of the year, she had made RM1,300 in interest. The annual yield on each of the three accounts was 4%, 5.5%, and 6%.\" \n" ); document.write( ".04a + .055b + .06c = 1300 \n" ); document.write( " \"If the amount of money in the 4% account was four times the amount of money in the 5.5% account,\" \n" ); document.write( "a = 4b \n" ); document.write( " how much had she placed in each account? \n" ); document.write( ": \n" ); document.write( "Replace a with 4b in both equations, simplify \n" ); document.write( "4b + b + c = 24500 \n" ); document.write( "5b + c = 24500 \n" ); document.write( "c = -5b + 24500 \n" ); document.write( ": \n" ); document.write( ".04(4b) + .055b + .06c = 1300 \n" ); document.write( ".16a + .055b + .06c = 1300 \n" ); document.write( ".215b + .06c = 1300 \n" ); document.write( "replace c with (-5b+24500) \n" ); document.write( ".215b + .06(-5b+2400) = 1300 \n" ); document.write( ".215b - .3b + 1470 = 1300 \n" ); document.write( "-.085b = 1300 - 1470 \n" ); document.write( "b = -170/-.085 \n" ); document.write( "b = $2000 in the 5.5% investment \n" ); document.write( "then \n" ); document.write( "c = -5(2000) + 24500 \n" ); document.write( "c = -10000 + 24500 \n" ); document.write( "c = $14,500 in the 6% \n" ); document.write( "Find a using the 1st equation, replace b & c \n" ); document.write( "a + 2000 + 14500 = 24500 \n" ); document.write( "a = 24500 - 16500 \n" ); document.write( "a = $8000 in the 4% acct \n" ); document.write( ": \n" ); document.write( ": \n" ); document.write( "You can check this in the 2nd equation \n" ); document.write( " \n" ); document.write( " |