Package {tidyactuarial}


Type: Package
Title: Tidy Tools for Actuarial Mathematics and Life Contingencies
Version: 0.1.4
Description: Provides tidyverse-aligned tools for actuarial mathematics and life contingencies, including life tables, survival probabilities, actuarial present values of cash flows, life annuities, life insurance, premiums, reserves, multiple-life calculations, Monte Carlo simulation, and deterministic cash-flow diagrams. The package emphasizes clear actuarial notation, reproducible workflows, and pipe-friendly tools for actuarial education and applied actuarial analysis.
License: MIT + file LICENSE
Encoding: UTF-8
Depends: R (≥ 4.1.0)
Imports: dplyr, ggplot2, rlang, scales, stats, tibble, utils
Suggests: purrr, testthat (≥ 3.0.0)
LazyData: true
LazyDataCompression: xz
RoxygenNote: 7.3.3
Config/testthat/edition: 3
NeedsCompilation: no
Packaged: 2026-06-01 17:34:08 UTC; LENOVO
Author: Julian Fajardo [aut, cre]
Maintainer: Julian Fajardo <julian.fajardo1908@gmail.com>
Repository: CRAN
Date/Publication: 2026-06-01 19:30:02 UTC

Internal helper: convert number of payments into annuity factors

Description

Internal helper: convert number of payments into annuity factors

Usage

.annuity_factor_count(n_payments, i_effective, k, timing)

Arguments

n_payments

Integer vector with number of payments.

i_effective

Annual effective interest rate.

k

Payment frequency.

timing

Payment timing.

Value

Numeric vector of annuity factors.


Internal helper: count annuity payments from simulated curtate lifetimes

Description

Internal helper: count annuity payments from simulated curtate lifetimes

Usage

.annuity_payment_count(Kx, died_within_horizon, n, k, timing)

Arguments

Kx

Simulated curtate future lifetimes.

died_within_horizon

Logical vector.

n

Term in years.

k

Payment frequency.

timing

Payment timing.

Value

Integer vector with number of payments.


Internal helper: collect old Monte Carlo argument names

Description

Internal helper: collect old Monte Carlo argument names

Usage

.life_mc_collect_old_args(dots, allowed)

Arguments

dots

List of arguments from ....

allowed

Character vector with allowed deprecated names.

Value

A list.


Internal helper: annual annuity payment times

Description

Internal helper: annual annuity payment times

Usage

.mc_annuity_payment_times_annual(K, type, n, h, n_guar, timing)

Arguments

K

Numeric scalar. Simulated curtate future lifetime.

type

Character string. Canonical annuity type.

n

Numeric scalar or NULL.

h

Numeric scalar. Deferral period.

n_guar

Numeric scalar or NULL.

timing

Character string. Either "immediate" or "due".

Value

Numeric vector with annual payment times.


Internal helper: fractional annuity payment times

Description

Internal helper: fractional annuity payment times

Usage

.mc_annuity_payment_times_fractional(
  T,
  type,
  n,
  h,
  n_guar,
  timing,
  payment_interval
)

Arguments

T

Numeric scalar. Simulated complete future lifetime.

type

Character string. Canonical annuity type.

n

Numeric scalar or NULL.

h

Numeric scalar. Deferral period.

n_guar

Numeric scalar or NULL.

timing

Character string. Either "immediate" or "due".

payment_interval

Numeric scalar. Time between payments.

Value

Numeric vector with fractional payment times.


Internal helper: validate character scalar

Description

Internal helper: validate character scalar

Usage

.mc_assert_character_scalar(x, arg)

Arguments

x

Object to validate.

arg

Character string with the argument name.

Value

Invisibly returns TRUE if validation is successful.


Internal helper: validate column existence

Description

Internal helper: validate column existence

Usage

.mc_assert_column(data, col, arg)

Arguments

data

A data frame or tibble.

col

Character string with the column name.

arg

Character string with the argument name.

Value

Invisibly returns TRUE if validation is successful.


Internal helper: validate numeric column

Description

Internal helper: validate numeric column

Usage

.mc_assert_numeric_column(data, col, arg)

Arguments

data

A data frame or tibble.

col

Character string with the column name.

arg

Character string with the argument name.

Value

Invisibly returns TRUE if validation is successful.


Internal helper: validate numeric scalar

Description

Internal helper: validate numeric scalar

Usage

.mc_assert_numeric_scalar(
  x,
  arg,
  min = -Inf,
  max = Inf,
  strict_min = FALSE,
  strict_max = FALSE,
  allow_null = FALSE
)

Arguments

x

Object to validate.

arg

Character string with the argument name.

min

Minimum allowed value. Default is -Inf.

max

Maximum allowed value. Default is Inf.

strict_min

Logical. Should the lower bound be strict?

strict_max

Logical. Should the upper bound be strict?

allow_null

Logical. Should NULL be allowed?

Value

Invisibly returns TRUE if validation is successful.


Internal helper: validate positive integer-like scalar

Description

Internal helper: validate positive integer-like scalar

Usage

.mc_assert_positive_integer(x, arg)

Arguments

x

Object to validate.

arg

Character string with the argument name.

Value

Invisibly returns TRUE if validation is successful.


Internal helper: compute annual discount factor

Description

Computes the annual discount factor from an interest-rate convention.

Usage

.mc_discount_factor(
  i,
  i_type = c("effective", "nominal_interest", "nominal_discount", "force"),
  m = 1,
  rate = NULL,
  interest_type = NULL
)

Arguments

i

Numeric scalar. Interest-rate input.

i_type

Character string. Interest-rate convention. One of "effective", "nominal_interest", "nominal_discount", or "force". The legacy value "nominal" is accepted internally and treated as "nominal_interest".

m

Numeric scalar. Number of interest conversion periods per year for nominal annual rates. Default is 1.

rate

Deprecated internal alias for i.

interest_type

Deprecated internal alias for i_type.

Value

Numeric scalar with the annual discount factor.


Internal helper: convert interest rate to annual effective rate

Description

Converts an interest rate supplied under a standard actuarial convention into an equivalent annual effective interest rate.

Usage

.mc_effective_rate(
  i,
  i_type = c("effective", "nominal_interest", "nominal_discount", "force"),
  m = 1,
  rate = NULL,
  interest_type = NULL
)

Arguments

i

Numeric scalar. Interest-rate input.

i_type

Character string. Interest-rate convention. One of "effective", "nominal_interest", "nominal_discount", or "force". The legacy value "nominal" is accepted internally and treated as "nominal_interest".

m

Numeric scalar. Number of interest conversion periods per year for nominal annual rates. Default is 1.

rate

Deprecated internal alias for i.

interest_type

Deprecated internal alias for i_type.

Details

This helper follows the compact actuarial notation used throughout tidyactuarial: i is the interest-rate input, i_type is the interest-rate type, and m is the conversion frequency for nominal rates.

The argument m is used only to convert nominal annual rates into equivalent annual effective rates. It does not represent annuity payment frequency.

Transitional compatibility is intentionally retained for older internal Monte Carlo calls using ⁠rate =⁠ and ⁠interest_type =⁠.

Value

Numeric scalar with the equivalent annual effective interest rate.


Internal helper: normalize Monte Carlo interest-rate type

Description

Converts legacy Monte Carlo labels to the package-wide actuarial labels.

Usage

.mc_normalize_i_type(i_type)

Arguments

i_type

Character scalar. Interest-rate type.

Value

Character scalar.


Internal helper: safe payment times

Description

Creates a sequence of payment times. If the upper bound is smaller than the lower bound, it returns numeric(0).

Usage

.mc_payment_times(from, to, by = 1)

Arguments

from

Numeric scalar. First payment time.

to

Numeric scalar. Last payment time.

by

Numeric scalar. Step between payment times. Default is 1.

Value

Numeric vector.


Internal helper: create quantile column names

Description

Internal helper: create quantile column names

Usage

.mc_quantile_names(probs)

Arguments

probs

Numeric vector of probabilities.

Value

Character vector with syntactically valid quantile names.


Internal helper: benefit payment information for reserve calculations

Description

Determines whether a benefit is paid and at what time for each simulated scenario.

Usage

.mc_reserve_benefit_info(Kx, Tx, death_time, type, n, h, timing)

Arguments

Kx

Numeric vector of simulated curtate future lifetimes.

Tx

Numeric vector of simulated complete future lifetimes.

death_time

Numeric vector of death benefit payment times.

type

Character string specifying the insurance type.

n

Numeric scalar or NULL.

h

Numeric scalar.

timing

Character string. Either "end_of_year" or "moment_of_death".

Value

A list with benefit_indicator and benefit_time.


Internal helper: resolve inputs for single-life Monte Carlo functions

Description

Internal helper: resolve inputs for single-life Monte Carlo functions

Usage

.resolve_life_mc_inputs(lt, x = NULL, i = NULL, i_type = NULL, m = NULL)

Arguments

lt

A life table or tidyactuarial life contract.

x

Integer age.

i

Interest-rate input.

i_type

Interest-rate type.

m

Nominal conversion frequency.

Value

A list with resolved arguments.


Internal helper: simulate curtate future lifetimes from lx

Description

Internal helper: simulate curtate future lifetimes from lx

Usage

.simulate_lifetime_inverse_lx(lt, x, n, n_sim, seed = NULL)

Arguments

lt

Life table with columns x and lx.

x

Integer age.

n

Term in years. Use Inf for whole life.

n_sim

Number of simulations.

seed

Optional seed.

Value

A tibble with simulated curtate lifetimes.


Internal helper: validate common Monte Carlo arguments

Description

Internal helper: validate common Monte Carlo arguments

Usage

.validate_mc_common(x, i, m, n_sim, seed, n)

Arguments

x

Integer age.

i

Interest-rate input.

m

Nominal conversion frequency.

n_sim

Number of simulations.

seed

Optional seed.

n

Term in years.

Value

Invisibly returns TRUE.


Level annuity factor a-angle-n

Description

Computes the actuarial present value factor for a level annuity using compact actuarial notation.

Usage

a_angle(
  n = NULL,
  k = 1L,
  i,
  i_type = "effective",
  m = 1L,
  h = 0,
  timing = "immediate",
  perpetuity = FALSE,
  payment = 1,
  tidy = FALSE
)

Arguments

n

Numeric vector of payment durations in years. Ignored when perpetuity = TRUE. If perpetuity = FALSE, each value must be positive and finite.

k

Positive integer vector giving the number of discrete payments per year. Ignored for continuous annuities.

i

Numeric vector of interest-rate values.

i_type

Character vector indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer vector giving the conversion frequency for nominal rates. Ignored for "effective" and "force".

h

Numeric vector of deferment times in years. Must be greater than or equal to 0.

timing

Character vector. One of "immediate", "due", or "continuous".

perpetuity

Logical vector. If TRUE, computes the perpetuity factor.

payment

Numeric vector of level payment amounts. Used only when tidy = TRUE to report the corresponding present value. The annuity factor itself is always computed for unit payments.

tidy

Logical scalar. If FALSE, returns a numeric annuity factor. If TRUE, returns a tibble with intermediate calculations.

Details

Supported timing conventions:

For discrete annuities, k is the number of payments per year, so payments are made every 1/k year. The function returns the annuity factor, assuming a unit payment at each payment time.

Deferment is supported through h. For discrete annuities, the deferment must align with the payment grid, that is, hk must be an integer.

If perpetuity = TRUE, the infinite-term annuity factor is returned.

This function follows the compact actuarial notation used throughout tidyactuarial:

The function first converts the supplied rate to the equivalent annual effective interest rate using standardize_interest.

For finite discrete annuities:

a_{\overline{n|}} = \frac{1 - v^n}{i}

For due annuities:

\ddot{a}_{\overline{n|}} = (1+i)a_{\overline{n|}}

For continuous annuities:

\bar{a}_{\overline{n|}} = \frac{1 - e^{-\delta n}}{\delta}

Input vectors must have length 1 or a common length. Missing values are propagated.

Value

If tidy = FALSE, a numeric vector of annuity factors.

If tidy = TRUE, a tibble with input values, equivalent rates, annuity factors, payment amounts, and present values.

See Also

s_angle, standardize_interest, present_value

Other annuities: annuity_arith(), annuity_geom(), s_angle()

Examples

# Numeric annuity factor
a_angle(n = 10, i = 0.05)

# Nominal interest converted monthly, with monthly payments
a_angle(
  n = 10,
  i = 0.06,
  i_type = "nominal_interest",
  m = 12,
  k = 12
)

# Continuous annuity
a_angle(
  n = 15,
  i = 0.04,
  i_type = "force",
  timing = "continuous"
)

# Tibble output for teaching or auditing
a_angle(
  n = 10,
  i = 0.05,
  payment = 1000,
  tidy = TRUE
)

# Vectorized example
a_angle(
  n = c(5, 10, 20),
  k = c(1, 12, 1),
  i = c(0.05, 0.06, 0.04),
  i_type = c("effective", "nominal_interest", "force"),
  m = c(1, 12, 1),
  h = c(0, 0, 2),
  timing = c("immediate", "immediate", "continuous"),
  perpetuity = c(FALSE, FALSE, FALSE)
)


Amortization schedule with optional prepayment adjustment

Description

Builds an amortization schedule under a fixed annual interest-rate specification, allowing extra principal payments and optional adjustment of either the remaining term or the remaining payment amount.

Usage

amort_schedule(
  principal,
  n,
  i,
  i_type = "effective",
  m = 1L,
  k = 1L,
  timing = c("immediate", "due"),
  payment = NULL,
  extra_principal = NULL,
  adjust = c("none", "term", "payment"),
  tol = 1e-08
)

Arguments

principal

Numeric scalar. Initial outstanding balance.

n

Positive integer. Number of contractual periods.

i

Numeric scalar. Annual interest-rate input.

i_type

Character string indicating the annual interest-rate type: "effective", "nominal_interest", "nominal_discount", or "force".

m

Positive integer. Conversion frequency for nominal annual rates.

k

Positive integer. Number of amortization periods per year.

timing

Character string. One of "immediate" or "due".

payment

Optional numeric scalar. Initial regular payment per period. If NULL, it is computed from the loan data.

extra_principal

Optional extra principal payments. Can be:

  • NULL,

  • a scalar,

  • an unnamed numeric vector of length n,

  • a named numeric vector with names interpreted as period numbers.

adjust

Character string. One of "none", "term", or "payment".

tol

Numeric tolerance for zero-balance detection.

Details

The annual rate is converted internally to an effective rate per schedule period using k.

Adjustment policies after extra principal payments:

This function follows the compact actuarial notation used throughout tidyactuarial: i is the interest rate, i_type is the interest-rate type, m is the conversion frequency for nominal annual rates, and k is the number of amortization periods per year.

For timing = "immediate" (annuity-immediate), interest accrues on the outstanding balance during the period, and the payment is made at the end. For timing = "due" (annuity-due), the payment is made at the start of the period and interest accrues on the balance after the payment.

If the user supplies a custom payment that is smaller than the periodic interest, principal repayment will be negative (negative amortization). This is permitted but the user should be aware.

Value

A tibble with one row per realized period and columns:

period

Period index.

ob_start

Outstanding balance at the start of the period.

interest

Interest charged during the period.

payment

Regular payment in the period.

extra_principal

Extra principal paid in the period.

principal

Principal repaid through the regular payment.

total_principal

Total principal repaid in the period.

cashflow

Total payment made in the period.

ob_end

Outstanding balance at the end of the period.

i_effective_annual

Equivalent annual effective rate.

i_effective_period

Equivalent effective rate per schedule period.

k

Schedule frequency.

timing

Payment timing convention.

adjust

Adjustment rule used.

See Also

a_angle, present_value, pv_flow, standardize_interest

Other amortization: sinking_fund_schedule()

Examples

amort_schedule(
  principal = 100000,
  n = 12,
  i = 0.12,
  i_type = "nominal_interest",
  m = 12,
  k = 12
)

amort_schedule(
  principal = 100000,
  n = 24,
  i = 0.12,
  i_type = "nominal_interest",
  m = 12,
  k = 12,
  extra_principal = c("6" = 5000, "12" = 3000),
  adjust = "term"
)

amort_schedule(
  principal = 100000,
  n = 24,
  i = 0.12,
  i_type = "nominal_interest",
  m = 12,
  k = 12,
  extra_principal = c("6" = 5000, "12" = 3000),
  adjust = "payment"
)


Arithmetic annuity factor

Description

Computes the actuarial present value or accumulated value factor for an arithmetic annuity, using compact actuarial notation.

Usage

annuity_arith(
  n,
  k = 1L,
  i,
  i_type = "effective",
  m = 1L,
  h = 0,
  timing = "immediate",
  pattern = "increasing",
  P1 = 1,
  g = 1,
  valuation = c("present", "accumulated"),
  tidy = FALSE
)

Arguments

n

Numeric vector of payment durations in years. Each value must be positive and finite.

k

Positive integer vector giving the number of payments per year.

i

Numeric vector of interest-rate values.

i_type

Character vector indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer vector giving the conversion frequency for nominal rates. Ignored for "effective" and "force".

h

Numeric vector of deferment times in years. Must be greater than or equal to 0.

timing

Character vector. One of "immediate" or "due".

pattern

Character vector. One of "increasing", "decreasing", or "custom".

P1

Numeric vector. First payment for pattern = "custom". Ignored for "increasing" and "decreasing".

g

Numeric vector. Arithmetic increment for pattern = "custom". Ignored for "increasing" and "decreasing".

valuation

Character string. Use "present" for present value or "accumulated" for accumulated value at the end of the term.

tidy

Logical scalar. If FALSE, returns a numeric factor. If TRUE, returns a tibble with intermediate quantities.

Details

This function covers increasing, decreasing, and custom arithmetic payment patterns. It replaces the more specific increasing and decreasing annuity functions.

Supported payment patterns:

Supported timing conventions:

This function follows the compact actuarial notation used throughout tidyactuarial: n is the term, k is the payment frequency, i is the interest-rate input, i_type is the interest-rate type, m is the conversion frequency for nominal rates, and h is the deferment period.

The function first converts the supplied rate to the equivalent annual effective interest rate using standardize_interest.

For each scenario, the total number of payments is

N = n k.

The present value is computed by summing the discounted payment stream. The accumulated value is computed at the end of the annuity term. Under this convention, h affects the present value factor but not the accumulated value factor.

Value

If tidy = FALSE, a numeric vector of arithmetic annuity factors.

If tidy = TRUE, a tibble with input values, equivalent rates, period quantities, and both present and accumulated value factors.

See Also

a_angle, s_angle, standardize_interest

Other annuities: a_angle(), annuity_geom(), s_angle()

Examples

# Increasing arithmetic annuity
annuity_arith(n = 10, i = 0.05, pattern = "increasing")

# Decreasing arithmetic annuity
annuity_arith(n = 10, i = 0.05, pattern = "decreasing")

# Custom arithmetic annuity
annuity_arith(
  n = 10,
  i = 0.05,
  pattern = "custom",
  P1 = 100,
  g = 25
)

# Accumulated value factor
annuity_arith(
  n = 10,
  i = 0.05,
  pattern = "increasing",
  valuation = "accumulated"
)

# Tibble output
annuity_arith(
  n = 10,
  i = 0.05,
  pattern = "decreasing",
  tidy = TRUE
)


Geometric annuity factor

Description

Computes the actuarial present value or accumulated value factor for a geometric annuity, using compact actuarial notation.

Usage

annuity_geom(
  n = NULL,
  k = 1L,
  i,
  i_type = "effective",
  m = 1L,
  g = 0,
  g_type = "effective",
  g_m = 1L,
  h = 0,
  timing = "immediate",
  P1 = 1,
  perpetuity = FALSE,
  valuation = c("present", "accumulated"),
  tidy = FALSE
)

Arguments

n

Numeric vector of payment durations in years. Ignored only when perpetuity = TRUE and valuation = "present". Otherwise, each value must be positive and finite.

k

Positive integer vector giving the number of payments per year.

i

Numeric vector of interest-rate values.

i_type

Character vector indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer vector giving the conversion frequency for nominal interest-rate inputs. Ignored for "effective" and "force".

g

Numeric vector of annual growth-rate values for the payments.

g_type

Character vector indicating the growth-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

g_m

Positive integer vector giving the conversion frequency for nominal growth-rate inputs. Ignored for "effective" and "force".

h

Numeric vector of deferment times in years. Must be greater than or equal to 0. For present values, the deferment discounts the payment block. For accumulated values, it is recorded but does not change the factor under the adopted terminal-horizon convention.

timing

Character vector. One of "immediate" or "due".

P1

Numeric vector giving the first payment of the geometric sequence.

perpetuity

Logical vector. If TRUE, computes the geometric perpetuity present value. Perpetuities are not supported for valuation = "accumulated".

valuation

Character string. Use "present" for present value or "accumulated" for accumulated value at the end of the term.

tidy

Logical scalar. If FALSE, returns a numeric factor. If TRUE, returns a tibble with intermediate quantities.

Details

This function covers finite geometric annuities and geometric perpetuities.

Supported timing conventions:

This function follows the compact actuarial notation used throughout tidyactuarial: n is the term, k is the payment frequency, i is the interest-rate input, i_type is the interest-rate type, m is the conversion frequency for nominal interest rates, g is the growth-rate input, g_type is the growth-rate type, g_m is the conversion frequency for nominal growth rates, h is the deferment period, and P1 is the first payment.

Let i_p be the effective interest rate per payment period, g_p the effective growth rate per payment period, and v_p = (1+i_p)^{-1}.

For a finite geometric annuity-immediate with N payment periods:

ga_N = \sum_{r=1}^{N}\frac{(1+g_p)^{r-1}}{(1+i_p)^r}

If i_p \neq g_p, then

ga_N = \frac{1-\left(\frac{1+g_p}{1+i_p}\right)^N}{i_p-g_p}.

The accumulated value factor is computed at the standard terminal horizon:

gs_N = \sum_{r=1}^{N}(1+g_p)^{r-1}(1+i_p)^{N-r}.

For annuities-due, the corresponding immediate factor is multiplied by 1+i_p.

Value

If tidy = FALSE, a numeric vector.

If tidy = TRUE, a tibble with input values, equivalent rates, period quantities, and both present and accumulated value factors.

See Also

a_angle, s_angle, annuity_arith, standardize_interest

Other annuities: a_angle(), annuity_arith(), s_angle()

Examples

# Present value of a geometric annuity
annuity_geom(
  n = 10,
  i = 0.05,
  g = 0.02,
  valuation = "present"
)

# Accumulated value of a geometric annuity
annuity_geom(
  n = 10,
  i = 0.05,
  g = 0.02,
  valuation = "accumulated"
)

# Nominal interest and nominal growth
annuity_geom(
  n = 10,
  k = 12,
  i = 0.06,
  i_type = "nominal_interest",
  m = 12,
  g = 0.024,
  g_type = "nominal_interest",
  g_m = 12
)

# Tibble output
annuity_geom(
  n = 10,
  i = 0.05,
  g = 0.02,
  tidy = TRUE
)


Actuarial present value of a multi-life annuity (up to 3 independent lives)

Description

Computes the APV of a discrete annuity contingent on multiple independent lives using compact actuarial notation.

Usage

annuity_multi(
  lt,
  ages,
  i,
  i_type = "effective",
  m = 1L,
  n = NULL,
  h = 0L,
  k = 1L,
  annuity = c("cohort", "reversionary"),
  cohort = c("first", "last"),
  alpha = NULL,
  timing = c("immediate", "due"),
  woolhouse = c("none", "first", "second")
)

Arguments

lt

A life table object (data frame or tibble) with column x and at least one of lx, px, or qx. For different mortality assumptions by life, pass a list of life tables of the same length as ages, for example list(lt_male, lt_female).

ages

Integer vector of actuarial ages for the lives at issue. Must have length 1, 2, or 3.

i

Numeric scalar. Annual interest-rate input.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal rates. Ignored for i_type = "effective" and i_type = "force". In tidyactuarial, m is reserved for interest conversion frequency, not deferment.

n

Integer term in years after deferment. If NULL, runs to the end of the available table horizon, conservatively based on the smallest omega across life tables.

h

Integer deferment period in years.

k

Integer payments per year. If k > 1, Woolhouse approximations may be applied.

annuity

Type of annuity logic: "cohort" uses the status defined in cohort; "reversionary" uses the \alpha fractional reduction.

cohort

Survival status: "first" for joint-life, paying while all lives are alive, or "last" for last-survivor, paying while at least one life remains alive. Used only when annuity = "cohort".

alpha

Reversionary fraction, typically 0 \le \alpha \le 1. Used only when annuity = "reversionary". Note: alpha = 0 matches joint-life; alpha = 1 matches last-survivor.

timing

"immediate" or "due".

woolhouse

"none", "first", or "second".

Details

This implementation supports up to three lives, which covers the most common practical multi-life arrangements.

Supports status-based annuities (joint-life / last-survivor) and a joint-and-survivor style annuity ("reversionary") that pays 1 while all lives are alive and then pays a fraction \alpha while at least one life remains alive.

This function follows the compact actuarial notation used throughout tidyactuarial: i is the interest rate, i_type is the interest-rate type, m is the conversion frequency for nominal rates, n is the term, h is the deferment period, and k is the payment frequency.

Under the assumption of independent future lifetimes, the survival probability for the status is calculated as:

For annuity = "reversionary", the APV is a weighted combination of the two statuses:

APV = APV(\text{joint-life}) + \alpha [APV(\text{last-survivor}) - APV(\text{joint-life})].

Value

A single numeric value representing the APV.

See Also

annuity_x for single-life annuities, t_px for survival probabilities.

Other life-contingencies: annuity_x(), annuity_xy(), insurance_variable_k(), insurance_x(), insurance_xy(), life_contract(), premium_gross(), premium_x(), premium_xy(), reserve_x(), reserve_xy(), simulate_annuity_x(), simulate_insurance_x()

Examples

lt <- data.frame(
  x = 60:90,
  lx = seq(100000, 0, length.out = 31)
)

annuity_multi(
  lt = lt,
  ages = c(60, 62),
  i = 0.05,
  n = 5,
  cohort = "first",
  timing = "due"
)

annuity_multi(
  lt = lt,
  ages = c(60, 62),
  i = 0.05,
  n = 5,
  cohort = "last",
  timing = "due"
)


Actuarial present value of a life annuity

Description

Computes the actuarial present value of a discrete life annuity using compact actuarial notation.

Usage

annuity_x(
  lt,
  x,
  i,
  i_type = "effective",
  m = 1L,
  n = NULL,
  h = 0L,
  k = 1L,
  timing = c("immediate", "due"),
  woolhouse = c("none", "first", "second"),
  frac = NULL,
  tidy = FALSE
)

Arguments

lt

A life table as produced by lifetable, or a tidyact_life_contract object created by life_contract. A life table must contain columns x and lx.

x

Integer actuarial age. Optional when lt is a single-life tidyact_life_contract.

i

Numeric scalar. Annual interest-rate input. Optional when lt is a single-life tidyact_life_contract.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal interest rates. Ignored for i_type = "effective" and i_type = "force". In tidyactuarial, m is reserved for interest conversion frequency, not deferment.

n

Integer term in years. Use NULL or Inf for a whole-life annuity.

h

Integer deferment period in years.

k

Positive integer. Number of annuity payments per year. For example, use k = 12 for monthly payments.

timing

Character string. Either "immediate" for payments at the end of each payment period or "due" for payments at the beginning of each payment period.

woolhouse

Character string. For k > 1, use "none" for exact fractional-age computation, "first" for the first-order Woolhouse approximation, or "second" for the second-order Woolhouse approximation.

frac

Character string. Fractional-age assumption used when k > 1 and woolhouse = "none". Allowed values are "UDD", "CF", "CML", and "Balducci". If NULL, the frac attribute of lt is used when available; otherwise "UDD" is used.

tidy

Logical. If FALSE, returns a numeric APV. If TRUE, returns a one-row tibble with intermediate quantities.

Details

The function supports:

This function follows the compact actuarial notation used throughout tidyactuarial:

For annual annuities-due,

\ddot{a}_{x:\overline{n}|} = \sum_{j=0}^{n-1} v^j\,{}_jp_x.

For annual annuities-immediate,

a_{x:\overline{n}|} = \sum_{j=1}^{n} v^j\,{}_jp_x.

Deferment is handled through

v^h\,{}_hp_x,

where h is the deferment period.

For k-thly payments with woolhouse = "none", fractional survival is computed under the selected fractional-age assumption.

Value

If tidy = FALSE, a numeric scalar containing the actuarial present value.

If tidy = TRUE, a one-row tibble with the main input values, equivalent interest rate, deferment factor, pure endowment factor, and APV.

See Also

insurance_x, premium_x, reserve_x, t_px, t_Ex

Other life-contingencies: annuity_multi(), annuity_xy(), insurance_variable_k(), insurance_x(), insurance_xy(), life_contract(), premium_gross(), premium_x(), premium_xy(), reserve_x(), reserve_xy(), simulate_annuity_x(), simulate_insurance_x()

Examples

lt <- data.frame(
  x  = 60:65,
  lx = c(100000, 99000, 97500, 95500, 93000, 90000)
)

# Annual annuity-immediate
annuity_x(
  lt = lt,
  x = 60,
  i = 0.06,
  timing = "immediate"
)

# Annual annuity-due
annuity_x(
  lt = lt,
  x = 60,
  i = 0.06,
  timing = "due"
)

# Temporary annuity
annuity_x(
  lt = lt,
  x = 60,
  i = 0.06,
  n = 3,
  timing = "due"
)

# Deferred annuity
annuity_x(
  lt = lt,
  x = 60,
  i = 0.06,
  h = 2,
  timing = "due"
)

# Tidy output
annuity_x(
  lt = lt,
  x = 60,
  i = 0.06,
  n = 3,
  timing = "due",
  tidy = TRUE
)

# Pipe workflow with a life contract
life_contract(lt = lt, lives = "single", x = 60, i = 0.06) |>
  annuity_x(n = 3, timing = "due")


Actuarial present value of a two-life annuity

Description

Computes the actuarial present value of a discrete annuity contingent on two independent lives, using compact actuarial notation.

Usage

annuity_xy(
  lt,
  x = NULL,
  y = NULL,
  i = NULL,
  i_type = "effective",
  m = 1L,
  status = c("joint", "last"),
  benefit = NULL,
  n = Inf,
  h = 0L,
  k = 1L,
  timing = c("immediate", "due"),
  woolhouse = c("none", "first", "second"),
  frac,
  tidy = FALSE,
  ...
)

Arguments

lt

A life table, a list of two life tables list(lt_x, lt_y), or a tidyact_life_contract object created by life_contract. Each life table must contain columns x and lx.

x

Integer actuarial age for the first life.

y

Integer actuarial age for the second life.

i

Numeric scalar. Annual interest-rate input.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal rates. Ignored for i_type = "effective" and i_type = "force".

status

Character string. Use "joint" for joint-life payments while both lives are alive, or "last" for last-survivor payments while at least one life is alive. Ignored when benefit is supplied.

benefit

Optional list with numeric scalar weights both, x_only, and y_only. These weights define the payment rate according to the survival state of the two lives.

n

Term in years. Use Inf for the maximum horizon allowed by the life tables.

h

Nonnegative integer deferment period in years.

k

Positive integer. Number of payments per year.

timing

Payment timing. Use "immediate" or "due".

woolhouse

Woolhouse approximation for k > 1: "none", "first", or "second".

frac

Fractional-age assumption for exact k-thly computation: "UDD", "CF", "CML", or "Balducci".

