Back to Documentation

Spousal Optimization

For married borrowers, filing status can swing your IDR payment by hundreds of dollars per month. We model both scenarios and recommend the filing strategy that minimizes total household cost.

MFJ vs. MFS: The Core Tradeoff

Married Filing Jointly (MFJ) gives you access to higher tax brackets, the full standard deduction, education credits, student loan interest deduction, and lower overall tax rates. But it also combines both spouses' incomes for IDR payment calculation purposes, which can dramatically increase the monthly payment.

Married Filing Separately (MFS) excludes the non-borrowing spouse's income from IDR calculations under IBR and PAYE, reducing the monthly payment. However, MFS forfeits several tax benefits: the student loan interest deduction, education credits, Roth IRA contributions (above a very low AGI threshold), and access to wider tax brackets.

The optimal choice depends on the balance between IDR payment savings and tax penalty -- and this changes every year as incomes shift.

Plan-Specific Rules

  • IBR and PAYE: If you file MFS, only the borrower's AGI is used to calculate discretionary income and monthly payment. Filing MFS is the lever that makes these plans dramatically cheaper when one spouse has significantly higher income.
  • SAVE / REPAYE: Spouse income is always included in the payment calculation regardless of filing status. Filing MFS provides no IDR payment benefit under SAVE, but still imposes the MFS tax penalty. SAVE borrowers should almost always file MFJ.
  • ICR: Similar to SAVE -- spouse income is included regardless of filing status on Direct Consolidation Loans.

Community Property States

In the nine community property states (Arizona, California, Idaho, Louisiana, Nevada, New Mexico, Texas, Washington, and Wisconsin), MFS filers must still report half of total community income on each return. This means filing MFS in California, for example, does not fully exclude the non-borrowing spouse's income from the borrower's AGI.

The impact depends on income composition. Wages earned in a community property state are split 50/50 on MFS returns, but income earned before the marriage or from separate property may remain with the earning spouse. Talovex models the community property allocation based on your state and income sources, producing the correct AGI for IDR calculation.

What We Model

For every eligible IDR plan, Talovex runs two parallel calculations:

  1. MFJ scenario: Combined household AGI is used for both the IDR payment and the tax return. We compute the full tax liability, monthly IDR payment, total paid over the repayment timeline, and any forgiveness and associated tax bomb.
  2. MFS scenario: Borrower-only AGI (or community property split AGI) is used for IDR. We compute the higher MFS tax liability for both spouses, the reduced IDR payment, total paid over the repayment timeline, and forgiveness plus tax bomb.
  3. Net comparison: The difference between MFJ total household cost (tax + loan payments + tax bomb) and MFS total household cost determines the recommendation. This comparison is repeated for each future year, because the optimal strategy can change as incomes diverge.

Year-by-Year Strategy

You are not locked into one filing status for 20 years. MFJ may be optimal when incomes are similar; MFS may become optimal after one spouse receives a large raise. Talovex produces a year-by-year filing recommendation based on projected income trajectories, so you can switch each tax year to minimize cumulative cost.

API Reference

POST/v1/compute/spousal-optimization

Compares MFJ vs. MFS total household cost across all eligible IDR plans and returns year-by-year filing recommendations.

curl -X POST https://talovex-api.smarttechinvest.com/v1/compute/spousal-optimization \
  -H "X-API-Key: tlv_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "borrower_agi": 55000,
    "spouse_agi": 95000,
    "balance": 110000,
    "weighted_rate": 0.062,
    "family_size": 3,
    "state": "CA",
    "community_property": true,
    "idr_plans": ["IBR", "PAYE", "SAVE"]
  }'

Response includes scenarios[] per plan with MFJ and MFS total costs, annual_strategy[] with per-year filing recommendation, mfs_tax_penalty, mfs_idr_savings, and net_recommendation.