document.write( "Question 651623: What is the solution for the following word problem?\r
\n" );
document.write( "\n" );
document.write( "An investor invested a total of $2500 in two mutual funds. One fund earned a 5% profit while the other earned a 2% profit. If the investor's total profit was $65, how much was invested in each mutual fund?\r
\n" );
document.write( "\n" );
document.write( "The amount invested in the mutual fund that earned 5% = ?
\n" );
document.write( "The amount invested in the mutual fund that earned 2% = ?\r
\n" );
document.write( "\n" );
document.write( "Work I have attempted on the problem:\r
\n" );
document.write( "\n" );
document.write( "$2500/5% = $125.00 profit
\n" );
document.write( "$2500/2% = $50.00 profit
\n" );
document.write( "Amount invested in each mutual fund is $65/2 = $32.50 profit
\n" );
document.write( "Am I on the right track? \n" );
document.write( "
Algebra.Com's Answer #407748 by Theo(13342)![]() ![]() You can put this solution on YOUR website! let x = amount invested at 5% \n" ); document.write( "let y = amount invested at 2% \n" ); document.write( "you have 2 equations. \n" ); document.write( "x + y = 2500 \n" ); document.write( ".05x + .02y = 65 \n" ); document.write( "the first equation states that the total money invested is 2500. \n" ); document.write( "the second equation states that the total profit is equal to 65. \n" ); document.write( "these are 2 equations that need to be solved simultaneously. \n" ); document.write( "simples way to solve is by substitution. \n" ); document.write( "solve for y in the first equation to get: \n" ); document.write( "y = 2500 -x \n" ); document.write( "substitute that value for y in the second equation to get: \n" ); document.write( ".05x + .02(2500-x) = 65 \n" ); document.write( "what you have done is reduce the problem to 1 equation in 1 unknown that can be solved easily. \n" ); document.write( "simplify that equation to get: \n" ); document.write( ".05x + .02(2500) - .02x = 65 \n" ); document.write( "simplify to get: \n" ); document.write( ".05x + 50 - .02x = 65 \n" ); document.write( "combine like terms to get: \n" ); document.write( ".03x + 50 = 65 \n" ); document.write( "subtract 50 from both sides of the equation to get: \n" ); document.write( ".03x = 15 \n" ); document.write( "divide both sides of the equation by .03 to get: \n" ); document.write( "x = 15/.03 = 500 \n" ); document.write( "since x + y = 2500 and x = 500, the equation becomes: \n" ); document.write( "500 + y = 2500 \n" ); document.write( "solve for y to get y = 2000 \n" ); document.write( "you solution is x = 500 and y = 2000 \n" ); document.write( "test the solution by substituting in the original equations. \n" ); document.write( "x + y becomes 500 + 2000 becomes 2500 which is equal to the total money invested so that part is good. \n" ); document.write( ".05x + .02y = 65 becomes .05(500) + .02(2000) which becomes 25 + 40 which becomes 65 which is equal to the total interest earned so that part is good. \n" ); document.write( "x = 500 and y = 2000 is your solution.\r \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |