@@ -152,7 +152,7 @@ Below we shall construct a Python class with the following attributes:
152152 * a scalar "wealth" $W$ with default value $0$
153153
154154
155- The class will include a test to make sure that $b > > \Pi e $ and raise an exception if it is violated
155+ The class will include a test to make sure that $b \gg \Pi e $ and raise an exception if it is violated
156156(at some threshold level we'd have to specify).
157157
158158 * ** A Person** in the form of a pair that consists of
@@ -167,7 +167,7 @@ The class will include a test to make sure that $b > > \Pi e $ and raise an exc
167167 * $m=2$ for our illustrations of a pure exchange economy
168168
169169 * an equilibrium price vector $p$ (normalized somehow)
170- * an equilibrium allocation $c^1, c^2 , \ldots, c^m $ -- a collection of $m$ vectors of dimension $n \times 1$
170+ * an equilibrium allocation $c_1, c_2 , \ldots, c_m $ -- a collection of $m$ vectors of dimension $n \times 1$
171171
172172Now let's proceed to code.
173173
@@ -250,7 +250,7 @@ Next we use the class ``ExchangeEconomy`` defined above to study
250250
251251### Two-person economy without production
252252
253- Here we tudy how competitive equilibrium $p, c^1, c^2 $ respond to different $b^i $ and $e^i $, $i \in \{ 1, 2\} .
253+ Here we study how competitive equilibrium $p, c_1, c_2 $ respond to different $b_i $ and $e_i $, $i \in \{ 1, 2\} $ .
254254
255255``` {code-cell} ipython3
256256Π = np.array([[1, 0],
0 commit comments