You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[harrison_kreps] Migrate updates from lecture-source RST repo (#111)
* [harrison_kreps] add updates from lecture-python (c1a949e52e4442a83a81040fe92bdaff8e8152de, 00d6de94cc76f973587d2eedae7f1df880cfce8a, 32574c3ef1bb7d234242c2af0d889a89f104c262)
* revert update on markdown tables
* restore html tag for table formatting
Copy file name to clipboardExpand all lines: lectures/harrison_kreps.md
+72-52Lines changed: 72 additions & 52 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ kernelspec:
18
18
</div>
19
19
```
20
20
21
-
# Asset Pricing with Incomplete Markets
21
+
# Heterogeneous Beliefs and Bubbles
22
22
23
23
```{index} single: Models; Harrison Kreps
24
24
```
@@ -27,7 +27,7 @@ kernelspec:
27
27
:depth: 2
28
28
```
29
29
30
-
In addition to what's in Anaconda, this lecture will need the following libraries:
30
+
In addition to what's in Anaconda, this lecture uses following libraries:
31
31
32
32
```{code-cell} ipython
33
33
---
@@ -74,14 +74,16 @@ The Harrison-Kreps model illustrates the following notion of a bubble that attra
74
74
75
75
## Structure of the Model
76
76
77
-
The model simplifies by ignoring alterations in the distribution of wealth
78
-
among investors having different beliefs about the fundamentals that determine
77
+
The model simplifies things by ignoring alterations in the distribution of wealth
78
+
among investors who have hard-wired different beliefs about the fundamentals that determine
79
79
asset payouts.
80
80
81
81
There is a fixed number $A$ of shares of an asset.
82
82
83
83
Each share entitles its owner to a stream of dividends $\{d_t\}$ governed by a Markov chain defined on a state space $S \in \{0, 1\}$.
84
84
85
+
Thus, the stock is traded **ex dividend**.
86
+
85
87
The dividend obeys
86
88
87
89
$$
@@ -122,6 +124,10 @@ P_b =
122
124
\end{bmatrix}
123
125
$$
124
126
127
+
Thus, in state $0$, a type $a$ investor is more optimistic about next period's dividend than is investor $b$.
128
+
129
+
But in state $1$, a type $a$ investor is more pessimistic about next period's dividend than is investor $b$.
130
+
125
131
The stationary (i.e., invariant) distributions of these two matrices can be calculated as follows:
126
132
127
133
```{code-cell} python3
@@ -136,9 +142,11 @@ mca.stationary_distributions
136
142
mcb.stationary_distributions
137
143
```
138
144
139
-
The stationary distribution of $P_a$ is approximately $\pi_A = \begin{bmatrix} .57 & .43 \end{bmatrix}$.
145
+
The stationary distribution of $P_a$ is approximately $\pi_a = \begin{bmatrix} .57 & .43 \end{bmatrix}$.
146
+
147
+
The stationary distribution of $P_b$ is approximately $\pi_b = \begin{bmatrix} .43 & .57 \end{bmatrix}$.
140
148
141
-
The stationary distribution of $P_b$ is approximately $\pi_B = \begin{bmatrix} .43 & .57 \end{bmatrix}$.
149
+
Thus, a type $a$ investor is more pessimistic on average.
142
150
143
151
### Ownership Rights
144
152
@@ -148,7 +156,7 @@ Both types of investors are risk-neutral and both have the same fixed discount f
148
156
149
157
In our numerical example, we’ll set $\beta = .75$, just as Harrison and Kreps did.
150
158
151
-
We’ll eventually study the consequences of two different assumptions about the number of shares $A$ relative to the resources that our two types of investors can invest in the stock.
159
+
We’ll eventually study the consequences of two alternative assumptions about the number of shares $A$ relative to the resources that our two types of investors can invest in the stock.
152
160
153
161
1. Both types of investors have enough resources (either wealth or the capacity to borrow) so that they can purchase the entire available stock of the asset [^f1].
154
162
1. No single type of investor has sufficient resources to purchase the entire stock.
@@ -161,10 +169,10 @@ In case 2, both types of investors always hold at least some of the asset.
161
169
162
170
No short sales are allowed.
163
171
164
-
This matters because it limits pessimists from expressing their opinions.
172
+
This matters because it limits how pessimists can express their opinion.
165
173
166
-
* They can express their views by selling their shares.
167
-
* They cannot express their pessimism more loudly by artificially "manufacturing shares" -- that is, they cannot borrow shares from more optimistic investors and sell them immediately.
174
+
* They **can** express themselves by selling their shares.
175
+
* 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.
168
176
169
177
### Optimism and Pessimism
170
178
@@ -175,32 +183,7 @@ Remember that state $1$ is the high dividend state.
175
183
* In state $0$, a type $a$ agent is more optimistic about next period's dividend than a type $b$ agent.
176
184
* In state $1$, a type $b$ agent is more optimistic about next period's dividend.
177
185
178
-
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.
179
-
180
-
Transition matrices for the temporarily optimistic and pessimistic investors are constructed as follows.
181
-
182
-
Temporarily optimistic investors (i.e., the investor with the most optimistic
183
-
beliefs in each state) believe the transition matrix
184
-
185
-
$$
186
-
P_o =
187
-
\begin{bmatrix}
188
-
\frac{1}{2} & \frac{1}{2} \\
189
-
\frac{1}{4} & \frac{3}{4}
190
-
\end{bmatrix}
191
-
$$
192
-
193
-
Temporarily pessimistic investors believe the transition matrix
194
-
195
-
$$
196
-
P_p =
197
-
\begin{bmatrix}
198
-
\frac{2}{3} & \frac{1}{3} \\
199
-
\frac{2}{3} & \frac{1}{3}
200
-
\end{bmatrix}
201
-
$$
202
-
203
-
We'll return to these matrices and their significance in the exercise.
186
+
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.
204
187
205
188
### Information
206
189
@@ -214,9 +197,9 @@ When investors choose whether to purchase or sell the asset at $t$, they also kn
214
197
215
198
Now let's turn to solving the model.
216
199
217
-
This amounts to determining equilibrium prices under the different possible specifications of beliefs and constraints listed above.
200
+
We'll determine equilibrium prices under a particular specification of beliefs and constraints on trading selected from one of the specifications described above.
218
201
219
-
In particular, we compare equilibrium price functions under the following alternative
202
+
We shall compare equilibrium price functions under the following alternative
220
203
assumptions about beliefs:
221
204
222
205
1. There is only one type of agent, either $a$ or $b$.
@@ -226,9 +209,9 @@ assumptions about beliefs:
226
209
### Summary Table
227
210
228
211
The following table gives a summary of the findings obtained in the remainder of the lecture
229
-
(you will be asked to recreate the table in an exercise).
212
+
(in an exercise you will be asked to recreate the table and also reinterpret parts of it).
230
213
231
-
It records implications of Harrison and Kreps's specifications of $P_a, P_b, \beta$.
214
+
The table reports implications of Harrison and Kreps's specifications of $P_a, P_b, \beta$.
232
215
233
216
```{raw} html
234
217
<div class="content-table"></div>
@@ -253,6 +236,12 @@ Here
253
236
254
237
We'll explain these values and how they are calculated one row at a time.
255
238
239
+
The row corresponding to $p_o$ applies when both types of investor have enough resources to purchse the entire stock of the asset and strict short sales constraints prevail so that temporarily optimistic investors always price the asset.
240
+
241
+
The row corresponding to $p_p$ would apply if neither type of investor has enough resources to purchase the entire stock of the asset and both types must hold the asset.
242
+
243
+
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.
244
+
256
245
### Single Belief Prices
257
246
258
247
We’ll start by pricing the asset under homogeneous beliefs.
@@ -328,6 +317,9 @@ In this case, the marginal investor who prices the asset is the more optimistic
328
317
329
318
for $s=0,1$.
330
319
320
+
In the above equation, the $max$ on the right side is evidently over two prospective values of next period's payout
321
+
from owning the asset.
322
+
331
323
The marginal investor who prices the asset in state $s$ is of type $a$ if
332
324
333
325
$$
@@ -364,19 +356,19 @@ Equation {eq}`hakr2` is a functional equation that, like a Bellman equation, can
364
356
365
357
for $s=0,1$.
366
358
367
-
The third row of the table reports equilibrium prices that solve the functional equation when $\beta = .75$.
359
+
The third row of the table labeled $p_o$ reports equilibrium prices that solve the functional equation when $\beta = .75$.
368
360
369
361
Here the type that is optimistic about $s_{t+1}$ prices the asset in state $s_t$.
370
362
371
-
It is instructive to compare these prices with the equilibrium prices for the homogeneous belief economies that solve under beliefs $P_a$ and $P_b$.
363
+
It is instructive to compare these prices with the equilibrium prices for the homogeneous belief economies that solve under beliefs $P_a$ and $P_b$ reported in the rows labeled $p_a$ and $p_b$, respectively.
372
364
373
-
Equilibrium prices $\bar p$ in the heterogeneous beliefs economy exceed what any prospective investor regards as the fundamental value of the asset in each possible state.
365
+
Equilibrium prices $p_o$ in the heterogeneous beliefs economy evidently exceed what any prospective investor regards as the fundamental value of the asset in each possible state.
374
366
375
367
Nevertheless, the economy recurrently visits a state that makes each investor want to
376
368
purchase the asset for more than he believes its future dividends are
377
369
worth.
378
370
379
-
The reason is that he expects to have the option to sell the asset later to another investor who will value the asset more highly than he will.
371
+
The reason that an investor is willing to pay more than what he believes is warranted by fundamental value of the prospective dividend stream is he expects to have the option to sell the asset later to another investor who will value the asset more highly than he will.
380
372
381
373
* Investors of type $a$ are willing to pay the following price for the asset
382
374
@@ -462,11 +454,11 @@ and the marginal investor who prices the asset is always the one that values it
462
454
463
455
Now the marginal investor is always the (temporarily) pessimistic type.
464
456
465
-
Notice from the sixth row of that the pessimistic price $\underline p$ is lower than the homogeneous belief prices $p_a$ and $p_b$ in both states.
457
+
Notice from the sixth row of that the pessimistic price $p_o$ is lower than the homogeneous belief prices $p_a$ and $p_b$ in both states.
466
458
467
459
When pessimistic investors price the asset according to {eq}`HarrKrep4`, optimistic investors think that the asset is underpriced.
468
460
469
-
If they could, optimistic investors would willingly borrow at the one-period gross interest rate $\beta^{-1}$ to purchase more of the asset.
461
+
If they could, optimistic investors would willingly borrow at a one-period risk-free gross interest rate $\beta^{-1}$ to purchase more of the asset.
470
462
471
463
Implicit constraints on leverage prohibit them from doing so.
{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 the asset's underlying dividend stream.
497
+
{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.
506
498
507
499
Scheinkman stresses these features of the Harrison-Kreps model:
508
500
@@ -515,7 +507,7 @@ Type $b$ investors sell the asset to type $a$ investors every time the state swi
515
507
Scheinkman takes this as a strength of the model because he observes high volume during *famous bubbles*.
516
508
517
509
* If the *supply* of the asset is increased sufficiently either physically (more "houses" are built) or artificially (ways are invented to short sell "houses"), bubbles end when the supply has grown enough to outstrip optimistic investors’ resources for purchasing the asset.
518
-
* If optimistic investors finance purchases by borrowing, tightening leverage constraints can extinguish a bubble.
510
+
* If optimistic investors finance their purchases by borrowing, tightening leverage constraints can extinguish a bubble.
519
511
520
512
Scheinkman extracts insights about the effects of financial regulations on bubbles.
521
513
@@ -525,8 +517,7 @@ He emphasizes how limiting short sales and limiting leverage have opposite effec
525
517
526
518
### Exercise 1
527
519
528
-
Recreate the summary table using the functions we have built above.
529
-
520
+
This exercise invites you to recreate the summary table using the functions we have built above.
530
521
531
522
```{raw} html
532
523
<div class="content-table"></div>
@@ -540,7 +531,36 @@ Recreate the summary table using the functions we have built above.
540
531
|$\hat{p}_a$|1.85|1.69|
541
532
|$\hat{p}_b$|1.69|2.08|
542
533
543
-
You will first need to define the transition matrices and dividend payoff vector.
534
+
You will want first to define the transition matrices and dividend payoff vector.
535
+
536
+
In addition, below we'll add an interpretation of the row corresponding to $p_o$ by
537
+
inventing two additional types of agents, one of whom is **permanently optimistic**, the other who
538
+
is **permanently pessimistic**.
539
+
540
+
We construct subjective transition probability matrices for our permanently optimistic and permanently pessimistic investors as follows.
541
+
542
+
The permanently optimistic investors(i.e., the investor with the most optimistic
543
+
beliefs in each state) believes the transition matrix
544
+
545
+
$$
546
+
P_o =
547
+
\begin{bmatrix}
548
+
\frac{1}{2} & \frac{1}{2} \\
549
+
\frac{1}{4} & \frac{3}{4}
550
+
\end{bmatrix}
551
+
$$
552
+
553
+
The permanently pessimistic investor believes the transition matrix
554
+
555
+
$$
556
+
P_p =
557
+
\begin{bmatrix}
558
+
\frac{2}{3} & \frac{1}{3} \\
559
+
\frac{2}{3} & \frac{1}{3}
560
+
\end{bmatrix}
561
+
$$
562
+
563
+
We'll use these transition matrices when we present our solution of exercise 1 below.
544
564
545
565
## Solutions
546
566
@@ -588,7 +608,7 @@ for p, label in zip(opt_beliefs, labels):
588
608
```
589
609
590
610
Notice that the equilibrium price with heterogeneous beliefs is equal to the price under single beliefs
591
-
with optimistic investors - this is due to the marginal investor being the temporarily optimistic type.
611
+
with **permanently optimistic** investors - this is due to the marginal investor in the heterogeneous beliefs equilibrium always being the type who is temporarily optimistic.
592
612
593
613
[^f1]: By assuming that both types of agents always have "deep enough pockets" to purchase all of the asset, the model takes wealth dynamics off the table. The Harrison-Kreps model generates high trading volume when the state changes either from 0 to 1 or from 1 to 0.
0 commit comments