Am.: Life Insurance of a group

Description Usage Arguments Value Examples

View source: R/Am..R

Description

Calculates the present value of a life insurance coverage for a group.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
Am.(
  x,
  h,
  n,
  k = 1,
  i = 0.04,
  data,
  prop = 1,
  ndeath = 1,
  assumption = "none",
  cap = 1
)

Arguments

x

A vector of intergers representing the age of each individual of the group.

h

An integer. The deferral period.

n

An integer. Number of years of coverage.

k

An integer. Number of fractions per year.

i

The interest rate. A numeric type value.

data

A data.frame of the mortality table, with the first column being the age and the second one the probability of death.

prop

A numeric value. It represents the proportion of the mortality table being used (between 0 and 1).

ndeath

An integer. Number of deaths necessary for payment to occur.

assumption

A character string. The assumption used for fractional ages ("UDD" for uniform distribution of deaths, "constant" for constant force of mortality and "none" if there is no fractional coverage).

cap

A numeric type value. The value of the payment.

Value

Returns a numeric value (actuarial present value).

Examples

1
2
3
4
ages<-c(22,33,44,55,66)
Am.(ages,5,15,1,0.04,CSO80MANB,1,2,"none",1)
Am.(ages,0,20,4,0.04,CSO80MANB,1,2,"UDD",1)
Am.(ages,10,25,2,0.04,CSO80MANB,1,2,"constant",1)

DetLifeInsurance documentation built on Jan. 13, 2021, 11 a.m.