Can you explain how you are calculating the wages paid out to workers? In words you state:
c. It is assumed that consumers are not going into debt, which means the total money they spend on net consumption comes from the wages (or dividends) paid by industry. Wages are paid by each industry proportionally to their gross labor usage
And in the code you have:
` %Industry to consumer sales (assuming consumers save/lose nothing)
S = o.*P; %Sales to consumers
Y = sum(S); %Total consumer spending = wages paid out
W = L.*Y; %Wages paid out vector by industry
I have a couple of questions about this, but I still start with the calculation of Y
(the answer may clarify my remaining questions).
You start with S = o.*P; %Sales to consumers
where you are performing an element-wise multiplication of a n x 1 vector of net-products by a n x mag
array of prices.
Working under the assumption that the net product is the net consumption of workers, i.e. n = c (also, don’t worry about using a standard notation - there isn’t really much of one. I am using a mix of Ian Wright’s, Pasinetti’s and my own ) the line
S = o.*P;
is calculating the below, correct?
Each of these elements, s~i~ = p~i~ c~i~ is the part of sector i’s revenue which it receives from its sales to consumers. (It isn’t the total revenue of the sector, though. That is given earlier by R~i~ = p~i~ q~i~).
Then you are summing along each column (you mentioned that MatLab’s sum
function sum’s matrices down the column). For a single instantiation of a price vector, this is results in
Y = p~1~c~1~ + p~2~c~2~ + … = p c
which gives us a global wage bill, i.e. the total expenditure of the working class for the economy. This is an aggregated quantity over the entire economy.
Y
is a row-vector, though, in your code since you are testing multiple prices - mag
of them in fact. if I have the correct understanding, your Y
vector is
Y = [Y^(1)^ Y^(2)^ … Y^(mag)^ ]
where I am using superscripts to designate distinct price instantiations.
But I think I must be misunderstanding something, because if the above is true, then I am not certain how the line
W = L.*Y; %Wages paid out vector by industry
Works out because you couldn’t element-wise multiply a n x 1 array L
with a 1 x mag
array Y
.
My understanding is that your L
vector is a n x 1 array of normalized labor-times for each sector.
L = O.*l;
L = L/sum(L); %Normalising gross labor use
So I need your help in understanding the calculation here.
I have more questions, but I will save them for later. Thanks for taking the time to discuss this!