tidy

Logical scalar. If FALSE, returns a numeric APV. If TRUE, returns a one-row tibble.

...

Transitional compatibility for older calls using mortality_table, age_x, age_y, rate, rate_type, cohort, term_years, deferment_years, payments_per_year, and output.

Details

The function supports joint-life, last-survivor, and state-based reversionary-style payments. The life table input may be either one common table for both lives or a list of two life tables, one for each life.

This function follows the compact actuarial notation used throughout tidyactuarial: lt is the life table input, x and y are the two actuarial ages, i is the interest-rate input, i_type is the interest-rate type, m is the conversion frequency for nominal rates, n is the term, h is the deferment period, and k is the payment frequency.

The function assumes independent future lifetimes. For state-based benefits, the expected payment at time t is

b_{\text{both}}\,{}_tp_x{}_tp_y + b_{x\text{ only}}\,{}_tp_x(1-{}_tp_y) + b_{y\text{ only}}\,{}_tp_y(1-{}_tp_x).

When benefit = NULL, status = "joint" uses benefit = list(both = 1, x_only = 0, y_only = 0), while status = "last" uses benefit = list(both = 1, x_only = 1, y_only = 1).

For k-thly payments, the function values a payment rate of 1 per year, so each payment has size 1/k.

Value

If tidy = FALSE, a numeric scalar.

If tidy = TRUE, a one-row tibble with input values, standardized interest rate, term used, and APV.

See Also

annuity_x, insurance_xy, premium_xy, t_pxy, t_px

Other life-contingencies: annuity_multi(), annuity_x(), insurance_variable_k(), insurance_x(), insurance_xy(), life_contract(), premium_gross(), premium_x(), premium_xy(), reserve_x(), reserve_xy(), simulate_annuity_x(), simulate_insurance_x()

Examples

lt <- data.frame(
  x  = 60:66,
  lx = c(100000, 99000, 97500, 95500, 93000, 90000, 86000)
)

# Joint-life annuity-due
annuity_xy(
  lt = lt,
  x = 60,
  y = 62,
  i = 0.05,
  status = "joint",
  timing = "due"
)

# Last-survivor annuity-due
annuity_xy(
  lt = lt,
  x = 60,
  y = 62,
  i = 0.05,
  status = "last",
  timing = "due"
)

# Different life tables for the two lives
lt_m <- lt
lt_f <- data.frame(
  x  = 60:66,
  lx = c(100000, 99200, 98100, 96500, 94500, 92000, 89000)
)

annuity_xy(
  lt = list(lt_m, lt_f),
  x = 60,
  y = 62,
  i = 0.05,
  status = "joint",
  timing = "due"
)

# State-based reversionary-style payments
annuity_xy(
  lt = list(lt_m, lt_f),
  x = 60,
  y = 62,
  i = 0.05,
  benefit = list(both = 0, x_only = 1, y_only = 0),
  timing = "due"
)


Actuarial present value of a payment stream under mortality

Description

Computes the actuarial present value (APV) of a cash-flow stream contingent on survival. The life table is supplied as the first argument (pipe-friendly). Payments may be specified by numeric times or by calendar dates.

Usage

apv_life_flow(
  lt,
  ages,
  t = NULL,
  date = NULL,
  date0 = NULL,
  cf,
  i,
  i_type = "effective",
  m = 1L,
  status = c("single", "first", "last", "reversionary"),
  alpha = NULL,
  plot = FALSE
)

Arguments

lt

A life table data frame with column x and at least one of lx, px, or qx.

ages

Integer vector of actuarial ages. Use length 1 for a single life and length 2 or more for multiple lives.

t

Numeric vector of payment times in years, measured from time 0. Provide either t or date.

date

Optional vector of Date payment dates. Provide either t or date.

date0

Optional Date used as time 0 when date is provided. If missing, the minimum of date is used.

cf

Numeric vector of cash flows. Must have the same length as t or date.

i

Numeric scalar. Annual interest-rate input.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal rates. Ignored for i_type = "effective" and i_type = "force".

status

Survival status: "single", "first", "last", or "reversionary".

alpha

Reversionary fraction for status = "reversionary". While all lives are alive, full benefit is paid; while at least one but not all are alive, alpha times the benefit is paid.

plot

Logical. If TRUE, attaches a ggplot object in attr(result, "plot") showing cumulative APV over time.

Details

Multiple lives are supported under an independence assumption, through common statuses: single-life, first-death (all alive), last-survivor (any alive), and reversionary (joint-and-survivor) with fraction alpha.

This function follows the compact actuarial notation used throughout tidyactuarial: t denotes payment time, cf denotes cash flows, i denotes the interest rate, i_type denotes the interest-rate type, and m denotes the conversion frequency for nominal rates.

For each payment at time t, the APV contribution is

PV(t) = C(t) v^t P(\text{status alive at } t).

The survival probability depends on the status:

Fractional-year survival is computed under UDD within each year.

Value

A tibble with one row per payment and columns: t, cf, surv_prob, discount, expected_cf, pv, and pv_cum. If date was provided, a date column is included. The total APV is stored as attr(result, "apv").

Examples

lt <- data.frame(
  x = 40:100,
  lx = seq(100000, 0, length.out = 61)
)

apv_life_flow(
  lt = lt,
  ages = 40,
  t = c(1, 2, 3),
  cf = c(100, 100, 100),
  i = 0.05
)

apv_life_flow(
  lt = lt,
  ages = c(60, 58),
  t = c(1, 2, 3),
  cf = c(100, 100, 100),
  i = 0.05,
  status = "first"
)


Book value of a level coupon bond at a coupon date

Description

Computes the book value of a level coupon bond at one or more coupon dates, under a specified yield basis, using compact actuarial notation.

Usage

bond_book_value(
  face,
  c,
  n,
  t,
  k = 1L,
  y_effective_per_period = NULL,
  y = NULL,
  y_type = "effective",
  y_m = 1L,
  R = NULL,
  tol = 1e-10,
  check = TRUE,
  tidy = FALSE
)

Arguments

face

Numeric scalar. Face or par value of the bond.

c

Numeric scalar. Annual coupon rate as a proportion.

n

Numeric scalar. Final maturity in years.

t

Numeric vector. Valuation time(s) in years, measured from issue. Each value must lie between 0 and n and must align with coupon dates.

k

Positive integer. Number of coupon payments per year.

y_effective_per_period

Optional numeric scalar. Effective yield per coupon period. If supplied, it is used directly.

y

Optional numeric scalar. Annual yield rate value.

y_type

Character string indicating the annual yield type: "effective", "nominal_interest", "nominal_discount", or "force".

y_m

Positive integer. Conversion frequency for nominal annual yields.

R

Numeric scalar. Redemption value at final maturity. If NULL, defaults to face.

tol

Numeric scalar. Tolerance used in alignment checks.

check

Logical scalar. If TRUE, performs input validation.

tidy

Logical scalar. If FALSE, returns a numeric vector of book values. If TRUE, returns a tibble with intermediate quantities.

Details

The book value is interpreted prospectively: at a valuation time that lies on the coupon grid, it equals the present value at that time of all remaining future coupons and the final redemption amount, discounted at the bond's yield basis.

This function interprets t as a time immediately after any coupon due at that date has been paid. Therefore:

Assumptions:

Yield input conventions:

This function follows the compact bond notation used in tidyactuarial: P is price, face is the face value, c is the annual coupon rate, n is maturity, k is coupon frequency, y is the yield, R is redemption value, and t is valuation time.

Let the valuation time correspond to coupon period s, with total maturity period count N. If the remaining future cash flows are C_{s+1}, \dots, C_N, and i_p is the effective yield per coupon period, then the book value at time s is

BV_s = \sum_{r=s+1}^{N} C_r (1+i_p)^{-(r-s)}.

This is the prospective book value on the bond's yield basis.

Value

If tidy = FALSE, a numeric vector of book values, one for each t.

If tidy = TRUE, a tibble with valuation times, valuation periods, book values, yield information, and bond inputs.

See Also

bond_price, bond_cash_flows, bond_duration, bond_convexity

Other bonds: bond_callable_price(), bond_convexity(), bond_duration(), bond_price(), bond_ytm(), portfolio_convexity(), portfolio_duration()

Examples

# Book value at time 0 equals price
bond_book_value(
  face = 100,
  c = 0.08,
  n = 5,
  t = 0,
  k = 2,
  y = 0.06,
  y_type = "effective"
)

# Book value at several coupon dates
bond_book_value(
  face = 100,
  c = 0.08,
  n = 5,
  t = c(0, 1, 2, 3, 4, 5),
  k = 1,
  y = 0.06,
  y_type = "effective"
)

# Tidy output
bond_book_value(
  face = 100,
  c = 0.08,
  n = 5,
  t = c(0, 1, 2, 3, 4, 5),
  k = 1,
  y = 0.06,
  y_type = "effective",
  tidy = TRUE
)

# Yield given directly per coupon period
bond_book_value(
  face = 1000,
  c = 0.05,
  n = 10,
  t = c(0, 2, 4, 6),
  k = 2,
  y_effective_per_period = 0.03
)


Price of a callable bond at a target minimum yield

Description

Computes the maximum price an investor should pay for a callable bond in order to guarantee a specified minimum yield, using compact actuarial notation.

Usage

bond_callable_price(
  face,
  c,
  n,
  k = 1L,
  call_t,
  call_R,
  y_effective_per_period = NULL,
  y = NULL,
  y_type = "effective",
  y_m = 1L,
  R = NULL,
  tol = 1e-10,
  check = TRUE,
  tidy = FALSE
)

Arguments

face

Numeric scalar. Face or par value of the bond.

c

Numeric scalar. Annual coupon rate as a proportion.

n

Numeric scalar. Final maturity in years. Must be strictly positive.

k

Positive integer. Number of coupon payments per year.

call_t

Numeric vector of callable times in years. Each value must be strictly between 0 and n, and must align with coupon dates.

call_R

Numeric vector of call prices corresponding to call_t.

y_effective_per_period

Optional numeric scalar. Effective yield per coupon period. If supplied, it is used directly.

y

Optional numeric scalar. Annual yield rate value.

y_type

Character string indicating the annual yield type: "effective", "nominal_interest", "nominal_discount", or "force".

y_m

Positive integer. Conversion frequency for nominal annual yields.

R

Numeric scalar. Redemption value at final maturity. If NULL, defaults to face.

tol

Numeric scalar. Tolerance used in alignment checks.

check

Logical scalar. If TRUE, performs input validation.

tidy

Logical scalar. If FALSE, returns the worst-case callable-bond price. If TRUE, returns a tibble with all redemption scenarios.

Details

The bond is evaluated under each possible redemption scenario:

For each scenario, the bond price is computed using the target yield. The callable-bond price returned by this function is the smallest of those scenario prices, that is, the maximum price consistent with the target yield under the least favorable redemption scenario for the investor.

This follows the standard actuarial/financial interpretation used in introductory fixed-income mathematics: when a bond is callable at the issuer's option, the investor must protect against the redemption scenario that is least favorable to the investor at the required yield.

Assumptions:

Yield input conventions:

This function follows the compact bond notation used in tidyactuarial: face is the face value, c is the annual coupon rate, n is maturity, k is coupon frequency, y is the target yield, R is the final redemption value, call_t is the vector of call times, and call_R is the vector of call prices.

Let the callable bond have possible redemption scenarios indexed by j = 1, \dots, J, where each scenario corresponds either to a call date or to final maturity. For scenario j, let P_j(y) denote the bond price computed at the target yield y assuming redemption occurs at that scenario time and value.

Then this function returns

\min_j P_j(y)

when tidy = FALSE.

This is the maximum price an investor can pay while still guaranteeing at least the target yield under the least favorable redemption scenario.

Value

If tidy = FALSE, a numeric scalar: the worst-case callable-bond price consistent with the target yield.

If tidy = TRUE, a tibble with one row per redemption scenario, including scenario prices and the worst-case indicator.

See Also

bond_price, bond_cash_flows, bond_book_value, bond_ytm

Other bonds: bond_book_value(), bond_convexity(), bond_duration(), bond_price(), bond_ytm(), portfolio_convexity(), portfolio_duration()

Examples

# Callable bond with two possible call dates
bond_callable_price(
  face = 100,
  c = 0.08,
  n = 10,
  k = 2,
  call_t = c(5, 7),
  call_R = c(105, 102),
  y = 0.06,
  y_type = "effective"
)

# Tidy output with all redemption scenarios
bond_callable_price(
  face = 100,
  c = 0.08,
  n = 10,
  k = 2,
  call_t = c(5, 7),
  call_R = c(105, 102),
  y = 0.06,
  y_type = "effective",
  tidy = TRUE
)

# Target yield given directly per coupon period
bond_callable_price(
  face = 1000,
  c = 0.05,
  n = 12,
  k = 2,
  call_t = c(4, 8),
  call_R = c(1030, 1015),
  y_effective_per_period = 0.028
)


Cash flow structure of a level coupon bond

Description

Builds the cash-flow schedule of a level coupon bond with constant coupon rate and a single redemption payment at maturity, using compact actuarial notation.

Usage

bond_cash_flows(face, c, n, k = 1L, R = NULL, tol = 1e-10, check = TRUE)

Arguments

face

Numeric scalar. Face value of the bond.

c

Numeric scalar. Annual coupon rate.

n

Numeric scalar. Years to maturity.

k

Positive integer. Number of coupon payments per year.

R

Numeric scalar. Redemption value. If NULL, it is set equal to face.

tol

Numeric scalar. Tolerance.

check

Logical scalar. Input validation.

Details

This function follows the compact bond notation used in tidyactuarial: face is the face value, c is the annual coupon rate, n is the term to maturity, k is the number of coupon payments per year, and R is the redemption value.

Stub periods are not supported; therefore, n * k must be an integer.

Value

A tibble with the bond cash-flow schedule. The main actuarial columns are t for payment time and cf for cash flow.

Examples

bond_cash_flows(
  face = 1000,
  c = 0.05,
  n = 10,
  k = 2,
  R = 1000
)


Discrete convexity of a level coupon bond under a flat yield

Description

Computes discrete convexity measures for a level coupon bond valued under a flat yield-to-maturity assumption, using compact actuarial notation.

Usage

bond_convexity(
  face,
  c,
  n,
  k = 1L,
  y_effective_per_period = NULL,
  y = NULL,
  y_type = "effective",
  y_m = 1L,
  R = NULL,
  tol = 1e-10,
  check = TRUE
)

Arguments

face

Numeric scalar. Face value of the bond.

c

Numeric scalar. Annual coupon rate as a proportion.

n

Numeric scalar. Time to maturity in years.

k

Positive integer. Number of coupon payments per year.

y_effective_per_period

Optional numeric scalar. Effective yield per coupon period.

y

Optional numeric scalar. Annual yield rate value.

y_type

Character string indicating the annual yield type: "effective", "nominal_interest", "nominal_discount", or "force".

y_m

Positive integer. Conversion frequency for nominal annual yields.

R

Numeric scalar. Redemption value at maturity. If NULL, defaults to face.

tol

Numeric scalar. Tolerance used to check maturity alignment.

check

Logical scalar. If TRUE, performs input validation.

Details

Assumptions:

Yield input conventions:

This function follows the compact bond notation used in tidyactuarial: face is the face value, c is the annual coupon rate, n is the time to maturity, k is the coupon frequency, y is the annual yield input, and R is the redemption value.

Let j be the effective yield per coupon period, k the number of coupon payments per year, and let cash flows C_r occur at coupon periods r = 1, \dots, N. With v = 1/(1+j) and P = \sum_r C_r v^r, the discrete convexity in coupon periods is

C_p = \frac{1}{P} \frac{\sum_{r=1}^{N} C_r r(r+1) v^r}{(1+j)^2}.

Discrete convexity in years is C_p / k^2.

This is the second-order sensitivity of the bond price to changes in the yield per period. Together with bond_duration, it is used in the second-order Taylor approximation of price changes.

Value

A one-row tibble with:

price

Dirty price at the given yield.

discrete_convexity_periods

Discrete convexity in coupon periods.

discrete_convexity_years

Discrete convexity in years.

yield_per_period

Effective yield per coupon period.

yield_effective_annual

Annual effective yield.

k

Coupon frequency.

n_periods

Total number of coupon periods.

See Also

bond_duration, bond_price, bond_cash_flows, bond_book_value, bond_ytm

Other bonds: bond_book_value(), bond_callable_price(), bond_duration(), bond_price(), bond_ytm(), portfolio_convexity(), portfolio_duration()

Examples

bond_convexity(
  face = 100,
  c = 0.08,
  n = 5,
  k = 2,
  y = 0.06,
  y_type = "effective"
)

bond_convexity(
  face = 1000,
  c = 0.05,
  n = 10,
  k = 2,
  y_effective_per_period = 0.03
)


Macaulay and modified duration of a level coupon bond under a flat yield

Description

Computes Macaulay duration and modified-duration measures for a level coupon bond valued under a flat yield-to-maturity assumption, using compact actuarial notation.

Usage

bond_duration(
  face,
  c,
  n,
  k = 1L,
  y_effective_per_period = NULL,
  y = NULL,
  y_type = "effective",
  y_m = 1L,
  R = NULL,
  tol = 1e-10,
  check = TRUE
)

Arguments

face

Numeric scalar. Face value of the bond.

c

Numeric scalar. Annual coupon rate as a proportion.

n

Numeric scalar. Time to maturity in years.

k

Positive integer. Number of coupon payments per year.

y_effective_per_period

Optional numeric scalar. Effective yield per coupon period.

y

Optional numeric scalar. Annual yield rate value.

y_type

Character string indicating the annual yield type: "effective", "nominal_interest", "nominal_discount", or "force".

y_m

Positive integer. Conversion frequency for nominal annual yields.

R

Numeric scalar. Redemption value at maturity. If NULL, defaults to face.

tol

Numeric scalar. Tolerance used to check maturity alignment.

check

Logical scalar. If TRUE, performs input validation.

Details

Assumptions:

Yield input conventions:

This function follows the compact bond notation used in tidyactuarial: face is the face value, c is the annual coupon rate, n is the time to maturity, k is the coupon frequency, y is the annual yield input, and R is the redemption value.

Let j be the effective yield per coupon period, k the number of coupon payments per year, and let cash flows C_r occur at coupon periods r = 1, \dots, N. With v = 1/(1+j) and P = \sum_r C_r v^r:

Macaulay duration in coupon periods:

D_p = \frac{\sum_{r=1}^{N} r C_r v^r}{P}.

Macaulay duration in years is D = D_p / k.

Modified duration with respect to j, in coupon periods, is D^*_j = D_p / (1 + j).

Modified duration with respect to the annual effective rate i, in years, is D^*_i = D / (1 + i), where i = (1+j)^k - 1.

Modified duration measures the first-order sensitivity of the bond price to yield changes. Together with bond_convexity, it forms the second-order Taylor approximation of price changes.

Value

A one-row tibble with:

price

Dirty price at the given yield.

macaulay_duration_periods

Macaulay duration in coupon periods.

macaulay_duration_years

Macaulay duration in years.

modified_duration_periods_j

Modified duration with respect to the effective yield per coupon period, expressed in coupon periods.

modified_duration_years_i

Modified duration with respect to the annual effective yield, expressed in years.

yield_per_period

Effective yield per coupon period.

yield_effective_annual

Annual effective yield.

k

Coupon frequency.

n_periods

Total number of coupon periods.

See Also

bond_convexity, bond_price, bond_cash_flows, bond_book_value, bond_ytm

Other bonds: bond_book_value(), bond_callable_price(), bond_convexity(), bond_price(), bond_ytm(), portfolio_convexity(), portfolio_duration()

Examples

bond_duration(
  face = 100,
  c = 0.08,
  n = 5,
  k = 2,
  y = 0.06,
  y_type = "effective"
)

bond_duration(
  face = 1000,
  c = 0.05,
  n = 10,
  k = 2,
  y_effective_per_period = 0.03
)


Price of a level coupon bond from its yield

Description

Computes the dirty price of a level coupon bond at time 0 from its yield, using compact actuarial notation.

Usage

bond_price(
  face,
  c,
  n,
  k = 1L,
  y_effective_per_period = NULL,
  y = NULL,
  y_type = "effective",
  y_m = 1L,
  R = NULL,
  tol = 1e-10,
  check = TRUE
)

Arguments

face

Numeric scalar. Face value of the bond.

c

Numeric scalar. Annual coupon rate as a proportion.

n

Numeric scalar. Time to maturity in years.

k

Positive integer. Number of coupon payments per year.

y_effective_per_period

Optional numeric scalar. Effective yield per coupon period. If supplied, it is used directly.

y

Optional numeric scalar. Annual yield rate value.

y_type

Character string indicating the annual yield type: "effective", "nominal_interest", "nominal_discount", or "force".

y_m

Positive integer. Conversion frequency for nominal annual yields.

R

Numeric scalar. Redemption value at maturity. If NULL, defaults to face.

tol

Numeric scalar. Tolerance used when checking alignment of maturity with coupon periods.

check

Logical scalar. If TRUE, performs basic input validation.

Details

Assumptions:

The yield may be supplied in either of two ways:

If an annual rate specification is supplied, it is first converted to the equivalent annual effective yield and then to the effective yield per coupon period.

This function follows the compact bond notation used in tidyactuarial: face is the face value, c is the annual coupon rate, n is the time to maturity, k is the coupon frequency, y is the annual yield input, and R is the redemption value.

Let j be the effective yield per coupon period, k the number of coupon payments per year, and let N = nk be the total number of coupon periods. With coupon per period C = face \cdot c/k and discount factor v = 1/(1+j), the price is:

P = \sum_{r=1}^{N} C_r v^r,

where the sum runs over all coupon and redemption cash flows indexed by coupon period r.

Value

Numeric scalar: dirty price of the bond at time 0.

See Also

bond_ytm, bond_cash_flows, bond_duration, bond_convexity, bond_book_value, bond_callable_price

Other bonds: bond_book_value(), bond_callable_price(), bond_convexity(), bond_duration(), bond_ytm(), portfolio_convexity(), portfolio_duration()

Examples

# 5-year annual coupon bond, yield given as annual effective
bond_price(
  face = 100,
  c = 0.08,
  n = 5,
  k = 1,
  y = 0.06,
  y_type = "effective"
)

# 10-year semiannual bond, yield given directly per coupon period
bond_price(
  face = 1000,
  c = 0.05,
  n = 10,
  k = 2,
  y_effective_per_period = 0.03
)

# Semiannual coupons, nominal annual yield convertible quarterly
bond_price(
  face = 100,
  c = 0.08,
  n = 5,
  k = 2,
  y = 0.06,
  y_type = "nominal_interest",
  y_m = 4
)


Yield to maturity of a level coupon bond

Description

Computes the yield to maturity (YTM) of a level coupon bond given its observed dirty price at time 0, using compact actuarial notation.

Usage

bond_ytm(
  P,
  face,
  c,
  n,
  k = 1L,
  R = NULL,
  interval = NULL,
  tol = 1e-12,
  maxiter = 1000,
  check = TRUE
)

Arguments

P

Numeric scalar. Observed dirty price of the bond at time 0.

face

Numeric scalar. Face value of the bond.

c

Numeric scalar. Annual coupon rate as a proportion.

n

Numeric scalar. Time to maturity in years. Must be strictly positive.

k

Positive integer. Number of coupon payments per year.

R

Numeric scalar. Redemption value at maturity. If NULL, defaults to face.

interval

Optional numeric vector of length 2 giving a bracket for the effective yield per coupon period.

tol

Numeric scalar. Tolerance passed to uniroot.

maxiter

Positive integer. Maximum number of iterations passed to uniroot.

check

Logical scalar. If TRUE, performs basic input checks.

Details

The YTM is solved first as the effective yield per coupon period and then reported together with common annual equivalents.

Assumptions:

This function follows the compact bond notation used in tidyactuarial: P is the observed dirty price, face is the face value, c is the annual coupon rate, n is the time to maturity, k is the coupon frequency, and R is the redemption value.

The effective yield per coupon period j is the solution to

P = \sum_{r=1}^{N} C_r (1+j)^{-r}.

The root is found numerically using uniroot. If no interval is supplied, the function automatically brackets the root starting from (-0.999999, 0.10) and progressively widens the upper bound until a sign change is detected.

From the per-period yield, the annual equivalents are:

j^{(k)} = k j, \qquad i = (1 + j)^k - 1.

Value

A one-row tibble with columns:

price

Input dirty price.

i_period

Effective yield per coupon period.

j_nominal

Nominal annual yield convertible k times per year (= k * i_period). When k = 2, this is the bond-equivalent yield.

i_effective_annual

Annual effective yield.

k

Coupon frequency.

See Also

bond_price, bond_cash_flows, bond_duration, bond_convexity, bond_callable_price

Other bonds: bond_book_value(), bond_callable_price(), bond_convexity(), bond_duration(), bond_price(), portfolio_convexity(), portfolio_duration()

Examples

bond_ytm(
  P = 100,
  face = 100,
  c = 0.06,
  n = 5,
  k = 1
)

bond_ytm(
  P = 950,
  face = 1000,
  c = 0.05,
  n = 10,
  k = 2
)


Sample bond contracts for fixed-income examples

Description

A small pedagogical dataset containing bond contracts for pricing, yield-to-maturity, duration, and convexity examples.

A small pedagogical dataset containing bond contracts for pricing, yield-to-maturity, duration, and convexity examples.

Usage

bonds_sample

bonds_sample

Format

A tibble with 5 rows and 8 variables:

bond_id

Bond identifier.

face

Face value of the bond.

c

Annual coupon rate.

k

Number of coupon payments per year.

n

Maturity in years.

y

Annual nominal yield rate consistent with coupon frequency.

bond_type

Short bond type label.

P

Theoretical bond price computed from the listed yield rate.

A tibble with 5 rows and 8 variables:

bond_id

Bond identifier.

face

Face value of the bond.

c

Annual coupon rate.

k

Number of coupon payments per year.

n

Maturity in years.

y

Annual nominal yield rate consistent with coupon frequency.

bond_type

Short bond type label.

P

Theoretical bond price computed from the listed yield rate.

Details

This dataset uses the compact bond notation adopted in tidyactuarial: face is the face value, c is the annual coupon rate, k is the coupon frequency, n is the maturity, y is the yield input, and P is the bond price.

This dataset uses the compact bond notation adopted in tidyactuarial: face is the face value, c is the annual coupon rate, k is the coupon frequency, n is the maturity, y is the yield input, and P is the bond price.

Source

Synthetic pedagogical data created for tidyactuarial examples.

Synthetic pedagogical data created for tidyactuarial examples.

Examples

data(bonds_sample)

bonds_sample |>
  dplyr::select(bond_id, face, c, k, n, y, P)

data(bonds_sample)

bonds_sample |>
  dplyr::select(bond_id, face, c, k, n, y, P)


Sample cash flows for interest theory examples

Description

A small pedagogical dataset containing cash-flow scenarios for present value, future value, net present value, internal rate of return, equations of value, and cash-flow diagrams.

A small pedagogical dataset containing cash-flow scenarios for present value, future value, net present value, internal rate of return, equations of value, and cash-flow diagrams.

Usage

cash_flows_sample

cash_flows_sample

Format

A tibble with 19 rows and 5 variables:

scenario_id

Scenario identifier.

t

Payment time.

C

Cash-flow amount. Negative values represent outflows and positive values represent inflows.

cashflow_type

Type of cash flow.

description

Short description of the cash flow.

A tibble with 19 rows and 5 variables:

scenario_id

Scenario identifier.

t

Payment time.

C

Cash-flow amount. Negative values represent outflows and positive values represent inflows.

cashflow_type

Type of cash flow.

description

Short description of the cash flow.

Details

This dataset uses the compact financial-actuarial notation used throughout tidyactuarial: t denotes time and C denotes the cash-flow amount at that time.

This dataset uses the compact financial-actuarial notation used throughout tidyactuarial: t denotes time and C denotes the cash-flow amount at that time.

Source

Synthetic pedagogical data created for tidyactuarial examples.

Synthetic pedagogical data created for tidyactuarial examples.

Examples

data(cash_flows_sample)

cash_flows_sample |>
  dplyr::filter(scenario_id == "investment_project") |>
  dplyr::select(scenario_id, t, C, cashflow_type)

data(cash_flows_sample)

cash_flows_sample |>
  dplyr::filter(scenario_id == "investment_project") |>
  dplyr::select(scenario_id, t, C, cashflow_type)


Build an annual commutation table (discrete ages)

Description

The function builds annual commutation columns from x, lx, and an interest-rate specification. The interest rate is converted internally to an annual effective rate before constructing the discount factor.

Usage

commutation_table(lt, i, i_type = "effective", m = 1L, check = TRUE)

Arguments

lt

A life table object as produced by lifetable. It must contain columns x and lx. If available, qx or px may also be present, but dx is computed robustly from successive values of lx.

i

Numeric scalar. Annual interest-rate input.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal rates. Ignored for i_type = "effective" and i_type = "force".

check

Logical. If TRUE, performs basic input checks.

Details

Constructs classical annual commutation functions D_x, N_x, S_x, C_x, M_x, and R_x from a life table defined at integer ages, using compact actuarial notation.

This function follows the compact actuarial notation used throughout tidyactuarial: lt is the life table, i is the interest-rate input, i_type is the interest-rate type, and m is the conversion frequency for nominal rates.

The annual effective rate is obtained through standardize_interest. If i_e denotes the annual effective rate, then

v = \frac{1}{1+i_e}.

The annual deaths are computed as

d_x = l_x - l_{x+1},

closing the table with l_{\omega+1}=0. The main commutation functions are then computed as

D_x = v^x l_x, \qquad C_x = v^{x+1} d_x,

with reverse cumulative sums used to obtain N_x, S_x, M_x, and R_x.

Value

A tibble with columns x, lx, dx, v, Dx, Nx, Sx, Cx, Mx, and Rx.

Examples

lt <- data.frame(
  x = 60:65,
  lx = c(100000, 99000, 97500, 95500, 93000, 90000)
)

commutation_table(
  lt = lt,
  i = 0.05
)

commutation_table(
  lt = lt,
  i = 0.06,
  i_type = "nominal_interest",
  m = 12
)


Spot discount factor

Description

Computes the discount factor implied by a spot rate for a given time, using compact actuarial notation.

Usage

discount_factor_spot(t, i, i_type = "effective", m = 1L, tidy = FALSE)

Arguments

t

Numeric vector of times in years. Each value must be greater than or equal to 0.

i

Numeric vector of spot-rate values.

i_type

Character vector indicating the spot-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer vector giving the conversion frequency for nominal spot-rate inputs.

tidy

Logical scalar. If FALSE, returns a numeric discount factor. If TRUE, returns a tibble with intermediate calculations.

Details

The spot rate may be supplied in FM-style notation:

Internally, the supplied spot rate is first converted to the equivalent annual effective rate using standardize_interest. The discount factor is then computed as

v(t) = (1+i)^{-t}.

This function follows the compact actuarial notation used throughout tidyactuarial: t denotes time, i denotes the spot-rate input, i_type denotes the interest-rate type, and m denotes the conversion frequency for nominal rates.

If t = 0, the discount factor is 1.

Input vectors must have length 1 or a common length. Missing values are propagated.

Value

If tidy = FALSE, a numeric vector of discount factors.

If tidy = TRUE, a tibble with input values, standardized rates, and discount factors.

See Also

standardize_interest, present_value, pv_flow

