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
We find that raising the gross interest rate $R$ increases the initial college wage premium $\phi$, in line with our earlier graphical analysis.
411
429
412
-
413
430
## Exercises
414
431
432
+
In the following exercises, we extend our previous model to a model of entrepreneurs versus workers.
433
+
415
434
```{exercise-start}
416
435
:label: edm_ex1
417
436
```
418
-
In this exercise, we add a parameter and reinterpret variables to get a model of entrepreneurs versus workers and do some computations like before.
437
+
We add a parameter $\pi \in (0,1)$ representing the probability that an entrepreneur's "project" succeeds.
419
438
420
-
We now let $h$ be the present value of a "worker".
439
+
We now let $h$ be the present value of a "worker".
421
440
422
441
We define the present value of an entrepreneur to be
423
442
424
443
$$
425
444
c_0 = \pi \sum_{t=4}^T R^{-t} w_t^c
426
445
$$
427
446
428
-
where $\pi \in (0,1) $ is the probability that an entrepreneur's "project" succeeds.
429
-
430
-
For our model of workers and firms, we'll interpret $D$ as the cost of becoming an entrepreneur.
447
+
We interpret $D$ in the previous model as the cost of becoming an entrepreneur.
431
448
432
449
This cost might include costs of hiring workers, office space, and lawyers.
433
450
434
451
What we used to call the college, high school wage gap $\phi$ now becomes the ratio
435
452
of a successful entrepreneur's earnings to a worker's earnings.
436
453
437
-
We'll find that as $\pi$ decreases, $\phi$ increases, indicating that the riskier it is to
438
-
be an entrepreneur, the higher must be the reward for a successful project.
439
-
440
-
Now define `create_edm_π` and `compute_gap` following the previous *Computations* section, adopting the entrepreneur-worker interpretation of our model.
441
-
442
-
Given:
454
+
In this exercise, update `create_edm_π` and `compute_gap` to formulate our entrepreneur-worker model with parameters below
443
455
444
456
```{code-cell} ipython3
445
457
R=1.05, # gross rate of return
@@ -448,16 +460,22 @@ T=40, # time horizon
448
460
γ_c=1.01, # college wage growth
449
461
w_h0=1, # initial wage (high school)
450
462
D=10, # cost for college
451
-
π=0 # chance of business success
463
+
π=1 # chance of business success
452
464
```
453
465
466
+
and verify that when $\pi = 1$, the result is the same as our old model.
467
+
468
+
+++
469
+
454
470
```{exercise-end}
455
471
```
456
472
457
473
```{solution-start} edm_ex1
458
474
:class: dropdown
459
475
```
460
476
477
+
Here is one solution
478
+
461
479
```{code-cell} ipython3
462
480
# Define a model of entrepreneur-worker interpretation
463
481
EqDiffModel = namedtuple('EqDiffModel', 'R T γ_h γ_c w_h0 D π')
0 commit comments