@@ -73,7 +73,7 @@ The Harrison-Kreps model illustrates the following notion of a bubble that attra
73737474> *A component of an asset price can be interpreted as a bubble when all investors agree that the current price of the asset exceeds what they believe the asset's underlying dividend stream justifies*.
757576-## Structure of the Model
76+## Structure of the model
77777878The model simplifies things by ignoring alterations in the distribution of wealth
7979among investors who have hard-wired different beliefs about the fundamentals that determine
@@ -150,7 +150,7 @@ The stationary distribution of $P_b$ is approximately $\pi_b = \begin{bmatrix} .
150150151151Thus, a type $a$ investor is more pessimistic on average.
152152153-### Ownership Rights
153+### Ownership rights
154154155155An owner of the asset at the end of time $t$ is entitled to the dividend at time $t+1$ and also has the right to sell the asset at time $t+1$.
156156@@ -167,23 +167,23 @@ Case 1 is the case studied in Harrison and Kreps.
167167168168In case 2, both types of investors always hold at least some of the asset.
169169170-### Short Sales Prohibited
170+### Short sales prohibited
171171172172No short sales are allowed.
173173174174This matters because it limits how pessimists can express their opinions.
175175176-* They **can** express themselves by selling their shares.
177-* They **cannot** express themsevles more loudly by artificially "manufacturing shares" -- that is, they cannot borrow shares from more optimistic investors and then immediately sell them.
176+* They *can* express themselves by selling their shares.
177+* They *cannot* express themselves more loudly by artificially "manufacturing shares" -- that is, they cannot borrow shares from more optimistic investors and then immediately sell them.
178178179-### Optimism and Pessimism
179+### Optimism and pessimism
180180181181The above specifications of the perceived transition matrices $P_a$ and $P_b$, taken directly from Harrison and Kreps, build in stochastically alternating temporary optimism and pessimism.
182182183183Remember that state $1$ is the high dividend state.
184184185185* In state $0$, a type $a$ agent is more optimistic about next period's dividend than a type $b$ agent.
186-* In state $1$, a type $b$ agent is more optimistic about next period's dividend than a type $a$ agaub is.
186+* In state $1$, a type $b$ agent is more optimistic about next period's dividend than a type $a$ agent is.
187187188188However, the stationary distributions $\pi_a = \begin{bmatrix} .57 & .43 \end{bmatrix}$ and $\pi_b = \begin{bmatrix} .43 & .57 \end{bmatrix}$ tell us that a type $b$ person is more optimistic about the dividend process in the long run than is a type $a$ person.
189189@@ -195,7 +195,7 @@ This price function is endogenous and to be determined below.
195195196196When investors choose whether to purchase or sell the asset at $t$, they also know $s_t$.
197197198-## Solving the Model
198+## Solving the model
199199200200Now let's turn to solving the model.
201201@@ -208,7 +208,7 @@ assumptions about beliefs:
2082081. There are two types of agents differentiated only by their beliefs. Each type of agent has sufficient resources to purchase all of the asset (Harrison and Kreps's setting).
2092091. There are two types of agents with different beliefs, but because of limited wealth and/or limited leverage, both types of investors hold the asset each period.
210210211-### Summary Table
211+### Summary table
212212213213The following table gives a summary of the findings obtained in the remainder of the lecture
214214(in an exercise you will be asked to recreate the table and also reinterpret parts of it).
@@ -242,7 +242,7 @@ The row corresponding to $p_p$ would apply if neither type of investor has enoug
242242243243The row corresponding to $p_p$ would also apply if both types have enough resources to buy the entire stock of the asset but short sales are also possible so that temporarily pessimistic investors price the asset.
244244245-### Single Belief Prices
245+### Single belief prices
246246247247We’ll start by pricing the asset under homogeneous beliefs.
248248@@ -285,7 +285,7 @@ def price_single_beliefs(transition, dividend_payoff, β=.75):
285285 return prices
286286```
287287288-#### Single Belief Prices as Benchmarks
288+#### Single belief prices as benchmarks
289289290290These equilibrium prices under homogeneous beliefs are important benchmarks for the subsequent analysis.
291291@@ -294,7 +294,7 @@ These equilibrium prices under homogeneous beliefs are important benchmarks for
294294295295We will compare these fundamental values of the asset with equilibrium values when traders have different beliefs.
296296297-### Pricing under Heterogeneous Beliefs
297+### Pricing under heterogeneous beliefs
298298299299There are several cases to consider.
300300@@ -330,11 +330,11 @@ $$
330330The marginal investor is of type $b$ if
331331332332$$
333-P_a(s,1) \bar p(0) + P_a(s,1) ( 1 + \bar p(1)) <
334-P_b(s,1) \bar p(0) + P_b(s,1) ( 1 + \bar p(1))
333+P_a(s,0) \bar p(0) + P_a(s,1) ( 1 + \bar p(1)) <
334+P_b(s,0) \bar p(0) + P_b(s,1) ( 1 + \bar p(1))
335335$$
336336337-**Thus the marginal investor is the (temporarily) optimistic type**.
337+*Thus the marginal investor is the (temporarily) optimistic type*.
338338339339Equation {eq}`hakr2` is a functional equation that, like a Bellman equation, can be solved by
340340@@ -431,7 +431,7 @@ def price_optimistic_beliefs(transitions, dividend_payoff, β=.75,
431431 return p_new, phat_a, phat_b
432432```
433433434-### Insufficient Funds
434+### Insufficient funds
435435436436Outcomes differ when the more optimistic type of investor has insufficient wealth --- or insufficient ability to borrow enough --- to hold the entire stock of the asset.
437437@@ -492,7 +492,7 @@ def price_pessimistic_beliefs(transitions, dividend_payoff, β=.75,
492492 return p_new
493493```
494494495-### Further Interpretation
495+### Further interpretation
496496497497Jose Scheinkman {cite}`Scheinkman2014` interprets the Harrison-Kreps model as a model of a bubble --- a situation in which an asset price exceeds what every investor thinks is merited by his or her beliefs about the value of the asset's underlying dividend stream.
498498@@ -513,6 +513,8 @@ Scheinkman extracts insights about the effects of financial regulations on bubbl
513513514514He emphasizes how limiting short sales and limiting leverage have opposite effects.
515515516+## Exercises
517+516518```{exercise-start}
517519:label: hk_ex1
518520```