Chapter 13 Calculator

.ch13-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e4e8; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 15px rgba(0,0,0,0.05); } .ch13-header { text-align: center; margin-bottom: 30px; } .ch13-header h2 { color: #2c3e50; margin-bottom: 10px; } .ch13-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } @media (max-width: 600px) { .ch13-grid { grid-template-columns: 1fr; } } .ch13-input-group { margin-bottom: 15px; } .ch13-input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #34495e; font-size: 0.95rem; } .ch13-input-group input, .ch13-input-group select { width: 100%; padding: 12px; border: 2px solid #edeff2; border-radius: 8px; box-sizing: border-box; font-size: 1rem; transition: border-color 0.3s; } .ch13-input-group input:focus { outline: none; border-color: #3498db; } .ch13-calc-btn { grid-column: span 2; background-color: #2c3e50; color: white; padding: 15px; border: none; border-radius: 8px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: background 0.3s; margin-top: 10px; } @media (max-width: 600px) { .ch13-calc-btn { grid-column: span 1; } } .ch13-calc-btn:hover { background-color: #34495e; } .ch13-result { margin-top: 30px; padding: 20px; background-color: #f8f9fa; border-radius: 8px; border-left: 5px solid #3498db; display: none; } .ch13-result h3 { margin-top: 0; color: #2c3e50; } .ch13-val { font-size: 1.4rem; font-weight: bold; color: #27ae60; } .ch13-summary { font-size: 0.9rem; color: #7f8c8d; margin-top: 10px; line-height: 1.5; } .ch13-article { margin-top: 40px; line-height: 1.6; color: #333; } .ch13-article h2 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 30px; } .ch13-article h3 { color: #2980b9; margin-top: 20px; } .ch13-article p { margin-bottom: 15px; } .ch13-article ul { margin-bottom: 15px; padding-left: 20px; }

Chapter 13 Bankruptcy Payment Calculator

Estimate your monthly repayment plan based on disposable income and asset equity.

36 Months (3 Years) 60 Months (5 Years)

Estimation Results

Estimated Monthly Payment: $0.00

Total Plan Repayment: $0.00

Understanding the Chapter 13 Bankruptcy Payment Plan

A Chapter 13 bankruptcy, often called a "wage earner's plan," allows individuals with regular income to develop a plan to repay all or part of their debts. Unlike Chapter 7, which involves liquidating assets, Chapter 13 focuses on a 3-to-5-year repayment period where you keep your property but pay creditors through a court-approved budget.

How Your Monthly Payment is Calculated

The Chapter 13 calculator uses two primary "tests" to determine what your monthly payment should be. The court requires you to pay whichever amount is higher between these two tests:

1. The Disposable Income Test

This is the most common method. The court looks at your Monthly Gross Income and subtracts Mandatory Deductions (like federal/state taxes, Social Security, and health insurance) and Allowable Living Expenses. These expenses are often based on IRS National and Local Standards for housing, food, and transportation. Whatever is left over—your "disposable income"—must be paid into the plan to satisfy unsecured creditors.

2. The Best Interest of Creditors Test (Asset Test)

Chapter 13 requires that your unsecured creditors receive at least as much as they would have if you had filed for Chapter 7. If you have "non-exempt" equity in assets (like a second home or a high-value vehicle that exceeds state exemptions), you must pay an amount equal to that value over the life of your plan.

Key Factors Impacting Your Plan

  • Plan Length: If your income is above the state median, you are usually required to have a 60-month plan. If below, you may qualify for a 36-month plan.
  • Secured Debt Arrears: If you are behind on a mortgage or car loan, the "catch-up" payments are baked into the monthly plan.
  • Trustee Fees: The Bankruptcy Trustee takes a percentage of every payment you make, usually ranging from 3% to 10% depending on the district.
  • Priority Debts: Debts like child support, alimony, and recent tax obligations must typically be paid in full (100%) through the plan.

Example Scenario

Suppose an individual earns $5,000 monthly. After taxes ($1,000), IRS standard living expenses ($2,500), and a car payment ($500), they have $1,000 in disposable income. Over a 60-month plan, they would pay $60,000. However, if they own a boat with $15,000 in non-exempt equity, the plan must ensure creditors receive at least that much. Since the disposable income ($60k) is higher than the asset value ($15k), the $1,000 monthly payment stands.

Disclaimer: This calculator provides a simplified estimate. Bankruptcy laws vary significantly by state and jurisdiction. Always consult with a qualified bankruptcy attorney to determine your actual eligibility and payment requirements.

function calculateChapter13() { var monthlyGross = parseFloat(document.getElementById('monthlyGross').value) || 0; var deductions = parseFloat(document.getElementById('mandatoryDeductions').value) || 0; var livingExpenses = parseFloat(document.getElementById('livingExpenses').value) || 0; var securedPayments = parseFloat(document.getElementById('securedPayments').value) || 0; var nonExemptEquity = parseFloat(document.getElementById('nonExemptEquity').value) || 0; var duration = parseInt(document.getElementById('planDuration').value) || 60; // 1. Calculate Monthly Disposable Income // Formula: Gross – (Taxes + Living Expenses + Secured Debt) var disposableIncome = monthlyGross – deductions – livingExpenses – securedPayments; if (disposableIncome disposableIncome) { summaryText = "Your payment is primarily driven by your Non-Exempt Assets. Because your equity exceeds your monthly disposable income, you must pay more to satisfy the 'Best Interest of Creditors' test."; } else if (disposableIncome > 0) { summaryText = "Your payment is primarily driven by your Disposable Income. This is the amount remaining after your mandatory deductions and allowable living expenses are subtracted from your gross income."; } else { summaryText = "Based on these numbers, your disposable income is zero. You may still have a minimum plan payment to cover trustee fees, administrative costs, or priority debts not listed here."; } document.getElementById('calcSummary').innerHTML = summaryText + " (Includes an estimated 10% Trustee Fee)."; }

Leave a Comment