Skip to content

Commit c30ec0e

Browse files
committed
fixes following comments by @oyamad
1 parent f19467a commit c30ec0e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

lectures/mccall_model.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,10 +297,9 @@ Step 4: if the deviation is larger than some fixed tolerance, set $v = v'$ and g
297297

298298
Step 5: return $v$.
299299

300-
Let $\{ v_k \}$ denote the sequence generated by this algorithm.
300+
For small tolerance, the returned function $v$ is a close approximation to the value function $v^*$.
301301

302-
This sequence converges to the solution
303-
to {eq}`odu_pv2` as $k \to \infty$, which is the value function $v^*$.
302+
The theory below elaborates on this point.
304303

305304
### The Fixed Point Theory
306305

lectures/short_path.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,3 +473,8 @@ J = compute_cost_to_go(Q)
473473
print_best_path(J, Q)
474474
```
475475

476+
The total cost of the path should agree with $J[0]$ so let's check this.
477+
478+
```{code-cell} python3
479+
J[0]
480+
```

0 commit comments

Comments
 (0)