用 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 评估人寿保险产品