Marriage Tax Calculator
Calculate how marriage affects your tax liability. Compare married filing jointly versus filing separately to find the optimal strategy.
Marriage Penalty vs. Bonus
| Situation | Tax Effect |
|---|---|
| Both spouses earn similar amounts | Marriage penalty (higher combined tax) |
| One spouse earns significantly more | Marriage bonus (lower combined tax) |
| One spouse has no income | Large marriage bonus |
| Both low-income | Usually marriage bonus (credits) |
2024 Tax Brackets Comparison
| Rate | Single | Married Joint | Married Separate |
|---|---|---|---|
| 10% | $0-$11,600 | $0-$23,200 | $0-$11,600 |
| 12% | $11,601-$47,150 | $23,201-$94,300 | $11,601-$47,150 |
| 22% | $47,151-$100,525 | $94,301-$201,050 | $47,151-$100,525 |
| 24% | $100,526-$191,950 | $201,051-$383,900 | $100,526-$191,950 |
| 32% | $191,951-$243,725 | $383,901-$487,450 | $191,951-$243,725 |
Marriage Tax Calculator
``javascript
function calculateMarriageTax(income1, income2) {
// Calculate tax if both file single
const singleTax1 = calculateTax(income1, 'single');
const singleTax2 = calculateTax(income2, 'single');
const totalIfSingle = singleTax1 + singleTax2;
// Calculate tax if married filing jointly
const combinedIncome = income1 + income2;
const jointTax = calculateTax(combinedIncome, 'married');
// Marriage penalty or bonus
const difference = jointTax - totalIfSingle;
return {
income1,
income2,
taxIfSingle: totalIfSingle.toFixed(2),
taxIfMarried: jointTax.toFixed(2),
marriagePenalty: difference > 0 ? difference.toFixed(2) : 0,
marriageBonus: difference < 0 ? Math.abs(difference).toFixed(2) : 0
};
}
``
Filing Status Comparison
| Consideration | Joint | Separate |
|---|---|---|
| Standard deduction | $29,200 | $14,600 each |
| Tax brackets | Wider | Same as single |
| Earned Income Credit | Eligible | Not eligible |
| Child Tax Credit | Eligible | Limited |
| Student loan deduction | Eligible | Not eligible |
| IRA deduction phase-out | Higher limits | Lower limits |
When to File Separately
Consider married filing separately when:
- Income-based student loan repayment (IBR/PAYE)
- Keeping finances completely separate
- One spouse has substantial medical expenses
- Legal separation/divorce proceedings