Deposits of the saving plan
Now that you have defined the variables discount_factors
, deposits
and payments
, you are ready to determine the value \(K\) of the yearly savings deposits using the actuarial equivalence relationship between the deposits (red cash flow) and the payments (blue cash flow).
Este ejercicio forma parte del curso
Life Insurance Products Valuation in R
Instrucciones del ejercicio
- Calculate the present value of the deposit pattern as the
sum()
of the elementwise product ofdeposits
anddiscount_factors
. - Do the same for the payment pattern by summing over the product of
payments
anddiscount_factors
. - Using the concept of actuarial equivalence, the yearly deposit
K
in the first four years can be calculated by dividingPV_payment
byPV_deposit
.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Calculate the present value of the deposits
PV_deposit <- ___(___ * ___)
# Calculate the present value of the payments
PV_payment <- ___(___ * ___)
# Calculate the yearly deposit K in the first 4 years
K <- ___
K