Skip to content

Commit 08d361d

Browse files
committed
fix_typos
1 parent df80367 commit 08d361d

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

lectures/supply_demand_heterogeneity.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ While the results of the study were informative, we used a strong simplifying as
2727

2828
In the real world, households, firms and other economic agents differ from one another along many dimensions.
2929

30-
In this lecture, we introduce heterogeneity across consumers by allowing their preferences and endownments to differ.
30+
In this lecture, we introduce heterogeneity across consumers by allowing their preferences and endowments to differ.
3131

3232
We will examine competitive equilibrium in this setting.
3333

@@ -69,7 +69,7 @@ e_1 + e_2 =
6969
(\Pi^\top \Pi)^{-1}(\Pi^\top (b_1 + b_2) - (\mu_1 + \mu_2) p )
7070
$$
7171

72-
which after a line or two of linear algebra implies that
72+
which, after a line or two of linear algebra, implies that
7373

7474
$$
7575
(\mu_1 + \mu_2) p = \Pi^\top(b_1+ b_2) - \Pi^\top \Pi (e_1 + e_2)
@@ -122,7 +122,7 @@ To compute a competitive equilibrium of a pure exchange economy, we use the fact
122122
123123
We can use the following steps to compute a competitive equilibrium:
124124
125-
- First we solve the single representative consumer economy by normalizing $\mu = 1$. Then, we renormalize the price vector by using the first consumption good as numeraire.
125+
- First we solve the single representative consumer economy by normalizing $\mu = 1$. Then, we renormalize the price vector by using the first consumption good as a numeraire.
126126
127127
- Next we use the competitive equilibrium prices to compute each consumer's marginal utility of wealth:
128128
@@ -221,7 +221,7 @@ class ExchangeEconomy:
221221
p = Pi.T @ b - Pi.T @ Pi @ e
222222
p = p / p[0]
223223
224-
# compute marg util of wealth
224+
# compute marginal utility of wealth
225225
mu_s = []
226226
c_s = []
227227
A = p.T @ slope_dc @ p
@@ -372,7 +372,7 @@ print('Competitive equilibrium allocation:', c_s)
372372
## Deducing a Representative Consumer
373373

374374
In the class of multiple consumer economies that we are studying here, it turns out that there
375-
exists a single **representative consumer** whose preferences and endowments can be deduced from lists of preferences and endowments for the separate individual consumers.
375+
exists a single **representative consumer** whose preferences and endowments can be deduced from lists of preferences and endowments for separate individual consumers.
376376

377377
Consider a multiple consumer economy with initial distribution of wealth $W_i$ satisfying $\sum_i W_{i}=0$
378378

@@ -440,4 +440,5 @@ $$
440440
p=\tilde{\mu}^{-1}(\Pi^{\top}b-\Pi^{\top}\Pi e)
441441
$$
442442

443-
Thus, we have verified that, up to choice of a numeraire in which to express absolute prices, the price vector in our representative consumer economy is the same as that in an underlying economy with multiple consumers.
443+
Thus, we have verified that, up to the choice of a numeraire in which to express absolute prices, the price
444+
vector in our representative consumer economy is the same as that in an underlying economy with multiple consumers.

0 commit comments

Comments
 (0)