Term life simulator notes #8
Unanswered
MatthewCaseres
asked this question in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Trying to come up with some notes that can serve as a reference for @serenity4. Tagging @alecloudenback in case he has input on this.
Motivations
Similar to this idea - https://github.com/mattheaphy/nyr2022_exp_study/blob/main/nyr2022_slides.pdf
Below is a knowledge dump of sorts. The main goal is just an end to end example of the actuarial modeling process.
Why simulated data makes sense
Actuaries want to build data driven lapse/mortality assumptions for financial models of term life insurance. The true distribution of the present value of net cashflows would be nice. In the real world we only get to observe the one outcome that actually occurs, and metrics in existing literature are things like "Actual/Expected" (which I believe tells us if our model matches the data it was trained on, and of course it always does).
With a data simulator, we can assess approaches to actuarial modeling while having access to the full underlying distribution of things, which is never the case in the real world.
How to use simulated data
In the next section, we describe a relatively simple implementation. The goal is to use this simple implementation as described in the list above.
Modeling details
Mechanics
starting_date + n * months_passed
and not `(...((starting_date + Month(1)) + Month(1)) ....)f(duration, gender, face_amount, ...)
Assumptions
Mortality rates
2017 Unloaded CSO Preferred Structure
tables from MortalityTables.jl.Lapse rates
Mortality Predictive Modeling report.
Post level term (PLT)
https://www.theactuarymagazine.org/better-with-age/#:~:text=Post%2Dlevel%20term%20(PLT),the%20premium%20will%20rise%20annually.
There are two terms
So
higher prices -> higher lapses -> higher mortality -> higher prices
. We will make no attempt to model some sort of infinite feedback loop.We will be using the Dukes/MacDonald method 2 from this newsletter.
Beta Was this translation helpful? Give feedback.
All reactions