-
-
Notifications
You must be signed in to change notification settings - Fork 204
Description
Summary
Housing is the largest asset on most household balance sheets and the dominant source of leverage for the non-wealthy, yet HARK has no housing model. Issue #825 (durable goods) has been open and stalled. A dedicated model with tenure choice (rent vs. own), mortgage origination, and optional refinancing/default would connect HARK to the quantitative macro literature on housing booms, mortgage policy, and wealth inequality.
Connection to Financial Services Practice
The wealth-management plugin in the Claude Financial Services Plugins marketplace models mortgage payoff timing, real estate in estate planning, and home equity as a component of net worth in comprehensive financial plans (wealth-management/skills/financial-plan/SKILL.md). The private-equity plugin models leveraged asset acquisition more generally (private-equity/skills/returns-analysis/SKILL.md). A HARK housing model would ground these practitioner tools in dynamic programming, connecting mortgage contract design, down-payment requirements, and interest rate policy to their effects on household consumption, saving, and default.
Mathematical Model
Environment
Time is discrete, indexed by
Preferences
The agent has non-separable CRRA preferences over non-durable consumption
with the period utility function
with the convention that
State Variables
The individual state is
Recursive Formulation
The value function involves a discrete choice over tenure mode. We write the overall value as
where each option is defined as follows.
Homeowner who stays (no housing transaction):
subject to the budget constraint
where the mortgage payment function is
Homeowner who sells (liquidates housing, becomes renter or buyer):
where
Renter:
subject to
where the rental price per unit of housing services is
Renter who buys:
subject to
and the loan-to-value (LTV) constraint
where the maximum LTV ratio is
Collateral and Borrowing Constraints
The liquid asset is subject to a standard no-borrowing constraint
Optional Extension: Refinancing and Default
If the agent can refinance, we add a refinancing option within the "stay" branch that replaces the existing mortgage with a new one at the current rate
If the agent can default on the mortgage (strategic default), we add
where the utility cost of default is
Key References
- Kaplan, G., Mitman, K., and Violante, G. L. (2020). "The Housing Boom and Bust: Model Meets Evidence." Journal of Political Economy, 128(9), pp. 3285-3345.
- Davis, M. A. and Van Nieuwerburgh, S. (2015). "Housing, Finance, and the Macroeconomy." Handbook of Regional and Urban Economics, Vol. 5, pp. 753-811.
- Berger, D., Guerrieri, V., Lorenzoni, G., and Vavra, J. (2018). "House Prices and Consumer Spending." Review of Economic Studies, 85(3), pp. 1502-1542.
- Iacoviello, M. (2005). "House Prices, Borrowing Constraints, and Monetary Policy in the Business Cycle." American Economic Review, 95(3), pp. 739-764.
- Campbell, J. Y. and Cocco, J. F. (2015). "A Model of Mortgage Default." Journal of Finance, 70(4), pp. 1495-1554.
Implementation Notes
- Because the tenure choice (rent/own/sell/buy) is endogenous rather than exogenous as in
MarkovConsumerType, theDBlockarchitecture with a discreteControlvariable for tenure mode is the appropriate framework, combined with DC-EGM (Iskhakov et al. 2017) for the mixed discrete-continuous problem. - Within each tenure branch, the continuous choices (consumption, savings, house size, mortgage) can use EGM, similar to
IndShockConsumerType. - House prices
$p_t^H$ can be exogenous (partial equilibrium) or endogenous in aMarketequilibrium with a housing supply function. - With 4 continuous state variables
$(a, H, d, z)$ , computation is demanding. A common simplification restricts housing to a discrete grid of sizes, reducing the problem to$(a, d, z)$ continuous with discrete$H$ . - Connects to the strategic default model (Issue Strategic Default and Bankruptcy Model #1733) and the inter-vivos transfer model (Issue Inter-Vivos Transfers and Dynastic Bequest Model #1737, where parental gifts relax the down-payment constraint), and to
BequestWarmGlowConsumerTypefor housing as a bequeathable asset.