Skip to content

Commit fa0badb

Browse files
Tom's July 4 edits of two lectures
1 parent 46427c2 commit fa0badb

File tree

2 files changed

+33
-10
lines changed

2 files changed

+33
-10
lines changed

lectures/career.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def operator_factory(cw, parallel_flag=True):
275275
```
276276

277277
Lastly, `solve_model` will take an instance of `CareerWorkerProblem` and
278-
iterate using the Bellman operator to find the fixed point of the value function.
278+
iterate using the Bellman operator to find the fixed point of the Bellman equation.
279279

280280
```{code-cell} python3
281281
def solve_model(cw,

lectures/odu.md

Lines changed: 32 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,12 @@ At time $t$, our worker either
9797
The wage sequence ${W_t}$ is IID and generated from known density $q$.
9898

9999
The worker aims to maximize the expected discounted sum of earnings
100-
$\mathbb{E} \sum_{t=0}^{\infty}\beta^t y_t$ The function $V$ satisfies the recursion
100+
$\mathbb{E} \sum_{t=0}^{\infty}\beta^t y_t$.
101+
102+
Let $v(w)$ be the optimal value of the problem for a previously unemployed worker who has just received offer $w$ and is
103+
yet to decide whether to accept or reject the offer.
104+
105+
The value function $v$ satisfies the recursion
101106

102107
```{math}
103108
:label: odu_odu_pv
@@ -122,16 +127,34 @@ The model is as above, apart from the fact that
122127
- the worker learns about $q$ by starting with a prior and updating
123128
based on wage offers that he/she observes
124129

125-
The worker knows there are two possible distributions $F$ and $G$ —
126-
with densities $f$ and $g$.
130+
The worker knows there are two possible distributions $F$ and $G$.
131+
132+
These two distributions have densities $f$ and $g$, repectively.
133+
134+
Just before time starts, “nature” selects $q$ to be either $f$ or $g$.
127135

128-
At the start of time, “nature” selects $q$ to be either $f$ or $g$
129-
— the wage distribution from which the entire sequence ${W_t}$ will be
136+
This is then the wage distribution from which the entire sequence ${W_t}$ will be
130137
drawn.
131138

132-
This choice is not observed by the worker, who puts prior probability $\pi_0$ on $f$ being chosen.
139+
The worker does not know which distribution nature has drawn, but the worker does know
140+
the two possible distributions $f$ and $g$.
141+
142+
The worker puts a (subjective) prior probability $\pi_0$ on $f$ having been chosen.
143+
144+
The worker's time $0$ subjective distribution for the distribution of $W_0$ is
145+
146+
$$
147+
\pi_0 f + (1 - \pi_0) g
148+
$$
149+
150+
151+
152+
The worker's time $t$ subjective belief about the the distribution of $W_t$ is
153+
154+
$$
155+
\pi_t f + (1 - \pi_t) g,
156+
$$
133157

134-
Update rule: worker's time $t$ estimate of the distribution is $\pi_t f + (1 - \pi_t) g$,
135158
where $\pi_t$ updates via
136159

137160
```{math}
@@ -228,8 +251,8 @@ fact, it should be decreasing in $\pi$ because
228251
- larger $\pi$ means more weight on $f$ and less on
229252
$g$
230253

231-
Thus larger $\pi$ depresses the worker’s assessment of
232-
her future prospects, and relatively low current offers become more
254+
Thus, s larger $\pi$ depresses the worker’s assessment of
255+
her future prospects, so relatively low current offers become more
233256
attractive.
234257

235258
**Summary:** We conjecture that the optimal policy is of the form

0 commit comments

Comments
 (0)