Skip to content

Commit ba4cf4c

Browse files
committed
use V^R to distinguish with the criterion V
1 parent 4930e88 commit ba4cf4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lectures/calvo_machine_learn.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1202,11 +1202,11 @@ Indeed, we find that the deviation is very small
12021202
print(f'deviation = {np.linalg.norm(v_t[0] - V_R)}')
12031203
```
12041204
1205-
We can also verify this by inspecting a graph of $v_t$ against $t$ for $t=0, \ldots, T$ along with the value attained by a restricted Ramsey planner $V^{CR}$ and the optimized value of the ordinary Ramsey planner's criterion $V$
1205+
We can also verify this by inspecting a graph of $v_t$ against $t$ for $t=0, \ldots, T$ along with the value attained by a restricted Ramsey planner $V^{CR}$ and the optimized value of the ordinary Ramsey planner $V^R$
12061206
12071207
```{code-cell} ipython3
12081208
plt.scatter(Ts, v_t, label='$v_t$')
1209-
plt.axhline(V_R, color='C2', linestyle='--', label='$V$')
1209+
plt.axhline(V_R, color='C2', linestyle='--', label='$V^R$')
12101210
plt.axhline(V_CR, color='C1', linestyle='--', label='$V^{CR}$')
12111211
plt.xlabel(r'$t$')
12121212
plt.ylabel(r'$v_t$')

0 commit comments

Comments
 (0)