document.write( "Question 1177067: A pension fund manager decides to invest a total of at most $40 million in U.S. Treasury bonds paying 3% annual interest and in mutual funds paying 5%
\n" );
document.write( "annual interest. He plans to invest at least $5 million in bonds and at least $20 million in mutual funds. Bonds have an initial fee of $100 per million dollars, while the fee for mutual funds is $200 per million. The fund manager is allowed to spend no more than $7000 on fees. How much should be invested in each to maximize annual interest? What is the maximum annual interest? \n" );
document.write( "
Algebra.Com's Answer #805876 by Theo(13342)![]() ![]() You can put this solution on YOUR website! let x = the amount invested in bonds. \n" ); document.write( "let y the amount invested in mutual funds.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "everything will be converted to millions for ease of presentation.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "your constraint functions are:\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "x + y <= 40 \n" ); document.write( "x >= 5 \n" ); document.write( "y >= 20 \n" ); document.write( ".0001 * x + .0002 * y <= .007 \n" ); document.write( "x >= 0 \n" ); document.write( "y >= 0\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "your objective function is\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( ".03 * x + .05 * y\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "this is what you want to maximize.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "using the desmos.com calculator, you would graph the opposite of these constraint functions.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the coordinate points on the area of the graph that is not shaded, and the coordinate points on the lines themselves, if the inequalities are expressed as <= or >=, will be in the feasible region.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "if the inequalities are expressed as < or >, then the coordinate points on the lines themselves are not included in the feasible region.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the graph looks like this.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " ![]() \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "you would evaluate the objective function at each of the corner points of the feasible region on the graph.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the coordinate points that contain the maximum value for the objective function is your maximum solution.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "i created a chart that showed the following:\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \r\n" ); document.write( "a b c d\r\n" ); document.write( "(5,32.5) 1.775 37.5 .007\r\n" ); document.write( "(10,30) 1.8 40 .007\r\n" ); document.write( "(5,20) 1.15 25 .0045\r\n" ); document.write( "(20,20) 1.6 40 .006\r\n" ); document.write( "\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "column a is the coordinate points in (x,y) format. \n" ); document.write( "x represents the amount invested in bonds. \n" ); document.write( "y represents the amount invested in mutual funds.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "column b = .03 * x + .05 * y \n" ); document.write( "this is the profit.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "column c = x + y \n" ); document.write( "this is the total amount invested.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "column d = .0001 * x + .0002 * y \n" ); document.write( "this is the total amount paid out in fees.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "from the table, it's clear that all of the constraints have been met for all of the options at the corner point of the feasible region.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the coordinate points with the maxim profit are at (x,y) = (10,30). \n" ); document.write( "this means 10 million invested in bonds and 30 million invested in mutual funds. \n" ); document.write( "you can see that the profit is 1.8 million with 40 million invested and 7000 paid out in fees (.007 million is equal to 7000).\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the maximum interest is 1.8 million with 10 million invested in bonds and 30 million invested in mutual funds.\r \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |