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
Copy file name to clipboardexpand all lines: lectures/equalizing_difference.md
+108-147
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ jupytext:
4
4
extension: .md
5
5
format_name: myst
6
6
format_version: 0.13
7
-
jupytext_version: 1.14.4
7
+
jupytext_version: 1.16.1
8
8
kernelspec:
9
9
display_name: Python 3 (ipykernel)
10
10
language: python
@@ -29,7 +29,7 @@ To map Friedman's application into our model, think of our high school students
29
29
30
30
Our presentation is "incomplete" in the sense that it is based on a single equation that would be part of set equilibrium conditions of a more fully articulated model.
31
31
32
-
This ''equalizing difference'' equation determines a college, high-school wage ratio that equalizes present values of a high school educated worker and a college educated worker.
32
+
This ''equalizing difference'' equation determines a college-high-school wage ratio that equalizes present values of a high school educated worker and a college educated worker.
33
33
34
34
The idea is that lifetime earnings somehow adjust to make a new high school worker indifferent between going to college and not going to college but instead going to work immmediately.
35
35
@@ -50,6 +50,8 @@ As usual, we'll start by importing some Python modules.
50
50
```{code-cell} ipython3
51
51
import numpy as np
52
52
import matplotlib.pyplot as plt
53
+
from collections import namedtuple
54
+
from sympy import Symbol, Lambda, symbols
53
55
```
54
56
55
57
## The indifference condition
@@ -165,38 +167,7 @@ $$
165
167
\phi = \frac{A_h}{A_c} .
166
168
$$
167
169
168
-
Soon we'll write Python code to compute $\phi$ and plot it as a function of its determinants.
169
-
170
-
But first we'll describe an alternative interpretation of our model that mostly just relabels variables.
171
-
172
-
173
-
174
-
## Reinterpreting the model: workers and entrepreneurs
175
-
176
-
177
-
We can add a parameter and reinterpret variables to get a model of entrepreneurs versus workers.
178
-
179
-
We now let $h$ be the present value of a "worker".
180
-
181
-
We define the present value of an entrepreneur to be
182
-
183
-
$$
184
-
c_0 = \pi \sum_{t=4}^T R^{-t} w_t^c
185
-
$$
186
-
187
-
where $\pi \in (0,1) $ is the probability that an entrepreneur's "project" succeeds.
188
-
189
-
For our model of workers and firms, we'll interpret $D$ as the cost of becoming an entrepreneur.
190
-
191
-
This cost might include costs of hiring workers, office space, and lawyers.
192
-
193
-
194
-
195
-
What we used to call the college, high school wage gap $\phi$ now becomes the ratio
196
-
of a successful entrepreneur's earnings to a worker's earnings.
197
-
198
-
We'll find that as $\pi$ decreases, $\phi$ increases, indicating that the riskier it is to
199
-
be an entrepreuner, the higher must be the reward for a successful project.
170
+
In the next section we'll write Python code to compute $\phi$ and plot it as a function of its determinants.
200
171
201
172
## Computations
202
173
@@ -206,34 +177,30 @@ prominently including $\gamma_h, \gamma_c, R$.
206
177
207
178
Now let's write some Python code to compute $\phi$ and plot it as a function of some of its determinants.
208
179
209
-
210
180
```{code-cell} ipython3
211
-
class equalizing_diff:
212
-
"""
213
-
A class of the equalizing difference model
214
-
"""
181
+
# Define the namedtuple for the equalizing difference model
182
+
EqDiffModel = namedtuple('EqDiffModel', 'R T γ_h γ_c w_h0 D')
Let's not charge for college and recompute $\phi$.
290
219
291
220
The initial college wage premium should go down.
292
221
293
-
294
-
295
-
296
222
```{code-cell} ipython3
297
223
# free college
298
-
ex2 = equalizing_diff(R, T, γ_h, γ_c, w_h0, D=0)
299
-
gap2 = ex2.compute_gap()
300
-
print(gap2)
224
+
ex2 = create_edm(D=0)
225
+
gap2 = compute_gap(ex2)
226
+
gap2
301
227
```
302
228
303
-
304
-
305
229
Let us construct some graphs that show us how the initial college-high-school wage ratio $\phi$ would change if one of its determinants were to change.
306
230
307
-
Let's start with the gross interest rate $R$.
308
-
309
-
231
+
Let's start with the gross interest rate $R$.
310
232
311
233
```{code-cell} ipython3
312
234
R_arr = np.linspace(1, 1.2, 50)
313
-
plt.plot(R_arr, φ_R(ex1, R_arr))
235
+
models = [create_edm(R=r) for r in R_arr]
236
+
gaps = [compute_gap(model) for model in models]
237
+
238
+
plt.plot(R_arr, gaps)
314
239
plt.xlabel(r'$R$')
315
240
plt.ylabel(r'wage gap')
316
241
plt.show()
@@ -323,11 +248,15 @@ determinants of $\phi$.
323
248
324
249
```{code-cell} ipython3
325
250
γc_arr = np.linspace(1, 1.2, 50)
326
-
plt.plot(γc_arr, φ_γc(ex1, γc_arr))
251
+
models = [create_edm(γ_c=γ_c) for γ_c in γc_arr]
252
+
gaps = [compute_gap(model) for model in models]
253
+
254
+
plt.plot(γc_arr, gaps)
327
255
plt.xlabel(r'$\gamma_c$')
328
256
plt.ylabel(r'wage gap')
329
257
plt.show()
330
258
```
259
+
331
260
Notice how the intitial wage gap falls when the rate of growth $\gamma_c$ of college wages rises.
332
261
333
262
The wage gap falls to "equalize" the present values of the two types of career, one as a high school worker, the other as a college worker.
@@ -338,33 +267,87 @@ The following graph shows what happens.
338
267
339
268
```{code-cell} ipython3
340
269
γh_arr = np.linspace(1, 1.1, 50)
341
-
plt.plot(γh_arr, φ_γh(ex1, γh_arr))
270
+
models = [create_edm(γ_h=γ_h) for γ_h in γh_arr]
271
+
gaps = [compute_gap(model) for model in models]
272
+
273
+
plt.plot(γh_arr, gaps)
342
274
plt.xlabel(r'$\gamma_h$')
343
275
plt.ylabel(r'wage gap')
344
276
plt.show()
345
277
```
346
278
347
-
348
279
## Entrepreneur-worker interpretation
349
280
350
-
Now let's adopt the entrepreneur-worker interpretation of our model.
281
+
We can add a parameter and reinterpret variables to get a model of entrepreneurs versus workers.
282
+
283
+
We now let $h$ be the present value of a "worker".
284
+
285
+
We define the present value of an entrepreneur to be
286
+
287
+
$$
288
+
c_0 = \pi \sum_{t=4}^T R^{-t} w_t^c
289
+
$$
290
+
291
+
where $\pi \in (0,1) $ is the probability that an entrepreneur's "project" succeeds.
292
+
293
+
For our model of workers and firms, we'll interpret $D$ as the cost of becoming an entrepreneur.
351
294
352
-
If the probability that a new business succeeds is $.2$, let's compute the initial wage premium for successful entrepreneurs.
295
+
This cost might include costs of hiring workers, office space, and lawyers.
296
+
297
+
What we used to call the college, high school wage gap $\phi$ now becomes the ratio
298
+
of a successful entrepreneur's earnings to a worker's earnings.
299
+
300
+
We'll find that as $\pi$ decreases, $\phi$ increases, indicating that the riskier it is to
301
+
be an entrepreuner, the higher must be the reward for a successful project.
302
+
303
+
Now let's adopt the entrepreneur-worker interpretation of our model
0 commit comments