The Lee–Carter model is a numerical algorithm used in mortality forecasting and life expectancy forecasting.[1] The input to the model is a matrix of age specific mortality rates ordered monotonically by time, usually with ages in columns and years in rows. The output is a forecasted matrix of mortality rates in the same format as the input.
The model uses singular value decomposition (SVD) to find:
kt
t
bx
x
s1
Surprisingly,
kt
Ax,t
ax
x,t
Ax,t
Many researchers adjust the
kt
ax
bx
kt
To forecast mortality,
kt
n
Ax,t+n
kt+n
bx
US
V* |
=svd(Ax,t)
Because of the linearity of
kt
In most implementations, confidence intervals for the forecasts are generated by simulating multiple mortality forecasts using Monte Carlo Methods. A band of mortality between 5% and 95% percentiles of the simulated results is considered to be a valid forecast. These simulations are done by extending
kt
kt
The algorithm seeks to find the least squares solution to the equation:
ln{(mx,t)}=ax+ktbx+\epsilonx,t
where
mx,t
x
t
ax
ln{(mx,t)}
ax=
| ||||||||||
Ax,t
Ax,t=ln{(mx,t)}-ax
Ax,t
US
V* |
=svd(Ax,t)
bx
s1
kt
U
S
V* |
bx=(u1,1,u2,1,...,ux,1)
kt=(v1,1,v1,2,...,v1,t)
kt
n
kt+n=ARIMA(kt,n)
kt+n
bx
ax
mx,t+n=\exp(ax+s1kt+nbx)
Without applying SVD or some other method of dimension reduction the table of mortality data is a highly correlated multivariate data series, and the complexity of these multidimensional time series makes them difficult to forecast. SVD has become widely used as a method of dimension reduction in many different fields, including by Google in their page rank algorithm.
The Lee–Carter model was introduced by Ronald D. Lee and Lawrence Carter in 1992 with the article "Modeling and Forecasting U.S. Mortality".[2] The model grew out of their work in the late 1980s and early 1990s attempting to use inverse projection to infer rates in historical demography.[3] The model has been used by the United States Social Security Administration, the US Census Bureau, and the United Nations. It has become the most widely used mortality forecasting technique in the world today.[4]
There have been extensions to the Lee–Carter model, most notably to account for missing years, correlated male and female populations, and large scale coherency in populations that share a mortality regime (western Europe, for example). Many related papers can be found on Professor Ronald Lee's website.
There are surprisingly few software packages for forecasting with the Lee–Carter model.