View Single Post
Old 03-18-2005, 12:48 PM   #2 (permalink)
yatzr
Insane
 
yatzr's Avatar
 
okay, for the first one:
I'll call the variables M1, M2, M3 = money market, blue-chip, high-tech in that order
you've been given 3 equations

50,000 = M1 + M2 + M3
4,000 = .05*M1 + .09*M2 + .16*M3
M1 = 3*M3 or 0 = M1 - 3*M3

From this we have Ax=y where y is the matrix (or vector):

|50,000|
| 4,000|
| 0 |

A is the matrix:
| 1 1 1 |
| .05 .09 .16 |
| 1 0 -3 |

x is the matrix (or vector)
|M1|
|M2|
|M3|

you should be able to solve from there.



for problem 2:
Your two equations are:

600 = 30*G1 + 30*G2 + 60*G3
.25*600 = .3*30*G1 + .2*30*G2 + .15*60*G3

(for the second equation, it was easier to think of it in total amount of nitrogen instead of percentages which is why I did it that way)
from there you again have Ax=y
y is:
|600|
|150|

A is:
|30 30 60|
|9 6 9 |

xis:
|G1|
|G2|
|G3|

if you need any help solving them, just make the augmented matrix |A:y| and reduce it. Hope this helps if it's not already too late
__________________
Mechanical Engineers build weapons. Civil Engineers build targets.
yatzr is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73