document.write( "Question 1110724: Marko invested $300 000 in stocks, bonds and a savings account at the rates shown on the right. (stocks=15%, bonds=10%, savings=4%). He invested 4 times as much in stocks as he invested in the savings account. After one year, he earned $35 600 in interest. How much money did he put into each type of investment? \n" ); document.write( "
Algebra.Com's Answer #725760 by ankor@dixie-net.com(22740)![]() ![]() You can put this solution on YOUR website! Marko invested $300 000 in stocks, bonds and a savings account at the rates shown on the right. \n" ); document.write( " (stocks=15%, bonds=10%, savings=4%). \n" ); document.write( " He invested 4 times as much in stocks as he invested in the savings account. After one year, he earned $35 600 in interest. \n" ); document.write( " How much money did he put into each type of investment? \n" ); document.write( "let s = amt invested in stocks \n" ); document.write( "let b = amt invested in bonds \n" ); document.write( "let a = amt in savings \n" ); document.write( ": \n" ); document.write( "s + b + a = 300000 \n" ); document.write( "and \n" ); document.write( ".15s + .10b + .04a =35600 \n" ); document.write( "\"He invested 4 times as much in stocks as he invested in the savings\" \n" ); document.write( "s = 4a \n" ); document.write( ": \n" ); document.write( "replace s with 4a in both original equation \n" ); document.write( "4a + b + a = 30000 \n" ); document.write( "5a + b = 300000 \n" ); document.write( "and \n" ); document.write( ".15(4a) + .10b + .04a = 35600 \n" ); document.write( ".60a + .10b + .04a = 35600 \n" ); document.write( ".64a + .10b = 35600 \n" ); document.write( "Multiply by 10 and subtract the 1st two unknown equation \n" ); document.write( "6.4a + b = 356000 \n" ); document.write( "5a + b = 300000 \n" ); document.write( "------------------subtraction eliminates b, find a \n" ); document.write( "1.4a = 56000 \n" ); document.write( "a = 56000/1.4 \n" ); document.write( "a = $40,000 in savings \n" ); document.write( "then \n" ); document.write( "s = 4(40000) \n" ); document.write( "s = $160,000 in stocks \n" ); document.write( "then \n" ); document.write( "300000 - 40000 - 160000 = $100,000 in bonds \n" ); document.write( ": \n" ); document.write( ": \n" ); document.write( ": \n" ); document.write( "Check this \n" ); document.write( ".15(160000) + .10(100000) + .04(40000) = 35600 \n" ); document.write( " \n" ); document.write( " |