Skip to content

Commit 8a208d2

Browse files
Fix links (#42)
* Fix broken link * Fix broken refernces * Fix broken links --------- Co-authored-by: HengCheng <79777246+2789372130@users.noreply.github.com>
1 parent e88badb commit 8a208d2

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

lectures/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ In particular, we thank and credit
2121
- [Matthew McKay](https://github.com/mmcky)
2222
- [Humphrey Yang](https://github.com/HumphreyYang)
2323
- [Hengcheng Zhang](https://github.com/HengchengZhang)
24-
- [Frank Wu](https://github.com/https://github.com/chappiewuzefan)
24+
- [Frank Wu](https://github.com/chappiewuzefan)
2525

lectures/aiyagari_jax.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ The model features
2929

3030
The Aiyagari model has been used to investigate many topics, including
3131

32-
- precautionary savings and the effect of liquidity constraints [[Aiy94](https://python.quantecon.org/zreferences.html#id137)]
33-
- risk sharing and asset pricing [[HL96](https://python.quantecon.org/zreferences.html#id129)]
34-
- the shape of the wealth distribution [[BBZ15](https://python.quantecon.org/zreferences.html#id130)]
32+
- precautionary savings and the effect of liquidity constraints [[Aiy94](https://python.quantecon.org/zreferences.html#id138)]
33+
- risk sharing and asset pricing [[HL96](https://python.quantecon.org/zreferences.html#id130)]
34+
- the shape of the wealth distribution [[BBZ15](https://python.quantecon.org/zreferences.html#id131)]
3535

3636

3737
### References
3838

39-
The primary reference for this lecture is [[Aiy94](https://python.quantecon.org/zreferences.html#id137)].
39+
The primary reference for this lecture is [[Aiy94](https://python.quantecon.org/zreferences.html#id138)].
4040

41-
A textbook treatment is available in chapter 18 of [[LS18](https://python.quantecon.org/zreferences.html#id182)].
41+
A textbook treatment is available in chapter 18 of [[LS18](https://python.quantecon.org/zreferences.html#id183)].
4242

4343
A less sophisticated version of this lecture (without JAX) can be found
4444
[here](https://python.quantecon.org/aiyagari.html).

lectures/newtons_method.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ print(jax.devices())
4040

4141
## The Two Goods Market Equilibrium
4242

43-
Let's have a quick recap of this problem -- a more detailed explanation and derivation can be found at [A Two Goods Market Equilibrium](https://python.quantecon.org/newton_method.html#two_goods_market).
43+
Let's have a quick recap of this problem -- a more detailed explanation and derivation can be found at [A Two Goods Market Equilibrium](https://python.quantecon.org/newton_method.html#two-goods-market).
4444

4545
Assume we have a market for two complementary goods where demand depends on the price of both components.
4646

@@ -135,7 +135,7 @@ The iteration starts from some initial guess of the price vector $p_0$.
135135

136136
Here, instead of coding Jacobian by hand, We use the `jax.jacobian()` function to auto-differentiate and calculate the Jacobian.
137137

138-
With only slight modification, we can generalize [our previous attempt](https://python.quantecon.org/newton_method.html#first_newton_attempt) to multi-dimensional problems
138+
With only slight modification, we can generalize [our previous attempt](https://python.quantecon.org/newton_method.html#first-newton-attempt) to multi-dimensional problems
139139

140140
```{code-cell} ipython3
141141
def newton(f, x_0, tol=1e-5, max_iter=15):

0 commit comments

Comments
 (0)