Other interest: forward_rate(), interest_equivalents(), standardize_interest(), yield_curve()

Examples

# Numeric discount factor
discount_factor_spot(
  t = 3,
  i = 0.05
)

# Vectorized example
discount_factor_spot(
  t = c(1, 2, 3),
  i = c(0.05, 0.055, 0.06)
)

# FM-style input with nominal annual interest
discount_factor_spot(
  t = 2,
  i = 0.08,
  i_type = "nominal_interest",
  m = 2
)

# Tibble output for teaching or auditing
discount_factor_spot(
  t = c(1, 2, 3),
  i = c(0.05, 0.055, 0.06),
  tidy = TRUE
)


Expected future lifetime from an annual life table

Description

Computes the curtate or complete expected future lifetime at integer age x, optionally restricted to a temporary horizon of t years.

Usage

e_x(
  lt,
  x,
  t = NULL,
  type = c("curtate", "complete"),
  frac,
  tidy = FALSE,
  check = TRUE,
  tol = 1e-10
)

Arguments

lt

A life table object as produced by lifetable (must contain columns x and lx).

x

Integer age(s).

t

Optional nonnegative numeric duration(s). If NULL (default), the whole-life expectancy is computed (i.e., horizon extends to \omega - x). If a numeric value is provided, the t-year temporary life expectancy is returned.

type

Character: "curtate" (default) or "complete".

frac

Fractional-age assumption for type = "complete": "UDD", "CF", "CML" (alias of CF), or "Balducci". If not specified and lt carries a frac attribute (set by lifetable), that value is used.

tidy

Logical. If TRUE, returns a tibble.

check

Logical. If TRUE, performs basic input checks.

tol

Numeric tolerance for integer checks.

Details

Curtate life expectancy (Finan, Section 23.7):

e_x = \sum_{k=1}^{\omega - x} {}_k p_x = \frac{1}{\ell_x} \sum_{k=1}^{\omega - x} \ell_{x+k}.

The t-year temporary curtate expectancy is (Finan, Sec. 23.7):

e_{x:\overline{t}|} = \sum_{k=1}^{t} {}_k p_x.

Complete life expectancy (Finan, Section 23.3):

\breve{e}_x = \int_0^{\omega - x} {}_t p_x \, dt = \frac{T_x}{\ell_x}.

The integral is decomposed year-by-year. Within each year, the within-year survival integral \int_0^s {}_u p_y \, du is evaluated in closed form under the selected fractional-age assumption (Finan, Section 24):

Under UDD, the complete expectancy satisfies the well-known approximation (Finan, Example 20.24):

\breve{e}_x \approx e_x + \frac{1}{2}.

Value

A numeric vector of expected future lifetimes, or a tibble if tidy = TRUE with columns x, t, type, frac, ex.


Expected future lifetime for two independent lives

Description

Computes the expected future lifetime for two independent lives aged x and y, for either joint-life (first death) or last-survivor (second death).

Usage

e_xy(
  lt,
  x,
  y,
  t = NULL,
  type = c("curtate", "complete"),
  frac,
  cohort = c("first", "last"),
  tidy = FALSE,
  check = TRUE,
  tol = 1e-10
)

Arguments

lt

A life table data frame with columns x and lx.

x

Integer actuarial age for life 1.

y

Integer actuarial age for life 2.

t

Optional nonnegative numeric duration(s). If NULL, uses the maximum horizon allowed by the table.

type

Character: "curtate" or "complete".

frac

Fractional-age assumption for type = "complete", passed to t_pxy: "UDD", "CF", "CML", or "Balducci". If not specified and lt carries a frac attribute, that value is used.

cohort

Two-life cohort: "first" (joint-life) or "last" (last survivor).

tidy

Logical. If TRUE, returns a tibble.

check

Logical. If TRUE, performs basic input checks.

tol

Numeric tolerance for integer checks.

Details

Curtate expectation (Finan, Section 56.4 / Section 57):

e_{xy} = \sum_{k=1}^{\infty} {}_kp_{xy}, \quad e_{\overline{xy}} = \sum_{k=1}^{\infty} {}_kp_{\overline{xy}}.

Complete expectation (Finan, Section 56.4):

\mathring{e}_{xy} = \int_0^{\infty} {}_tp_{xy} \, dt.

The integral is decomposed year-by-year. Within each year, the survival integral for the two-life status is computed numerically via composite trapezoid (80-point grid), since closed-form expressions for joint/last survivor under fractional-age assumptions are complex.

Key identity (Finan, Example 57.4):

\mathring{e}_{\overline{xy}} = \mathring{e}_x + \mathring{e}_y - \mathring{e}_{xy}.

This can be used to cross-validate results.

Value

Numeric vector, or tibble if tidy = TRUE.

See Also

e_x for single-life expectancy, t_pxy for two-life survival probabilities, annuity_xy for two-life annuity APVs.

Examples

lt <- data.frame(
  x  = 60:66,
  lx = c(100000, 99000, 97500, 95500, 93000, 90000, 86000)
)

# Curtate joint-life expectancy (Finan, Sec. 56.4)
e_xy(lt, x = 60, y = 62, type = "curtate", cohort = "first")

# Curtate last-survivor expectancy (Finan, Sec. 57)
e_xy(lt, x = 60, y = 62, type = "curtate", cohort = "last")

# Verify identity (Finan, Example 57.4):
# e_{xy-bar} = e_x + e_y - e_xy
e_joint <- e_xy(lt, x = 60, y = 62, type = "curtate", cohort = "first")
e_last  <- e_xy(lt, x = 60, y = 62, type = "curtate", cohort = "last")
e_x_val <- e_x(lt, x = 60, type = "curtate")
e_y_val <- e_x(lt, x = 62, type = "curtate")
c(last_surv = e_last, sum_minus_joint = e_x_val + e_y_val - e_joint)

# Complete joint-life expectancy under UDD
e_xy(lt, x = 60, y = 62, type = "complete", frac = "UDD", cohort = "first")

# Temporary: 3-year curtate joint-life
e_xy(lt, x = 60, y = 62, t = 3, type = "curtate", cohort = "first")

# Tidy output
e_xy(lt, x = 60, y = 62, type = "curtate", cohort = "first", tidy = TRUE)


Compute an implied forward rate from a discrete spot curve

Description

Returns the annual effective forward rate implied between two maturities from a discrete yield curve stored in tibble-first format, using compact actuarial notation.

Usage

forward_rate(
  .data = NULL,
  t = NULL,
  i = NULL,
  t_start = NULL,
  t_end = NULL,
  col_t = "t",
  col_i = "i",
  col_t_start = "t_start",
  col_t_end = "t_end",
  i_type = "effective",
  m = 1L,
  method = c("exact", "linear"),
  plot = FALSE,
  .out = "f",
  .out_plot = "forward_rate_plot",
  .keep = c("all", "used", "none"),
  .na = c("propagate", "error", "drop")
)

Arguments

.data

A data.frame or tibble. If NULL, t, i, t_start, and t_end must be supplied.

t

Numeric vector of maturities in years when .data = NULL.

i

Numeric vector of spot-rate values when .data = NULL.

t_start

Numeric scalar giving the start maturity when .data = NULL.

t_end

Numeric scalar giving the end maturity when .data = NULL.

col_t

Name of the list-column containing maturities.

col_i

Name of the list-column containing spot rates.

col_t_start

Name of the numeric column containing the start maturity.

col_t_end

Name of the numeric column containing the end maturity.

i_type

Character vector indicating the spot-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force". May have length 1 or the same length as each curve.

m

Positive integer vector giving the conversion frequency for nominal spot rates. May have length 1 or the same length as each curve.

method

Spot extraction method: "exact" or "linear".

plot

Logical; if TRUE, adds a list-column of ggplot2 objects.

.out

Name of the output column containing the forward rate.

.out_plot

Name of the output list-column containing ggplot2 objects. Used only if plot = TRUE.

.keep

One of "all", "used", or "none".

.na

NA handling policy: "propagate", "error", or "drop".

Details

Each row is treated as one curve. For tibble input, col_t and col_i must be list-columns of equal-length numeric vectors, and col_t_start and col_t_end must be numeric columns giving the forward interval for each row.

The implied forward rate is computed from the standardized annual effective spot curve through:

(1+i_1)^{t_1}(1+f)^{t_2-t_1}=(1+i_2)^{t_2}

so that

f_{t_1,t_2} = \left(\frac{(1+i_2)^{t_2}}{(1+i_1)^{t_1}}\right)^{1/(t_2-t_1)} - 1.

Two extraction methods are supported for the spot rates:

No extrapolation is performed outside the observed maturity range.

This function follows the compact actuarial notation used throughout tidyactuarial: t denotes maturity, i denotes the spot rate, i_type denotes the interest-rate type, and m denotes the conversion frequency for nominal spot rates. The output column f denotes the implied annual effective forward rate.

Spot-rate inputs are converted to annual effective form using standardize_interest before interpolation and forward-rate calculation.

Value

A tibble. By default it returns the original columns plus a new numeric column named by .out. If plot = TRUE, it also adds a list-column named by .out_plot containing ggplot2 objects.

References

Marcel B. Finan, A Basic Course in the Theory of Interest and Derivatives Markets: A Preparation for the Actuarial Exam FM/2, Section 53: The Term Structure of Interest Rates and Yield Curves.

Kellison, S. G. The Theory of Interest, Chapter 10: The Term Structure of Interest Rates.

See Also

yield_curve, discount_factor_spot, standardize_interest

Other interest: discount_factor_spot(), interest_equivalents(), standardize_interest(), yield_curve()

Examples

# Simple example: exact forward rate
forward_rate(
  t = c(1, 2, 3, 4, 5),
  i = c(0.040, 0.045, 0.048, 0.050, 0.051),
  t_start = 2,
  t_end = 5
)

# Interpolated forward rates for multiple curves
curves <- tibble::tibble(
  curve_id = c("A", "B"),
  t = list(c(1, 2, 3, 5), c(1, 3, 5, 7)),
  i = list(c(0.04, 0.05, 0.055, 0.06),
           c(0.03, 0.035, 0.04, 0.045)),
  t_start = c(2, 2),
  t_end = c(4, 6)
)

forward_rate(
  curves,
  method = "linear",
  plot = TRUE
)

# Nominal annual spot rates convertible semiannually
forward_rate(
  t = c(1, 2, 3),
  i = c(0.05, 0.055, 0.06),
  i_type = "nominal_interest",
  m = 2,
  t_start = 1,
  t_end = 3
)


Future value of a single payment

Description

Computes the future value of a payment invested at time 0 and accumulated to a given time, using the annual effective interest rate implied by the supplied interest-rate specification and compact actuarial notation.

Usage

future_value(C, i, i_type = "effective", m = 1, t, tidy = FALSE)

Arguments

C

Numeric vector of initial payment amounts or capitals.

i

Numeric vector of interest-rate values.

i_type

Character vector indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer vector giving the conversion frequency for nominal rates. Ignored for "effective" and "force".

t

Numeric vector of times in years from valuation to accumulation.

tidy

Logical scalar. If FALSE, returns a numeric future value. If TRUE, returns a tibble with intermediate calculations.

Details

The future value is computed as

FV = C(1+i)^t

where i is the annual effective interest rate.

The input interest rate may be supplied as:

Internally, all rate specifications are first converted to the equivalent annual effective interest rate using standardize_interest.

This function follows the compact actuarial notation used throughout tidyactuarial: C denotes the initial payment amount or capital, t denotes time, i denotes the interest-rate input, i_type denotes the interest-rate type, and m denotes the conversion frequency for nominal rates.

Input vectors must have length 1 or a common length. Missing values are propagated. This function does not accept dates; use fv_flow for dated cash flows.

Value

If tidy = FALSE, a numeric vector of future values.

If tidy = TRUE, a tibble with input values, equivalent rates, accumulation factors, and future values.

See Also

standardize_interest, present_value, fv_flow

Other time-value: fv_flow(), irr_flow(), irr_flow_multi(), plot_cash_flow(), present_value(), pv_flow()

Examples

# Numeric future value
future_value(C = 1000, i = 0.08, t = 3)

# Nominal interest converted monthly
future_value(
  C = 1000,
  i = 0.12,
  i_type = "nominal_interest",
  m = 12,
  t = 5
)

# Tibble output for teaching or auditing
future_value(
  C = 1000,
  i = 0.08,
  t = 3,
  tidy = TRUE
)

# Vectorized example
future_value(
  C = c(1000, 2500, 4000),
  i = c(0.08, 0.10, 0.12),
  i_type = c("effective", "nominal_interest", "force"),
  m = c(1, 12, 1),
  t = c(3, 5, 2)
)


Future value of a general cash flow

Description

Computes the future value of a cash-flow vector under either:

Usage

fv_flow(
  cf,
  i,
  i_type = "effective",
  m = 1L,
  t = NULL,
  date = NULL,
  day_count = c("act/365", "act/360"),
  tol = 1e-10
)

Arguments

cf

Numeric vector of cash flows.

i

Numeric scalar or numeric vector of interest-rate values.

i_type

Character vector indicating the interest-rate type: "effective", "nominal_interest", "nominal_discount", or "force". May have length 1 or the same length as cf.

m

Positive integer vector giving the conversion frequency for nominal rates. May have length 1 or the same length as cf.

t

Optional numeric vector of cash-flow times in years.

date

Optional vector of cash-flow dates. If supplied, the earliest date is treated as time 0.

day_count

Day-count convention used to convert dates to year fractions. One of "act/365" or "act/360".

tol

Numeric tolerance used in internal checks.

Details

The cash flow is supplied explicitly through cf. Its timing is supplied either through t (in years) or date (calendar dates). If date is supplied, the earliest date is taken as time 0.

The future value is accumulated to the latest payment time or latest date.

Interest-rate input:

Rate types may be supplied in FM-style notation:

Internally, all supplied rates are converted to annual effective rates using standardize_interest. When i is a vector, the accumulation uses the implied discount-factor ratio under the spot-rate interpretation.

This function follows the compact actuarial notation used throughout tidyactuarial: cf denotes cash flows, t denotes time, i denotes the interest rate, i_type denotes the interest-rate type, and m denotes the conversion frequency for nominal rates.

Let T be the latest cash-flow time, the accumulation horizon. For each cash flow C_k at time t_k with annual effective spot rate i_k, the future value contribution is

FV_k = C_k \cdot \frac{(1+i_T)^T}{(1+i_k)^{t_k}}.

The total future value is FV = \sum_k FV_k. When a single constant rate is supplied, i_k = i_T = i for all k, and the formula simplifies to

FV = \sum_k C_k (1+i)^{T-t_k}.

Value

Numeric scalar: the future value of the cash flow accumulated to the latest cash-flow time.

See Also

pv_flow, future_value, standardize_interest

Other time-value: future_value(), irr_flow(), irr_flow_multi(), plot_cash_flow(), present_value(), pv_flow()

Examples

# Constant annual effective rate
fv_flow(
  cf = c(100, 150, 200),
  i = 0.08,
  i_type = "effective",
  t = c(0, 1, 2)
)

# Spot rates, one per cash flow
fv_flow(
  cf = c(100, 150, 200),
  i = c(0.05, 0.055, 0.06),
  i_type = "effective",
  t = c(1, 2, 3)
)

# Using dates; earliest date is taken as t = 0
fv_flow(
  cf = c(100, 150, 200),
  i = c(0.05, 0.055, 0.06),
  i_type = "effective",
  date = as.Date(c("2026-01-10", "2027-01-10", "2028-01-10"))
)

# Nominal rates by cash flow
fv_flow(
  cf = c(100, 100, 100),
  i = c(0.12, 0.12, 0.12),
  i_type = "nominal_interest",
  m = c(12, 12, 12),
  t = c(1, 2, 3)
)


Duration-based immunization with multiple assets

Description

Computes asset weights that duration-immunize a stream of liabilities using two or more assets, using compact actuarial notation.

Usage

immunize_duration(L, t, P, D, i, i_type = "effective", m = 1L)

Arguments

L

Numeric vector with liability payments.

t

Numeric vector of the same length as L, giving the times at which each liability payment occurs.

P

Numeric vector with present values or prices of the immunizing assets, evaluated on the same yield basis.

D

Numeric vector with the Macaulay duration of each asset, expressed in the same time units as t.

i

Numeric scalar. Interest-rate input used to discount the liabilities.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal rates. Ignored for i_type = "effective" and i_type = "force".

Details

The method enforces:

  1. present value of assets = present value of liabilities;

  2. Macaulay duration of assets = Macaulay duration of liabilities.

For exactly two assets, a closed-form solution is used. For three or more assets, a minimum-norm solution is computed by linear algebra.

This function follows the compact actuarial notation used throughout tidyactuarial: L denotes liabilities, t denotes payment times, P denotes asset prices or present values, D denotes asset durations, i denotes the interest rate, i_type denotes the interest-rate type, and m denotes the conversion frequency for nominal rates.

Let PV_L and D_L be the present value and Macaulay duration of the liability stream at yield i. Let P_j and D_j be the price and duration of asset j. The weights w_j are chosen so that:

\sum_j w_j P_j = PV_L

and

\frac{\sum_j w_j P_j D_j}{\sum_j w_j P_j} = D_L.

For two assets, the closed-form solution is:

w_1 = \frac{PV_L(D_L - D_2)}{P_1(D_1 - D_2)}, \qquad w_2 = \frac{PV_L - w_1 P_1}{P_2}.

For three or more assets, the minimum-norm solution of the linear system Aw = b is computed, where A is a 2 \times r matrix with rows

(P_1,\ldots,P_r)

and

(P_1D_1,\ldots,P_rD_r),

and

b = (PV_L, PV_LD_L)^T.

Value

A tibble with:

w

Numeric vector of asset weights or units.

PV_L

Present value of the liabilities.

D_L

Macaulay duration of the liabilities.

PV_A

Present value of the immunized asset portfolio.

D_A

Macaulay duration of the asset portfolio.

n_assets

Number of assets used.

See Also

immunize_duration_convexity, bond_duration, bond_convexity

Other immunization: immunize_duration_convexity(), plot_immunization_gap()

Examples

# Two-asset immunization
immunize_duration(
  L = c(5000, 8000),
  t = c(3, 7),
  P = c(100, 200),
  D = c(3, 7),
  i = 0.05
)

# Three-asset immunization: minimum-norm solution
immunize_duration(
  L = c(5000, 8000),
  t = c(3, 7),
  P = c(100, 150, 200),
  D = c(2, 5, 8),
  i = 0.05
)

# Nominal annual interest rate convertible monthly
immunize_duration(
  L = c(5000, 8000),
  t = c(3, 7),
  P = c(100, 200),
  D = c(3, 7),
  i = 0.06,
  i_type = "nominal_interest",
  m = 12
)


Duration and convexity immunization with multiple assets

Description

Computes asset weights that immunize a stream of liabilities using three or more assets, enforcing:

  1. present value of assets = present value of liabilities;

  2. Macaulay duration of assets = Macaulay duration of liabilities;

  3. convexity of assets = convexity of liabilities.

Usage

immunize_duration_convexity(L, t, P, D, C, i, i_type = "effective", m = 1L)

Arguments

L

Numeric vector with liability payments.

t

Numeric vector of the same length as L, giving the times at which each liability payment occurs.

P

Numeric vector with present values or prices of the immunizing assets, evaluated on the same yield basis.

D

Numeric vector with the Macaulay duration of each asset, expressed in the same time units as t.

C

Numeric vector with the discrete convexity of each asset, expressed in the same time units as t.

i

Numeric scalar. Interest-rate input used to discount the liabilities.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal rates. Ignored for i_type = "effective" and i_type = "force".

Details

For exactly three assets, the system is solved directly. For four or more assets, a minimum-norm solution is computed by linear algebra.

This function follows the compact actuarial notation used throughout tidyactuarial: L denotes liabilities, t denotes payment times, P denotes asset prices or present values, D denotes asset durations, C denotes asset convexities, i denotes the interest rate, i_type denotes the interest-rate type, and m denotes the conversion frequency for nominal rates.

Let PV_L, D_L, and C_L be the present value, Macaulay duration, and discrete convexity of the liability stream at yield i. The discrete convexity of the liabilities is computed as:

C_L = \frac{\sum_t L_t\,t(t+1)\,v^{t+2}}{PV_L},

where v = 1/(1+i) after converting i to the equivalent effective rate.

The weights w_j satisfy the 3 \times r system Aw = b, where the rows of A are

(P_1,\ldots,P_r),

(P_1D_1,\ldots,P_rD_r),

and

(P_1C_1,\ldots,P_rC_r),

and

b = (PV_L,\; PV_LD_L,\; PV_LC_L)^T.

For three assets, the system is square and solved directly. For four or more assets, the minimum-norm solution

w = A^T(AA^T)^{-1}b

is computed.

Value

A tibble with:

w

Numeric vector of asset weights or units.

PV_L

Present value of the liabilities.

D_L

Macaulay duration of the liabilities.

C_L

Discrete convexity of the liabilities.

PV_A

Present value of the asset portfolio.

D_A

Macaulay duration of the asset portfolio.

C_A

Discrete convexity of the asset portfolio.

n_assets

Number of assets used.

See Also

immunize_duration, bond_duration, bond_convexity

Other immunization: immunize_duration(), plot_immunization_gap()

Examples

# Three-asset immunization
immunize_duration_convexity(
  L = c(5000, 8000, 10000),
  t = c(3, 5, 7),
  P = c(100, 150, 200),
  D = c(2, 5, 8),
  C = c(6, 30, 72),
  i = 0.05
)

# Four-asset immunization: minimum-norm solution
immunize_duration_convexity(
  L = c(5000, 8000, 10000),
  t = c(3, 5, 7),
  P = c(100, 120, 150, 200),
  D = c(2, 4, 6, 8),
  C = c(6, 20, 42, 72),
  i = 0.05
)

# Nominal annual interest rate convertible monthly
immunize_duration_convexity(
  L = c(5000, 8000, 10000),
  t = c(3, 5, 7),
  P = c(100, 150, 200),
  D = c(2, 5, 8),
  C = c(6, 30, 72),
  i = 0.06,
  i_type = "nominal_interest",
  m = 12
)


Actuarial present value of a life insurance with variable k-thly benefits

Description

Computes the actuarial present value of a life insurance where the death benefit may vary by subperiod and is payable at the end of the subperiod of death, using compact actuarial notation.

Usage

insurance_variable_k(
  lt,
  x,
  i,
  benefit,
  n = NULL,
  h = 0,
  k = 12,
  i_type = "effective",
  m = 1L,
  frac,
  tidy = FALSE,
  check = TRUE,
  tol = 1e-10
)

Arguments

lt

A life table object or data frame containing at least columns x and lx.

x

Integer actuarial age at issue.

i

Annual interest-rate input.

benefit

Numeric vector of benefits by subperiod, or a function of time returning the benefit at time t.

n

Optional term in years. If NULL, the term is inferred from the length of benefit when benefit is numeric. If benefit is a function, n must be supplied.

h

Nonnegative deferment period in years. Default is 0.

k

Positive integer. Number of subperiods per year. Default is 12.

i_type

Character vector indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer vector giving the conversion frequency for nominal interest-rate inputs. Ignored for "effective" and "force".

frac

Fractional-age assumption used in survival probabilities: "UDD", "CF", "CML", or "Balducci". If not specified and lt carries a frac attribute, that value is used.

tidy

Logical. If TRUE, returns a one-row tibble.

check

Logical. If TRUE, performs basic input checks.

tol

Numeric tolerance used for integer-grid checks.

Details

This function is useful for level, increasing, decreasing, and credit-style life insurance benefits when benefits are specified at a subannual frequency.

This function follows the compact actuarial notation used throughout tidyactuarial: lt is the life table, x is the age at issue, i is the interest-rate input, i_type is the interest-rate type, m is the conversion frequency for nominal rates, n is the term, h is the deferment period, and k is the number of subperiods per year.

Let k be the number of subperiods per year and N = nk the total number of subperiods in the insurance term. With deferment h, the actuarial present value at age x is:

APV = \sum_{j=1}^{N} v^{h + j/k} b_j \left({}_{h + (j-1)/k}p_x - {}_{h + j/k}p_x\right).

Here b_j is the benefit payable if death occurs in subperiod j, and v = (1+i_e)^{-1}, where i_e is the annual effective interest rate equivalent to the input i, i_type, and m.

If benefit is numeric of length 1, it is recycled to all subperiods. If it is numeric with length greater than 1, its length must equal n k. If benefit is a function, it is evaluated at the end of each subperiod, at times 1/k, 2/k, \ldots, n.

Fractional survival probabilities are computed via t_px under the selected fractional-age assumption.

Value

A numeric actuarial present value, or a one-row tibble if tidy = TRUE.

See Also

insurance_x for level-benefit life insurance, annuity_x for life annuity APVs, t_px for survival probabilities.

Other life-contingencies: annuity_multi(), annuity_x(), annuity_xy(), insurance_x(), insurance_xy(), life_contract(), premium_gross(), premium_x(), premium_xy(), reserve_x(), reserve_xy(), simulate_annuity_x(), simulate_insurance_x()

Examples

lt <- data.frame(
  x  = 60:66,
  lx = c(100000, 99000, 97500, 95500, 93000, 90000, 86000)
)

# Monthly insurance with increasing benefits
insurance_variable_k(
  lt = lt,
  x = 60,
  i = 0.05,
  benefit = seq(100, 1200, length.out = 12),
  n = 1,
  k = 12
)

# Credit-style insurance with declining outstanding balance
balance <- function(t) 2000 * exp(-0.3 * t)

insurance_variable_k(
  lt = lt,
  x = 60,
  i = 0.05,
  benefit = balance,
  n = 1,
  k = 12
)

# Level benefit with annual payments
insurance_variable_k(
  lt = lt,
  x = 60,
  i = 0.05,
  benefit = 1,
  n = 5,
  k = 1
)

# 2-year deferred, 3-year term with monthly varying benefits
insurance_variable_k(
  lt = lt,
  x = 60,
  i = 0.05,
  benefit = rep(1000, 36),
  n = 3,
  h = 2,
  k = 12
)

# Nominal annual interest convertible monthly
insurance_variable_k(
  lt = lt,
  x = 60,
  i = 0.06,
  i_type = "nominal_interest",
  m = 12,
  benefit = rep(1000, 12),
  n = 1,
  k = 12
)

# Tidy output
insurance_variable_k(
  lt = lt,
  x = 60,
  i = 0.05,
  benefit = rep(1000, 12),
  n = 1,
  k = 12,
  tidy = TRUE
)


Actuarial present value of a life insurance

Description

Computes the actuarial present value of a discrete single-life insurance using a life table and compact actuarial notation.

Usage

insurance_x(
  lt,
  x,
  i,
  i_type = "effective",
  m = 1L,
  n = Inf,
  h = 0L,
  type = c("whole", "term", "endowment"),
  benefit = 1,
  tidy = FALSE,
  ...
)

Arguments

lt

A life table as produced by lifetable. It must contain columns x and lx.

x

Integer actuarial age at issue.

i

Numeric scalar. Annual interest-rate input.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal rates. Ignored for i_type = "effective" and i_type = "force".

n

Integer insurance term in years. Required for type = "term" and type = "endowment". Use Inf only for whole-life insurance.

h

Integer deferment period in years.

type

Character string. One of "whole", "term", or "endowment".

benefit

Numeric scalar. Benefit amount.

tidy

Logical scalar. If FALSE, returns a numeric APV. If TRUE, returns a one-row tibble with intermediate quantities.

...

Transitional compatibility for older calls using mortality_table, age, rate, rate_type, term_years, deferral_years, insurance_type, and output.

Details

The benefit is paid at the end of the year of death for whole-life and term insurance. For endowment insurance, the same benefit is paid either at death within the term or at the end of the term if the life survives.

Supported contracts:

This function follows the compact actuarial notation used throughout tidyactuarial: lt is the life table, x is the age at issue, i is the interest-rate input, i_type is the interest-rate type, m is the conversion frequency for nominal rates, n is the insurance term, and h is the deferment period.

The function computes APVs directly from lx. For a deferred insurance, the value at age x + h is multiplied by

v^h\,{}_hp_x.

For whole-life insurance, the death benefit APV at the deferred starting age is computed over the available life-table horizon. For term and endowment insurance, the death benefit is computed over the first n years. Endowment insurance additionally includes the pure endowment component

v^n\,{}_np_x.

Value

If tidy = FALSE, a numeric scalar containing the actuarial present value.

If tidy = TRUE, a one-row tibble with the main input values, equivalent interest rate, deferral factor, pure endowment factor, annuity-due value used in the standard identities, and APV.

See Also

annuity_x, premium_x, reserve_x, t_Ex, insurance_xy

Other life-contingencies: annuity_multi(), annuity_x(), annuity_xy(), insurance_variable_k(), insurance_xy(), life_contract(), premium_gross(), premium_x(), premium_xy(), reserve_x(), reserve_xy(), simulate_annuity_x(), simulate_insurance_x()

Examples

lt <- data.frame(
  x  = 60:65,
  lx = c(100000, 99000, 97500, 95500, 93000, 90000)
)

# Whole-life insurance
insurance_x(
  lt = lt,
  x = 60,
  i = 0.06,
  type = "whole"
)

# 5-year term insurance
insurance_x(
  lt = lt,
  x = 60,
  i = 0.06,
  n = 5,
  type = "term"
)

# 5-year endowment insurance
insurance_x(
  lt = lt,
  x = 60,
  i = 0.06,
  n = 5,
  type = "endowment"
)

# Deferred whole-life insurance
insurance_x(
  lt = lt,
  x = 60,
  i = 0.06,
  h = 2,
  type = "whole"
)

# Tidy output
insurance_x(
  lt = lt,
  x = 60,
  i = 0.06,
  n = 5,
  type = "term",
  tidy = TRUE
)


Cause-specific term/whole-life insurance APV under multiple decrements

Description

This function evaluates cause-specific insurance benefits under a multiple decrement model. It supports whole-life and term insurance, integer deferment, vectorized issue ages and interest-rate assumptions, and compact actuarial notation.

Usage

insurance_xj(
  md,
  x,
  i,
  cause,
  type = c("whole", "term"),
  benefit = 1,
  n = NULL,
  h = 0L,
  i_type = "effective",
  m = 1L,
  tidy = FALSE,
  check = TRUE,
  tol = 1e-10
)

A_xj(
  md,
  x,
  i,
  cause,
  type = c("whole", "term"),
  benefit = 1,
  n = NULL,
  h = 0L,
  i_type = "effective",
  m = 1L,
  tidy = FALSE,
  check = TRUE,
  tol = 1e-10
)

Arguments

md

A multiple decrement table produced by md_table. Must contain columns x, p_total, and the requested cause.

x

Integer age(s) at issue.

i

Annual interest-rate input. Must produce an annual effective rate greater than -1.

cause

Character scalar. Name of the cause column in md, for example "q_death".

type

Character scalar. Insurance type: "whole" or "term".

benefit

Numeric benefit amount payable at the end of the year of decrement by the specified cause. Default is 1.

n

Integer term length in years. Required when type = "term".

h

Integer deferment period in years. Default is 0.

i_type

Character vector indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer vector giving the conversion frequency for nominal rates. Ignored for "effective" and "force".

tidy

Logical. If TRUE, returns a tibble with inputs and insurance_xj.

check

Logical. If TRUE, performs input validation.

tol

Numeric tolerance for integer checks.

Details

Computes the actuarial present value (APV) of an annual discrete insurance that pays benefit at the end of the year of decrement by a specified cause j, using a multiple decrement table produced by md_table.

