You have $100,000 to invest in bonds, and you have selected three types of bonds: federal bonds paying 5% interest, municipal bonds paying 6%, and a corporate bonds paying 9%. No more that $20,000 can be invested in corporate bonds, and the amount of corporate bonds cannot exceed the amount of federal bonds. How much should be invested in municipal bonds to maximize the interest?
Answer is in units of dollars.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Good approach. This is a basic linear programming question where the function we want to optimize is also linear.
Maximize [ { 0 . 0 9 c + 0 . 0 5 f + 0 . 0 6 m , c + f + m = 1 0 0 0 0 0 ∧ c ≤ 2 0 0 0 0 ∧ c ≤ f } , { c , f , m } ] ⟹ { 6 4 0 0 . , { c → 2 0 0 0 0 . , f → 2 0 0 0 0 . , m → 6 0 0 0 0 . } }
Problem Loading...
Note Loading...
Set Loading...
Let F , C and M denote the amount of money invested in federal, corporate and municipal bonds respectively. Then we have the following conditions:
F + C + M = 1 0 0 , 0 0 0 C ≤ 2 0 , 0 0 0 C ≤ F
We want to maximize ( 5 F + 6 M + 9 C ) 1 0 0 T , where T is the time to maturity. This equivalent to maximizing 5 F + 6 M + 9 C since 1 0 0 T is just a positive constant.
Since federal bonds give the least interest, F should be minimized, i.e. F = C . Now we rewrite the equation.
2 C + M = 1 0 0 , 0 0 0 C ≤ 2 0 , 0 0 0
We want to maximize 1 4 C + 6 M , it is equivalent to maximizing 7 C + 3 M . Substituting M = 1 0 0 , 0 0 0 − 2 C , we want to maximize 3 0 0 , 0 0 0 + C . This means C should be maximum, i.e. C = 2 0 , 0 0 0 . So F is also 2 0 , 0 0 0 and M = 1 0 0 , 0 0 0 − 2 C = 6 0 , 0 0 0 □