Child Support Indiana Calculator

Indiana Child Support Calculator

Estimate Weekly Support Obligations (Income Shares Model)

1 2 3 4 5+

Estimated Support Summary

Understanding the Indiana Child Support Calculation

In Indiana, child support is calculated using the Income Shares Model. This principle assumes that a child should receive the same proportion of parental income that they would have received if the parents lived together.

Key Factors in the Calculation

  • Weekly Gross Income: Includes wages, overtime, commissions, and bonuses before taxes.
  • The Basic Obligation: A scheduled amount based on the combined income of both parents and the number of children.
  • Parenting Time Credit: Indiana provides a credit to the non-custodial parent based on the number of overnights they have per year, acknowledging the costs incurred during visitation.
  • Work-Related Childcare: Costs for daycare or after-school care required for the parents to work are added to the basic obligation.
  • Health Insurance: The cost of the child's portion of medical insurance premiums is factored into the final split.

Parenting Time Overnights Credit

The credit increases as the number of overnights increases. For example:

Overnights per Year Percentage Credit Category
52 – 55 Standard Visitation
96 – 100 Substantial Parenting Time
181 – 183 Equal Parenting Time (50/50)

Example Calculation

If Parent A earns $1,000/week and Parent B earns $500/week, their combined income is $1,500. If the Basic Obligation for one child at that income level is $200, Parent A (66% earner) would theoretically be responsible for $132/week, minus any applicable credits for overnights or insurance payments.

function calculateINSupport() { var p1Income = parseFloat(document.getElementById('p1Income').value) || 0; var p2Income = parseFloat(document.getElementById('p2Income').value) || 0; var numChildren = parseInt(document.getElementById('numChildren').value); var overnights = parseInt(document.getElementById('overnights').value) || 0; var healthIns = parseFloat(document.getElementById('healthIns').value) || 0; var childCare = parseFloat(document.getElementById('childCare').value) || 0; var combinedIncome = p1Income + p2Income; if (combinedIncome <= 0) { alert("Please enter valid income amounts."); return; } // Indiana Guideline Approximation (Basic Obligation Curve) // Basic calculation: % of combined income decreases slightly as income rises var baseRate; if (combinedIncome < 500) baseRate = 0.22; else if (combinedIncome < 1000) baseRate = 0.18; else if (combinedIncome < 2000) baseRate = 0.15; else if (combinedIncome = 5) childMultiplier = 2.1; var basicObligation = (combinedIncome * baseRate) * childMultiplier; // Pro-rata shares var p1SharePerc = p1Income / combinedIncome; var p2SharePerc = p2Income / combinedIncome; // Total Obligation including expenses var totalObligation = basicObligation + healthIns + childCare; // Parenting Time Credit (Simulated Indiana Formula) // Credit formula is roughly (Total Obligation / Children) * (Overnight Factor) var ptCredit = 0; if (overnights >= 52) { var ptFactor = 0; if (overnights <= 55) ptFactor = 0.05; else if (overnights <= 100) ptFactor = 0.15; else if (overnights <= 150) ptFactor = 0.25; else if (overnights <= 180) ptFactor = 0.40; else ptFactor = 0.50; ptCredit = basicObligation * ptFactor; } // Calculation for Parent 2 (Assuming Parent 2 is non-custodial payor) var p2BaseSupport = totalObligation * p2SharePerc; var finalWeeklySupport = p2BaseSupport – ptCredit; // Ensure support doesn't go below $0 in this simple estimator if (finalWeeklySupport < 0) finalWeeklySupport = 0; var monthlySupport = finalWeeklySupport * 4.33; var resultDiv = document.getElementById('supportResult'); var detailsDiv = document.getElementById('resultDetails'); resultDiv.style.display = 'block'; detailsDiv.innerHTML = 'Estimated Weekly Payment: $' + finalWeeklySupport.toFixed(2) + '' + 'Estimated Monthly Payment: $' + monthlySupport.toFixed(2) + " + '
' + 'Combined Weekly Income: $' + combinedIncome.toFixed(2) + " + 'Basic Obligation: $' + basicObligation.toFixed(2) + " + 'Parent 2 Income Share: ' + (p2SharePerc * 100).toFixed(1) + '%' + 'Parenting Time Credit Applied: -$' + ptCredit.toFixed(2) + '
' + '*Disclaimer: This is an estimate based on simplified Indiana Guidelines. Official court calculations use the detailed Indiana Child Support Worksheet and may differ based on specific credits or court deviations.'; resultDiv.scrollIntoView({ behavior: 'smooth' }); }

Leave a Reply

Your email address will not be published. Required fields are marked *