Let q_{x+k}^{(j)} be the one-year decrement probability for cause j at age x+k, and let p_{x+r}^{(\tau)} be the one-year total survival probability against all decrements at age x+r.

For a product with deferment h and term n, with benefit payable at the end of the year of decrement by cause j, the APV is:

\sum_{k=h}^{h+n-1} v^{k+1} \left(\prod_{r=0}^{k-1} p_{x+r}^{(\tau)}\right) q_{x+k}^{(j)}.

Here v = (1+i_e)^{-1}, where i_e is the annual effective interest rate obtained from i, i_type, and m.

If type = "whole", the function sets n to the remaining length of the table after deferment, that is, whole life over the available ages.

This function follows the compact actuarial notation used throughout tidyactuarial: md is a multiple decrement table, x is age at issue, i is the interest rate, i_type is the interest-rate type, m is the conversion frequency for nominal rates, n is the term, and h is the deferment period.

Value

Numeric vector of APVs, or a tibble if tidy = TRUE.

See Also

t_qxj for cause-specific decrement probabilities, lt_tau to build a single-decrement life table for the total decrement.

Examples

qx_df <- tibble::tibble(
  x = 30:35,
  q_death = c(0.001, 0.0012, 0.0014, 0.0017, 0.0020, 1.0000),
  q_disability = c(0.002, 0.0021, 0.0022, 0.0023, 0.0024, 0.0000)
)
md <- md_table(qx_df, radix = 1e5, close = TRUE)

# 5-year term cause-specific insurance for death, i = 5%
insurance_xj(
  md = md,
  x = 30,
  i = 0.05,
  cause = "q_death",
  type = "term",
  n = 5
)

# Whole-life over available ages, 2-year deferred
insurance_xj(
  md = md,
  x = 30,
  i = 0.05,
  cause = "q_death",
  type = "whole",
  h = 2,
  tidy = TRUE
)


Actuarial present value of a two-life insurance

Description

Computes the actuarial present value of a discrete two-life insurance with benefit payable at the end of the year of the triggering death, assuming independent future lifetimes and using compact actuarial notation.

Usage

insurance_xy(
  lt,
  x = NULL,
  y = NULL,
  i = NULL,
  i_type = "effective",
  m = 1L,
  type = c("whole", "term", "endowment"),
  status = c("joint", "last"),
  n = Inf,
  h = 0L,
  benefit = 1,
  frac,
  tidy = FALSE,
  ...
)

Arguments

lt

A life table, a list of two life tables list(lt_x, lt_y), or a tidyact_life_contract object created by life_contract. Each life table must contain columns x and lx.

x

Integer actuarial age for the first life.

y

Integer actuarial age for the second life.

i

Numeric scalar. Annual interest-rate input.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal rates. Ignored for i_type = "effective" and i_type = "force".

type

Character string. One of "whole", "term", or "endowment".

status

Character string. Use "joint" for first-death insurance or "last" for second-death insurance.

n

Term in years. Required as finite for term and endowment insurance. Use Inf for whole-life insurance.

h

Nonnegative integer deferment period in years.

benefit

Numeric scalar. Insurance benefit.

frac

Fractional-age assumption used in two-life survival probabilities. One of "UDD", "CF", "CML", or "Balducci".

tidy

Logical scalar. If FALSE, returns a numeric APV. If TRUE, returns a one-row tibble.

...

Transitional compatibility for older calls using mortality_table, age_x, age_y, rate, rate_type, insurance_type, cohort, term_years, deferment_years, and output.

Details

Supported contracts:

The status argument determines the two-life status:

This function follows the compact actuarial notation used throughout tidyactuarial: lt is the life table input, x and y are the two actuarial ages, i is the interest-rate input, i_type is the interest-rate type, m is the conversion frequency for nominal rates, n is the insurance term, and h is the deferment period.

The function uses the standard fully discrete identities that express insurance values through two-life annuity-due values.

For a whole-life contract:

A = 1 - d \ddot{a}.

For an n-year term insurance:

A^1_{:\overline{n}|} = 1 - d\ddot{a}_{:\overline{n}|} - v^n\,{}_np.

For an n-year endowment insurance:

A_{:\overline{n}|} = 1 - d\ddot{a}_{:\overline{n}|}.

A deferred insurance is valued by multiplying the value at deferred ages x + h and y + h by the deferment factor

v^h\,{}_hp_{xy}

for the selected two-life status.

Value

If tidy = FALSE, a numeric scalar.

If tidy = TRUE, a one-row tibble with input values, standardized interest rate, deferment factor, unit APV, and APV.

See Also

annuity_xy, premium_xy, insurance_x, t_pxy

Other life-contingencies: annuity_multi(), annuity_x(), annuity_xy(), insurance_variable_k(), insurance_x(), life_contract(), premium_gross(), premium_x(), premium_xy(), reserve_x(), reserve_xy(), simulate_annuity_x(), simulate_insurance_x()

Examples

lt <- data.frame(
  x = 60:110,
  lx = seq(100000, 0, length.out = 51)
)

insurance_xy(
  lt = lt,
  x = 60,
  y = 62,
  i = 0.06,
  type = "whole",
  status = "joint"
)

insurance_xy(
  lt = lt,
  x = 60,
  y = 62,
  i = 0.06,
  type = "term",
  status = "last",
  n = 10,
  tidy = TRUE
)

lt |>
  life_contract(lives = "joint", x = 60, y = 62, i = 0.06) |>
  insurance_xy(
    type = "term",
    n = 4,
    status = "joint"
  )


Equivalent interest rates in FM actuarial notation

Description

Converts a single interest-rate specification into equivalent actuarial rates for the same conversion frequency m.

Usage

interest_equivalents(
  i_type = c("effective", "nominal_interest", "nominal_discount", "force"),
  i,
  m = 1L
)

Arguments

i_type

Character string indicating the input interest-rate type. Must be one of "effective", "nominal_interest", "nominal_discount", or "force".

i

Numeric scalar giving the interest-rate value.

m

Positive integer scalar giving the conversion frequency for nominal rates.

Details

Internally, the supplied rate is first converted to the annual effective interest rate i using standardize_interest.

This function follows the compact actuarial notation used throughout tidyactuarial: i denotes the interest-rate value, i_type denotes the type of interest rate, and m denotes the conversion frequency for nominal rates.

Given the annual effective interest rate i, the equivalents are:

Effective discount rate:

d = i/(1+i)

Discount factor:

v = 1/(1+i)

Force of interest:

\delta = \ln(1+i)

Nominal interest:

j^{(m)} = m[(1+i)^{1/m} - 1]

Nominal discount:

d^{(m)} = m[1 - (1+i)^{-1/m}]

Value

A tibble with columns:

family

Rate family: "effective", "discount", "force", "nominal_interest", or "nominal_discount".

notation

Actuarial notation for the equivalent rate.

m

Conversion frequency used for nominal rates.

description

Human-readable description.

value

Equivalent rate value.

See Also

standardize_interest, discount_factor_spot

Other interest: discount_factor_spot(), forward_rate(), standardize_interest(), yield_curve()

Examples

interest_equivalents(i_type = "nominal_interest", i = 0.18, m = 4)
interest_equivalents(i_type = "nominal_discount", i = 0.10, m = 12)
interest_equivalents(i_type = "force", i = 0.12)
interest_equivalents(i_type = "effective", i = 0.08)

# Batch use with purrr
if (requireNamespace("purrr", quietly = TRUE) &&
    requireNamespace("tibble", quietly = TRUE)) {
  cases <- tibble::tibble(
    i_type = c("effective", "force"),
    i = c(0.08, 0.12),
    m = c(1, 1)
  )

  purrr::pmap(cases, interest_equivalents)
}


Internal rate of return for a cash flow

Description

Computes the internal rate of return (IRR) of a cash flow by finding the annual effective rate that makes its present value equal to zero, using compact actuarial notation.

Usage

irr_flow(
  cf,
  t = NULL,
  date = NULL,
  m = 1L,
  interval = c(-0.99, 10),
  tol = 1e-10,
  maxiter = 1000,
  day_count = c("act/365", "act/360")
)

Arguments

cf

Numeric vector of cash flows.

t

Optional numeric vector of cash-flow times in years.

date

Optional vector of cash-flow dates. If supplied, the earliest date is treated as time 0.

m

Positive integer used only to report an equivalent nominal annual interest rate convertible m times per year.

interval

Numeric vector of length 2 giving the search interval for the annual effective IRR. Default is c(-0.99, 10).

tol

Numeric tolerance passed to uniroot.

maxiter

Maximum number of iterations passed to uniroot.

day_count

Day-count convention used when date is supplied. One of "act/365" or "act/360".

Details

The cash flow is supplied explicitly through cf. Its timing is given either through t (in years) or date (calendar dates). If date is supplied, the earliest date is treated as time 0.

The IRR returned is interpreted as an annual effective rate.

This function follows the compact actuarial notation used throughout tidyactuarial: cf denotes cash flows, t denotes time, and m denotes the conversion frequency used to report the equivalent nominal annual interest rate.

The IRR is defined as the rate r satisfying

\sum_{k} C_k (1+r)^{-t_k} = 0

where C_k are the cash flows and t_k the corresponding times in years.

The root is found using uniroot over the specified interval. If the NPV does not change sign over the interval, no root can be bracketed and the function returns gracefully with converged = FALSE.

The number of sign changes in the nonzero cash-flow sequence is reported as a diagnostic. If there is exactly one sign change, the IRR is usually unique under the usual ordered cash-flow setting.

Value

A one-row tibble with:

irr

Estimated IRR as an annual effective rate.

i_effective_annual

Same as irr, reported explicitly.

j_nominal_interest

Equivalent nominal annual interest rate convertible m times.

delta

Equivalent force of interest.

npv

Present value at the estimated IRR, close to zero.

interval_left

Left endpoint of the search interval.

interval_right

Right endpoint of the search interval.

converged

Logical flag indicating whether a root was found.

n_iter

Number of iterations used by uniroot.

n_cashflows

Length of cf.

has_both_signs

Whether the cash flow has at least one positive and one negative value.

n_sign_changes

Number of sign changes in the nonzero cash-flow sequence.

If no sign change is present in the cash flow, or if the NPV does not change sign over interval, the function returns converged = FALSE and irr = NA_real_.

See Also

pv_flow, irr_flow_multi, bond_ytm

Other time-value: future_value(), fv_flow(), irr_flow_multi(), plot_cash_flow(), present_value(), pv_flow()

Examples

irr_flow(
  cf = c(-1000, 300, 400, 500),
  t = c(0, 1, 2, 3)
)

irr_flow(
  cf = c(-1000, 300, 400, 500),
  date = as.Date(c("2026-01-01", "2027-01-01", "2028-01-01", "2029-01-01"))
)


Multiple internal rates of return for a cash flow

Description

Searches for multiple internal rates of return (IRRs) of a cash flow by scanning a search interval and solving for all detectable roots of the net present value (NPV) function, using compact actuarial notation.

Usage

irr_flow_multi(
  cf,
  t = NULL,
  date = NULL,
  m = 1L,
  search_interval = c(-0.99, 10),
  grid_points = 2000L,
  tol = 1e-10,
  maxiter = 1000L,
  day_count = c("act/365", "act/360")
)

Arguments

cf

Numeric vector of cash flows.

t

Optional numeric vector of cash-flow times in years.

date

Optional vector of cash-flow dates. If supplied, the earliest date is treated as time 0.

m

Positive integer used only to report an equivalent nominal annual interest rate convertible m times per year.

search_interval

Numeric vector of length 2 giving the search interval for annual effective IRRs. Default is c(-0.99, 10).

grid_points

Positive integer giving the number of grid points used to scan the interval. Larger values improve detection at the cost of speed.

tol

Numeric tolerance passed to uniroot.

maxiter

Positive integer passed to uniroot.

day_count

Day-count convention used when date is supplied. One of "act/365" or "act/360".

Details

This function is intended for cash flows with multiple sign changes, where more than one IRR may exist. It evaluates the NPV on a fine grid over the search interval, identifies subintervals with sign changes (and grid points where the NPV is approximately zero), and applies uniroot to each candidate interval.

The IRRs returned are interpreted as annual effective rates.

Timing can be supplied either through t (in years) or date (calendar dates). If date is supplied, the earliest date is treated as time 0.

This function follows the compact actuarial notation used throughout tidyactuarial: cf denotes cash flows, t denotes time, and m denotes the conversion frequency used to report the equivalent nominal annual interest rate.

This function detects roots numerically over a finite search interval. It may miss roots if:

For a single-IRR workflow, use irr_flow.

Value

A tibble with one row per detected IRR and columns:

root_id

Root index.

irr

Detected IRR as an annual effective rate.

i_effective_annual

Same as irr, reported explicitly.

j_nominal_interest

Equivalent nominal annual interest rate convertible m times.

delta

Equivalent force of interest.

npv

NPV evaluated at the detected root, approximately zero.

interval_left

Left endpoint of the local search bracket.

interval_right

Right endpoint of the local search bracket.

n_cashflows

Length of cf.

has_both_signs

Whether the cash flow has at least one positive and one negative value.

n_sign_changes_cashflow

Number of sign changes in the nonzero cash-flow sequence.

If no roots are detected, the function returns a tibble with zero rows.

See Also

irr_flow, pv_flow

Other time-value: future_value(), fv_flow(), irr_flow(), plot_cash_flow(), present_value(), pv_flow()

Examples

# A standard single-IRR cash flow
irr_flow_multi(
  cf = c(-1000, 300, 400, 500),
  t = c(0, 1, 2, 3)
)

# A cash flow with multiple sign changes
irr_flow_multi(
  cf = c(-1000, 5000, -4500, 200),
  t = c(0, 1, 2, 3),
  search_interval = c(-0.99, 5),
  grid_points = 5000
)

# Date-based version
irr_flow_multi(
  cf = c(-1000, 300, 400, 500),
  date = as.Date(c("2026-01-01", "2027-01-01", "2028-01-01", "2029-01-01"))
)


Kaplan–Meier survival curve and a lifetable-style life table

Description

Fits the nonparametric Kaplan–Meier estimator \hat S(t) for right-censored time-to-event data, computes Greenwood's variance estimator for \hat S(t), and constructs a discrete life table by evaluating \hat S(t) at user-provided cut points (breaks).

Usage

km_lifetable(
  time,
  status,
  entry = NULL,
  breaks = NULL,
  radix = 1e+05,
  conf_level = 0.95,
  assumption = c("UDD", "CF", "Balducci")
)

Arguments

time

Numeric vector. Observed times (event or censoring times).

status

Integer/numeric vector of the same length as time. Use 1 for event (death), 0 for right-censoring.

entry

Optional numeric vector of entry times (left truncation / delayed entry). If provided, must have the same length as time and satisfy entry <= time. If NULL, all individuals are assumed to enter at time 0.

breaks

Optional numeric vector of increasing cut points used to build the discrete life table (e.g., 0:omega). If NULL, defaults to integer ages from 0 to ceiling(max(time)).

radix

Numeric. Life table radix used to scale \ell_x (default 1e5).

conf_level

Numeric in (0,1). Confidence level for pointwise intervals for \hat S(t) computed via the log(-log) transformation (default 0.95).

assumption

Character. Fractional-age assumption used to compute L_x within each interval: "UDD", "CF" (constant force), or "Balducci".

Details

The resulting life table is intended for experience-based (empirical) life tables in actuarial/demographic contexts (e.g., cohort studies, population indicators). It is not a replacement for graduated/regulatory tables when smoothing, extrapolation, or product-specific selection effects are required.

Kaplan–Meier estimator. At each observed event time t_j:

\hat S(t) = \prod_{t_j \le t} \left(1 - \frac{d_j}{n_j}\right)

where n_j is the risk set size and d_j is the number of events. Greenwood's variance:

\widehat{\mathrm{Var}}(\hat S(t)) = \hat S(t)^2 \sum_{t_j \le t} \frac{d_j}{n_j(n_j - d_j)}.

Pointwise confidence intervals use the log(-log) transformation.

Life table mapping. For each interval [x, x + \Delta):

\ell_x = \text{radix} \cdot \hat S(x), \quad d_x = \ell_x - \ell_{x+\Delta}, \quad q_x = d_x / \ell_x.

Exposure L_x = \int_x^{x+\Delta} \ell(t)\,dt is computed using the selected fractional-age assumption (Finan, Section 24):

Additional columns follow Finan, Sections 23.3, 23.8–23.9:

Value

A list with two tibbles:

See Also

lifetable for building tables from known mortality inputs, plot_km for plotting the KM curve.

Examples

set.seed(1)
n <- 200
trueT <- rexp(n, rate = 0.08)
censT <- rexp(n, rate = 0.04)
time <- pmin(trueT, censT)
status <- as.integer(trueT <= censT)

out <- km_lifetable(time, status, breaks = 0:25, radix = 100000)
head(out$km)
head(out$lifetable)

# Tidy pipeline: filter high-mortality intervals
out$lifetable |> dplyr::filter(qx > 0.05)

# Compare UDD vs CF assumptions
udd <- km_lifetable(time, status, breaks = 0:20, assumption = "UDD")
cfm <- km_lifetable(time, status, breaks = 0:20, assumption = "CF")
c(ex_udd = udd$lifetable$ex[1], ex_cf = cfm$lifetable$ex[1])

# Plot the KM curve with plot_km
plot_km(out$km, time_col = "time", surv_col = "S",
        lower_col = "ci_low", upper_col = "ci_high")


Create a life-contingency contract specification

Description

Creates a lightweight actuarial contract object that stores common life-contingency inputs for use in pipe workflows.

Usage

life_contract(
  lt,
  lives = c("single", "joint", "last_survivor"),
  x = NULL,
  y = NULL,
  i,
  i_type = "effective",
  m = 1L,
  ...
)

Arguments

lt

A life table or a list of two life tables. For single-life contracts, provide one data frame or tibble. For two-life contracts, provide either one data frame used for both lives, or list(lt_x, lt_y) with one table for each life. Each life table must contain columns x and lx.

lives

Character string. Use "single" for a single-life contract, "joint" for a joint-life two-life contract, or "last_survivor" for a last-survivor two-life contract.

x

Numeric scalar. Age of the single life, or age of the first life in a two-life contract.

y

Numeric scalar. Age of the second life in a two-life contract. Required when lives is "joint" or "last_survivor".

i

Numeric scalar. Annual interest-rate input.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal rates. Ignored for i_type = "effective" and i_type = "force".

...

Reserved for future extensions. Deprecated argument names such as mortality_table, age, age_x, age_y, rate, and rate_type are not accepted.

Details

This function does not compute actuarial values. It validates and stores common actuarial inputs such as the life table, life status, ages, and interest-rate specification. Calculation functions such as annuity_x(), insurance_x(), premium_x(), reserve_x(), annuity_xy(), insurance_xy(), premium_xy(), reserve_xy(), and simulation functions can then consume this object.

life_contract() follows the compact actuarial notation used throughout tidyactuarial:

The object stores actuarial fields using the compact names above. During the 0.1.4 API transition, it also stores internal compatibility fields so that functions not yet migrated can continue to read the contract. These internal fields are not part of the preferred user-facing notation.

Value

An object of class "tidyact_life_contract".

See Also

Other life-contingencies: annuity_multi(), annuity_x(), annuity_xy(), insurance_variable_k(), insurance_x(), insurance_xy(), premium_gross(), premium_x(), premium_xy(), reserve_x(), reserve_xy(), simulate_annuity_x(), simulate_insurance_x()

Examples

lt <- data.frame(
  x = 40:90,
  lx = round(100000 * exp(-0.018 * (0:50)^1.35))
)
lt$lx[nrow(lt)] <- 0

life_contract(
  lt = lt,
  lives = "single",
  x = 40,
  i = 0.05
)

life_contract(
  lt = lt,
  lives = "joint",
  x = 60,
  y = 58,
  i = 0.05
)


Build an annual life table (tidy tibble) from lx, qx, px, or mx

Description

Creates an annual life table with integer, consecutive ages and returns a tibble (tidyverse-friendly) with class "lifetable".

Usage

lifetable(
  x,
  lx = NULL,
  qx = NULL,
  px = NULL,
  mx = NULL,
  radix = NULL,
  omega = NULL,
  close = TRUE,
  ax = 0.5,
  type = c("ultimate", "select"),
  frac = c("UDD", "CF", "Balducci"),
  check = TRUE,
  tol = 1e-10
)

Arguments

x

Numeric vector of ages. Must be integer and consecutive (annual table), e.g. 0:110.

lx

Optional numeric vector of survivors \ell_x. Must be nonnegative and nonincreasing.

qx

Optional numeric vector of one-year death probabilities q_x. NA values are allowed (useful at the last age when close=TRUE), but Inf/NaN are not allowed.

px

Optional numeric vector of one-year survival probabilities p_x. NA values are allowed, but Inf/NaN are not allowed. If provided, qx = 1 - px.

mx

Optional numeric vector of central death rates m_x. NA values are allowed, but Inf/NaN are not allowed. If provided, converted to qx using ax.

radix

Optional positive scalar. Required if building lx from (qx/px/mx) and lx is not provided.

omega

Optional integer limiting age. If omega < max(x), the table is truncated to omega. If omega > max(x), an error is raised (the function will not invent missing ages).

close

Logical. If TRUE (default), closes the table at omega (forces terminal conditions).

ax

Scalar in [0,1]. Average fraction of the year lived by those who die in the interval [x, x+1). Under UDD (Finan, Sec. 24.1), ax = 0.5. Under constant force, a_x = 1/\mu - 1/(\exp(\mu)-1). At the terminal age with close = TRUE, mx equals 1/(1 - a_x), which is 2 for ax = 0.5. Default is 0.5.

type

Character. "ultimate" or "select" (metadata). Stored as an attribute and used by downstream functions.

frac

Character. "UDD", "CF", or "Balducci" (metadata). Stored as an attribute and used by fractional-age functions such as t_px.

check

Logical. If TRUE (default), performs strict validity and consistency checks.

tol

Numeric tolerance for integer checks and consistency checks.

Details

The table can be built from exactly one of:

and the function will compute the remaining columns consistently: dx, qx, px, and mx.

When multiple inputs are provided, priority is: lx > qx > px > mx. If lx is provided together with qx, cross-consistency is validated (both must agree via q_x = (\ell_x - \ell_{x+1}) / \ell_x).

By default, the table is actuarially closed at omega:

\ell_{\omega+1} = 0 \Rightarrow d_{\omega} = \ell_{\omega} \Rightarrow q_{\omega} = 1 \Rightarrow p_{\omega} = 0.

The life table follows the standard actuarial construction described in Finan, Sections 22–24 (Exam MLC preparation).

The basic identities are (Finan, Section 22):

\ell_x = \ell_0 \cdot s(x), \quad d_x = \ell_x - \ell_{x+1}, \quad q_x = d_x / \ell_x, \quad p_x = \ell_{x+1} / \ell_x.

The central death rate mx is computed via the discrete approximation (Finan, Section 23.9):

m_x = \frac{q_x}{1 - a_x \cdot q_x}

which under UDD (ax = 0.5) reduces to the classical formula m_x = q_x / (1 - 0.5 \, q_x) (Finan, Section 24.1). This arises because under UDD, L_x = \ell_x - \tfrac{1}{2} d_x, and therefore m_x = d_x / L_x.

At the terminal age \omega with close = TRUE, closure forces q_\omega = 1, p_\omega = 0, and d_\omega = \ell_\omega. The corresponding m_\omega equals 1/(1 - a_x), which is 2 under UDD (ax = 0.5). If ax = 1, m_\omega = \infty.

Value

A tibble with class c("lifetable","tbl_df","tbl","data.frame") and columns:

Attributes include: radix, omega, type, frac, closed, ax.

See Also

km_lifetable for Kaplan–Meier construction, t_px and t_qx for survival and death probabilities (including fractional ages), e_x for curtate and complete life expectancy, annuity_x and insurance_x for life contingency valuations that consume a life table.

Examples

# Example 1: build from lx (Finan, Section 22 style)
x  <- 0:5
lx <- c(100000, 99500, 99000, 98200, 97000, 95000)
lt1 <- lifetable(x = x, lx = lx, omega = 5, close = TRUE)
lt1

# Example 2: build from qx (radix required)
qx <- c(0.005, 0.005, 0.008, 0.012, 0.020, 1)
lt2 <- lifetable(x = x, qx = qx, radix = 100000, omega = 5, close = TRUE)
lt2

# Example 3: build from px
px <- 1 - c(0.005, 0.005, 0.008, 0.012, 0.020, 1)
lt3 <- lifetable(x = x, px = px, radix = 100000, omega = 5, close = TRUE)
lt3

# Example 4: build from mx
mx <- c(0.005, 0.006, 0.008, 0.012, 0.020, 0.030)
lt4 <- lifetable(x = x, mx = mx, radix = 100000, omega = 5, close = TRUE, ax = 0.5)
lt4

# Example 5: truncate to a smaller omega
lt5 <- lifetable(x = 0:10, lx = 100000 * exp(-0.01 * (0:10)), omega = 7, close = TRUE)
lt5

# Example 6: Finan Example 22.1 - exponential survival s(x) = exp(-0.005x)
lt_exp <- lifetable(
  x  = 0:7,
  lx = 1000 * exp(-0.005 * (0:7)),
  close = TRUE
)
lt_exp

# Example 7: verify survival identity (Finan, Section 22)
# 2_p_2 = l_4 / l_2 = 97000 / 99000
lt1$lx[lt1$x == 4] / lt1$lx[lt1$x == 2]

# Example 8: without closure - qx at omega is not forced to 1
lt_open <- lifetable(x = 0:3, lx = c(1000, 900, 750, 500), close = FALSE)
lt_open$qx  # last element is NA

# Example 9: access table metadata
attr(lt1, "omega")   # 5
attr(lt1, "closed")  # TRUE
attr(lt1, "frac")    # "UDD"
attr(lt1, "ax")      # 0.5


Sample loan contracts for amortization examples

Description

A small pedagogical dataset containing level-payment loan contracts for amortization schedule and outstanding balance examples.

A small pedagogical dataset containing level-payment loan contracts for amortization schedule and outstanding balance examples.

Usage

loans_sample

loans_sample

Format

A tibble with 4 rows and 7 variables:

loan_id

Loan identifier.

L

Initial loan principal.

i

Annual effective interest rate.

n_months

Loan term in months.

k

Number of payments per year.

loan_type

Short loan type label.

R

Level payment amount per payment period.

A tibble with 4 rows and 7 variables:

loan_id

Loan identifier.

L

Initial loan principal.

i

Annual effective interest rate.

n_months

Loan term in months.

k

Number of payments per year.

loan_type

Short loan type label.

R

Level payment amount per payment period.

Details

This dataset uses compact loan notation: L is the initial loan principal, i is the annual effective interest rate, n_months is the loan term in months, k is the payment frequency, and R is the level payment.

This dataset uses compact loan notation: L is the initial loan principal, i is the annual effective interest rate, n_months is the loan term in months, k is the payment frequency, and R is the level payment.

Source

Synthetic pedagogical data created for tidyactuarial examples.

Synthetic pedagogical data created for tidyactuarial examples.

Examples

data(loans_sample)

loans_sample |>
  dplyr::select(loan_id, L, i, n_months, k, R)

data(loans_sample)

loans_sample |>
  dplyr::select(loan_id, L, i, n_months, k, R)


Total-decrement lifetable from a multiple decrement table: lt_tau

Description

Builds a single-decrement lifetable for the total decrement (any cause), using q_x^{(\tau)} from a multiple decrement table produced by md_table. This enables direct re-use of single-life functions (e.g., t_px, t_qx, t_Ex, annuities, insurances) under the total decrement model.

Usage

lt_tau(md, ...)

Arguments

md

A multiple decrement table (typically the output of md_table), containing columns x and q_total.

...

Additional arguments passed to lifetable (e.g., radix, omega, close, ax, type, frac, check, tol).

Details

Given cause-specific decrement probabilities q_x^{(j)}, the total decrement is q_x^{(\tau)} = \sum_j q_x^{(j)}. This function simply passes x = md$x and qx = md$q_total to lifetable.

Value

A lifetable object as produced by lifetable.

Examples

qx_df <- tibble::tibble(
  x = 30:35,
  q_death = c(0.001, 0.0012, 0.0014, 0.0017, 0.0020, 1.0000),
  q_disability = c(0.002, 0.0021, 0.0022, 0.0023, 0.0024, 0.0000)
)
md <- md_table(qx_df, radix = 1e5, close = TRUE)
lt <- lt_tau(md, radix = 1e5, close = TRUE, frac = "UDD")
t_px(lt, x = 30, t = 5)


Compute simulated present values for life annuities

Description

Computes Monte Carlo simulated present values of life annuity payments from simulated future lifetimes, using compact actuarial notation.

Usage

mc_annuity(
  .data = NULL,
  i,
  payment = 1,
  k = 1L,
  type = c("whole", "temporary", "deferred", "deferred_temporary", "certain",
    "guaranteed", "whole_life"),
  n = NULL,
  h = 0,
  n_guar = NULL,
  timing = c("immediate", "due"),
  i_type = c("effective", "nominal_interest", "nominal_discount", "force", "nominal"),
  m = 1,
  col_K = "Kx",
  col_T = "Tx",
  col_pv = "pv_annuity",
  ...
)

Arguments

.data

A data frame or tibble containing simulated future lifetimes, typically returned by simulate_lifetime or by mc_multilife_status when working with multiple-life statuses.

i

Numeric scalar. Interest-rate input used for discounting.

payment

Numeric scalar. Amount of each annuity payment. Default is 1.

k

Positive integer. Number of annuity payments per year. Default is 1, corresponding to annual payments.

type

Character string specifying the annuity type. Canonical options are "whole", "temporary", "deferred", "deferred_temporary", "certain", and "guaranteed". The transitional alias "whole_life" is also accepted and mapped to "whole".

n

Numeric scalar. Term of the annuity in years. Required for "temporary", "deferred_temporary", and "certain" annuities.

h

Numeric scalar. Deferral period in years. Default is 0. Required to be positive for "deferred" and "deferred_temporary" annuities.

n_guar

Numeric scalar. Guaranteed payment period in years. Required for type = "guaranteed".

timing

Character string specifying the annuity payment timing. Available options are "immediate" and "due".

i_type

Character string specifying the interest-rate convention. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force". The transitional value "nominal" is accepted and treated as "nominal_interest".

m

Positive integer. Number of interest conversion periods per year for nominal annual rates. Default is 1. This argument controls the interest-rate conversion frequency only. It does not represent annuity payment frequency.

col_K

Character string. Name of the column containing simulated curtate future lifetimes. Default is "Kx".

col_T

Character string. Name of the column containing simulated complete future lifetimes. Default is "Tx". This column is required when k > 1, except for annuities certain.

col_pv

Character string. Name of the output column containing simulated present values of annuity payments. Default is "pv_annuity".

...

Transitional compatibility for older calls using data, rate, payments_per_year, annuity, term, deferral_years, guarantee_years, interest_type, k_col, tx_col, and annuity_col.

Details

This function is designed to be used after simulate_lifetime, simulate_lifetimes, or mc_multilife_status. It takes simulated values of the curtate future lifetime K_x, and when needed the complete future lifetime T_x, and evaluates the present value random variable associated with classical annuity benefits.

This function follows the compact actuarial notation used throughout tidyactuarial: i is the interest-rate input, i_type is the interest-rate convention, m is the nominal conversion frequency, k is the annuity payment frequency, n is the annuity term, and h is the deferral period.

