-
-
Notifications
You must be signed in to change notification settings - Fork 204
Description
Summary
Claiming Social Security a year early reduces benefits by roughly 7%, yet nearly 30% of men and 34% of women claim at 62, the earliest eligible age. HARK has lifecycle consumption-saving models and health-dependent mortality (BasicHealthConsumerType, MarkovConsumerType) but no model of this claiming decision. The agent must choose when to begin collecting benefits between ages 62 and 70, trading off smaller payments sooner against larger payments later, with early-claiming reductions of 5-6.7% per year and delayed retirement credits of 8% per year. Because claiming is irreversible, the decision interacts with longevity risk, health status, spousal benefits, portfolio withdrawal sequencing, and the retirement earnings test.
Connection to Financial Services Practice
The wealth-management plugin financial-plan skill (wealth-management/skills/financial-plan/SKILL.md) explicitly models Social Security timing as a "major lever" in retirement planning, requiring scenario analysis at claiming ages 62, 67, and 70. The skill computes retirement projections with Monte Carlo simulation, targeting an 85%+ probability of portfolio survival, and notes that Social Security start age is one of the largest determinants of that probability. A HARK model would replace the breakeven-age heuristic with an optimized policy function that accounts for health risk, tax interactions, and portfolio feedback.
Mathematical Model
Environment
Time is discrete, indexed by age
State Variables
The individual state is
Social Security Benefit Formula
The Primary Insurance Amount (PIA) is determined by the agent's earnings history and is treated as a known constant at the time of the claiming decision. The actual monthly benefit depends on the claiming age $t^$ through the actuarial adjustment factor $\Lambda(t^)$:
The adjustment factor follows the statutory formula:
where the Full Retirement Age
Health Dynamics and Mortality
Health evolves as a first-order Markov chain with age-dependent transition matrix:
The survival probability depends on current health:
Poor health both increases mortality risk and shifts the optimal claiming age earlier (shorter expected collection period makes early claiming relatively more attractive).
Preferences
with relative risk aversion
Recursive Formulation
Before claiming (
If the agent waits (
subject to
where
If the agent claims (sets
subject to
where
At age
After claiming (
subject to
For ages
Extension: Couples and Spousal Benefits
For a married couple with PIA values
where the spousal supplement is reduced for early claiming by a different schedule than own-record benefits (maximum reduction of 35% at age 62 for FRA 67).
The survivor benefit upon the death of spouse
The joint claiming decision $(t^_1, t^_2)$ is the key object of interest. Common heuristics (e.g., "the higher earner should delay to 70") emerge as approximate solutions.
Extension: Retirement Earnings Test
For claimants below the Full Retirement Age who continue to earn labor income
where the exempt amount is
Key References
- Coile, C., Diamond, P., Gruber, J., and Jousten, A. (2002). "Delays in Claiming Social Security Benefits." Journal of Public Economics, 84(3), pp. 357-385.
- Shoven, J. B. and Slavov, S. N. (2014). "Does It Pay to Delay Social Security?" Journal of Pension Economics and Finance, 13(2), pp. 121-144.
- Horneff, V., Maurer, R., Mitchell, O. S., and Rogalla, R. (2015). "Optimal Life Cycle Portfolio Choice with Variable Annuities Offering Liquidity and Investment Downside Protection." Insurance: Mathematics and Economics, 63, pp. 91-107.
- Sass, S. A., Sun, W., and Webb, A. (2013). "Social Security Claiming Decision of Married Men and Widow Poverty." Economics Letters, 119(1), pp. 20-23.
- Gustman, A. L. and Steinmeier, T. L. (2005). "The Social Security Early Entitlement Age in a Structural Model of Retirement and Wealth." Journal of Public Economics, 89(2-3), pp. 441-463.
- Kotlikoff, L. J., Moeller, P., and Solman, P. (2015). Get What's Yours: The Secrets to Maxing Out Your Social Security. Simon & Schuster.
- Iskhakov, F., Jørgensen, T. H., Rust, J., and Schjerning, B. (2017). "The Endogenous Grid Method for Discrete-Continuous Dynamic Choice Models with (or without) Taste Shocks." Quantitative Economics, 8(2), pp. 317-365.
Implementation Notes
- Claiming status
$\chi_t$ is a Markov state with an absorbing state (once claimed, always claimed), fitting HARK'sMarkovConsumerTypearchitecture. - Continuous state
$(a, h)$ with discrete$\chi$ can be solved with EGM on the consumption choice, using the upper envelope method for the discrete claiming choice (DC-EGM, Iskhakov et al. 2017). - Health transitions and heterogeneous mortality connect directly to
BasicHealthConsumerType. - For the couples extension, state space
$(a, h^1, h^2, \chi^1, \chi^2)$ is 5-dimensional with some discrete components, tractable with HARK's grid-based approach. - Natural calibration exercise: compare HARK's optimal claiming policy to the heuristic "delay to 70 if healthy and high-PIA" and quantify the welfare loss from suboptimal claiming.
- Connects to tax-differentiated accounts (Issue Tax-Differentiated Account Model (401k/IRA/Roth/Taxable) #1731), where withdrawal sequencing interacts with claiming timing through the tax bracket, and shares health transition structure with the insurance model (Issue Endogenous Insurance Purchase Model (Health/Life/LTC) #1734).