Tx: Number of person-years lived after exact age x
Description
This function returns the number of years lived after exact age x.
Usage
Tx(object, x)
Arguments
object
A lifetable object
x
An integer representing the age for which the \(T_x\) value shall be returned.
Value
A numeric value.
Warning
The function is provided as is, without any warranty regarding the accuracy of calculations. The author disclaims any liability for eventual
losses arising from direct or indirect use of this software.
Details
x shall be an integer value.
References
Actuarial Mathematics (Second Edition), 1997,
by Bowers, N.L., Gerber, H.U., Hickman, J.C., Jones, D.A. and Nesbitt, C.J.
# NOT RUN {#assumes SOA example life table to be load data(soaLt)
soa08Act=with(soaLt, new("actuarialtable",interest=0.06,
x=x,lx=Ix,name="SOA2008"))
Tx(soa08Act, 67)
# }