The arguments m and k have different meanings:

The argument payment represents the amount of each annuity payment. Thus, for a monthly annuity with total annual payment equal to 1, use payment = 1 / 12 and k = 12.

For annual payments, k = 1, the function works directly with K_x. For fractional payments, such as monthly, quarterly, or semiannual payments, the function uses T_x to determine whether the life is alive at each fractional payment time.

For annual whole-life annuity-immediate, the simulated present value is

Y = \sum_{j=1}^{K_x} c v^j,

where c is the amount of each payment.

For annual whole-life annuity-due, the simulated present value is

\ddot{Y} = \sum_{j=0}^{K_x} c v^j.

The function returns simulated present values, not only their expected value. Therefore the resulting column can be summarized with summary_mc, plotted with ggplot2, or used to construct premiums, losses, and reserves.

Value

A tibble with the original simulation columns and additional columns:

i

Original interest-rate input.

i_type

Interest-rate convention.

m

Interest conversion frequency.

i_effective

Equivalent annual effective interest rate.

v

Annual discount factor.

type

Canonical annuity type.

payment

Amount of each annuity payment.

k

Annuity payment frequency.

n

Annuity term, if applicable.

h

Deferral period.

n_guar

Guaranteed period, if applicable.

timing

Annuity payment timing.

n_payments

Number of payments made in the simulated scenario.

first_payment_time

First payment time in the simulated scenario.

last_payment_time

Last payment time in the simulated scenario.

pv_annuity

Simulated present value of annuity payments, or another name supplied through col_pv.

For transition, the output also includes legacy columns such as rate, interest_type, effective_rate, discount_factor, annuity, payments_per_year, term, deferral_years, and guarantee_years.

References

Bowers, N. L., Gerber, H. U., Hickman, J. C., Jones, D. A., and Nesbitt, C. J. (1997). Actuarial Mathematics. Second Edition. Society of Actuaries.

See Also

simulate_lifetime, simulate_lifetimes, mc_multilife_status, mc_insurance, mc_premium, mc_loss, mc_reserve, summary_mc

Other monte-carlo: mc_insurance(), mc_loss(), mc_premium(), mc_reserve(), simulate_lifetime(), summary_mc()

Examples

lt <- tibble::tibble(
  x = 40:100,
  qx = seq(0.002, 1, length.out = 61)
)

# Annual whole-life annuity-due
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    seed = 123
  ) |>
  mc_annuity(
    i = 0.05,
    type = "whole",
    payment = 1,
    k = 1,
    timing = "due"
  )

# Monthly whole-life annuity-due with total annual payment equal to 1
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    frac = "udd",
    seed = 123
  ) |>
  mc_annuity(
    i = 0.05,
    type = "whole",
    payment = 1 / 12,
    k = 12,
    timing = "due"
  )

# Quarterly temporary life annuity-immediate
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    frac = "udd",
    seed = 123
  ) |>
  mc_annuity(
    i = 0.05,
    type = "temporary",
    n = 20,
    payment = 1 / 4,
    k = 4,
    timing = "immediate"
  )

# Nominal interest convertible monthly, with quarterly payments
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    frac = "udd",
    seed = 123
  ) |>
  mc_annuity(
    i = 0.06,
    i_type = "nominal_interest",
    m = 12,
    type = "whole",
    payment = 1 / 4,
    k = 4,
    timing = "due"
  )

# Multiple-life status workflow
lt |>
  simulate_lifetimes(
    x = c(60, 58),
    n_sim = 25,
    frac = "udd",
    seed = 123
  ) |>
  mc_multilife_status(status = "joint") |>
  mc_annuity(
    i = 0.04,
    type = "whole",
    payment = 1,
    k = 1,
    timing = "due",
    col_K = "K_status",
    col_T = "T_status"
  )


Compute simulated present values for life insurance benefits

Description

Computes Monte Carlo simulated present values of life insurance benefits from simulated future lifetimes, using compact actuarial notation.

Usage

mc_insurance(
  .data = NULL,
  i = NULL,
  benefit = 1,
  type = c("whole", "term", "deferred", "deferred_term", "pure_endowment", "endowment",
    "whole_life", "deferred_temporary"),
  n = NULL,
  h = 0,
  timing = c("end_of_year", "moment_of_death"),
  i_type = c("effective", "nominal_interest", "nominal_discount", "force", "nominal"),
  m = 1,
  col_K = "Kx",
  col_T = "Tx",
  col_pv = "pv_benefit",
  ...
)

Arguments

.data

A data frame or tibble containing simulated future lifetimes, typically returned by simulate_lifetime or by mc_multilife_status when working with multiple-life statuses.

i

Numeric scalar. Interest-rate input used for discounting.

benefit

Numeric scalar. Benefit amount payable under the insurance. Default is 1.

type

Character string specifying the insurance type. Canonical options are "whole", "term", "deferred", "deferred_term", "pure_endowment", and "endowment". Transitional aliases "whole_life" and "deferred_temporary" are also accepted.

n

Numeric scalar. Insurance term in years. Required for "term", "deferred_term", "pure_endowment", and "endowment".

h

Numeric scalar. Deferral period in years. Default is 0. Required to be positive for "deferred" and "deferred_term" insurance.

timing

Character string specifying when death benefits are paid. Available options are "end_of_year" and "moment_of_death". Default is "end_of_year".

i_type

Character string specifying the interest-rate convention. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force". The transitional value "nominal" is accepted and treated as "nominal_interest".

m

Positive integer. Number of interest conversion periods per year for nominal annual rates. Default is 1. This argument controls the interest-rate conversion frequency only. It does not represent benefit frequency or premium payment frequency.

col_K

Character string. Name of the column containing simulated curtate future lifetimes. Default is "Kx".

col_T

Character string. Name of the column containing simulated complete future lifetimes. Required when timing = "moment_of_death". Default is "Tx".

col_pv

Character string. Name of the output column containing simulated present values of benefits. Default is "pv_benefit".

...

Transitional compatibility for older calls using data, rate, insurance, term, deferral_years, payment_timing, interest_type, k_col, tx_col, and benefit_col.

Details

This function is designed to be used after simulate_lifetime, simulate_lifetimes, or mc_multilife_status. It takes simulated values of the curtate future lifetime K_x, and when needed the complete future lifetime T_x, and evaluates the present value random variable associated with classical life insurance benefits.

This function follows the compact actuarial notation used throughout tidyactuarial: i is the interest-rate input, i_type is the interest-rate convention, m is the nominal conversion frequency, n is the insurance term, and h is the deferral period.

The arguments m and col_K have deliberately different roles:

If timing = "end_of_year", death benefits are discounted using K_x + 1. If timing = "moment_of_death", death benefits are discounted using T_x.

The following insurance types are supported:

The function returns simulated present values, not only their expected value. Therefore the resulting column can be summarized with summary_mc, plotted with ggplot2, or used to construct premiums, losses, and reserves.

Value

A tibble with the original simulation columns and additional columns:

i

Original interest-rate input.

i_type

Interest-rate convention.

m

Interest conversion frequency.

i_effective

Equivalent annual effective interest rate.

v

Annual discount factor.

type

Canonical insurance type.

benefit

Benefit amount.

n

Insurance term, if applicable.

h

Deferral period.

timing

Timing used for death benefits.

benefit_time

Simulated payment time of the benefit.

benefit_indicator

Indicator that the benefit is paid.

pv_benefit

Simulated present value of the benefit, or another name supplied through col_pv.

For transition, the output also includes legacy columns such as rate, interest_type, effective_rate, discount_factor, insurance, term, deferral_years, and payment_timing.

References

Bowers, N. L., Gerber, H. U., Hickman, J. C., Jones, D. A., and Nesbitt, C. J. (1997). Actuarial Mathematics. Second Edition. Society of Actuaries.

See Also

simulate_lifetime, simulate_lifetimes, mc_multilife_status, mc_annuity, mc_premium, mc_loss, mc_reserve, summary_mc

Other monte-carlo: mc_annuity(), mc_loss(), mc_premium(), mc_reserve(), simulate_lifetime(), summary_mc()

Examples

lt <- tibble::tibble(
  x = 40:100,
  qx = seq(0.002, 1, length.out = 61)
)

# Whole-life insurance payable at the end of the year of death
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    seed = 123
  ) |>
  mc_insurance(
    i = 0.05,
    type = "whole",
    benefit = 1
  )

# 20-year term insurance
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    seed = 123
  ) |>
  mc_insurance(
    i = 0.05,
    type = "term",
    n = 20,
    benefit = 100000
  )

# 10-year deferred whole-life insurance
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    seed = 123
  ) |>
  mc_insurance(
    i = 0.05,
    type = "deferred",
    h = 10,
    benefit = 1
  )

# Endowment insurance payable at the moment of death if death occurs
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    frac = "udd",
    seed = 123
  ) |>
  mc_insurance(
    i = 0.05,
    type = "endowment",
    n = 20,
    timing = "moment_of_death",
    benefit = 1
  )

# Nominal interest rate convertible monthly
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    seed = 123
  ) |>
  mc_insurance(
    i = 0.06,
    i_type = "nominal_interest",
    m = 12,
    type = "whole",
    benefit = 1
  )

# First-death insurance using a multiple-life status
lt |>
  simulate_lifetimes(
    x = c(60, 58),
    n_sim = 25,
    frac = "udd",
    seed = 123
  ) |>
  mc_multilife_status(status = "joint") |>
  mc_insurance(
    i = 0.04,
    type = "whole",
    benefit = 100000,
    col_K = "K_status",
    col_T = "T_status"
  )


Compute Monte Carlo loss random variables for life contingencies

Description

Computes simulated actuarial loss random variables from Monte Carlo present values of benefits, premium annuities, and premiums, using compact actuarial notation.

Usage

mc_loss(
  .data = NULL,
  col_Z = "pv_benefit",
  col_Y = "pv_annuity",
  col_P = "P",
  col_L = "L",
  P = NULL,
  ...
)

Arguments

.data

A data frame or tibble containing simulated present values of benefits and premium annuities.

col_Z

Character string. Name of the column containing the simulated present value of benefits. Default is "pv_benefit".

col_Y

Character string. Name of the column containing the simulated present value of premium annuities. Default is "pv_annuity".

col_P

Character string. Name of the column containing the premium. Default is "P". If this column is not found and col_P = "P", the legacy column "premium" is used when available.

col_L

Character string. Name of the output column containing the simulated loss random variable. Default is "L".

P

Optional numeric scalar. If supplied, this value is used as the premium instead of reading the premium from col_P.

...

Transitional compatibility for older calls using data, benefit_col, annuity_col, premium_col, loss_col, and premium.

Details

This function constructs the simulated loss random variable

L = Z - P Y,

where Z is the present value random variable of insurance benefits, Y is the present value random variable of the premium annuity, and P is the premium per payment.

This function follows the compact actuarial notation used throughout tidyactuarial: Z denotes the present value random variable of benefits, Y denotes the present value random variable of the premium annuity, P denotes the premium per payment, and L denotes the actuarial loss random variable at issue.

The function does not estimate the premium. It only constructs the simulated loss random variable. The premium may come from a column previously created by mc_premium, or it may be supplied directly through the P argument.

The interpretation of P depends on how the premium annuity present value was constructed. If pv_annuity was generated with annual payments, then P corresponds to that annual premium structure. If pv_annuity was generated using fractional payments in mc_annuity, such as payment = 1 / 12 and k = 12, then P is applied to that same fractional payment pattern.

Thus, mc_loss() can be used without modification for annual premiums, monthly premiums, quarterly premiums, semiannual premiums, and multiple-life premium structures, provided that col_Y contains the appropriate simulated premium annuity present value.

The resulting loss column can be used to estimate quantities such as expected loss, variance, standard deviation, probability of positive loss, loss quantiles, empirical value-at-risk measures, and sensitivities across actuarial assumptions.

Value

A tibble with the original columns and one additional column containing the simulated loss random variable. The name of this column is controlled by col_L. For transition, if col_L != "loss" and the input does not already contain a column named loss, a legacy column loss is also added with the same value.

References

Bowers, N. L., Gerber, H. U., Hickman, J. C., Jones, D. A., and Nesbitt, C. J. (1997). Actuarial Mathematics. Second Edition. Society of Actuaries.

See Also

simulate_lifetime, simulate_lifetimes, mc_multilife_status, mc_insurance, mc_annuity, mc_premium, mc_reserve, summary_mc

Other monte-carlo: mc_annuity(), mc_insurance(), mc_premium(), mc_reserve(), simulate_lifetime(), summary_mc()

Examples

# Example 1: direct use with simulated present values
sim_values <- tibble::tibble(
  sim_id = 1:5,
  pv_benefit = c(0.80, 0.75, 0.95, 0.60, 0.70),
  pv_annuity = c(8.0, 7.5, 9.0, 6.0, 7.0),
  P = 0.10
)

sim_values |>
  mc_loss()

# Example 2: using a premium supplied directly
sim_values |>
  mc_loss(P = 0.12)

# Example 3: annual whole life loss
lt <- tibble::tibble(
  x = 40:100,
  qx = seq(0.002, 1, length.out = 61)
)

lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    seed = 123
  ) |>
  mc_insurance(
    i = 0.05,
    type = "whole",
    benefit = 1
  ) |>
  mc_annuity(
    i = 0.05,
    type = "whole",
    payment = 1,
    k = 1,
    timing = "due"
  ) |>
  mc_premium() |>
  mc_loss()

# Example 4: monthly whole life loss
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    frac = "udd",
    seed = 123
  ) |>
  mc_insurance(
    i = 0.05,
    type = "whole",
    benefit = 1
  ) |>
  mc_annuity(
    i = 0.05,
    type = "whole",
    payment = 1 / 12,
    k = 12,
    timing = "due"
  ) |>
  mc_premium() |>
  mc_loss()

# Example 5: summarising simulated losses
lt |>
  simulate_lifetime(
    x = 45,
    n_sim = 25,
    frac = "udd",
    seed = 123
  ) |>
  mc_insurance(
    i = 0.04,
    type = "term",
    n = 20,
    benefit = 100000
  ) |>
  mc_annuity(
    i = 0.04,
    type = "temporary",
    n = 20,
    payment = 1 / 12,
    k = 12,
    timing = "due"
  ) |>
  mc_premium() |>
  mc_loss() |>
  summary_mc(value_col = "L")

# Example 6: joint-life annual loss
lt |>
  simulate_lifetimes(
    x = c(60, 58),
    n_sim = 25,
    seed = 123
  ) |>
  mc_multilife_status(status = "joint") |>
  mc_insurance(
    i = 0.04,
    type = "whole",
    benefit = 100000,
    col_K = "K_status",
    col_T = "T_status"
  ) |>
  mc_annuity(
    i = 0.04,
    type = "whole",
    payment = 1,
    k = 1,
    timing = "due",
    col_K = "K_status",
    col_T = "T_status"
  ) |>
  mc_premium() |>
  mc_loss()

# Transitional compatibility with old column arguments
sim_values |>
  mc_loss(
    benefit_col = "pv_benefit",
    annuity_col = "pv_annuity",
    premium_col = "P",
    loss_col = "loss"
  )


Compute multiple-life simulated status variables

Description

Combines simulated future lifetimes from multiple lives into a single multiple-life status. For a joint-life status, the status fails at the first death. For a last-survivor status, the status fails at the last death.

Usage

mc_multilife_status(
  data,
  status = c("joint", "last_survivor"),
  col_sim = "sim_id",
  col_life = "life_id",
  col_K = "Kx",
  col_T = "Tx"
)

Arguments

data

A data frame or tibble produced by simulate_lifetimes().

status

Multiple-life status. One of "joint", "joint_life", "last", "last_survivor", or "last_survivor_life".

col_sim

Name of the simulation identifier column.

col_life

Name of the life identifier column.

col_K

Name of the curtate future lifetime column.

col_T

Name of the complete future lifetime column.

Value

A tibble with one row per simulation and the columns K_status and T_status.

Examples

lt <- tibble::tibble(
  x = 40:100,
  qx = seq(0.002, 1, length.out = 61)
)

lt |>
  simulate_lifetimes(
    x = c(60, 58),
    n_sim = 25,
    frac = "udd",
    seed = 123
  ) |>
  mc_multilife_status(status = "joint")


Compute Monte Carlo net premiums for life contingencies

Description

Computes Monte Carlo net premiums from simulated present values of insurance benefits and premium annuities, using compact actuarial notation.

Usage

mc_premium(
  .data = NULL,
  col_Z = "pv_benefit",
  col_Y = "pv_annuity",
  col_P = "P",
  by = NULL,
  na_rm = TRUE,
  ...
)

Arguments

.data

A data frame or tibble containing simulated present values. Usually this object is obtained after applying mc_insurance and mc_annuity to the same simulated lifetime sample.

col_Z

Character string. Name of the column containing the simulated present value of insurance benefits. Default is "pv_benefit".

col_Y

Character string. Name of the column containing the simulated present value of the premium annuity. Default is "pv_annuity".

col_P

Character string. Name of the output column containing the Monte Carlo net premium. Default is "P".

by

Optional character vector with grouping columns. If supplied, the premium is computed separately within each group. If by = NULL and .data is already grouped with dplyr::group_by(), the current grouping structure is used.

na_rm

Logical scalar. Should missing values be removed when computing simulated means? Default is TRUE.

...

Transitional compatibility for older calls using data, benefit_col, annuity_col, and premium_col.

Details

This function applies the actuarial equivalence principle to simulated present value random variables. If Z denotes the simulated present value of benefits and Y denotes the simulated present value of the premium annuity, the Monte Carlo net premium is estimated as

\hat{P} = \frac{\bar{Z}}{\bar{Y}}.

Equivalently, this estimates

P = \frac{E[Z]}{E[Y]}.

This function follows the compact actuarial notation used throughout tidyactuarial: Z denotes the present value random variable of benefits, Y denotes the present value random variable of the premium annuity, and P denotes the net premium per payment.

The function does not simulate lifetimes and does not calculate present values directly. It only computes the Monte Carlo net premium from columns that already contain simulated present values.

In a typical workflow, simulate_lifetime generates simulated values of K_x and possibly T_x; mc_insurance creates the simulated benefit present value Z; mc_annuity creates the simulated premium annuity present value Y; and mc_premium() estimates the net level premium.

The estimated premium is attached to every row of the input data. This is intentional: it makes it easy to construct the simulated loss random variable with mc_loss, for example

L = Z - \hat{P}Y.

The function is also valid for premiums payable more than once per year. In that case, the payment frequency is not specified in mc_premium(); it is already embedded in the simulated premium annuity present value supplied through col_Y.

For example, if mc_annuity was called with payment = 1 / 12 and k = 12, then pv_annuity represents the present value of a monthly premium stream whose total annual amount is

  1. The premium estimated by mc_premium() is then consistent with that monthly payment structure.

If mc_annuity was called with payment = 1 and k = 12, then pv_annuity represents a stream of payments of 1 each month, and the resulting premium should be interpreted relative to that payment pattern.

This function computes net premiums only. It does not include expenses, safety loadings, profit margins, taxes, surrender charges, commissions, or other practical pricing adjustments.

Value

A tibble with the original columns and one additional column containing the simulated net premium. The name of this column is controlled by col_P. For transition, if col_P != "premium" and the input does not already contain a column named premium, a legacy column premium is also added with the same value.

References

Bowers, N. L., Gerber, H. U., Hickman, J. C., Jones, D. A., and Nesbitt, C. J. (1997). Actuarial Mathematics. Second Edition. Society of Actuaries.

See Also

simulate_lifetime, simulate_lifetimes, mc_insurance, mc_annuity, mc_loss, mc_reserve, summary_mc

Other monte-carlo: mc_annuity(), mc_insurance(), mc_loss(), mc_reserve(), simulate_lifetime(), summary_mc()

Examples

# Example 1: direct use with simulated present values
sim_values <- tibble::tibble(
  sim_id = 1:6,
  pv_benefit = c(0.82, 0.74, 0.61, 0.95, 0.70, 0.88),
  pv_annuity = c(8.2, 7.5, 6.1, 9.0, 7.2, 8.8)
)

sim_values |>
  mc_premium()

# Example 2: grouped premiums by age
sim_by_age <- tibble::tibble(
  sim_id = rep(1:6, times = 2),
  x = rep(c(40, 50), each = 6),
  pv_benefit = c(
    0.82, 0.74, 0.61, 0.95, 0.70, 0.88,
    0.91, 0.86, 0.79, 0.98, 0.83, 0.94
  ),
  pv_annuity = c(
    8.2, 7.5, 6.1, 9.0, 7.2, 8.8,
    6.8, 6.4, 5.9, 7.1, 6.2, 6.7
  )
)

sim_by_age |>
  mc_premium(by = "x")

# Example 3: using dplyr grouping
sim_by_age |>
  dplyr::group_by(x) |>
  mc_premium()

# Example 4: annual whole life net premium
lt <- tibble::tibble(
  x = 40:100,
  qx = seq(0.002, 1, length.out = 61)
)

lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    seed = 123
  ) |>
  mc_insurance(
    i = 0.05,
    type = "whole",
    benefit = 1
  ) |>
  mc_annuity(
    i = 0.05,
    type = "whole",
    payment = 1,
    k = 1,
    timing = "due"
  ) |>
  mc_premium()

# Example 5: monthly whole life net premium
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    frac = "udd",
    seed = 123
  ) |>
  mc_insurance(
    i = 0.05,
    type = "whole",
    benefit = 1
  ) |>
  mc_annuity(
    i = 0.05,
    type = "whole",
    payment = 1 / 12,
    k = 12,
    timing = "due"
  ) |>
  mc_premium()

# Example 6: term insurance with monthly premium annuity
lt |>
  simulate_lifetime(
    x = 45,
    n_sim = 25,
    frac = "udd",
    seed = 123
  ) |>
  mc_insurance(
    i = 0.04,
    type = "term",
    n = 20,
    benefit = 100000
  ) |>
  mc_annuity(
    i = 0.04,
    type = "temporary",
    n = 20,
    payment = 1 / 12,
    k = 12,
    timing = "due"
  ) |>
  mc_premium()

# Example 7: joint-life annual net premium
lt |>
  simulate_lifetimes(
    x = c(60, 58),
    n_sim = 25,
    seed = 123
  ) |>
  mc_multilife_status(status = "joint") |>
  mc_insurance(
    i = 0.04,
    type = "whole",
    benefit = 100000,
    col_K = "K_status",
    col_T = "T_status"
  ) |>
  mc_annuity(
    i = 0.04,
    type = "whole",
    payment = 1,
    k = 1,
    timing = "due",
    col_K = "K_status",
    col_T = "T_status"
  ) |>
  mc_premium()

# Transitional compatibility with old column arguments
sim_values |>
  mc_premium(
    benefit_col = "pv_benefit",
    annuity_col = "pv_annuity",
    premium_col = "premium"
  )


Compute Monte Carlo prospective reserves for life contingencies

Description

Computes simulated prospective reserve losses at one or more policy durations from simulated future lifetimes, using compact actuarial notation.

Usage

mc_reserve(
  .data = NULL,
  t = 0,
  i = NULL,
  P = NULL,
  col_P = "P",
  benefit = 1,
  payment = 1,
  k = 1L,
  type = c("whole", "term", "deferred", "deferred_term", "pure_endowment", "endowment",
    "whole_life", "deferred_temporary"),
  annuity_type = c("whole", "temporary", "deferred", "deferred_temporary", "certain",
    "guaranteed", "whole_life"),
  n = NULL,
  h = 0,
  n_guar = NULL,
  timing = c("end_of_year", "moment_of_death"),
  premium_timing = c("due", "immediate"),
  reserve_timing = c("before_payment", "after_payment"),
  i_type = c("effective", "nominal_interest", "nominal_discount", "force", "nominal"),
  m = 1,
  col_K = "Kx",
  col_T = "Tx",
  in_force_basis = c("auto", "complete", "curtate"),
  not_in_force = c("na", "zero"),
  col_L = "L_t",
  ...
)

Arguments

.data

A data frame or tibble containing simulated future lifetimes, typically returned by simulate_lifetime or by mc_multilife_status.

t

Numeric vector. Policy duration or durations at which the reserve is evaluated. Default is 0.

i

Numeric scalar. Interest-rate input used for discounting.

P

Optional numeric scalar. Premium used in the reserve loss. If NULL, the function first tries to use col_P from .data. If col_P is not found, a Monte Carlo net premium at issue is estimated internally as \bar{Z}_0 / \bar{Y}_0.

col_P

Character string. Name of the premium column in .data. Default is "P". If this column is not found and col_P = "P", the legacy column "premium" is used when available.

benefit

Numeric scalar. Benefit amount payable under the insurance. Default is 1.

payment

Numeric scalar. Amount of each premium annuity payment. Default is 1.

k

Positive integer. Number of premium payments per year. Default is 1, corresponding to annual premiums.

type

Character string specifying the insurance type. Canonical options are "whole", "term", "deferred", "deferred_term", "pure_endowment", and "endowment". Transitional aliases "whole_life" and "deferred_temporary" are also accepted.

annuity_type

Character string specifying the premium annuity type. Canonical options are "whole", "temporary", "deferred", "deferred_temporary", "certain", and "guaranteed". The transitional alias "whole_life" is also accepted.

n

Numeric scalar. Contract term in years. Required for insurance types "term", "deferred_term", "pure_endowment", and "endowment", and for annuity types "temporary", "deferred_temporary", and "certain".

h

Numeric scalar. Deferral period in years. Default is 0.

n_guar

Numeric scalar. Guaranteed payment period in years. Required when annuity_type = "guaranteed".

timing

Character string specifying when death benefits are paid. Available options are "end_of_year" and "moment_of_death". Default is "end_of_year".

premium_timing

Character string specifying the premium payment timing. Available options are "due" and "immediate". Default is "due".

reserve_timing

Character string specifying whether payments due exactly at the valuation duration are included. Available options are "before_payment" and "after_payment".

i_type

Character string specifying the interest-rate convention. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force". The transitional value "nominal" is accepted and treated as "nominal_interest".

m

Positive integer. Number of interest conversion periods per year for nominal annual rates. Default is 1. This argument controls the interest-rate conversion frequency only. It does not represent premium payment frequency.

col_K

Character string. Name of the column containing simulated curtate future lifetimes. Default is "Kx".

col_T

Character string. Name of the column containing simulated complete future lifetimes. Default is "Tx".

in_force_basis

Character string specifying how the in-force indicator is evaluated. Available options are "auto", "complete", and "curtate".

not_in_force

Character string specifying what to return for scenarios that are not in force at the valuation duration. Available options are "na" and "zero".

col_L

Character string. Name of the output reserve loss column. Default is "L_t".

...

Transitional compatibility for older calls using data, duration, rate, premium, premium_col, payments_per_year, insurance, annuity, term, deferral_years, guarantee_years, payment_timing, interest_type, k_col, tx_col, and reserve_col.

Details

This function recalculates future benefit and future premium present values from each valuation duration. It is not a wrapper around mc_loss, because reserves require valuing only the cash flows that remain after the valuation time.

For a policy in force at duration t, the simulated prospective loss is

L_t = Z_t - P Y_t,

where Z_t is the present value at duration t of future benefits, Y_t is the present value at duration t of future premium payments, and P is the premium per payment.

This function follows the compact actuarial notation used throughout tidyactuarial: t is the valuation duration, i is the interest-rate input, i_type is the interest-rate convention, m is the nominal conversion frequency, k is the premium payment frequency, n is the contract term, h is the deferral period, P is the premium per payment, and L_t is the simulated prospective loss at duration t.

The arguments m and k have deliberately different meanings:

The argument payment represents the amount of each premium annuity payment used to construct Y_t. Thus, for monthly premiums with total annual premium equal to 1, use payment = 1 / 12 and k = 12.

If k = 1, future premiums are annual. If k > 1, future premiums are made at fractional times, and a valid complete future lifetime column supplied through col_T is required for life-contingent premium annuities.

Durations may be integer or fractional. Fractional reserve durations require complete future lifetimes. For example, monthly reserve calculations may use t = seq(0, 20, by = 1 / 12).

If reserve_timing = "before_payment", cash flows occurring exactly at the valuation duration are included. If reserve_timing = "after_payment", cash flows occurring exactly at the valuation duration are excluded.

If not_in_force = "na", scenarios that are not in force at a given duration receive NA values for future present values and reserve losses. This is useful for estimating reserves conditional on the policy still being in force. If not_in_force = "zero", those scenarios receive zero values, which may be useful for portfolio run-off summaries.

This function computes prospective reserves under the simulated model. It does not include expenses, surrender values, taxes, profit loadings, or statutory reserving adjustments.

Value

A tibble with one row per original simulation and per requested duration. It contains the original simulation columns and additional columns including t, in_force, i, i_type, m, i_effective, v, type, annuity_type, benefit, payment, k, Z_t, Y_t, P, and L_t or another name supplied through col_L.

For transition, the output also includes legacy columns such as duration, rate, interest_type, effective_rate, discount_factor, insurance, annuity, payments_per_year, term, deferral_years, guarantee_years, future_pv_benefit, future_pv_premiums, premium, and reserve_loss.

References

Bowers, N. L., Gerber, H. U., Hickman, J. C., Jones, D. A., and Nesbitt, C. J. (1997). Actuarial Mathematics. Second Edition. Society of Actuaries.

See Also

simulate_lifetime, simulate_lifetimes, mc_multilife_status, mc_insurance, mc_annuity, mc_premium, mc_loss, summary_mc

Other monte-carlo: mc_annuity(), mc_insurance(), mc_loss(), mc_premium(), simulate_lifetime(), summary_mc()

Examples

lt <- tibble::tibble(
  x = 40:100,
  qx = seq(0.002, 1, length.out = 61)
)

# Annual prospective reserves for whole-life insurance
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    seed = 123
  ) |>
  mc_reserve(
    t = c(0, 5, 10),
    i = 0.05,
    type = "whole",
    annuity_type = "whole",
    benefit = 1,
    payment = 1,
    k = 1,
    premium_timing = "due"
  )

# Monthly premium reserve curve at annual valuation durations
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    frac = "udd",
    seed = 123
  ) |>
  mc_reserve(
    t = c(0, 1, 2, 3),
    i = 0.05,
    type = "whole",
    annuity_type = "whole",
    benefit = 1,
    payment = 1 / 12,
    k = 12,
    premium_timing = "due"
  )

# Fractional reserve durations
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    frac = "udd",
    seed = 123
  ) |>
  mc_reserve(
    t = seq(0, 1, by = 1 / 4),
    i = 0.05,
    type = "whole",
    annuity_type = "whole",
    benefit = 1,
    payment = 1 / 12,
    k = 12,
    premium_timing = "due"
  ) |>
  summary_mc(value_col = "L_t", by = "t")

# Joint-life reserve using a multiple-life status
lt |>
  simulate_lifetimes(
    x = c(60, 58),
    n_sim = 25,
    seed = 123
  ) |>
  mc_multilife_status(status = "joint") |>
  mc_reserve(
    t = c(0, 5),
    i = 0.04,
    type = "whole",
    annuity_type = "whole",
    benefit = 1,
    payment = 1,
    k = 1,
    col_K = "K_status",
    col_T = "T_status"
  )


Multiple decrement table (annual, discrete ages)

Description

Builds a multiple decrement table from cause-specific annual decrement probabilities q_x^{(j)}. This function is annual/discrete: ages must be integer-valued and the input probabilities are interpreted as one-year decrement probabilities for each cause.

