Waardering van levensverzekeringsproducten in R
Katrien Antonio, Ph.D.
Professor, KU Leuven and University of Amsterdam
Kies een kapitaaleenheid en een tijdseenheid:
Bedrag ontvangen of betaald op tijd $k$:

# Define the cash flows
cash_flows <- c(500, 400, 300, rep(200, 5))
length(cash_flows)
8

Belangrijk:
timing van kasstromen doet ertoe!
tijdswaarde van geld doet ertoe!
Rentevoet bepaalt de groei van geld.
Opgroeiing

i <- 0.03
1 * (1 + i)
1.03
Verdiscontering

v <- 1 / (1 + i)
v
0.9708738
Opgroeiing

i <- 0.03 ; v <- 1 / (1 + i) ; k <- 2
c((1 + i) ^ k, v ^ -k)
1.0609 1.0609
Verdiscontering

i <- 0.03 ; v <- 1 / (1 + i) ; k <- 2
c((1 + i) ^ -k, v ^ k)
0.9425959 0.9425959

Wat is de waarde bij $k=0$ van deze kasstroomvector?

Wat is de waarde bij $k=0$ van deze kasstroomvector?
De contante waarde (PV)!
# Interest rate i <- 0.03# Discount factor v <- 1 / (1 + i)# Define the discount factors discount_factors <- v ^ (0:7)# Cash flow vector cash_flows <- c(500, 400, 300, rep(200, 5))
# Discounting cash flows
cash_flows * discount_factors
500.0000 388.3495 282.7788 183.0283
177.6974 172.5218 167.4969 162.6183
# Present value of cash flow vector
present_value <-
sum(cash_flows * discount_factors)
present_value
[1] 2034.491
Waardering van levensverzekeringsproducten in R