Skip to content

Commit 8d5f799

Browse files
mmckyclaude
andauthored
[action-translation] resync: cass_koopmans_1.md (#108)
* 🔄 resync cass_koopmans_1.md * Restore trailing newline (engine issue tracked in QuantEcon/action-translation#116) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent 17b5b98 commit 8d5f799

2 files changed

Lines changed: 29 additions & 6 deletions

File tree

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source-sha: bce028b3121056e0bbb7b57e48b356aa8da050d2
2+
synced-at: "2026-07-18"
3+
model: claude-sonnet-5
4+
mode: RESYNC
5+
section-count: 9
6+
tool-version: 0.17.0

lectures/cass_koopmans_1.md

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,23 @@ kernelspec:
99
display_name: Python 3 (ipykernel)
1010
language: python
1111
name: python3
12+
translation:
13+
title: Cass-Koopmans模型
14+
headings:
15+
Overview: 概述
16+
The Model: 模型
17+
'The Model::Digression: Aggregation Theory': 插话:聚合理论
18+
'The Model::Digression: Aggregation Theory::An Economy': 一个经济体
19+
Planning Problem: 规划问题
20+
Planning Problem::Useful Properties of Linearly Homogeneous Production Function: 线性齐次生产函数的有用性质
21+
Planning Problem::First-order necessary conditions: 一阶必要条件
22+
Shooting Algorithm: 打靶算法
23+
Setting Initial Capital to Steady State Capital: 将初始资本设定为稳态资本
24+
A Turnpike Property: 收费公路性质(Turnpike property)
25+
A Limiting Infinite Horizon Economy: 极限无限期经济
26+
Stable Manifold and Phase Diagram: 稳定流形和相图
27+
Concluding Remarks: 结论
28+
Concluding Remarks::Exercise: 练习
1229
---
1330

1431
(cass_koopmans_1)=
@@ -570,8 +587,8 @@ plt.show()
570587
@jit
571588
def bisection(pp, c0, k0, T=10, tol=1e-4, max_iter=500, k_ter=0, verbose=True):
572589
573-
# 设置初始边界
574-
c0_upper = pp.f(k0)
590+
# 猜测c0的初始边界
591+
c0_upper = pp.f(k0) + (1 - pp.δ) * k0
575592
c0_lower = 0
576593
577594
i = 0
@@ -659,7 +676,7 @@ $$
659676
1=\beta \frac{u'(\bar{C})}{u'(\bar{C})}[f'(\bar{K})+(1-\delta)]
660677
$$
661678
662-
定义 $\beta = \frac{1}{1+\rho}$,得到
679+
定义 $\beta = \frac{1}{1+\rho}$,并化简得到
663680
664681
$$
665682
1+\rho = 1[f'(\bar{K}) + (1-\delta)]
@@ -842,7 +859,7 @@ plot_saving_rate(pp, 0.3, k_ss/3, [250, 150, 75, 50], k_ss=k_ss)
842859
合适的做法是将终端条件{eq}`constraint4`替换为
843860
844861
$$
845-
\lim_{T \rightarrow +\infty} \beta^T u'(C_T) K_{T+1} = 0
862+
\lim_{T \rightarrow +\infty} \beta^T u'(C_T) K_{T+1} = 0 ,
846863
$$
847864
848865
收敛到最优稳态的路径将满足以上条件。
@@ -971,11 +988,11 @@ c_vec2, k_vec2 = bisection(pp, 1e-3, 1e-3, T=200, k_ter=Ks)
971988
972989
* 蓝线表示方程 {eq}`eq:tildeC` 所描述的不动点 $C = \tilde C (K)$ 的图像。
973990
* 红线表示方程 {eq}`eq:tildeK` 所描述的不动点 $K = \tilde K(C)$ 的图像。
974-
* 绿线表示从时间0时任意 $K_0$ 开始收敛到稳态的稳定流形
991+
* 绿线表示从时间0时任意 $K_0$ 开始收敛到稳态所描绘出的稳定路径
975992
* 对于给定的 $K_0$,射击算法将 $C_0$ 设置为绿线上的坐标,以启动一条收敛到最优稳态的路径。
976993
* 绿线上的箭头显示了动态方程{eq}`eq:systemdynamics`推动连续对 $(K_{t+1}, C_t)$ 的方向。
977994
978-
除了显示三条曲线外,图{numref}`stable_manifold`还绘制了箭头来指示当给定 $K_0$ 时,$C_0$不在绿线所示稳定流形上时,动态方程{eq}`eq:systemdynamics`驱动系统的方向
995+
除了这三条曲线外,图{numref}`stable_manifold`还绘制了箭头,指示当给定 $K_0$ 时,$C_0$ 不在绿线所示的稳定流形上,动态方程{eq}`eq:systemdynamics`将把系统驱动向何处
979996
980997
* 如果对给定的$K_0$,$C_0$设置在绿线以下,则积累了过多的资本
981998

0 commit comments

Comments
 (0)