Skip to content

Commit 01e6f82

Browse files
xuanguang-lijstacclaudeHumphreyYangHumphreyYang
authored
[harrison_kreps] Update lecture (#763)
* update lecture * Trigger rebuild for preview Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> * updates * fix two typos --------- Co-authored-by: John Stachurski <john.stachurski@gmail.com> Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com> Co-authored-by: Humphrey Yang <39026988+HumphreyYang@users.noreply.github.com> Co-authored-by: HumphreyYang <humzyyang@gmail.com> Co-authored-by: xuanguang-li <xuanguang-li@users.noreply.github.com> Co-authored-by: HumphreyYang <humphreyyang30@gmail.com>
1 parent 7c582be commit 01e6f82

1 file changed

Lines changed: 19 additions & 17 deletions

File tree

lectures/harrison_kreps.md

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The Harrison-Kreps model illustrates the following notion of a bubble that attra
7373

7474
> *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*.
7575
76-
## Structure of the Model
76+
## Structure of the model
7777

7878
The model simplifies things by ignoring alterations in the distribution of wealth
7979
among 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} .
150150

151151
Thus, a type $a$ investor is more pessimistic on average.
152152

153-
### Ownership Rights
153+
### Ownership rights
154154

155155
An 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.
167167

168168
In case 2, both types of investors always hold at least some of the asset.
169169

170-
### Short Sales Prohibited
170+
### Short sales prohibited
171171

172172
No short sales are allowed.
173173

174174
This matters because it limits how pessimists can express their opinions.
175175

176-
* 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.
178178

179-
### Optimism and Pessimism
179+
### Optimism and pessimism
180180

181181
The 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.
182182

183183
Remember that state $1$ is the high dividend state.
184184

185185
* 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.
187187

188188
However, 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.
195195

196196
When investors choose whether to purchase or sell the asset at $t$, they also know $s_t$.
197197

198-
## Solving the Model
198+
## Solving the model
199199

200200
Now let's turn to solving the model.
201201

@@ -208,7 +208,7 @@ assumptions about beliefs:
208208
1. 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).
209209
1. 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.
210210

211-
### Summary Table
211+
### Summary table
212212

213213
The 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
242242

243243
The 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.
244244

245-
### Single Belief Prices
245+
### Single belief prices
246246

247247
We’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
```
287287
288-
#### Single Belief Prices as Benchmarks
288+
#### Single belief prices as benchmarks
289289
290290
These 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
294294
295295
We will compare these fundamental values of the asset with equilibrium values when traders have different beliefs.
296296
297-
### Pricing under Heterogeneous Beliefs
297+
### Pricing under heterogeneous beliefs
298298
299299
There are several cases to consider.
300300
@@ -330,11 +330,11 @@ $$
330330
The marginal investor is of type $b$ if
331331
332332
$$
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
$$
336336
337-
**Thus the marginal investor is the (temporarily) optimistic type**.
337+
*Thus the marginal investor is the (temporarily) optimistic type*.
338338
339339
Equation {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
```
433433
434-
### Insufficient Funds
434+
### Insufficient funds
435435
436436
Outcomes 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
```
494494
495-
### Further Interpretation
495+
### Further interpretation
496496
497497
Jose 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
513513
514514
He emphasizes how limiting short sales and limiting leverage have opposite effects.
515515
516+
## Exercises
517+
516518
```{exercise-start}
517519
:label: hk_ex1
518520
```

0 commit comments

Comments
 (0)