Python 金融概念入門
Dakota Wixom
Quantitative Finance Analyst
$$ \text{Return (\% Gain) } = \frac{v_{t_2} - v_{t_1}}{v_{t_1}} = r$$
$$ \frac{\$11,000 - \$10,000}{\$10,000} * 100 = \text{10\% 的年報酬(增益)} $$
$$ v_{t_2} = v_{t_1} * (1 + r) $$
$$ \text{\$10,000} * (1 + \frac{10}{100}) = \text{\$11,000} $$
$$ \text{Investment Value} = v_{t_0}*(1 + r)^t $$
若成長率 $r$ 為負,投資價值會隨時間折舊(縮水)。
$$ df = \frac{1}{(1 + r)^t} $$
$$ v = fv*df $$
$$ \text{Investment Value} = v_{t_0}*(1 + \frac{r}{c})^{t*c} $$
考慮 $1,000 投資,年報酬 10%,按季複利(每 3 個月、每年 4 次):
$$ \$1,000*( 1 + \frac{0.10}{4} )^{1*4} = \$1,103.81 $$
與不複利相比:
$$ \$1,000*( 1 + \frac{0.10}{1} )^{1*1} = \$1,100.00 $$
注意因季複利多出的 $3.81 嗎?
30 年按季複利:
$$ \$1,000*(1 + \frac{0.10}{4})^{30*4} = \$19,358.15 $$
30 年按年複利:
$$ \$1,000*(1 + \frac{0.10}{1})^{30*1} = \$17,449.40 $$
季複利在 30 年內多產生 $1,908.75
Python 金融概念入門