Usage

md_table(
  qx_df,
  age_col = "x",
  cause_cols = NULL,
  radix = 1e+05,
  close = TRUE,
  check = TRUE,
  tol = 1e-10
)

Arguments

qx_df

A data.frame/tibble with an age column (default x) and one or more cause columns containing annual probabilities in [0,1]. Recommended naming convention: cause columns start with "q_" (e.g., q_death, q_disability).

age_col

Character. Name of the age column (default "x").

cause_cols

Character vector. Names of the cause columns. If NULL (default), all columns other than age_col are treated as causes.

radix

Numeric. Starting cohort size at the first age (default 1e5).

close

Logical. If TRUE, requires q_{\omega}^{(\tau)} = 1 at the last age (default TRUE).

check

Logical. If TRUE, performs input validation (default TRUE).

tol

Numeric tolerance used in checks (default 1e-10).

Details

Let the cause columns be q_x^{(1)}, \dots, q_x^{(J)}. The total decrement probability is q_x^{(\tau)} = \sum_j q_x^{(j)} and the total survival probability is p_x^{(\tau)} = 1 - q_x^{(\tau)}. The cohort is generated recursively by \ell_{x+1} = \ell_x \, p_x^{(\tau)} with starting radix \ell_{x_0} = \text{radix}.

If close = TRUE, the last age (omega) must satisfy q_{\omega}^{(\tau)} = 1 (within tolerance), so that the table closes naturally.

Value

A tibble with columns:

Examples

qx_df <- tibble::tibble(
  x = 30:35,
  q_death = c(0.001, 0.0012, 0.0014, 0.0017, 0.0020, 1.0000),
  q_disability = c(0.002, 0.0021, 0.0022, 0.0023, 0.0024, 0.0000)
)
md <- md_table(qx_df, radix = 1e5, close = TRUE)
md


Colombian mortality tables

Description

A tidy collection of Colombian mortality tables for life-contingency examples. The dataset includes regulatory and pedagogical mortality tables used in Colombian actuarial applications.

Usage

mortality_colombia_tables

Format

A tibble with 12 variables:

table_id

Mortality table identifier.

sex

Sex category, typically "male" or "female".

x

Integer actuarial age.

lx

Number of survivors at exact age x.

dx

Expected number of deaths between ages x and x + 1.

qx

One-year death probability between ages x and x + 1.

px

One-year survival probability between ages x and x + 1.

mu_x

Force of mortality at age x, when available.

ex

Complete life expectancy at age x, when available.

source

Source identifier or reference.

qx_calc

Death probability recalculated from lx and dx, when available.

qx_diff

Difference between reported qx and recalculated qx, when available.

Details

The dataset is intended for actuarial examples involving Colombian mortality tables, survival probabilities, life annuities, life insurance present values, and validation of life-table calculations.

The variable names follow the compact actuarial notation used throughout tidyactuarial: x denotes age, lx the number of lives, dx the number of deaths, qx the one-year death probability, px the one-year survival probability, mu_x the force of mortality, and ex the life expectancy at age x.

The variables qx_calc and qx_diff are included as validation aids. They allow users to compare reported death probabilities against probabilities reconstructed from lx and dx.

Some tables may start at different initial ages, use different terminal ages, or use different radix values. Users should filter the desired table and sex before passing the data to life-contingency functions.

Source

Colombian mortality tables cleaned for tidyactuarial examples. Source identifiers are provided in the source column.

Examples

data(mortality_colombia_tables)

head(mortality_colombia_tables)

mortality_colombia_tables |>
  dplyr::count(table_id, sex)

rv08_male <- mortality_colombia_tables |>
  dplyr::filter(table_id == "RV08_Rentistas_2005_2008", sex == "male") |>
  dplyr::select(x, lx, dx, qx, px, mu_x, ex)

head(rv08_male)


Generate a tidy life table from a theoretical mortality law

Description

Creates a tidy life table with one row per integer age from a parametric mortality law, using compact actuarial notation.

Usage

mortality_law_table(
  law = c("Exponential", "Gompertz", "Makeham", "Weibull", "Logistic", "DeMoivre",
    "Beta", "HeligmanPollard"),
  x_min,
  x_max,
  ...,
  params = NULL,
  frac = c("CF", "UDD", "Balducci", "CML"),
  l0 = 1e+05,
  close = TRUE,
  a_x = 0.5,
  check = TRUE,
  tol = 1e-10,
  radix = NULL,
  ax = NULL
)

Arguments

law

Character. Mortality law. One of "Exponential", "Gompertz", "Makeham", "Weibull", "Logistic", "DeMoivre", "Beta", or "HeligmanPollard".

x_min

Integer. Minimum age, inclusive.

x_max

Integer. Maximum age, inclusive. Must satisfy x_min < x_max.

...

Named law parameters. These values override params. Placing ... before arguments such as close and check avoids partial-matching conflicts with the Gompertz and Makeham parameter c.

params

Named list of law parameters, or NULL.

frac

Character. Within-year assumption used to convert \mu_x to q_x. One of "CF", "UDD", "Balducci", or "CML". "CML" is treated as "CF".

l0

Numeric scalar. Initial radix, that is, the starting value l_{x_min}.

close

Logical. If TRUE, forces the last age to close.

a_x

Numeric scalar. Average fraction of the year lived by those dying between age x and x+1. Default is 0.5.

check

Logical. If TRUE, performs strict input validation.

tol

Numeric tolerance used in checks.

radix

Deprecated. Use l0.

ax

Deprecated. Use a_x.

Details

The output follows tidyactuarial conventions and includes columns such as x, qx, px, lx, dx, Lx, Tx, ex, and mx.

This function follows the compact actuarial notation used throughout tidyactuarial: x denotes age, l0 denotes the starting radix, a_x denotes the average fraction of the year lived by those dying during the age interval, qx denotes the one-year death probability, and px = 1 - qx.

The parameter F_hp is used for the Heligman-Pollard law instead of F, because F is historically associated with FALSE in R and should not be promoted in a CRAN-facing API. The old name F is still accepted as a transitional alias.

Value

A tibble with columns x, law, frac, mu_x, qx, px, lx, dx, Lx, Tx, ex, and mx.

Supported laws

Law parameters

Parameters for the selected law are supplied either through ... or through the named list params. Direct parameters supplied through ... override values in params.

Required parameters:

Converting mu(x) to qx

For laws defined by a force of mortality \mu_x, the one-year death probability q_x is obtained using frac:

Direct qx laws

"DeMoivre", "Beta", and "HeligmanPollard" define qx directly. For these laws, frac is not used to derive qx.

Closure

If close = TRUE, the last age is forced to close the table by setting qx[x_max] = 1 and px[x_max] = 0.

See Also

lifetable, t_px, e_xy

Examples

mortality_law_table("Exponential", 0, 110, lambda = 0.01)

mortality_law_table("Gompertz", 0, 110, B = 1e-5, c = 1.08)

mortality_law_table("Makeham", 0, 110, A = 5e-4, B = 1e-6, c = 1.10)

mortality_law_table("Weibull", 1, 110, shape = 2.5, scale = 90)

mortality_law_table(
  "Logistic",
  0, 110,
  A = 1e-4,
  B = 1e-6,
  c = 1.10,
  C = 1e-3
)

mortality_law_table("DeMoivre", 0, 100, omega = 100)

mortality_law_table("Beta", 0, 100, alpha = 2, beta = 5, omega = 101)

mortality_law_table(
  "HeligmanPollard",
  1, 110,
  A = 0.0002,
  B = 0.1,
  C = 0.03,
  D = 10,
  E = 20,
  F_hp = 0.00005,
  G = 1.08
)

# Transitional compatibility with older names
mortality_law_table("Weibull", 1, 110, k = 2.5, lambda = 90)

mortality_law_table(
  "HeligmanPollard",
  1, 110,
  A = 0.0002,
  B = 0.1,
  C = 0.03,
  D = 10,
  E = 20,
  F = 0.00005,
  G = 1.08
)


World mortality sample panel, 2015–2023

Description

A compact international panel of period life tables for selected countries from 2015 to 2023. The dataset is intended for comparative mortality examples, especially before, during, and after the COVID-19 pandemic period.

Usage

mortality_world_sample_2015_2023

Format

A tibble with 35,451 rows and 14 variables:

country

Country name.

country_code

Numeric ISO country code.

continent

Continent.

region

Geographic region.

year

Calendar year, from 2015 to 2023.

pandemic_period

Period label: "pre_pandemic", "pre_pandemic_reference", "pandemic", "transition", or "post_pandemic".

sex

Sex category: "male", "female", or "both".

x

Integer actuarial age, from 0 to 100.

mx

Central death rate at age x.

qx

One-year death probability between ages x and x + 1.

px

One-year survival probability between ages x and x + 1.

lx

Number of survivors at exact age x, based on l0 = 100000.

dx

Expected number of deaths between ages x and x + 1.

source

Data source.

Details

The dataset is derived from central death rates mx. Death probabilities qx were computed using the annual approximation

q_x = \frac{m_x}{1 + (1 - a_x)m_x},

with a_x = 0.5. The last available age is closed by setting qx = 1. Survivors lx and expected deaths dx are then reconstructed recursively from l0 = 100000.

This dataset is a selected-country panel, not a complete world mortality database.

Source

United Nations, World Population Prospects 2024.

Examples

data(mortality_world_sample_2015_2023)

mortality_world_sample_2015_2023 |>
  dplyr::filter(country == "Colombia", sex == "both", x == 70) |>
  dplyr::select(year, pandemic_period, qx, lx)


World mortality sample, 2023

Description

A compact international sample of period life tables for selected countries in 2023. The dataset is intended for recent and simple examples involving central death rates, one-year death probabilities, survival probabilities, and life-table calculations.

Usage

mortality_world_sample_2023

Format

A tibble with 3,939 rows and 13 variables:

country

Country name.

country_code

Numeric ISO country code.

continent

Continent.

region

Geographic region.

year

Calendar year.

sex

Sex category: "male", "female", or "both".

x

Integer actuarial age, from 0 to 100.

mx

Central death rate at age x.

qx

One-year death probability between ages x and x + 1.

px

One-year survival probability between ages x and x + 1.

lx

Number of survivors at exact age x, based on l0 = 100000.

dx

Expected number of deaths between ages x and x + 1.

source

Data source.

Details

The dataset is derived from central death rates mx. Death probabilities qx were computed using the annual approximation

q_x = \frac{m_x}{1 + (1 - a_x)m_x},

with a_x = 0.5. The last available age is closed by setting qx = 1. Survivors lx and expected deaths dx are then reconstructed recursively from l0 = 100000.

This dataset is a selected-country sample, not a complete world mortality database.

Source

United Nations, World Population Prospects 2024.

Examples

data(mortality_world_sample_2023)

mortality_world_sample_2023 |>
  dplyr::filter(country == "Colombia", sex == "both") |>
  dplyr::select(x, mx, qx, px, lx, dx)


Sample multiple decrement probabilities

Description

A small pedagogical annual multiple decrement dataset with three causes: death, disability, and withdrawal. It is intended for examples involving multiple decrement tables, total-decrement life tables, cause-specific decrement probabilities, and cause-specific insurance benefits.

A small pedagogical annual multiple decrement dataset with three causes: death, disability, and withdrawal. It is intended for examples involving multiple decrement tables, total-decrement life tables, cause-specific decrement probabilities, and cause-specific insurance benefits.

Usage

multiple_decrement_sample

multiple_decrement_sample

Format

A tibble with 7 rows and 6 variables:

x

Integer actuarial age.

q_death

One-year death decrement probability.

q_disability

One-year disability decrement probability.

q_withdrawal

One-year withdrawal decrement probability.

q_total

Total one-year decrement probability.

p_total

Total one-year survival probability.

A tibble with 7 rows and 6 variables:

x

Integer actuarial age.

q_death

One-year death decrement probability.

q_disability

One-year disability decrement probability.

q_withdrawal

One-year withdrawal decrement probability.

q_total

Total one-year decrement probability.

p_total

Total one-year survival probability.

Details

This dataset already follows the compact actuarial convention x for age and q for decrement probabilities.

This dataset already follows the compact actuarial convention x for age and q for decrement probabilities.

Source

Synthetic pedagogical data created for tidyactuarial examples.

Synthetic pedagogical data created for tidyactuarial examples.

Examples

data(multiple_decrement_sample)

multiple_decrement_sample |>
  dplyr::select(x, q_death, q_disability, q_withdrawal, q_total, p_total)

data(multiple_decrement_sample)

multiple_decrement_sample |>
  dplyr::select(x, q_death, q_disability, q_withdrawal, q_total, p_total)


Plot a cash-flow diagram

Description

Creates a professional cash-flow diagram with arrows representing inflows and outflows over time, using compact actuarial notation.

Usage

plot_cash_flow(
  .data = NULL,
  C,
  t = NULL,
  date = NULL,
  i = NULL,
  i_type = "effective",
  m = 1L,
  PV = NULL,
  payment = NULL,
  time = NULL,
  rate = NULL,
  pv = NULL,
  title = NULL,
  subtitle = NULL,
  x_label = NULL,
  amount_label = "Cash flow",
  financial = TRUE,
  normalize = FALSE,
  aggregate = TRUE,
  show_labels = TRUE,
  label_size = 3.5,
  arrow_size = 0.8,
  timeline_size = 0.7,
  label_digits = 2L,
  currency = "",
  col_inflow = "#1B9E77",
  col_outflow = "#D95F02",
  date_labels = "%Y-%m-%d",
  day_count = c("act/365", "act/360"),
  ...
)

Arguments

.data

Optional data.frame or tibble containing cash-flow columns.

C

Numeric vector of cash flows, or a column name when .data is supplied.

t

Optional numeric vector of times in years, or a column name when .data is supplied.

date

Optional date vector, or a column name when .data is supplied.

i

Optional annual interest-rate input used to compute present value if PV is NULL.

i_type

Character string indicating the interest-rate type.

m

Positive integer. Conversion frequency for nominal rates.

PV

Optional numeric present value to display.

payment

Deprecated. Use C.

time

Deprecated. Use t. Kept explicit to avoid partial matching with timeline_size.

rate

Deprecated. Use i.

pv

Deprecated. Use PV.

title

Optional plot title.

subtitle

Optional plot subtitle.

x_label

Optional x-axis label.

amount_label

Optional y-axis label when normalize = FALSE.

financial

Logical. If TRUE, positive cash flows point upward and negative cash flows point downward.

normalize

Logical. If TRUE, arrow heights are normalized.

aggregate

Logical. If TRUE, cash flows occurring at the same time or date are summed before plotting.

show_labels

Logical. If TRUE, labels are shown next to cash-flow arrows.

label_size

Numeric text size for labels.

arrow_size

Numeric line width for arrows.

timeline_size

Numeric line width for the time axis.

label_digits

Integer number of decimal digits for cash-flow labels.

currency

Optional currency or unit prefix, such as $.

col_inflow

Character color for inflow arrows.

col_outflow

Character color for outflow arrows.

date_labels

Character date-label format passed to ggplot2::scale_x_date().

day_count

Day-count convention used when date is supplied.

...

Reserved for future extensions.

Details

This function uses compact actuarial notation: C denotes cash-flow amounts, t denotes times in years, i denotes the interest-rate input, and PV denotes present value.

Value

A ggplot2 object.

See Also

pv_flow, fv_flow, irr_flow, standardize_interest

Other time-value: future_value(), fv_flow(), irr_flow(), irr_flow_multi(), present_value(), pv_flow()

Examples

plot_cash_flow(
  C = c(-1000, 300, 400, 500),
  t = c(0, 1, 2, 3),
  i = 0.08,
  currency = "$"
)

cashflows <- tibble::tibble(
  t = c(0, 1, 2, 3),
  C = c(-1000, 300, 400, 500)
)

cashflows |>
  plot_cash_flow(C = C, t = t, i = 0.08)

dated_flows <- tibble::tibble(
  date = as.Date(c("2026-01-01", "2026-07-01", "2027-01-01")),
  C = c(-1000, 450, 700)
)

dated_flows |>
  plot_cash_flow(C = C, date = date, i = 0.08)

plot_cash_flow(
  payment = c(-1000, 300, 400, 500),
  time = c(0, 1, 2, 3),
  rate = 0.08,
  currency = "$"
)


Plot immunization performance under interest-rate shifts

Description

Computes and plots the difference between the present value of liabilities and the present value of an immunized asset portfolio under small interest rate changes. This allows visual evaluation of duration or duration-convexity immunization quality.

Usage

plot_immunization_gap(
  L,
  t,
  asset_cashflows,
  w,
  i,
  i_type = "effective",
  m = 1L,
  delta = 0.01,
  n_grid = 200L
)

Arguments

L

Numeric vector of liability payments.

t

Numeric vector of times of each liability payment.

asset_cashflows

A list where each element is a list with components $cf and $t, defining each asset's cash flow.

w

Numeric vector of portfolio weights or units. Must have the same length as asset_cashflows.

i

Base interest-rate input.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal rates. Ignored for i_type = "effective" and i_type = "force".

delta

A numeric value defining the range of annual effective rates: from i_effective - delta to i_effective + delta, where i_effective is the annual effective rate equivalent to i, i_type, and m.

n_grid

Number of rate values to evaluate.

Details

This function follows the compact actuarial notation used throughout tidyactuarial: L denotes liabilities, t denotes payment times, w denotes asset weights, cf denotes cash flows, i denotes the interest-rate input, i_type denotes the interest-rate type, and m denotes the conversion frequency for nominal rates.

Let v(i) = 1/(1+i). For a liability stream L_k at time t_k:

PV_L(i) = \sum_k L_k \, v(i)^{t_k}

For a portfolio of assets with weights w_j:

PV_A(i) = \sum_j w_j \, PV_j(i)

The curve \Delta(i) = PV_A(i) - PV_L(i) illustrates immunization robustness. Under perfect duration immunization, this curve is tangent to zero at the base rate and non-negative nearby if the convexity condition is also met.

Value

A ggplot2 object showing the PV difference curve PV_A(i) - PV_L(i) and a zero reference line.

See Also

immunize_duration, immunize_duration_convexity, bond_duration, bond_convexity

Other immunization: immunize_duration(), immunize_duration_convexity()

Examples

# Two-asset duration immunization gap
plot_immunization_gap(
  L = c(5000, 8000),
  t = c(3, 7),
  asset_cashflows = list(
    list(cf = c(0, 0, 100), t = c(1, 2, 3)),
    list(cf = c(0, 0, 0, 0, 0, 0, 200), t = 1:7)
  ),
  w = c(5, 2.5),
  i = 0.05,
  delta = 0.02
)


Plot a Kaplan–Meier survival curve

Description

Creates a step-function plot of the Kaplan–Meier survival estimate \hat S(t) with optional pointwise confidence bands. Designed to work directly with the output of km_lifetable.

Usage

plot_km(
  km,
  time_col = "time",
  surv_col = "S",
  lower_col = "ci_low",
  upper_col = "ci_high",
  conf_int = TRUE,
  title = NULL
)

Arguments

km

A data frame or tibble with at least columns for time and survival. Can also be the full list returned by km_lifetable, in which case the $km component is extracted automatically.

time_col

Character. Name of the time column. Default "time".

surv_col

Character. Name of the survival column. Default "S" (matching km_lifetable output).

lower_col

Character. Name of the lower CI column. Default "ci_low" (matching km_lifetable output).

upper_col

Character. Name of the upper CI column. Default "ci_high" (matching km_lifetable output).

conf_int

Logical. If TRUE (default) and CI columns exist in km, plot a step-wise confidence ribbon.

title

Optional character string for the plot title.

Details

Both the survival curve and the confidence band are rendered as step functions (using geom_step), which is the correct representation for the KM estimator - a right-continuous step function that drops at each observed event time.

The confidence band uses geom_stepribbon logic: the data is internally expanded so that a ribbon-fill follows the step pattern rather than interpolating linearly between event times.

Value

A ggplot object that can be further customised with additional ggplot2 layers.

See Also

km_lifetable for fitting the KM estimator and building the empirical life table.

Examples

set.seed(42)
n <- 150
time   <- rexp(n, rate = 0.05)
status <- rbinom(n, 1, prob = 0.7)

# Fit KM and plot directly
out <- km_lifetable(time, status, breaks = 0:30)

# Pass the full list - $km is extracted automatically
plot_km(out)

# Or pass just the km tibble
plot_km(out$km)

# Without confidence band
plot_km(out, conf_int = FALSE, title = "KM Survival Curve")

# Customise with ggplot2 layers
if (requireNamespace("ggplot2", quietly = TRUE)) {
  plot_km(out) +
    ggplot2::geom_hline(yintercept = 0.5, linetype = "dashed") +
    ggplot2::labs(subtitle = "Dashed line = median survival")
}


Compute portfolio convexity as a market-value-weighted average

Description

Computes portfolio convexity from individual position convexities using present values or market values as weights, using compact actuarial notation.

Usage

portfolio_convexity(
  .data = NULL,
  portfolio_id = NULL,
  P = NULL,
  C = NULL,
  col_portfolio = "portfolio_id",
  col_P = "P",
  col_C = "C",
  .out = "C_P",
  .out_value = "P_total",
  .out_n = "n_positions",
  .na = c("propagate", "error", "drop"),
  ...
)

Arguments

.data

A data.frame or tibble. If NULL, P and C must be supplied as vectors.

portfolio_id

Optional vector of portfolio identifiers when .data = NULL. If omitted, all positions are treated as belonging to a single portfolio.

P

Numeric vector of present values, prices, or market values when .data = NULL.

C

Numeric vector of individual convexities when .data = NULL.

col_portfolio

Name of the portfolio identifier column. If NULL, all rows are treated as one portfolio.

col_P

Name of the numeric column containing present values, prices, or market values.

col_C

Name of the numeric column containing individual convexities.

.out

Name of the output column containing portfolio convexity.

.out_value

Name of the output column containing total portfolio value.

.out_n

Name of the output column containing the number of positions used in the calculation.

.na

NA handling policy: "propagate", "error", or "drop".

...

Transitional compatibility for older calls using market_value, convexity, col_market_value, and col_convexity. These names are mapped to P, C, col_P, and col_C.

Details

This is a summarise-style tibble-first function. Each input row represents one position, and each output row represents one portfolio.

The function does not compute individual convexities from bond terms or yields. Instead, it assumes that the input convexity column already contains valid convexity measures on a common basis within each portfolio.

The portfolio convexity is computed as:

C_P = \frac{\sum_{j=1}^r P_j C_j}{\sum_{j=1}^r P_j}

where P_j is the present value or market value of position j, and C_j is its convexity.

This function follows the compact actuarial notation used throughout tidyactuarial: P denotes price, present value, or market value, and C denotes convexity.

The function is deliberately agnostic about the convexity convention, but all individual convexities must be expressed on the same basis within each portfolio. For example, do not mix convexities measured in coupon periods with convexities measured in years.

Value

A tibble with one row per portfolio and columns for portfolio convexity, total portfolio value, and number of positions used.

References

Marcel B. Finan, A Basic Course in the Theory of Interest and Derivatives Markets: A Preparation for the Actuarial Exam FM/2, Section 55: Redington Immunization and Convexity.

Kellison, S. G. The Theory of Interest, Chapter 11: Duration, Convexity and Immunization.

See Also

portfolio_duration, bond_convexity, bond_duration

Other bonds: bond_book_value(), bond_callable_price(), bond_convexity(), bond_duration(), bond_price(), bond_ytm(), portfolio_duration()

Examples

# Simple example: one portfolio
portfolio_convexity(
  P = c(1000, 2000, 500),
  C = c(20, 12, 35)
)

# Medium example: two portfolios
positions <- tibble::tibble(
  portfolio_id = c("A", "A", "B", "B"),
  P = c(1000, 2000, 1000 / 1.08^2, 1000 / 1.08^4),
  C = c(20, 12, 6, 18)
)

portfolio_convexity(
  positions,
  col_portfolio = "portfolio_id",
  col_P = "P",
  col_C = "C"
)


Compute portfolio duration as a market-value-weighted average

Description

Computes portfolio duration from individual position durations using present values, prices, or market values as weights, using compact actuarial notation.

Usage

portfolio_duration(
  .data = NULL,
  portfolio_id = NULL,
  P = NULL,
  D = NULL,
  col_portfolio = "portfolio_id",
  col_P = "P",
  col_D = "D",
  .out = "D_P",
  .out_value = "P_total",
  .out_n = "n_positions",
  .na = c("propagate", "error", "drop"),
  ...
)

Arguments

.data

A data.frame or tibble. If NULL, P and D must be supplied as vectors.

portfolio_id

Optional vector of portfolio identifiers when .data = NULL. If omitted, all positions are treated as belonging to a single portfolio.

P

Numeric vector of present values, prices, or market values when .data = NULL.

D

Numeric vector of individual durations when .data = NULL.

col_portfolio

Name of the portfolio identifier column. If NULL, all rows are treated as one portfolio.

col_P

Name of the numeric column containing present values, prices, or market values.

col_D

Name of the numeric column containing individual durations.

.out

Name of the output column containing portfolio duration.

.out_value

Name of the output column containing total portfolio value.

.out_n

Name of the output column containing the number of positions used in the calculation.

.na

NA handling policy: "propagate", "error", or "drop".

...

Transitional compatibility for older calls using market_value, duration, col_market_value, and col_duration. These names are mapped to P, D, col_P, and col_D.

Details

This is a summarise-style tibble-first function. Each input row represents one position, and each output row represents one portfolio.

The function does not compute individual durations from bond terms or yields. Instead, it assumes that the input duration column already contains valid duration measures on a common basis within each portfolio.

The portfolio duration is computed as:

D_P = \frac{\sum_{j=1}^r P_j D_j}{\sum_{j=1}^r P_j}

where P_j is the present value, price, or market value of position j, and D_j is its duration.

This function follows the compact actuarial notation used throughout tidyactuarial: P denotes price, present value, or market value, and D denotes duration.

The function is deliberately agnostic about the duration convention, but all individual durations must be expressed on the same basis within each portfolio. For example, do not mix Macaulay durations in years with durations measured in coupon periods.

Value

A tibble with one row per portfolio and columns for portfolio duration, total portfolio value, and number of positions used.

References

Marcel B. Finan, A Basic Course in the Theory of Interest and Derivatives Markets: A Preparation for the Actuarial Exam FM/2, Section 54: Macaulay and Modified Durations.

Kellison, S. G. The Theory of Interest, Chapter 11: Duration, Convexity and Immunization.

See Also

portfolio_convexity, bond_duration, bond_convexity

Other bonds: bond_book_value(), bond_callable_price(), bond_convexity(), bond_duration(), bond_price(), bond_ytm(), portfolio_convexity()

Examples

# Simple example: one portfolio
portfolio_duration(
  P = c(1000, 2000, 500),
  D = c(7, 5, 10)
)

# Medium example: two portfolios
positions <- tibble::tibble(
  portfolio_id = c("A", "A", "B", "B"),
  P = c(1000, 2000, 1000 / 1.08^2, 1000 / 1.08^4),
  D = c(7, 5, 2, 4)
)

portfolio_duration(
  positions,
  col_portfolio = "portfolio_id",
  col_P = "P",
  col_D = "D"
)


Gross (expense-loaded) premium from a net premium

Description

Adjusts a net premium using a simple expense structure (\alpha, \beta, \gamma) to obtain the gross or commercial premium through the extended equivalence principle, using compact actuarial notation.

Usage

premium_gross(prem, alpha = 0, beta = 0, gamma = 0, tidy = FALSE, ...)

Arguments

prem

A one-row data frame or tibble containing at least:

  • premium or P: net premium per payment.

  • apv_premiums or a_premiums: APV of the premium annuity.

alpha

Numeric scalar greater than or equal to 0. Initial acquisition expense as a multiple of one gross premium payment. The initial expense is \alpha G, paid once at issue.

beta

Numeric scalar in [0,1). Proportional collection expense as a fraction of each gross premium payment.

gamma

Numeric scalar greater than or equal to 0. Fixed maintenance expense per premium payment period, in monetary units.

tidy

Logical scalar. If FALSE, returns the gross premium as a numeric value. If TRUE, returns a one-row tibble with the expense breakdown.

...

Transitional compatibility for older calls using output = "value" or output = "table". This argument will be removed in a future version.

Details

The function is designed to work with the detailed output of premium_x or premium_xy when those functions return a one-row tibble containing the APV of the premium annuity. It can also be used with any compatible one-row tibble.

This function follows the compact actuarial notation used throughout tidyactuarial. The gross premium is denoted by G, the net premium by P_net, and the APV of the premium annuity by a_premiums.

The extended equivalence principle equates the APV of gross premiums with the APV of benefits plus expenses:

G \ddot{a} = P_{\text{net}}\ddot{a} + \alpha G + \beta G \ddot{a} + \gamma \ddot{a}.

Solving for the gross premium gives:

G = \frac{P_{\text{net}} + \gamma} {(1-\beta) - \alpha / \ddot{a}}.

In this function, \ddot{a} is supplied through the apv_premiums or a_premiums column of prem.

Value

If tidy = FALSE, a numeric gross premium per payment.

If tidy = TRUE, a one-row tibble with columns G, P_net, alpha, beta, gamma, loading_pct, and a_premiums.

See Also

premium_x for single-life net premiums, premium_xy for two-life net premiums, annuity_x for building custom expense APVs.

Other life-contingencies: annuity_multi(), annuity_x(), annuity_xy(), insurance_variable_k(), insurance_x(), insurance_xy(), life_contract(), premium_x(), premium_xy(), reserve_x(), reserve_xy(), simulate_annuity_x(), simulate_insurance_x()

Examples

# Compatible one-row premium table
net <- tibble::tibble(
  premium = 1200,
  apv_premiums = 12.5
)

premium_gross(net, alpha = 0.5, beta = 0.05, gamma = 50)

# Finan-style expense structure:
# 10% of each premium plus fixed expenses of 275 per payment period
premium_gross(net, alpha = 0, beta = 0.10, gamma = 275)

# Detailed output with expense breakdown
premium_gross(
  net,
  alpha = 0.5,
  beta = 0.05,
  gamma = 50,
  tidy = TRUE
)

# Also accepts compact actuarial column names
net2 <- tibble::tibble(
  P = 1200,
  a_premiums = 12.5
)

premium_gross(net2, alpha = 0.5, beta = 0.05, gamma = 50)


Net premium for single-life insurance by the equivalence principle

Description

Computes the net benefit premium of a single-life insurance contract using the equivalence principle:

P = \frac{APV(\text{benefits})}{APV(\text{premium annuity})}.

Usage

premium_x(
  lt,
  x,
  i,
  i_type = "effective",
  m = 1L,
  type = c("whole", "term", "endowment", "variable_k"),
  benefit = 1,
  n = Inf,
  h = 0L,
  k = 1L,
  frac = c("UDD", "CF", "CML", "Balducci"),
  timing = c("due", "immediate"),
  premium_start = c("issue", "deferred"),
  n_prem = NULL,
  woolhouse = c("none", "first", "second"),
  tidy = FALSE,
  check = TRUE,
  ...
)

Arguments

lt

A life table data frame containing at least columns x and lx.

x

Integer actuarial age at issue.

i

Numeric scalar. Annual interest-rate input.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal interest-rate inputs. Ignored for i_type = "effective" and i_type = "force".

type

Character string. Type of insurance contract. One of "whole", "term", "endowment", or "variable_k".

benefit

