Jump to content

Lee–Carter model

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Forkandwait (talk | contribs) at 03:47, 28 September 2010 (Created page with 'The Lee-Carter Model is a numerical algorithm used in mortality and life expectancy forecasting <ref>http://www.soa.org/library/journals/north-american-actu...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

The Lee-Carter Model is a numerical algorithm used in mortality and life expectancy forecasting [1]. The model is derived by using the Singular Value Decomposition (SVD) to find a univariate time series k_t that captures 80-90% of the mortality trend, along with a vector that determines how fast mortality is changing at specifici ages. Surprisingly, k_t is usually linear, implying that gains to life expectancy are fairly constant year after year in most populations. In addition to k_t, the algorithm creates a base set of age specific mortality rates a_x which have been transformed into logarithms and centered by their age-specific means over time, and a vector b_x that describes the amount of mortality change at a give age for a unit of overall mortality change; the subscript "x" refers to age.

The input to the method is a matrix of mortality rates sorted monotonically by time, usually with ages in columns and years in rows. The output is another forecasted matrix of mortality rates. Life expectancy and other life table measures can be calculated from this forecasted matrix. The algorithm is as follows:

Create a_x by taking logarithms of the mortality rates and centering the results with the average log mortality at a given age.

Forecast k_t with standard univariate ARIMA methods.

Use the forecast k_t with the original b_x and a_x to calculate logged mortality rates for each forecast year.

Recover regular mortality rates by calculating the exponential of the forecasted log mortality rates.

In most implementations, confidence intervals for the forecasts are generated by running simulating multiple k_t using Monte-Carlo methods and the standard error of the time series parameters; a band of mortality between 5% and 95% percentiles of the simulated results is considered to be a valid forecast. Many researchers adjust the k_t vector by fitting it to calculated life expectancies for each year, using the a_x and b_x just generated; in this approach, changes to k_t are usually small.

Without applying SVD or some other method of dimension reduction the table of mortality data is a highly correlated multivariate data series (with each age group forming another dimension in addition to time); the complexity of these multidimensional time series makes such them almost impossible to forecast. SVD has become widely used as a method of dimension reduction, including being used by Google in their Page Rank algorithm.

The model was introduced by Ronald D. Lee and Lawrence Carter in 1992 with the article "Modeling and Forecasting the Time Series of U.S. Mortality," (Journal of the American Statistical Association 87 (September): 659-671). The model grew out of their work in the late 1980s and early 1990s attempting to use inverse projection to understand historical demography [2].

There have been extensions to the Lee-Carter, 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.

The model has been used by the Social Security Administration of the United States, the US Census Bureau, and the United Nations. It has become the most widely used mortality forecasting technique in the world today [3].

There are surprisingly few software packages for forecasting with the Lee-Carter Model. LCFIT is a web-based package with interactive forms. Professor Rob Hyndman provides an R package for demography that includes routines for creating and forecasting a Lee-Carter Model.

References