-
-
Notifications
You must be signed in to change notification settings - Fork 204
Description
Summary
In HARK, borrowing is governed by hard constraints: the agent simply cannot borrow beyond a limit. Real-world borrowing involves default risk, because agents who borrow may choose not to repay if the cost of repayment exceeds the cost of default (bankruptcy, credit exclusion, garnishment). The default option changes the pricing of debt, the distribution of credit, and the response of consumption to income shocks. A HARK model with endogenous default would address questions about consumer bankruptcy policy (Chapter 7 vs. Chapter 13), credit card regulation, mortgage default (strategic and distress-driven), and the macroeconomic effects of credit market frictions.
Connection to Financial Services Practice
The financial-analysis plugin integrates Moody's credit data (financial-analysis/.mcp.json), and the LSEG partner plugin (partner-built/lseg/skills/bond-relative-value/SKILL.md) performs credit spread decomposition, separating government yield from credit curve spreads and residual (liquidity + technicals). The equity-research plugin models credit metrics such as Net Debt/EBITDA and Interest Coverage ratios (financial-analysis/skills/3-statements/SKILL.md). These practitioner tools assess default risk from the lender's perspective. A HARK model provides the borrower's micro-foundation: why agents default, how default probabilities depend on the business cycle, and how credit pricing responds endogenously to policy changes.
Mathematical Model
Environment
Time is discrete and infinite. A continuum of agents indexed by
State Variables
The individual state is
and by
Preferences
with discount factor
Bond Pricing
A competitive risk-neutral financial sector prices one-period bonds. An agent in good standing who borrows
where
Recursive Formulation
We suppress
Agent in good standing:
The agent compares the value of repaying against the value of defaulting.
Value of repaying:
subject to the budget constraint
and a natural borrowing limit
Value of defaulting:
Default is relevant only when
Value during exclusion:
subject to
During exclusion, the agent can save but not borrow, and earns full income
Default Set and Equilibrium
The default set is the collection of states where the agent prefers default:
An equilibrium consists of a value function
- Given
$q(a', z)$ , the agent optimizes and$\mathcal{D}$ is the resulting default set. - Given
$\mathcal{D}$ , the bond price satisfies the zero-profit condition for lenders.
This is a fixed-point problem in
Euler Equation and Bond Price Schedule
For an interior solution in the repayment region, the first-order condition is
The term
Extension: Mortgage Default
For a secured (mortgage) version, replace unsecured debt with collateralized borrowing against housing. Here
where the agent retains liquid assets
Key References
- Chatterjee, S., Corbae, D., Nakajima, M., and Rios-Rull, J.-V. (2007). "A Quantitative Theory of Unsecured Consumer Credit with Risk of Default." Econometrica, 75(6), pp. 1525-1589.
- Livshits, I., MacGee, J., and Tertilt, M. (2007). "Consumer Bankruptcy: A Fresh Start." American Economic Review, 97(1), pp. 402-418.
- Athreya, K. B. (2002). "Welfare Implications of the Bankruptcy Reform Act of 1999." Journal of Monetary Economics, 49(8), pp. 1567-1595.
- Arellano, C. (2008). "Default Risk and Income Fluctuations in Emerging Economies." American Economic Review, 98(3), pp. 690-712. (Sovereign default, but same mathematical structure.)
- Campbell, J. Y. and Cocco, J. F. (2015). "A Model of Mortgage Default." Journal of Finance, 70(4), pp. 1495-1554.
Implementation Notes
- Solving for the equilibrium bond price schedule
$q(a', z)$ is the main computational challenge: it requires iterating on the value function and bond price simultaneously until convergence, a fixed-point iteration not currently in HARK's solver toolkit. - This fixed-point structure goes beyond EGM. While the agent's problem resembles
IndShockConsumerType, the standard approach is value function iteration with an inner loop updating$q(a', z)$ at each step. - Credit-access flag
$\eta \in {\text{good}, \text{excluded}}$ fits naturally inMarkovConsumerType. - For the mortgage default extension, shared state variables and solution methods connect to a housing model (see related issue).
- Calibration targets include the cross-section of debt, default rates, and credit spreads from consumer credit market data.
- HARK's
Marketclass could close the model in general equilibrium (endogenous$r$ clearing the bond market), analogous to the existing Krusell-Smith implementation. - Connects to the housing model (Issue Housing and Mortgage Choice Model #1730) via mortgage default, and to the entrepreneurship model (Issue Entrepreneurship and Occupational Choice Model #1736) where the endogenous bond price schedule pins down the borrowing rate.