Benefit amount. For standard products, a single nonnegative numeric value. For type = "variable_k", a numeric vector or a function of time may be supplied and is passed to insurance_variable_k.

n

Insurance term in years. Use Inf for whole-life insurance. Required as a finite value for term and endowment insurance. For type = "variable_k", n = Inf allows the term to be inferred from a numeric benefit vector.

h

Integer deferment period in years.

k

Positive integer. Number of premium payments per year.

frac

Fractional-age assumption used only for type = "variable_k". One of "UDD", "CF", "CML", or "Balducci".

timing

Timing of premium payments. Use "due" for payments in advance or "immediate" for payments in arrears.

premium_start

Start of premium payments. Use "issue" for premiums starting at issue, or "deferred" for premiums starting after h.

n_prem

Optional premium-paying term in years, counted from premium_start. If NULL, it defaults to whole life for whole-life insurance and to n for temporary products. For finite term contracts, premiums must not extend beyond the end of coverage.

woolhouse

Woolhouse order for the premium annuity when k > 1. One of "none", "first", or "second".

tidy

Logical scalar. If FALSE, returns a numeric premium. If TRUE, returns a one-row tibble with details.

check

Logical. If TRUE, performs input validation.

...

Transitional compatibility for older calls using mortality_table, age, rate, rate_type, insurance_type, term_years, deferral_years, payments_per_year, premium_timing, premium_term_years, and output.

Details

The premium returned corresponds to one premium payment. For example, when k = 12, the returned value is the monthly premium.

This function follows the compact actuarial notation used throughout tidyactuarial: lt is the life table, x is the age at issue, i is the interest-rate input, i_type is the interest-rate type, m is the conversion frequency for nominal rates, n is the insurance term, h is the deferment period, and k is the premium payment frequency.

The benefit premium is the level payment satisfying the equivalence principle: the APV of premiums equals the APV of benefits at issue.

For standard products, the APV of benefits is computed with insurance_x. For type = "variable_k", it is computed with insurance_variable_k. The APV of the premium annuity is computed with annuity_x, supporting k-thly payments and Woolhouse approximations.

Value

If tidy = FALSE, a numeric scalar with the net premium per payment.

If tidy = TRUE, a one-row tibble with the main inputs, APV of benefits, APV of premiums, premium per payment, and annualized premium.

See Also

insurance_x, insurance_variable_k, annuity_x, premium_xy, premium_gross

Other life-contingencies: annuity_multi(), annuity_x(), annuity_xy(), insurance_variable_k(), insurance_x(), insurance_xy(), life_contract(), premium_gross(), premium_xy(), reserve_x(), reserve_xy(), simulate_annuity_x(), simulate_insurance_x()

Examples

lt <- data.frame(
  x  = 60:66,
  lx = c(100000, 99000, 97500, 95500, 93000, 90000, 86000)
)

# Whole-life insurance, annual premium
premium_x(
  lt = lt,
  x = 60,
  i = 0.05,
  type = "whole",
  benefit = 100000
)

# Verify manually: P = A / a-double-dot
A <- insurance_x(
  lt = lt,
  x = 60,
  i = 0.05,
  type = "whole",
  benefit = 100000
)

ad <- annuity_x(
  lt = lt,
  x = 60,
  i = 0.05,
  timing = "due"
)

A / ad

# Five-year term insurance
premium_x(
  lt = lt,
  x = 60,
  i = 0.05,
  type = "term",
  n = 5,
  benefit = 100000
)

# Tidy output
premium_x(
  lt = lt,
  x = 60,
  i = 0.05,
  type = "term",
  n = 5,
  benefit = 100000,
  tidy = TRUE
)

# Monthly premiums paid for a shorter period than the coverage term
premium_x(
  lt = lt,
  x = 60,
  i = 0.05,
  type = "term",
  n = 5,
  benefit = 100000,
  k = 12,
  n_prem = 3
)


Net premium for two-life insurance by the equivalence principle

Description

Computes the net benefit premium for a two-life insurance contract using the equivalence principle and compact actuarial notation.

Usage

premium_xy(
  lt,
  x = NULL,
  y = NULL,
  i = NULL,
  i_type = NULL,
  m = NULL,
  type = c("whole", "term", "endowment", "pure_endowment"),
  benefit = 1,
  n = Inf,
  h = 0L,
  k = 1L,
  frac = c("UDD", "CF", "CML", "Balducci"),
  timing = c("due", "immediate"),
  premium_start = c("issue", "deferred"),
  n_prem = NULL,
  status = c("joint", "last"),
  tidy = FALSE,
  check = TRUE,
  tol = 1e-10,
  ...
)

Arguments

lt

Either a single life table used for both lives, a list of two life tables list(lt_x, lt_y), or a tidyact_life_contract object created by life_contract. Each table must contain column x and at least one of lx, px, or qx.

x

Integer actuarial age for the first life.

y

Integer actuarial age for the second life.

i

Numeric scalar. Annual interest-rate input.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal rates. Ignored for i_type = "effective" and i_type = "force".

type

Type of insurance: "whole", "term", "endowment", or "pure_endowment".

benefit

Benefit amount. Must be a single nonnegative number.

n

Insurance term in years after deferment. Required as finite for "term", "endowment", and "pure_endowment".

h

Nonnegative integer deferment period in years.

k

Positive integer. Number of premium payments per year.

frac

Fractional-age assumption used for fractional premium payment times: "UDD", "CF", "CML", or "Balducci".

timing

Timing of premium payments: "due" for payments in advance or "immediate" for payments in arrears.

premium_start

Start of premium payments: "issue" for time 0 or "deferred" for time h.

n_prem

Optional premium-paying term in years, counted from premium_start. If NULL, defaults to the available status horizon for whole-life products and to n for finite products.

status

Two-life status definition: "joint" for the joint-life status or "last" for the last-survivor status.

tidy

Logical scalar. If FALSE, returns a numeric premium. If TRUE, returns a one-row tibble with details.

check

Logical. If TRUE, performs input validation.

tol

Numeric tolerance for integer checks.

...

Transitional compatibility for older calls using mortality_table, age_x, age_y, rate, rate_type, insurance_type, term_years, deferment_years, payments_per_year, premium_timing, premium_term_years, cohort, and output.

Details

The premium returned corresponds to one premium payment. For example, if k = 1, it is an annual premium; if k = 12, it is a monthly premium.

The function separates:

This function follows the compact actuarial notation used throughout tidyactuarial: lt is the life table input, x and y are the two actuarial ages, i is the interest-rate input, i_type is the interest-rate type, m is the conversion frequency for nominal rates, n is the insurance term, h is the deferment period, and k is the premium payment frequency.

The function assumes independent future lifetimes.

Let S(t) denote the probability that the selected two-life status survives t years from issue. For integer death benefits paid at the end of the year of status failure, the benefit APV for a term insurance deferred h years and lasting n years is

B \sum_{r=h}^{h+n-1} v^{r+1}\{S(r)-S(r+1)\}.

For an endowment insurance, the pure endowment benefit B v^{h+n} S(h+n) is added.

Premiums are contingent on the selected two-life status being in force at the premium payment time.

Value

If tidy = FALSE, a numeric net premium per payment.

If tidy = TRUE, a one-row tibble with premium details.

See Also

premium_x, insurance_xy, annuity_xy, reserve_xy

Other life-contingencies: annuity_multi(), annuity_x(), annuity_xy(), insurance_variable_k(), insurance_x(), insurance_xy(), life_contract(), premium_gross(), premium_x(), reserve_x(), reserve_xy(), simulate_annuity_x(), simulate_insurance_x()

Examples

lt <- data.frame(
  x = 60:110,
  lx = seq(100000, 0, length.out = 51)
)

premium_xy(
  lt = lt,
  x = 60,
  y = 62,
  i = 0.05,
  type = "term",
  n = 5,
  n_prem = 3,
  k = 12,
  status = "last",
  benefit = 100000,
  tidy = TRUE
)

lt |>
 life_contract(lives = "joint", x = 60, y = 62, i = 0.05) |>
  premium_xy(
   type = "term",
   n = 5,
   n_prem = 3,
   k = 12,
   status = "joint",
   benefit = 100000)

Present value of a single payment

Description

Computes the present value of a future payment due at a given time, using the annual effective interest rate implied by the supplied interest-rate specification and compact actuarial notation.

Usage

present_value(C, i, i_type = "effective", m = 1, t, tidy = FALSE)

Arguments

C

Numeric vector of future payment amounts or capitals.

i

Numeric vector of interest-rate values.

i_type

Character vector indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer vector giving the conversion frequency for nominal rates. Ignored for "effective" and "force".

t

Numeric vector of times in years until payment.

tidy

Logical scalar. If FALSE, returns a numeric present value. If TRUE, returns a tibble with intermediate calculations.

Details

The present value is computed as

PV = C v^t = \frac{C}{(1+i)^t}

where i is the annual effective interest rate and v = (1+i)^{-1} is the annual discount factor.

The input interest rate may be supplied as:

Internally, all rate specifications are first converted to the equivalent annual effective interest rate using standardize_interest.

This function follows the compact actuarial notation used throughout tidyactuarial: C denotes the future payment amount or capital, t denotes time, i denotes the interest-rate input, i_type denotes the interest-rate type, and m denotes the conversion frequency for nominal rates.

Input vectors must have length 1 or a common length. Missing values are propagated. This function does not accept dates; use pv_flow for dated cash flows.

Value

If tidy = FALSE, a numeric vector of present values.

If tidy = TRUE, a tibble with input values, equivalent rates, discount factors, and present values.

See Also

standardize_interest, future_value, pv_flow

Other time-value: future_value(), fv_flow(), irr_flow(), irr_flow_multi(), plot_cash_flow(), pv_flow()

Examples

# Numeric present value
present_value(C = 1000, i = 0.08, t = 3)

# Nominal interest converted monthly
present_value(
  C = 1000,
  i = 0.12,
  i_type = "nominal_interest",
  m = 12,
  t = 5
)

# Tibble output for teaching or auditing
present_value(
  C = 1000,
  i = 0.08,
  t = 3,
  tidy = TRUE
)

# Vectorized example
present_value(
  C = c(1000, 2500, 4000),
  i = c(0.08, 0.10, 0.12),
  i_type = c("effective", "nominal_interest", "force"),
  m = c(1, 12, 1),
  t = c(3, 5, 2)
)


Present value of a general cash flow

Description

Computes the present value of a cash-flow vector under either:

Usage

pv_flow(
  cf,
  i,
  i_type = "effective",
  m = 1L,
  t = NULL,
  date = NULL,
  day_count = c("act/365", "act/360")
)

Arguments

cf

Numeric vector of cash flows.

i

Numeric scalar or numeric vector of interest-rate values.

i_type

Character vector indicating the interest-rate type: "effective", "nominal_interest", "nominal_discount", or "force". May have length 1 or the same length as cf.

m

Positive integer vector giving the conversion frequency for nominal rates. May have length 1 or the same length as cf.

t

Optional numeric vector of cash-flow times in years.

date

Optional vector of cash-flow dates. If supplied, the earliest date is treated as time 0.

day_count

Day-count convention used to convert dates to year fractions. One of "act/365" or "act/360".

Details

The cash flow is supplied explicitly through cf. Its timing is supplied either through t (in years) or date (calendar dates). If date is supplied, the earliest date is taken as time 0.

Interest-rate input:

Rate types may be supplied in FM-style notation:

Internally, all supplied rates are converted to annual effective rates using standardize_interest.

This function follows the compact actuarial notation used throughout tidyactuarial: cf denotes cash flows, t denotes time, i denotes the interest rate, i_type denotes the interest-rate type, and m denotes the conversion frequency for nominal rates.

When i is a vector of spot rates, the discounting formula is

PV = \sum_{k=1}^n \frac{C_k}{(1+i_k)^{t_k}}

where i_k is the annual effective spot rate corresponding to cash flow k. When a single constant rate is supplied, i_k = i for all k.

Value

Numeric scalar: the present value of the cash flow.

See Also

fv_flow, present_value, irr_flow, standardize_interest

Other time-value: future_value(), fv_flow(), irr_flow(), irr_flow_multi(), plot_cash_flow(), present_value()

Examples

# Constant annual effective rate
pv_flow(
  cf = c(100, 150, 200),
  i = 0.08,
  i_type = "effective",
  t = c(0, 1, 2)
)

# Spot rates, one per cash flow
pv_flow(
  cf = c(100, 150, 200),
  i = c(0.05, 0.055, 0.06),
  i_type = "effective",
  t = c(1, 2, 3)
)

# Using dates; earliest date is taken as t = 0
pv_flow(
  cf = c(100, 150, 200),
  i = c(0.05, 0.055, 0.06),
  i_type = "effective",
  date = as.Date(c("2026-01-10", "2027-01-10", "2028-01-10"))
)

# Nominal rates by cash flow
pv_flow(
  cf = c(100, 100, 100),
  i = c(0.12, 0.12, 0.12),
  i_type = "nominal_interest",
  m = c(12, 12, 12),
  t = c(1, 2, 3)
)


Benefit reserve schedule for single-life insurance

Description

Computes terminal benefit reserves at selected policy durations for a fully discrete single-life insurance contract, using compact actuarial notation.

Usage

reserve_x(
  lt,
  x,
  i,
  i_type = "effective",
  m = 1L,
  type = c("whole", "term", "endowment"),
  n = Inf,
  benefit = 1,
  P = NULL,
  n_prem = NULL,
  t = NULL,
  method = c("prospective", "recursive"),
  tidy = TRUE,
  ...
)

Arguments

lt

A life table data frame with columns x and lx.

x

Integer actuarial age at issue.

i

Annual interest-rate input.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal rates. Ignored for i_type = "effective" and i_type = "force".

type

Character string. One of "whole", "term", or "endowment".

n

Insurance term in years. Use Inf for whole-life insurance. For term and endowment insurance, this must be finite.

benefit

Numeric scalar. Insurance benefit amount.

P

Optional numeric scalar. Premium per annual payment. If NULL, the net premium is computed internally by the equivalence principle.

n_prem

Optional premium-paying term in years. If NULL, premiums are payable for the full contract duration.

t

Optional integer vector of policy durations at which to compute reserves. If NULL, reserves are computed for all integer durations from issue to the contract horizon.

method

Character string. Either "prospective" or "recursive".

tidy

Logical scalar. If TRUE, returns a reserve schedule as a tibble. If FALSE, returns a named numeric vector.

...

Transitional compatibility for older calls using mortality_table, age, rate, rate_type, insurance_type, term_years, premium, premium_term_years, durations, and output.

Details

The function supports whole-life, term, and endowment insurance. Reserves may be computed prospectively or recursively. Premiums are assumed payable annually in advance. Limited-payment policies are supported through n_prem.

This function follows the compact actuarial notation used throughout tidyactuarial: lt is the life table, x is the age at issue, i is the interest-rate input, i_type is the interest-rate type, m is the conversion frequency for nominal rates, n is the contract term, P is the annual premium, and t is the policy duration.

The prospective reserve is computed as

{}_tV_x = APV_t(\text{future benefits}) - P\,APV_t(\text{future premiums}).

The recursive method uses the annual fully discrete recursion

{}_{k+1}V = \frac{({}_kV + P_k)(1+i) - b_{k+1}q_{x+k}}{p_{x+k}}.

When P = NULL, the net premium is computed directly from the life table by applying the equivalence principle at issue.

Value

If tidy = TRUE, a tibble with one row per selected duration. If tidy = FALSE, a named numeric vector of reserves.

See Also

premium_x, insurance_x, annuity_x, t_px

Other life-contingencies: annuity_multi(), annuity_x(), annuity_xy(), insurance_variable_k(), insurance_x(), insurance_xy(), life_contract(), premium_gross(), premium_x(), premium_xy(), reserve_xy(), simulate_annuity_x(), simulate_insurance_x()

Examples

lt <- data.frame(
  x  = 60:70,
  lx = c(100000, 99000, 97500, 95500, 93000, 90000,
         86000, 81000, 75000, 68000, 60000)
)

reserve_x(
  lt = lt,
  x = 60,
  i = 0.06,
  type = "whole"
)

reserve_x(
  lt = lt,
  x = 60,
  i = 0.06,
  type = "endowment",
  n = 5,
  benefit = 100000
)

reserve_x(
  lt = lt,
  x = 60,
  i = 0.06,
  type = "term",
  n = 5,
  benefit = 100000,
  t = c(0, 1, 2, 3, 4, 5),
  tidy = FALSE
)


Benefit reserve schedule for two-life insurance

Description

Computes terminal benefit reserves at selected policy durations for a fully discrete two-life insurance contract, assuming independent future lifetimes and using compact actuarial notation.

Usage

reserve_xy(
  lt,
  x = NULL,
  y = NULL,
  i = NULL,
  i_type = "effective",
  m = 1L,
  type = c("whole", "term", "endowment"),
  status = c("joint", "last"),
  n = Inf,
  h = 0L,
  benefit = 1,
  P = NULL,
  n_prem = NULL,
  k = 1L,
  timing = c("due", "immediate"),
  premium_start = c("issue", "deferred"),
  frac = c("UDD", "CF", "CML", "Balducci"),
  t = NULL,
  method = c("prospective", "recursive"),
  tidy = TRUE,
  check = TRUE,
  tol = 1e-10,
  ...
)

Arguments

lt

Either a single life table used for both lives, a list of two life tables list(lt_x, lt_y), or a tidyact_life_contract object created by life_contract. Each table must contain columns x and lx.

x

Integer actuarial age for the first life at issue.

y

Integer actuarial age for the second life at issue.

i

Numeric scalar. Annual interest-rate input.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal rates. Ignored for i_type = "effective" and i_type = "force".

type

Insurance type. One of "whole", "term", or "endowment".

status

Two-life status definition. Use "joint" for the joint-life status or "last" for the last-survivor status.

n

Insurance term in years after deferment. Required as finite for term and endowment insurance. Use Inf for whole-life insurance.

h

Nonnegative integer deferment period in years.

benefit

Numeric benefit amount.

P

Optional net premium per payment. If NULL, it is computed internally using premium_xy.

n_prem

Optional premium-paying term in years, counted from premium_start. If NULL, premiums are payable for the corresponding default term.

k

Positive integer. Number of premium payments per year.

timing

Timing of premium payments. Use "due" or "immediate". The recursive method currently requires annual due premiums.

premium_start

Start of premium payments. Use "issue" for time 0 or "deferred" for time h.

frac

Fractional-age assumption used for status survival probabilities: "UDD", "CF", "CML", or "Balducci".

t

Integer vector of policy durations at which to compute reserves. If NULL, reserves are computed for all integer durations from issue to the contract horizon.

method

Computation method. Use "prospective" or "recursive".

tidy

Logical scalar. If TRUE, returns a reserve schedule as a tibble. If FALSE, returns a named numeric vector.

check

Logical scalar. If TRUE, performs basic input checks.

tol

Numeric tolerance used for integer-grid checks.

...

Transitional compatibility for older calls using mortality_table, age_x, age_y, rate, rate_type, insurance_type, cohort, term_years, deferment_years, premium, premium_term_years, payments_per_year, premium_timing, at, and output.

Details

The function supports joint-life and last-survivor statuses, one common life table for both lives, or two different life tables supplied as list(lt_x, lt_y).

This function follows the compact actuarial notation used throughout tidyactuarial: lt is the life table input, x and y are the two actuarial ages, i is the interest-rate input, i_type is the interest-rate type, m is the conversion frequency for nominal rates, n is the insurance term, h is the deferment period, k is the premium payment frequency, P is the premium per payment, and t is the policy duration.

The prospective reserve at duration t is computed as

{}_tV = APV_t(\text{future benefits}) - P\,APV_t(\text{future premiums}).

The recursive method is implemented only for nondeferred contracts with annual due premiums. For deferred or subannual premium structures, use the prospective method.

Value

If tidy = TRUE, a tibble with reserve schedule details. If tidy = FALSE, a named numeric vector.

See Also

reserve_x, premium_xy, insurance_xy, annuity_xy, t_pxy

Other life-contingencies: annuity_multi(), annuity_x(), annuity_xy(), insurance_variable_k(), insurance_x(), insurance_xy(), life_contract(), premium_gross(), premium_x(), premium_xy(), reserve_x(), simulate_annuity_x(), simulate_insurance_x()

Examples

lt <- data.frame(
  x  = 60:70,
  lx = c(100000, 99000, 97500, 95500, 93000, 90000,
         86000, 81000, 75000, 68000, 60000)
)

reserve_xy(
  lt = lt,
  x = 60,
  y = 62,
  i = 0.06,
  type = "term",
  status = "joint",
  n = 4
)

reserve_xy(
  lt = lt,
  x = 60,
  y = 62,
  i = 0.06,
  type = "endowment",
  status = "last",
  n = 5,
  benefit = 100000
)

# Different life tables
lt2 <- data.frame(
  x  = 60:70,
  lx = c(100000, 99200, 98100, 96500, 94500, 92000,
         89000, 85000, 80000, 74000, 67000)
)

reserve_xy(
  lt = list(lt, lt2),
  x = 60,
  y = 62,
  i = 0.06,
  type = "term",
  status = "joint",
  n = 4,
  tidy = TRUE
)


Level annuity accumulation factor s-angle-n

Description

Computes the actuarial accumulation factor for a level annuity using compact actuarial notation.

Usage

s_angle(
  n,
  k = 1L,
  i,
  i_type = "effective",
  m = 1L,
  h = 0,
  timing = "immediate",
  payment = 1,
  tidy = FALSE
)

Arguments

n

Numeric vector of payment durations in years. Each value must be positive and finite.

k

Positive integer vector giving the number of discrete payments per year. Ignored for continuous annuities.

i

Numeric vector of interest-rate values.

i_type

Character vector indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer vector giving the conversion frequency for nominal rates. Ignored for "effective" and "force".

h

Numeric vector of deferment times in years. Must be greater than or equal to 0. Under the adopted horizon convention, this is metadata only for accumulation factors.

timing

Character vector. One of "immediate", "due", or "continuous".

payment

Numeric vector of level payment amounts. Used only when tidy = TRUE to report the corresponding future value. The accumulation factor itself is always computed for unit payments.

tidy

Logical scalar. If FALSE, returns a numeric accumulation factor. If TRUE, returns a tibble with intermediate calculations.

Details

Supported timing conventions:

For discrete annuities, k is the number of payments per year, so payments are made every 1/k year. The function returns the accumulation factor, assuming a unit payment at each payment time.

Horizon convention: the future value is measured at the time of the last payment. Under this convention, a pure deferment that shifts the entire payment block forward in time does not change the accumulation factor when the payment pattern is otherwise unchanged. Therefore, h is recorded and validated, but it does not modify the factor.

The future value of a perpetuity diverges, so perpetuities are not supported in s_angle().

This function follows the compact actuarial notation used throughout tidyactuarial:

The function first converts the supplied rate to the equivalent annual effective interest rate using standardize_interest.

For finite discrete annuities:

s_{\overline{n|}} = \frac{(1+i)^n - 1}{i}

For due annuities:

\ddot{s}_{\overline{n|}} = (1+i)s_{\overline{n|}}

For continuous annuities:

\bar{s}_{\overline{n|}} = \frac{e^{\delta n} - 1}{\delta}

Input vectors must have length 1 or a common length. Missing values are propagated.

Value

If tidy = FALSE, a numeric vector of accumulation factors.

If tidy = TRUE, a tibble with input values, equivalent rates, accumulation factors, payment amounts, and future values.

See Also

a_angle, standardize_interest, future_value

Other annuities: a_angle(), annuity_arith(), annuity_geom()

Examples

# Numeric accumulation factor
s_angle(n = 10, i = 0.05)

# Nominal interest converted monthly, with monthly payments
s_angle(
  n = 10,
  i = 0.06,
  i_type = "nominal_interest",
  m = 12,
  k = 12
)

# Continuous annuity
s_angle(
  n = 15,
  i = 0.04,
  i_type = "force",
  timing = "continuous"
)

# Tibble output for teaching or auditing
s_angle(
  n = 10,
  i = 0.05,
  payment = 1000,
  tidy = TRUE
)

# Vectorized example
s_angle(
  n = c(5, 10, 20),
  k = c(1, 12, 1),
  i = c(0.05, 0.06, 0.04),
  i_type = c("effective", "nominal_interest", "force"),
  m = c(1, 12, 1),
  h = c(0, 2, 3),
  timing = c("immediate", "due", "continuous")
)


Monte Carlo simulation of a life annuity

Description

Simulates the present value of a discrete single-life annuity using a life table and annual curtate future lifetimes, with compact actuarial notation.

Usage

simulate_annuity_x(
  lt,
  x = NULL,
  i = NULL,
  i_type = NULL,
  m = NULL,
  n = Inf,
  k = 1L,
  timing = c("due", "immediate"),
  payment = 1,
  method = c("inverse"),
  n_sim = 10000L,
  seed = NULL,
  output = c("simulations", "summary"),
  ...
)

Arguments

lt

A life table or a tidyact_life_contract object. A life table must contain columns x and lx.

x

Integer actuarial age. Optional when lt is a tidyact_life_contract.

i

Numeric scalar. Annual interest-rate input. Optional when lt is a tidyact_life_contract.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal rates. Ignored for i_type = "effective" and i_type = "force".

n

Term in years. Use Inf for whole life.

k

Positive integer. Number of annuity payments per year.

timing

Character string. Either "due" or "immediate".

payment

Numeric scalar. Level payment per payment period.

method

Simulation method. Currently "inverse" is supported.

n_sim

Positive integer. Number of simulations.

seed

Optional seed for reproducibility.

output

Character string. Use "simulations" for the simulated data or "summary" for summary statistics using summary_mc.

...

Transitional compatibility for older calls using mortality_table, age, rate, rate_type, term_years, and payments_per_year.

Details

The function supports direct use with lt, x, and i, and pipe workflows with life_contract.

This function follows the compact actuarial notation used throughout tidyactuarial: lt is the life table, x is the age, i is the interest-rate input, i_type is the interest-rate type, m is the conversion frequency for nominal rates, n is the term, and k is the payment frequency.

The simulation is based on the curtate future lifetime K_x. For annual payments, an annuity-due pays while the life is alive at the beginning of the year, and an annuity-immediate pays at the end of completed years.

Value

A tibble. If output = "simulations", the tibble contains one row per simulation. If output = "summary", the tibble is the output of summary_mc applied to the simulated present values.

See Also

Other simulation: simulate_insurance_x()

Other life-contingencies: annuity_multi(), annuity_x(), annuity_xy(), insurance_variable_k(), insurance_x(), insurance_xy(), life_contract(), premium_gross(), premium_x(), premium_xy(), reserve_x(), reserve_xy(), simulate_insurance_x()

Examples

lt <- data.frame(
  x = 60:66,
  lx = c(100000, 99000, 97500, 95500, 93000, 90000, 0)
)

simulate_annuity_x(
  lt = lt,
  x = 60,
  i = 0.05,
  n_sim = 25,
  seed = 123
)

simulate_annuity_x(
  lt = lt,
  x = 60,
  i = 0.06,
  i_type = "nominal_interest",
  m = 12,
  n = 5,
  k = 12,
  n_sim = 25,
  seed = 123,
  output = "summary"
)


Monte Carlo simulation of a life insurance

Description

Simulates the present value of a discrete single-life insurance using a life table and annual curtate future lifetimes, with compact actuarial notation.

Usage

simulate_insurance_x(
  lt,
  x = NULL,
  i = NULL,
  i_type = NULL,
  m = NULL,
  type = c("whole", "term", "endowment"),
  n = Inf,
  benefit = 1,
  method = c("inverse"),
  n_sim = 10000L,
  seed = NULL,
  output = c("simulations", "summary"),
  ...
)

Arguments

lt

A life table or a tidyact_life_contract object. A life table must contain columns x and lx.

x

Integer actuarial age. Optional when lt is a tidyact_life_contract.

i

Numeric scalar. Annual interest-rate input. Optional when lt is a tidyact_life_contract.

i_type

Character string indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal rates. Ignored for i_type = "effective" and i_type = "force".

type

Character string. One of "whole", "term", or "endowment".

n

Term in years. Required as finite for term and endowment insurance. Use Inf for whole life.

benefit

Numeric scalar. Insurance benefit.

method

Simulation method. Currently "inverse" is supported.

n_sim

Positive integer. Number of simulations.

seed

Optional seed for reproducibility.

output

Character string. Use "simulations" for the simulated data or "summary" for summary statistics using summary_mc.

...

Transitional compatibility for older calls using mortality_table, age, rate, rate_type, insurance_type, and term_years.

Details

The function supports direct use with lt, x, and i, and pipe workflows with life_contract.

This function follows the compact actuarial notation used throughout tidyactuarial: lt is the life table, x is the age, i is the interest-rate input, i_type is the interest-rate type, m is the conversion frequency for nominal rates, and n is the insurance term.

The benefit is paid at the end of the year of death for whole-life and term insurance. For endowment insurance, the benefit is paid at death within the term or at maturity if the life survives.

Value

A tibble. If output = "simulations", the tibble contains one row per simulation. If output = "summary", the tibble is the output of summary_mc applied to the simulated present values.

See Also

Other simulation: simulate_annuity_x()

Other life-contingencies: annuity_multi(), annuity_x(), annuity_xy(), insurance_variable_k(), insurance_x(), insurance_xy(), life_contract(), premium_gross(), premium_x(), premium_xy(), reserve_x(), reserve_xy(), simulate_annuity_x()

Examples

lt <- data.frame(
  x = 60:66,
  lx = c(100000, 99000, 97500, 95500, 93000, 90000, 0)
)

simulate_insurance_x(
  lt = lt,
  x = 60,
  i = 0.05,
  type = "whole",
  n_sim = 25,
  seed = 123
)

simulate_insurance_x(
  lt = lt,
  x = 60,
  i = 0.06,
  i_type = "nominal_interest",
  m = 12,
  type = "term",
  n = 5,
  benefit = 100000,
  n_sim = 25,
  seed = 123,
  output = "summary"
)


Simulate future lifetimes from a life table

Description

Simulates curtate and, optionally, complete future lifetimes from a life table containing one-year death probabilities, using compact actuarial notation.

Usage

simulate_lifetime(
  lt,
  x,
  n_sim = 10000L,
  x_col = "x",
  qx_col = "qx",
  method = c("inverse", "multinomial", "antithetic"),
  frac = c("udd", "constant_force", "none"),
  seed = NULL,
  include_distribution = FALSE
)

Arguments

lt

A data frame or tibble containing the life table.

x

Numeric scalar. Initial actuarial age of the individual.

n_sim

Positive integer. Number of Monte Carlo simulations. Default is 10000.

x_col

Character string. Name of the age column in lt. Default is "x".

qx_col

Character string. Name of the one-year death probability column in lt. Default is "qx".

method

Character string specifying the simulation method for K_x. Available options are "inverse", "multinomial", and "antithetic".

frac

Character string specifying how the fractional part of the complete future lifetime is generated within the year of death. Available options are "udd", "constant_force", and "none".

seed

Optional integer seed for reproducibility. Default is NULL.

include_distribution

Logical. If TRUE, the probability mass function used to simulate K_x is attached as a list-column named distribution.

Details

This function is designed as the simulation engine for Monte Carlo life contingency calculations in tidyactuarial. It generates simulated values of the curtate future lifetime K_x and a simulated complete future lifetime T_x. The output is a tidy tibble that can be used naturally with pipes and downstream Monte Carlo functions.

For a life aged x, the curtate future lifetime K_x follows

