Lee–Carter model

From Wikipedia, the free encyclopedia
(Redirected from Lee-Carter Model)

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:

  • A univariate time series vector that captures 80–90% of the mortality trend (here the subscript refers to time),
  • A vector that describes the relative mortality at each age (here the subscript refers to age), and
  • A scaling constant (referred to here as but unnamed in the literature).

Surprisingly, is usually linear, implying that gains to life expectancy are fairly constant year after year in most populations. Prior to computing SVD, age specific mortality rates are first transformed into , by taking their logarithms, and then centering them by subtracting their age-specific means over time. The age-specific mean over time is denoted by . The subscript refers to the fact that spans both age and time.

Many researchers adjust the vector by fitting it to empirical life expectancies for each year, using the and generated with SVD. When adjusted using this approach, changes to are usually small.

To forecast mortality, (either adjusted or not) is projected into future years using an ARIMA model. The corresponding forecasted is recovered by multiplying by and the first diagonal element of S (when ). The actual mortality rates are recovered by taking exponentials of this vector.

Because of the linearity of , it is generally modeled as a random walk with trend. Life expectancy and other life table measures can be calculated from this forecasted matrix after adding back the means and taking exponentials to yield regular mortality rates.

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 into the future using randomization based on the standard error of derived from the input data.

Algorithm[edit]

The algorithm seeks to find the least squares solution to the equation:

where is a matrix of mortality rate for each age in each year .

  1. Compute which is the average over time of for each age:
  2. Compute which will be used in SVD:
  3. Compute the singular value decomposition of :
  4. Derive , (the scaling eigenvalue), and from , , and :
  5. Forecast using a standard univariate ARIMA model to additional years:
  6. Use the forecasted , with the original , and to calculate the forecasted mortality rate for each age:

Discussion[edit]

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.

Implementations[edit]

There are surprisingly few software packages for forecasting with the Lee–Carter model.

References[edit]

  1. ^ "The Lee-Carter Method for Forecasting Mortality, with Various Extensions and Applications | SOA" (PDF). Archived from the original (PDF) on March 7, 2019. Retrieved September 28, 2010.
  2. ^ Lee, Ronald D; Carter, Lawrence R (September 1992). "Modeling and Forecasting U.S. Mortality". Journal of the American Statistical Association. 87 (419): 659–671. doi:10.2307/2290201.
  3. ^ Lee, Ronald (June 5, 2003). "Reflections on Inverse Projection: Its Origins, Development, Extensions, and Relation to Forecasting".
  4. ^ Federico Girosi; Gary King. "Understanding the Lee-Carter Mortality Forecasting Method" (PDF). Harvard University. Retrieved April 12, 2023.