production matrix

lois

New member
Joined
Aug 17, 2009
Messages
1
A = [.2 .1 .3] D = [500]
[.1 0 .2] [200]
[0 0 .4] [100]

find the production matrix, given the following input-output and demand matricies.


0.2 0.1 0.3 solve [.2 .1 .3] = [500]
0.1 0 0.2 [.1 0 .2] = [200]
0 0 0.4 [0 0 .4] = [100]


inverse
0 10 -5 500
10 -20 2.5 200
0 0 2.5 100


multiply
1500
1250
250


what is the next step?
 
Top