📐 Math

Child Support Calculator Idaho

Solve Child Support Calculator Idaho problems with step-by-step solutions

⚡ Free to use 📱 Mobile friendly 🕒 Updated: May 29, 2026
🧮 Child Support Calculator Idaho
function calculate() { // Get inputs const income1 = parseFloat(document.getElementById("i1").value) || 0; const income2 = parseFloat(document.getElementById("i2").value) || 0; const numChildren = parseInt(document.getElementById("i3").value) || 0; const overnights = parseInt(document.getElementById("i4").value) || 0; const healthIns = parseFloat(document.getElementById("i5").value) || 0; const childCare = parseFloat(document.getElementById("i6").value) || 0; // Validate if (income1 < 0 || income2 < 0 || numChildren < 0 || overnights < 0 || overnights > 365 || healthIns < 0 || childCare < 0) { showResult("Invalid Input", "Please enter valid non-negative values", [{"label":"Error","value":"Check inputs","cls":"red"}]); return; } if (income1 === 0 && income2 === 0) { showResult("$0.00", "No income entered", [{"label":"Notice","value":"Enter at least one income","cls":"yellow"}]); return; } // Idaho Child Support Guidelines (2023) // Step 1: Combined monthly income const combinedIncome = income1 + income2; // Step 2: Basic child support obligation from Idaho guidelines table // Using the simplified formula based on Idaho Code § 32-706 // For combined income up to $10,000, use percentage of income // For higher incomes, court may use discretion, but we use a cap const cappedIncome = Math.min(combinedIncome, 10000); // Percentage based on number of children (Idaho guidelines) const childPercentages = { 1: 0.15, 2: 0.22, 3: 0.28, 4: 0.33, 5: 0.37, 6: 0.40 }; const percentage = childPercentages[Math.min(numChildren, 6)] || (0.15 + (numChildren - 1) * 0.05); let basicObligation = cappedIncome * percentage; // Step 3: Add health insurance and child care costs (extraordinary expenses) const totalExtraCosts = healthIns + childCare; // Step 4: Total child support obligation const totalObligation = basicObligation + totalExtraCosts; // Step 5: Each parent's share based on income proportion const share1 = income1 / combinedIncome; const share2 = income2 / combinedIncome; const obligation1 = totalObligation * share1; const obligation2 = totalObligation * share2; // Step 6: Parenting time adjustment // Idaho uses a formula: if overnights > 109 (30%), adjust const overnightsPct = overnights / 365; let adjustment = 0; let adjustedObligation1 = obligation1; let adjustedObligation2 = obligation2; if (overnights >= 110) { // Parenting time adjustment factor (Idaho formula) // Multiply by (1 - (0.4 * overnightsPct)) const timeFactor = 1 - (0.4 * overnightsPct); adjustedObligation1 = obligation1 * timeFactor; adjustedObligation2 = obligation2 * timeFactor; adjustment = totalObligation - (adjustedObligation1 + adjustedObligation2); } // Step 7: Determine who pays and how much let transferAmount = 0; let payer = ""; let recipient = ""; if (adjustedObligation1 > adjustedObligation2) { transferAmount = adjustedObligation1 - adjustedObligation2; payer = "Parent 1"; recipient = "Parent 2"; } else if (adjustedObligation2 > adjustedObligation1) { transferAmount = adjustedObligation2 - adjustedObligation1; payer = "Parent 2"; recipient = "Parent 1"; } // Format results const fmtCurrency = (val) => "$" + val.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,'); // Determine result class let resultClass = "green"; let resultLabel = "Monthly Child Support"; let resultSub = ""; if (transferAmount === 0) { resultLabel = "No Transfer"; resultSub = "Equal obligations"; resultClass = "yellow"; } else if (transferAmount > 500) { resultClass = "red"; resultSub = payer + " pays " + recipient; } else if (transferAmount > 200) { resultClass = "yellow"; resultSub = payer + " pays " + recipient; } else { resultSub = payer + " pays " + recipient; } // Build result grid const resultGrid = [ {"label":"Combined Monthly Income","value":fmtCurrency(combinedIncome),"cls":""}, {"label":"Basic Obligation (Table)","value":fmtCurrency(basicObligation),"cls":""}, {"label":"Extraordinary Costs","value":fmtCurrency(totalExtraCosts),"cls":""}, {"label":"Total Obligation","value":fmtCurrency(totalObligation),"cls":""}, {"label":"Parent 1 Share (" + (share1*100).toFixed(1) + "%)","value":fmtCurrency(obligation1),"cls":""}, {"label":"Parent 2 Share (" + (share2*100).toFixed(1) + "%)","value":fmtCurrency(obligation2),"cls":""}, {"label":"Parenting Time Adjustment","value":"-" + fmtCurrency(adjustment),"cls":"yellow"}, {"label":"Adjusted Obligation (P1)","value":fmtCurrency(adjustedObligation1),"cls":""}, {"label":"Adjusted Obligation (P2)","value":fmtCurrency(adjustedObligation2),"cls":""}, {"label":"Transfer Amount","value":fmtCurrency(transferAmount),"cls":resultClass} ]; showResult(fmtCurrency(transferAmount), resultLabel, resultGrid); // Breakdown table let breakdownHTML = "

Detailed Calculation Breakdown

"; breakdownHTML += ""; breakdownHTML += ""; breakdownHTML += ""; breakdownHTML += ""; breakdownHTML += ""; breakdownHTML += ""; breakdownHTML += ""; breakdownHTML += ""; breakdownHTML += ""; breakdownHTML += ""; breakdownHTML += ""; breakdownHTML += ""; breakdownHTML += ""; breakdownHTML += ""; breakdownHTML += ""; breakdownHTML += ""; breakdownHTML += "
ItemValueNotes
Combined Gross Income" + fmtCurrency(combinedIncome) + "Parent 1: " + fmtCurrency(income1) + " + Parent 2: " + fmtCurrency(income2) + "
Income Cap Applied" + fmtCurrency(cappedIncome) + "Idaho caps at $10,000
Percentage for " + numChildren + " child(ren)" + (percentage*100).toFixed(1) + "%Idaho guideline table
Basic Obligation" + fmtCurrency(basicObligation) + "" + fmtCurrency(cappedIncome) + " × " + (percentage*100).toFixed(1) + "%
Health Insurance" + fmtCurrency(healthIns) + "Monthly premium
Child Care Costs" + fmtCurrency(childCare) + "Work-related
Total Extraordinary Costs" + fmtCurrency(totalExtraCosts) + "" + fmtCurrency(healthIns) + " + " + fmtCurrency(childCare) + "
Total Support Obligation" + fmtCurrency(totalObligation) + "" + fmtCurrency(basicObligation) + " + " + fmtCurrency(totalExtraCosts) + "
Parent 1 Income Share" + (share1*100).toFixed(1) + "%" + fmtCurrency(income1) + " / " + fmtCurrency(combinedIncome) + "
Parent 2 Income Share" + (share2*100).toFixed(1) + "%" + fmtCurrency(income2) + " / " + fmtCurrency(combinedIncome) + "
Parent 1 Obligation" + fmtCurrency(obligation1) + "" + fmtCurrency(totalObligation) + " × " + (share1*100).toFixed(1) + "%
Parent 2 Obligation" + fmtCurrency(obligation2) + "" + fmtCurrency(totalObligation) + " × " + (share2*100).toFixed(1) + "%
Parenting Time (P1)" + overnights + " overnights" + (overnightsPct*100).toFixed(1) + "% of year
Time Adjustment Factor" + (overnights >= 110 ? (1 - 0.4*overnightsPct).toFixed(4) : "None") + "" + (overnights >= 110 ? "Applied (≥110 overnights)" : "Not applied (<110 overnights)") + "
Adjusted P1 Obligation" + fmtCurrency(adjustedObligation1) + "" + (overnights >= 110 ? fmtCurrency(obligation1) + " × " + (1 - 0.4*overnightsPct).toFixed(4) : "Same as above") + "
Adjusted P2 Obligation" + fmtCurrency(adjustedObligation2) + "" + (overnights >= 110 ?
📊 Estimated Monthly Child Support by Income Scenarios (Idaho Guidelines)

What is Child Support Calculator Idaho?

A Child Support Calculator Idaho is a specialized digital tool designed to estimate the amount of child support one parent may be required to pay to the other under Idaho’s specific legal guidelines. Unlike generic calculators, this tool incorporates the unique income shares model mandated by the Idaho Supreme Court, which considers both parents' incomes, the number of children, and custody arrangements to produce a legally informed estimate. This is crucial for parents navigating divorce, separation, or paternity cases in the Gem State, as it provides a realistic preview of potential financial obligations without the cost of an attorney’s initial consultation.

Family law attorneys, mediators, and self-represented litigants use this calculator to establish a starting point for negotiations or court proceedings. In Idaho, where child support guidelines are strictly enforced by the Department of Health and Welfare, having an accurate estimate helps parents plan budgets, avoid surprises in court, and ensure the child’s needs—such as housing, healthcare, and education—are fairly met. The tool is especially valuable for parents who live in different Idaho counties, as it accounts for local variations in cost-of-living adjustments.

This free online Child Support Calculator Idaho eliminates the guesswork by automating complex calculations that would otherwise require manual review of the Idaho Child Support Guidelines (ICRP 6.0). With just a few inputs, users can generate a support figure that aligns with current state law, making it an indispensable resource for anyone dealing with family law matters in Idaho.

How to Use This Child Support Calculator Idaho

Using this Child Support Calculator Idaho is straightforward, but accuracy depends on entering correct financial and custody data. Follow these five steps to get the most reliable estimate for your situation.

  1. Enter Each Parent’s Monthly Gross Income: Start by inputting the monthly gross income for both the custodial and non-custodial parent. This includes wages, salaries, bonuses, self-employment earnings, rental income, and any other regular financial inflows. Do not deduct taxes or payroll deductions—gross income is what the Idaho guidelines use as the baseline. If a parent is unemployed or underemployed, the calculator may require you to input potential income based on their earning capacity, as Idaho law can impute income.
  2. Specify the Number of Qualified Children: Enter the total number of minor children (under age 18 or still in high school) for whom support is being calculated. The calculator uses this number to look up the correct basic support obligation from the Idaho Child Support Schedule. If you have children from multiple relationships, you may need to adjust for prior support orders—this tool allows you to note any existing obligations that affect the total amount.
  3. Adjust for Parenting Time and Custody: Indicate the percentage of overnights each parent has with the children annually. Idaho uses a “parenting time adjustment” that reduces the non-custodial parent’s obligation if they have significant physical custody (typically 128 or more overnights per year). Enter the exact number of overnights or use the slider to set the percentage. The calculator automatically applies the Idaho formula to adjust support based on this shared custody arrangement.
  4. Add Additional Expenses: Include any mandatory costs such as health insurance premiums for the children, uninsured medical expenses, and childcare costs related to employment or education. These are added on top of the basic support obligation and are typically split between parents proportionally to their incomes. The tool will prompt you for monthly amounts for each category, ensuring these extras are factored into the final estimate.
  5. Review and Generate the Estimate: Double-check all entries for accuracy—especially income figures and overnight counts—then click “Calculate.” The tool will instantly display the estimated monthly child support payment, including a breakdown of the basic obligation, parenting time adjustment, and additional expenses. You can print or save this report for discussions with your co-parent or attorney.

For best results, have your most recent pay stubs, tax returns, and a parenting plan handy when using the tool. The calculator is designed for educational purposes and should not replace professional legal advice, but it provides a strong foundation for understanding your potential obligation under Idaho law.

Formula and Calculation Method

The Child Support Calculator Idaho uses the state’s official Income Shares Model, which assumes that children should receive the same proportion of parental income they would have if the parents lived together. The formula is codified in Idaho Code § 32-706 and the Idaho Child Support Guidelines, and it involves a multi-step process that combines both parents’ incomes, applies a standard obligation table, and adjusts for custody and additional expenses.

Formula
Basic Obligation = (Combined Adjusted Income × Obligation Percentage from Schedule) + (Health Insurance + Childcare + Extraordinary Medical) × (Each Parent’s Income Share Ratio) – Parenting Time Adjustment

Variables Explained:

  • Combined Adjusted Income: The sum of both parents’ monthly gross incomes, minus any prior child support paid to other children or self-support reserve adjustments.
  • Obligation Percentage: A fixed percentage from the Idaho Child Support Schedule that varies by combined income and number of children (e.g., 25% for one child, 38% for two, etc.).
  • Parenting Time Adjustment: A reduction applied when the non-custodial parent has 128 or more overnights per year, calculated as (Obligation × (Overnights ÷ 365) × 1.5).
  • Income Share Ratio: Each parent’s income divided by the combined income, used to split additional expenses proportionally.

Understanding the Variables

Gross income is the starting point and includes all sources of income, including overtime, bonuses, and commissions. The self-support reserve—currently $1,215 per month (as of 2024)—ensures that the paying parent retains enough income to live on. If a parent’s income is below this threshold, the calculator may adjust the obligation downward. The number of children directly scales the basic obligation: one child typically requires 25% of combined income, two require 38%, three require 45%, and so on up to a cap. Parenting time is measured in overnights, with the adjustment only activating at 128 nights (35%) or more, which significantly reduces the payment.

Step-by-Step Calculation

First, add both parents’ monthly gross incomes to get the combined adjusted income. Second, locate the basic support obligation from the Idaho schedule—for example, a combined income of $6,000 with one child gives an obligation of $1,500 (25%). Third, if the non-custodial parent has 150 overnights, calculate the parenting time adjustment: ($1,500 × (150 ÷ 365) × 1.5) = $924.66. Fourth, subtract this adjustment from the basic obligation: $1,500 – $924.66 = $575.34. Fifth, add proportional shares of health insurance and childcare costs—if the non-custodial parent earns 60% of combined income and monthly childcare is $500, they owe 60% × $500 = $300. Finally, the total monthly payment is $575.34 + $300 = $875.34.

Example Calculation

Let’s walk through a realistic scenario to see exactly how the Child Support Calculator Idaho works in practice. This example mirrors a common situation in Boise or Twin Falls.

Example Scenario: Mark (non-custodial parent) earns $4,500 per month gross. Sarah (custodial parent) earns $3,000 per month gross. They have one child, aged 8. Mark has the child for 140 overnights per year (about 38% custody). Monthly childcare costs $400, and Mark pays $150 per month for the child’s health insurance.

Step 1: Combined Income. $4,500 (Mark) + $3,000 (Sarah) = $7,500 per month.

Step 2: Basic Obligation. From the Idaho schedule, 25% of $7,500 = $1,875 for one child.

Step 3: Parenting Time Adjustment. Mark has 140 overnights. Adjustment = $1,875 × (140 ÷ 365) × 1.5 = $1,875 × 0.3836 × 1.5 = $1,078.13.

Step 4: Adjusted Basic Obligation. $1,875 – $1,078.13 = $796.87.

Step 5: Additional Expenses. Mark’s income ratio = $4,500 ÷ $7,500 = 0.60 (60%). Childcare: 60% × $400 = $240. Health insurance: Mark already pays $150, so he gets credit for that. The calculator adds the childcare share: $240.

Result: Mark’s total monthly child support = $796.87 + $240 = $1,036.87. In plain English, Mark will pay Sarah approximately $1,037 per month, which covers basic support and a portion of childcare. This amount is within the typical range for Idaho families with moderate incomes.

Another Example

Consider a lower-income scenario: Lisa (non-custodial) earns $2,200 per month, while Tom (custodial) earns $1,800 per month. They have two children, and Lisa has 180 overnights per year (49% custody). No childcare or insurance costs. Combined income = $4,000. Basic obligation for two children = 38% × $4,000 = $1,520. Parenting time adjustment: $1,520 × (180 ÷ 365) × 1.5 = $1,520 × 0.4932 × 1.5 = $1,124.10. Adjusted basic obligation: $1,520 – $1,124.10 = $395.90. Since Lisa’s income is above the self-support reserve, the payment is $396 per month. This shows how significant parenting time reduces support, especially when custody is nearly equal.

Benefits of Using Child Support Calculator Idaho

Using a dedicated Child Support Calculator Idaho offers numerous advantages that go beyond simple number crunching. This tool empowers parents with clarity, saves money, and reduces conflict during an already stressful time.

  • Accurate Legal Compliance: The calculator is programmed to follow the exact Idaho Child Support Guidelines, including the latest updates to the income shares model and obligation schedules. Unlike generic calculators, it accounts for Idaho-specific rules like the self-support reserve and parenting time adjustment formula. This ensures your estimate aligns with what a judge would order, reducing the risk of surprises in court.
  • Cost and Time Savings: A single consultation with a family law attorney in Idaho can cost $200 to $500 per hour. This free tool gives you instant results without any appointment or fee. You can run multiple scenarios—such as changing custody schedules or income changes—in minutes, allowing you to explore “what if” situations before committing to a legal strategy.
  • Reduces Conflict and Promotes Fairness: When both parents use the same calculator with the same inputs, it creates a transparent baseline for discussions. This objectivity can defuse emotional arguments about money, helping parents focus on the child’s best interests. Many mediators and court facilitators in Idaho recommend using a calculator to foster cooperative negotiations.
  • Educational for Self-Represented Litigants: Over 60% of family law cases in Idaho involve at least one parent without an attorney. This calculator breaks down complex legal formulas into simple, understandable steps, teaching users how Idaho calculates support. It also highlights important factors like the impact of overtime income or imputed income for unemployed parents.
  • Portable and Private: As a web-based tool, you can use it on any device—phone, tablet, or computer—without downloading software. Your data is processed locally or anonymously, ensuring your financial information remains private. You can generate reports to share with your co-parent or attorney without exposing sensitive details to third parties.

Tips and Tricks for Best Results

To get the most accurate estimate from the Child Support Calculator Idaho, follow these expert tips and avoid common pitfalls. Precision in inputs leads to reliable outputs that hold up in discussions or court.

Pro Tips

  • Always use gross income before taxes—do not deduct payroll deductions like 401(k) contributions or health insurance premiums for the parent. Idaho law defines gross income broadly, and only specific deductions (like prior child support) are allowed.
  • Count overnights meticulously. Use a calendar to tally actual nights the child sleeps at each parent’s home, including holidays, school breaks, and summer vacation. Even one overnight difference can change the parenting time adjustment threshold (128 nights).
  • Include all mandated additional expenses: health insurance premiums for the child only (not for the parent), unreimbursed medical costs over $250 per year per child, and work-related childcare. Voluntary expenses like extracurricular activities are not required but can be added by agreement.
  • Run multiple scenarios if your situation is uncertain. For example, test what happens if your income changes by 10% or if custody shifts by 20 overnights. This prepares you for negotiations and helps you understand the financial impact of different arrangements.

Common Mistakes to Avoid

  • Using net income instead of gross income: Many users mistakenly enter take-home pay after taxes and deductions. This underestimates the support obligation because Idaho uses gross income. Always use your W-2 or pay stub gross figure before any deductions.
  • Ignoring imputed income: If a parent is voluntarily unemployed or underemployed, Idaho courts may assign them a potential income based on their earning capacity. Failing to account for this can skew the calculation. Research average wages for their occupation in Idaho or use the state’s minimum wage as a floor.
  • Forgetting to adjust for multiple child support orders: If you pay support for children from a previous relationship, that amount reduces your gross income for the current calculation. The calculator has a field for this—do not leave it blank if applicable.
  • Miscounting overnight visits: Even a few missed overnights can push you below 128 nights, eliminating the parenting time adjustment. Double-check your parenting plan and actual schedule, especially if it’s a 50/50 arrangement that may fall slightly short of 183 overnights.

Conclusion

The Child Support Calculator Idaho is an essential tool for any parent, attorney, or mediator dealing with child support in the Gem State. By using the state’s official Income Shares Model and incorporating Idaho-specific rules like the parenting time adjustment and self-support reserve, this free calculator provides a legally informed estimate that can save you time, money, and emotional strain. Whether you are negotiating a parenting plan, preparing for a court hearing, or simply trying to understand your financial future, this tool offers clarity and transparency in a process that often feels overwhelming.

Take control of your child support situation today by using our free Child Support Calculator Idaho. Enter your income, custody details, and expenses to receive an instant estimate that aligns with Idaho law. Share the results with your co-parent or bring them to your next mediation session—you’ll be better prepared to make informed decisions for your family. Start calculating now and see how easy it is to demystify child support in Idaho.

Frequently Asked Questions

The Idaho Child Support Calculator is an online tool that estimates the presumptive child support amount based on the Idaho Child Support Guidelines (ICR 126). It calculates a monthly dollar amount by inputting each parent's gross monthly income, parenting time percentages, and allowable deductions like health insurance premiums or other child support orders. For example, if Parent A earns $4,000/month and Parent B earns $2,000/month with equal parenting time, the calculator will determine a baseline support obligation and then adjust it proportionally.

The Idaho formula first combines both parents' adjusted monthly incomes to find the total combined income, then applies a percentage from the Idaho Child Support Schedule (e.g., 25% for one child, 36% for two children, 44% for three children) to that combined amount. That total obligation is then prorated based on each parent's share of income, and a parenting time adjustment is applied if the non-custodial parent has 110 or more overnights per year. For example, with a combined income of $6,000 and one child, the base obligation is $1,500 (25% of $6,000), then Parent A pays their share minus a credit for parenting time.

For a single child in Idaho, typical monthly support obligations range from $0 (if incomes are very low or equal with shared parenting) up to around $1,200 for high-income parents (e.g., combined income of $15,000/month). The Idaho guidelines cap the combined income used at $15,000 per month for the basic schedule, so above that, the court may deviate. A common scenario—one parent earning $3,500/month, the other $2,000/month, with standard parenting time—usually yields a support amount between $400 and $700 per month.

The calculator is highly accurate for generating the presumptive guideline amount, as it uses the exact same statutory schedule and formulas that Idaho courts apply. However, it is only as accurate as the data entered—if you misstate gross income, fail to include mandatory deductions (like prior support orders), or incorrectly calculate overnights, the result will be off. Courts can deviate from the calculator's result for reasons like special needs, high medical costs, or extraordinary income, so the final order may differ by 10–20% in some cases.

The calculator does not account for self-employment income adjustments, business expenses, or irregular income (like bonuses or commissions) unless manually converted to monthly averages. It also cannot handle complex parenting time schedules (e.g., 50/50 with alternating holidays) beyond the basic overnight count, and it ignores extraordinary medical or educational expenses that the court may allocate separately. Additionally, the calculator assumes both parents are working or have imputed income, which may not reflect a parent's actual ability to pay if unemployed.

The calculator provides the same mathematical result as an attorney would derive from the guidelines, but an attorney can interpret complex situations like imputing income for a voluntarily unemployed parent, adjusting for shared custody with non-standard schedules, or arguing for a deviation. A mediator or attorney can also factor in tax implications (e.g., dependency exemptions) that the calculator ignores. For straightforward cases with two W-2 employees and standard parenting time, the calculator is nearly identical to a professional's result, but for high-conflict or non-standard cases, professional advice can change the outcome by hundreds of dollars.

No, that is a common misconception. The calculator only applies a parenting time adjustment if the non-custodial parent has 110 or more overnights per year (about every other weekend plus some holidays equals roughly 104 overnights, which is below the threshold). Standard every-other-weekend parenting time (52 overnights per year) does not trigger any reduction in the base obligation. Only when overnights reach 110 or more does the calculator reduce the support amount by a percentage based on the actual overnight count.

Consider a divorced father in Boise earning $5,000/month gross, with a mother earning $3,000/month, and they have two children (ages 6 and 9) with the father having 140 overnights per year. Using the calculator, the combined income is $8,000/month, and the guideline for two children is 36%, giving a total obligation of $2,880/month. The father's income share is 62.5% ($5,000/$8,000), so his share is $1,800. With 140 overnights (38.4% of the year), the calculator applies a parenting time credit, reducing his payment to approximately $1,100 per month, which he would pay directly to the mother for the children's support.

Last updated: May 29, 2026 · Bookmark this page for quick access

🔗 You May Also Like