P(K_x = k) = {}_k p_x q_{x+k},

where {}_k p_x is the probability of surviving k complete years from age x, and q_{x+k} is the one-year probability of death at attained age x+k.

This function follows the compact actuarial notation used throughout tidyactuarial: lt denotes the life table, x denotes the actuarial age, and frac denotes the fractional-age simulation assumption.

The function first constructs the conditional distribution of K_x from the selected age onward. Then it generates simulated values according to the selected method.

The available simulation methods are:

The frac argument controls the simulated complete future lifetime T_x. If frac = "udd", a uniform fractional lifetime is added to K_x. If frac = "constant_force", the fractional lifetime within the year of death is generated under a constant force of mortality assumption conditional on death during that year. If frac = "none", the complete lifetime is returned as NA.

The probabilities are normalized internally to handle finite life tables. If the life table is truncated, the simulated distribution is conditional on death occurring within the available range of ages. In practical work, it is recommended that the last available death probability be equal to 1.

Value

A tibble with one row per simulation and columns:

sim_id

Simulation identifier.

x

Initial actuarial age.

age

Compatibility column equal to x.

method

Simulation method used.

frac

Fractional-age simulation assumption.

fractional

Compatibility column equal to frac.

Kx

Simulated curtate future lifetime.

Tx

Simulated complete future lifetime. If frac = "none", this column contains NA.

If include_distribution = TRUE, the output also includes a list-column named distribution containing the probability mass function used for the simulation.

References

Bowers, N. L., Gerber, H. U., Hickman, J. C., Jones, D. A., and Nesbitt, C. J. (1997). Actuarial Mathematics. Second Edition. Society of Actuaries.

See Also

mc_insurance, mc_annuity, mc_premium, mc_loss

Other monte-carlo: mc_annuity(), mc_insurance(), mc_loss(), mc_premium(), mc_reserve(), summary_mc()

Examples

lt <- tibble::tibble(
  x = 40:100,
  qx = seq(0.002, 1, length.out = 61)
)

# Basic simulation using inverse transform sampling
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    method = "inverse",
    seed = 123
  )

# Antithetic simulation
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    method = "antithetic",
    seed = 123
  )

# Returning the distribution used for simulation
lt |>
  simulate_lifetime(
    x = 40,
    n_sim = 25,
    include_distribution = TRUE,
    seed = 123
  )


Simulate future lifetimes from a life table

Description

Simulates curtate and complete future lifetimes from a life table.

This version is intentionally simple and defensive. It avoids using findInterval() on a cumulative distribution that may contain missing values, while preserving the column names expected by the Monte Carlo workflow: sim_id, life_id, Kx, and Tx.

Usage

simulate_lifetimes(data, x, n_sim = 1000, frac = "udd", seed = NULL)

Arguments

data

A data frame or tibble containing a life table.

x

Numeric vector of initial ages.

n_sim

Number of simulations per life.

frac

Fractional age assumption. One of "udd", "constant", "cfm", or "balducci".

seed

Optional random seed.

Details

The input life table must contain an age column named x, age, or Age, and at least one mortality column among qx, px, or lx.

If qx is not available, it is obtained from px as 1 - px, or from consecutive lx values as 1 - lx[x + 1] / lx[x].

Invalid mortality values are handled defensively. Non-finite values, negative values, and values greater than one are removed from the mortality basis. Missing values are then treated as zero, and the final available age is forced to have qx = 1 so that the lifetime distribution is closed.

Value

A tibble with simulated curtate and complete future lifetimes.

Examples

lt <- tibble::tibble(
  x = 40:100,
  qx = seq(0.002, 1, length.out = 61)
)

simulate_lifetimes(
  data = lt,
  x = c(60, 58),
  n_sim = 25,
  frac = "udd",
  seed = 123
)


Sinking fund amortization schedule for a loan

Description

Builds a sinking fund schedule under a fixed loan rate and a fixed accumulation rate for the sinking fund, using compact actuarial notation.

Usage

sinking_fund_schedule(
  principal,
  n,
  i,
  j,
  k = 1L,
  i_type = "effective",
  j_type = "effective",
  m = 1L,
  j_m = 1L,
  deposit = NULL,
  tol = 1e-08
)

Arguments

principal

Numeric scalar. Initial loan amount.

n

Positive integer. Number of schedule periods.

i

Numeric scalar. Annual interest-rate input for the loan.

j

Numeric scalar. Annual accumulation-rate input for the sinking fund.

k

Positive integer. Number of schedule periods per year.

i_type

Character string indicating the loan interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

j_type

Character string indicating the sinking-fund accumulation-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer. Conversion frequency for nominal loan rates. Ignored for i_type = "effective" and i_type = "force".

j_m

Positive integer. Conversion frequency for nominal sinking-fund rates. Ignored for j_type = "effective" and j_type = "force".

deposit

Optional numeric scalar. Level sinking-fund deposit per period. If NULL, it is computed so that the fund accumulates to principal at time n.

tol

Numeric tolerance used for zero checks and final-balance checks.

Details

The borrower pays:

At maturity, the sinking fund is used to redeem the principal.

This function follows the compact actuarial notation used throughout tidyactuarial: i is the loan interest rate, j is the sinking-fund accumulation rate, k is the number of schedule periods per year, m is the conversion frequency for the loan rate, and j_m is the conversion frequency for the sinking-fund rate.

The supplied annual rate specifications are converted to effective annual rates and then to effective rates per schedule period:

i_p = (1+i_e)^{1/k} - 1,\qquad j_p = (1+j_e)^{1/k} - 1.

If deposit is NULL and the sinking-fund periodic rate j_p is approximately zero, the deposit is computed as principal / n.

Otherwise, the standard sinking-fund formula is used:

deposit = \frac{principal}{s_{\overline{n}|j_p}}

where

s_{\overline{n}|j_p} = \frac{(1+j_p)^n - 1}{j_p}.

Value

A tibble with one row per period and columns:

period

Period index.

loan_balance_start

Outstanding loan balance at the start of the period.

interest_loan

Interest paid on the loan during the period.

sinking_deposit

Deposit made into the sinking fund.

fund_balance_start

Fund balance at the start of the period.

interest_fund

Interest earned by the fund during the period.

fund_balance_end_before_redemption

Fund balance before final redemption.

redemption_from_fund

Amount withdrawn from the fund to redeem the loan at maturity.

fund_balance_end

Fund balance after redemption.

loan_balance_end

Outstanding loan balance after redemption.

total_cashflow_borrower

Borrower's external cash outflow during the period.

i_effective_loan_annual

Equivalent annual effective loan rate.

i_effective_fund_annual

Equivalent annual effective fund rate.

i_loan_period

Effective loan rate per schedule period.

i_fund_period

Effective fund rate per schedule period.

k

Schedule frequency.

See Also

amort_schedule, s_angle

Other amortization: amort_schedule()

Examples

sinking_fund_schedule(
  principal = 100000,
  n = 12,
  i = 0.12,
  j = 0.096,
  i_type = "nominal_interest",
  j_type = "nominal_interest",
  m = 12,
  j_m = 12,
  k = 12
)

sinking_fund_schedule(
  principal = 50000,
  n = 10,
  i = 0.02,
  j = 0,
  deposit = NULL
)


SOA Illustrative Life Table

Description

This dataset is intended for reproducible examples, internal validation, and benchmark tests for life-contingency functions such as annuity_x, insurance_x, premium_x, reserve_x, annuity_xy, insurance_xy, premium_xy, and reserve_xy.

Usage

soa08lt

Format

A tibble with one row per integer age and the following columns:

x

Integer actuarial age.

lx

Number of lives surviving to exact age x.

dx

Number of deaths between exact ages x and x + 1.

qx

One-year probability of death between exact ages x and x + 1.

px

One-year probability of survival from exact age x to x + 1.

Details

A tidy version of the Society of Actuaries illustrative life table commonly used in life-contingencies examples and benchmark calculations.

The table is included as a convenient benchmark table for actuarial calculations. The build script in data-raw/soa08lt.R constructs this tidy dataset from the SOA illustrative actuarial table object distributed in the lifecontingencies package.

The column names already follow the compact actuarial notation used in tidyactuarial: x for age, lx for lives, dx for deaths, qx for one-year death probability, and px for one-year survival probability.

Source

Society of Actuaries illustrative life table, commonly referenced in Bowers et al. (1997), Actuarial Mathematics, Appendix 2A.

References

Bowers, N. L., Gerber, H. U., Hickman, J. C., Jones, D. A., and Nesbitt, C. J. (1997). Actuarial Mathematics. Second edition. Society of Actuaries.

Spedicato, G. A. (2013). The lifecontingencies package: performing financial and actuarial mathematics calculations in R.

Examples

data(soa08lt)
head(soa08lt)

annuity_x(
  lt = soa08lt,
  x = 65,
  i = 0.06,
  timing = "due"
)


Standardize an interest rate to the annual effective rate i

Description

Converts common interest-rate specifications to the equivalent annual effective interest rate i, using compact actuarial notation.

Usage

standardize_interest(i_type = "effective", i, m = 1, ...)

Arguments

i_type

Character vector indicating the interest-rate type. Must be one of "effective", "nominal_interest", "nominal_discount", or "force".

i

Numeric vector of interest-rate values.

m

Positive integer vector giving the conversion frequency for nominal rates. Ignored for "effective" and "force".

...

Transitional compatibility for older internal calls using type = and rate = . These names are accepted and mapped to i_type and i.

Details

This function follows the compact actuarial notation used throughout tidyactuarial: i denotes the interest-rate value, i_type denotes the interest-rate type, and m denotes the conversion frequency for nominal rates.

The conversion formulas are:

effective:

i = i (identity)

nominal_interest:

i_e = (1 + j^{(m)}/m)^m - 1

nominal_discount:

i_e = (1 - d^{(m)}/m)^{-m} - 1

force:

i_e = e^{\delta} - 1

Input vectors must have length 1 or a common length.

Value

Numeric vector of annual effective rates. Missing values are propagated.

See Also

interest_equivalents, discount_factor_spot

Other interest: discount_factor_spot(), forward_rate(), interest_equivalents(), yield_curve()

Examples

# Scalar cases
standardize_interest(i_type = "nominal_interest", i = 0.18, m = 4)
standardize_interest(i_type = "nominal_discount", i = 0.10, m = 12)
standardize_interest(i_type = "force", i = 0.12)

# Vectorized case
standardize_interest(
  i_type = c("nominal_interest", "force", "effective"),
  i = c(0.06, 0.05, 0.04),
  m = c(12, 1, 1)
)

# Use inside a data pipeline
if (requireNamespace("dplyr", quietly = TRUE) &&
    requireNamespace("tibble", quietly = TRUE)) {
  portfolio <- tibble::tibble(
    policy_id = 1:3,
    i = c(0.05, 0.08, 0.10),
    i_type = c("force", "nominal_interest", "nominal_discount"),
    m = c(1, 4, 12)
  )

  dplyr::mutate(
    portfolio,
    i_effective = standardize_interest(
      i_type = i_type,
      i = i,
      m = m
    )
  )
}


Summarise Monte Carlo simulation output

Description

Computes tidy summary statistics from simulated actuarial values, using a column-oriented interface consistent with the Monte Carlo functions in tidyactuarial.

Usage

summary_mc(
  .data = NULL,
  col_value = "present_value",
  by = NULL,
  probs = c(0.025, 0.5, 0.975),
  var_probs = c(0.95, 0.99),
  na_rm = TRUE,
  ...
)

Arguments

.data

A data.frame or tibble containing simulation output.

col_value

Character string. Name of the numeric column to summarise. Defaults to "present_value".

by

Optional character vector of grouping columns. If supplied, the summary is computed separately within each group. If by = NULL and .data is already grouped with dplyr::group_by(), the current grouping structure is used.

probs

Numeric vector of probabilities for quantiles.

var_probs

Numeric vector of probabilities for VaR and TVaR.

na_rm

Logical scalar. If TRUE, missing values are removed before computing statistics.

...

Transitional compatibility for older calls using data, value_col, and group_cols.

Details

This function is intentionally generic. It can summarise simulated present values from annuities, insurances, premiums, reserves, losses, or any other numeric actuarial indicator stored in a tidy simulation table.

This function follows the compact column-naming convention used throughout the Monte Carlo layer of tidyactuarial: column arguments are prefixed with col_. Thus, col_value identifies the simulated actuarial value to summarise.

The function computes the number of simulations used, number of missing values, mean, variance, standard deviation, standard error, minimum, maximum, selected quantiles, empirical VaR, and empirical TVaR.

TVaR is computed empirically as the mean of simulated values greater than or equal to the corresponding empirical VaR.

If na_rm = TRUE, missing values in col_value are removed before computing statistics. If na_rm = FALSE and missing values are present, most numerical statistics are returned as NA_real_, avoiding accidental silent deletion of missing reserve or loss scenarios.

Value

A tibble with summary statistics.

See Also

Other monte-carlo: mc_annuity(), mc_insurance(), mc_loss(), mc_premium(), mc_reserve(), simulate_lifetime()

Examples

sim <- tibble::tibble(
  sim_id = 1:5,
  t = c(0, 0, 1, 1, 1),
  L_t = c(10, 12, 8, 15, 11)
)

summary_mc(sim, col_value = "L_t")
summary_mc(sim, col_value = "L_t", by = "t")

# Transitional compatibility with older argument names
summary_mc(sim, value_col = "L_t", group_cols = "t")


Pure endowment (discounted survival): {}_tE_x

Description

Computes the actuarial present value of a pure endowment, i.e., the expected present value of a payment of 1 made at time t if and only if a life aged x survives to age x + t:

{}_tE_x = v^t \cdot {}_tp_x.

Usage

t_Ex(
  lt,
  x,
  t,
  i,
  i_type = "effective",
  m = 1L,
  frac,
  tidy = FALSE,
  check = TRUE,
  tol = 1e-10
)

Arguments

lt

A lifetable object as produced by lifetable. Must contain columns x and lx.

x

Integer age(s) at which the endowment starts.

t

Nonnegative numeric duration(s) in years. Fractional durations are allowed and are handled through t_px.

i

Annual interest-rate input(s).

i_type

Character vector indicating the interest-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force".

m

Positive integer vector giving the conversion frequency for nominal rates. Ignored for "effective" and "force".

frac

Fractional-age assumption passed to t_px: "UDD", "CF", "CML" (alias of CF), or "Balducci". If not specified and lt carries a frac attribute, that value is used.

tidy

Logical. If TRUE, returns a tibble with columns x, t, i, i_type, m, i_effective, frac, and nEx.

check

Logical. If TRUE, performs validity checks.

tol

Numeric tolerance for integer checks on x.

Details

This function follows the compact actuarial notation used throughout tidyactuarial: lt is the life table, x is the age, t is the duration, i is the interest-rate input, i_type is the interest-rate type, and m is the conversion frequency for nominal rates.

The pure endowment is a fundamental building block in life contingency mathematics. It serves as the actuarial discount factor, combining financial discounting with mortality:

{}_tE_x = v^t \cdot {}_tp_x.

The interest-rate input is converted to an annual effective rate before applying the discount factor:

v = (1+i_e)^{-1}.

Key identities involving {}_nE_x:

For a constant force of mortality \mu and force of interest \delta:

{}_nE_x = e^{-n(\mu + \delta)}.

The variance of the pure endowment random variable is:

\mathrm{Var}(Z) = v^{2n} \cdot {}_np_x \cdot {}_nq_x.

Value

Numeric vector of {}_tE_x, or a tibble if tidy = TRUE.

See Also

t_px for survival probabilities without discounting, insurance_x for insurance APVs, annuity_x for life annuity APVs.

Examples

x  <- 0:5
lx <- c(100000, 99500, 99000, 98200, 97000, 95000)
lt <- lifetable(x = x, lx = lx, omega = 5, close = TRUE)

# Basic pure endowment: 3_E_0 = v^3 * 3_p_0
t_Ex(lt, x = 0, t = 3, i = 0.06)

# Verify manually:
(1.06)^(-3) * t_px(lt, x = 0, t = 3)

# Constant force of interest
lt_exp <- lifetable(x = 0:50, lx = 100000 * exp(-0.05 * (0:50)))
t_Ex(
  lt_exp,
  x = 30,
  t = 10,
  i = 0.10,
  i_type = "force"
)
exp(-1.5)

# Nominal annual interest rate convertible monthly
t_Ex(
  lt,
  x = 0,
  t = 3,
  i = 0.06,
  i_type = "nominal_interest",
  m = 12
)

# Vectorized: multiple ages at once
t_Ex(lt, x = c(0, 1, 2), t = 3, i = 0.05, tidy = TRUE)

# Use in a tidy pipeline
if (requireNamespace("dplyr", quietly = TRUE)) {
  tibble::tibble(x = 0:4, t = c(5, 4, 3, 2, 1)) |>
    dplyr::mutate(pure_endow = t_Ex(lt, x = x, t = t, i = 0.06))
}


t-year survival probability from a life table

Description

Computes the t-year survival probability

{}_t p_x = P[T(x) > t]

using an annual life table, allowing for fractional ages under standard actuarial assumptions.

Usage

t_px(lt, x, t, frac, tidy = FALSE, check = TRUE, tol = 1e-10)

Arguments

lt

A lifetable object as produced by lifetable. Must contain columns x and lx. Columns qx or px are used if present.

x

Integer age(s) at which survival starts.

t

Nonnegative numeric duration(s) in years (can be fractional).

frac

Fractional-age assumption: "UDD", "CF", "CML" (alias of CF), or "Balducci". If not specified and lt carries a frac attribute (set by lifetable), that value is used.

tidy

Logical. If TRUE, returns a tibble with columns x, t, frac, tpx.

check

Logical. If TRUE, performs validity checks.

tol

Numeric tolerance for integer checks on x.

Details

The integer-year survival is obtained directly from the life table (Finan, Section 22):

{}_n p_x = \frac{\ell_{x+n}}{\ell_x}

For non-integer durations, let t = n + s with n = \lfloor t \rfloor and s \in [0,1). Then (Finan, Section 24):

{}_t p_x = {}_n p_x \times {}_s p_{x+n}

The fractional-year factor {}_s p_y depends on the assumption:

If x + t > \omega (the terminal age), the function returns 0 since no survival is possible beyond the table's limiting age.

Value

Numeric vector of {}_t p_x, or a tibble if tidy = TRUE.


Two-life survival probability for independent lives

Description

Computes the survival probability for two independent lives with actuarial ages x and y at time 0 under a joint-life or last-survivor status.

Usage

t_pxy(lt, x, y, t, frac, status = c("joint", "last"))

Arguments

lt

Either:

  • a single life table data frame, used for both lives; or

  • a list of two life tables list(lt_x, lt_y), one for each life.

Each life table must contain columns x and lx.

x

Integer actuarial age of the first life at time 0.

y

Integer actuarial age of the second life at time 0.

t

Nonnegative time (may be fractional).

frac

Fractional-age assumption: "UDD", "CF", "CML" (alias of CF), or "Balducci". If not specified and the supplied life table(s) carry a frac attribute, that value is used. If two tables are supplied and their frac attributes differ, frac must be supplied explicitly. Passed to t_px.

status

Two-life status: "joint" or "last".

Details

Independence is assumed throughout (Finan, Sections 56–57).

Joint-life status (Finan, Section 56): the status survives as long as both lives are alive.

{}_tp_{xy} = {}_tp_x \cdot {}_tp_y.

Last-survivor status (Finan, Section 57): the status survives as long as at least one life is alive.

{}_tp_{\overline{xy}} = {}_tp_x + {}_tp_y - {}_tp_x \cdot {}_tp_y.

Individual survival probabilities {}_tp_x and {}_tp_y are computed via t_px, which supports fractional ages under UDD, constant force, and Balducci assumptions (Finan, Section 24).

Value

A single numeric value.

See Also

t_px for single-life survival, e_xy for joint-life expectancy, annuity_xy for two-life annuity APVs, insurance_xy for two-life insurance APVs.

Examples

lt <- data.frame(
  x  = 60:66,
  lx = c(100000, 99000, 97500, 95500, 93000, 90000, 86000)
)

# Joint life, 2.5 years, UDD (Finan, Sec. 56)
t_pxy(lt, x = 60, y = 62, t = 2.5, frac = "UDD", status = "joint")

# Verify: joint = product of marginals
t_px(lt, x = 60, t = 2.5, frac = "UDD") *
  t_px(lt, x = 62, t = 2.5, frac = "UDD")

# Last survivor, 2.5 years, constant force (Finan, Sec. 57)
t_pxy(lt, x = 60, y = 62, t = 2.5, frac = "CF", status = "last")

# Same result if the same table is supplied explicitly for both lives
t_pxy(list(lt, lt), x = 60, y = 62, t = 2.5, frac = "UDD", status = "joint")

# Different life tables for the two lives
lt_m <- data.frame(
  x  = 60:66,
  lx = c(100000, 98500, 96800, 94800, 92400, 89500, 86000)
)
lt_f <- data.frame(
  x  = 60:66,
  lx = c(100000, 99000, 97800, 96400, 94700, 92700, 90300)
)
t_pxy(list(lt_m, lt_f), x = 60, y = 62, t = 2.5, frac = "UDD", status = "joint")

# Finan Example 56.2 style: integer survival
# 10_p_{50:60} = 10_p_50 * 10_p_60
lt_ilt <- data.frame(
  x  = 50:70,
  lx = c(8950901, 8879913, 8804189, 8723382, 8637048,
         8544731, 8445974, 8340310, 8227261, 8106334,
         7977338, 7839775, 7693040, 7536522, 7369603,
         7191658, 7002051, 6800139, 6585264, 6356752,
         6114913)
)
t_pxy(lt_ilt, x = 50, y = 60, t = 10, status = "joint")

# Finan Problem 56.1: t_q_xy = t_q_x + t_q_y - t_q_x * t_q_y
p_joint <- t_pxy(lt, x = 60, y = 62, t = 3, status = "joint")
q_joint <- 1 - p_joint
qx <- 1 - t_px(lt, x = 60, t = 3)
qy <- 1 - t_px(lt, x = 62, t = 3)
c(q_joint = q_joint, q_sum = qx + qy - qx * qy)  # should match


t-year death probability from a life table

Description

Computes the t-year death probability

{}_t q_x = \Pr[T(x) \le t] = 1 - {}_t p_x

using an annual life table, allowing for fractional ages under standard actuarial assumptions.

Usage

t_qx(lt, x, t, frac, tidy = FALSE, check = TRUE, tol = 1e-10)

Arguments

lt

A lifetable object as produced by lifetable. Must contain columns x and lx. Columns qx or px are used if present.

x

Integer age(s) at which the interval starts.

t

Nonnegative numeric duration(s) in years (can be fractional).

frac

Fractional-age assumption: "UDD", "CF", "CML" (alias of CF), or "Balducci". If not specified and lt carries a frac attribute (set by lifetable), that value is used. Passed directly to t_px.

tidy

Logical. If TRUE, returns a tibble with columns x, t, frac, tqx.

check

Logical. If TRUE, performs validity checks.

tol

Numeric tolerance for integer checks on x.

Details

This is a thin wrapper around t_px:

{}_t q_x = 1 - {}_t p_x.

The identity {}_tq_x = {}_td_x / \ell_x (Finan, Section 22) holds for integer t, where {}_td_x = \ell_x - \ell_{x+t} is the expected number of deaths between ages x and x+t.

For fractional durations, the result depends on the chosen assumption (UDD, CF, or Balducci); see t_px for details and formulas (Finan, Section 24).

The deferred death probability {}_{n|}q_x can be obtained as (Finan, Section 23.4):

{}_{n|}q_x = {}_np_x \cdot q_{x+n} = {}_{n+1}q_x - {}_nq_x.

Value

Numeric vector of {}_t q_x, or a tibble if tidy = TRUE.

See Also

t_px for the complementary survival probability, t_Ex for the pure endowment (discounted survival), e_x for life expectancy, lifetable for building the life table input.

Examples

x  <- 0:5
lx <- c(100000, 99500, 99000, 98200, 97000, 95000)
lt <- lifetable(x = x, lx = lx, omega = 5, close = TRUE)

# Integer death probability (Finan, Section 22)
t_qx(lt, x = 0, t = 3)  # (l0 - l3) / l0

# t = 0 always returns 0
t_qx(lt, x = 0, t = 0)

# Fractional age under UDD (Finan, Section 24.1)
t_qx(lt, x = 0, t = 2.5, frac = "UDD")

# Finan Example 22.2a: number of deaths between ages 2 and 5
# 3_d_2 = l_2 - l_5 = 98995 - 97468 = 1527
lt_22 <- lifetable(
  x = 0:5,
  lx = c(100000, 99499, 98995, 98489, 97980, 97468)
)
t_qx(lt_22, x = 2, t = 3) * lt_22$lx[lt_22$x == 2]  # 1527

# Deferred death probability (Finan, Section 23.4):
# 2|1_q_0 = 2_p_0 * q_2 = 3_q_0 - 2_q_0
t_qx(lt, x = 0, t = 3) - t_qx(lt, x = 0, t = 2)

# Vectorized with tidy output
t_qx(lt, x = c(0, 1), t = c(1.5, 2.2), frac = "Balducci", tidy = TRUE)

# Use in a tidy pipeline
if (requireNamespace("dplyr", quietly = TRUE)) {
  tibble::tibble(age = c(0, 1, 2), duration = c(3, 2.5, 1.7)) |>
    dplyr::mutate(
      surv  = t_px(lt, x = age, t = duration),
      death = t_qx(lt, x = age, t = duration)
    )
}


t-year probability of decrement by cause j: t_qxj

Description

Computes {}_t q_x^{(j)}, the probability that a life aged x decrements by a specific cause j within t years, using a multiple decrement table produced by md_table.

Usage

t_qxj(md, x, t, cause, frac = NULL, tidy = FALSE, check = TRUE, tol = 1e-10)

Arguments

md

A multiple decrement table produced by md_table. Must contain columns x, p_total, and the requested cause.

x

Numeric vector. Starting age(s) (integer-valued).

t

Numeric vector. Time horizon(s) in years (t >= 0). Can be non-integer if frac is supplied.

cause

Character. Name of the cause column in md (e.g., "q_death").

frac

Character. Fractional-age assumption for non-integer t: one of "UDD", "CF", "Balducci", or NULL. If NULL (default), t must be integer-valued.

tidy

Logical. If TRUE, returns a tibble with columns x, t, cause, frac, and tqxj.

check

Logical. If TRUE, performs input validation (default TRUE).

tol

Numeric tolerance for integer checks (default 1e-10).

Details

Let q_x^{(j)} be the annual decrement probability for cause j and q_x^{(\tau)} be the total decrement probability. For integer t,

{}_t q_x^{(j)} = \sum_{k=0}^{t-1} \left(\prod_{r=0}^{k-1} p_{x+r}^{(\tau)}\right) q_{x+k}^{(j)}.

For non-integer t = n + s with n = \lfloor t \rfloor and s \in [0,1), this function supports fractional-age assumptions specified by frac and uses the additional convention that the within-year cause proportions remain constant: {}_s q_x^{(j)} = w_j \, {}_s q_x^{(\tau)} where w_j = q_x^{(j)} / q_x^{(\tau)} (and 0 when q_x^{(\tau)}=0).

Supported fractional-age assumptions for the total decrement:

Value

Numeric vector of {}_t q_x^{(j)} (or tibble if tidy=TRUE).

Examples

qx_df <- tibble::tibble(
  x = 30:35,
  q_death = c(0.001, 0.0012, 0.0014, 0.0017, 0.0020, 1.0000),
  q_disability = c(0.002, 0.0021, 0.0022, 0.0023, 0.0024, 0.0000)
)
md <- md_table(qx_df, radix = 1e5, close = TRUE)
t_qxj(md, x = 30, t = 5, cause = "q_death")
t_qxj(md, x = 30, t = 2.5, cause = "q_death", frac = "CF", tidy = TRUE)


Validate a yield curve and compute discount factors

Description

Builds a tibble-first representation of a discrete yield curve and computes the corresponding spot discount factors, using compact actuarial notation.

Usage

yield_curve(
  .data = NULL,
  t = NULL,
  i = NULL,
  col_t = "t",
  col_i = "i",
  i_type = "effective",
  m = 1L,
  plot = FALSE,
  .out = "v",
  .out_plot = "yield_curve_plot",
  .keep = c("all", "used", "none"),
  .na = c("propagate", "error", "drop")
)

Arguments

.data

A data frame or tibble. If NULL, t and i must be supplied as numeric vectors.

t

Numeric vector of maturities in years when .data = NULL.

i

Numeric vector of spot-rate values when .data = NULL.

col_t

Name of the list-column containing maturities.

col_i

Name of the list-column containing spot rates.

i_type

Character vector indicating the spot-rate type. Allowed values are "effective", "nominal_interest", "nominal_discount", and "force". May have length 1 or the same length as each curve.

m

Positive integer vector giving the conversion frequency for nominal spot rates. May have length 1 or the same length as each curve.

plot

Logical. If TRUE, adds a list-column of ggplot2 objects.

.out

Name of the output list-column containing discount factors.

.out_plot

Name of the output list-column containing ggplot2 objects. Used only if plot = TRUE.

.keep

One of "all", "used", or "none".

.na

Missing-value handling policy: "propagate", "error", or "drop".

Details

Each row is treated as one curve. For tibble input, col_t and col_i must identify list-columns of equal-length numeric vectors. When .data = NULL, t and i must be numeric vectors and a one-row tibble is returned.

The discount factors are computed as:

v_t = (1+i_t)^{-t}

where i_t is the annual effective spot rate for maturity t.

If plot = TRUE, the function also returns a list-column of ggplot2 objects showing the spot yield curve for each row.

This function follows the compact actuarial notation used throughout tidyactuarial: t denotes maturity, i denotes the spot rate, i_type denotes the interest-rate type, and m denotes the conversion frequency for nominal spot rates.

The spot-rate input is converted to annual effective form through standardize_interest before discount factors are computed.

Value

A tibble. By default, it returns the original columns plus a new list-column named by .out containing discount-factor vectors. If plot = TRUE, it also adds a list-column named by .out_plot containing ggplot2 objects.

References

Marcel B. Finan, A Basic Course in the Theory of Interest and Derivatives Markets: A Preparation for the Actuarial Exam FM/2, Section 53: The Term Structure of Interest Rates and Yield Curves.

Kellison, S. G. The Theory of Interest.

See Also

forward_rate, discount_factor_spot, standardize_interest

Other interest: discount_factor_spot(), forward_rate(), interest_equivalents(), standardize_interest()

Examples

# Simple example
res <- yield_curve(
  t = c(1, 2, 3, 4, 5),
  i = c(0.040, 0.045, 0.048, 0.050, 0.051),
  plot = TRUE
)

res$yield_curve_plot[[1]]

# Multiple curves in a tibble
curves <- tibble::tibble(
  curve_id = c("A", "B"),
  t = list(c(1, 2, 3), c(1, 3, 5)),
  i = list(c(0.04, 0.05, 0.06), c(0.03, 0.035, 0.04))
)

res2 <- yield_curve(
  curves,
  col_t = "t",
  col_i = "i",
  plot = TRUE,
  .out = "v",
  .out_plot = "curve_plot"
)

res2$curve_plot[[2]]

# Nominal annual spot rates convertible semiannually
yield_curve(
  t = c(1, 2, 3),
  i = c(0.05, 0.055, 0.06),
  i_type = "nominal_interest",
  m = 2
)