以 R 估值人壽保險商品
Katrien Antonio, Ph.D.
Professor, KU Leuven and University of Amsterdam
針對 $(x)$ 的終身年金,其給付向量為
$$ (c_0,c_1, \ldots, c_k, \ldots) $$
純滿期保險序列:
$$ \sum_{k=0}^{+\infty} c_k \cdot v(k) \cdot {}_kp_x $$
$\quad \, \quad \,$ 即 EPV。

benefits <- c(500, 400, 300, rep(200, 5))
discount_factors <- (1 + 0.03) ^ - (0:7)
kpx <- c(1, cumprod(px[(65 + 1):(71 + 1)]))
sum(benefits * discount_factors * kpx)
1945.545
終身「應付」年金:於第 $(k+1)$ 年「期初」支付 $c_k$。

終身「即付」年金:於第 $(k+1)$ 年「期末」支付 $c_k$。

以固定利率 $i = 3\%$ 計算 $\ddot{a}_{35}$(應付)
# whole-life annuity due of (35)
kpx <-
c(1, cumprod(px[(35 + 1):length(px)]))
discount_factors <-
(1 + 0.03) ^ - (0:(length(kpx) - 1))
benefits <- rep(1, length(kpx))
sum(benefits * discount_factors * kpx)
24.44234
以及 $a_{35}$(即付)
# whole-life immediate annuity of (35)
kpx <- cumprod(px[(35 + 1):length(px)])
discount_factors <-
(1 + 0.03) ^ - (1:length(kpx))
benefits <- rep(1, length(kpx))
sum(benefits * discount_factors * kpx)
23.44234
「定期」應付年金:最長 $n$ 年,自時間 $0$ 至 $n-1$。

「遞延」終身應付年金:前 $u$ 年不支付。

以 R 估值人壽保險商品