📐 Math

Child Support Calculator Kansas

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

⚡ Free to use 📱 Mobile friendly 🕒 Updated: May 29, 2026
🧮 Child Support Calculator Kansas
function calculate() { const incomeF = parseFloat(document.getElementById('i1').value) || 0; const incomeM = parseFloat(document.getElementById('i2').value) || 0; const numKids = parseInt(document.getElementById('i3').value) || 2; const overnights = parseInt(document.getElementById('i4').value) || 0; const childcare = parseFloat(document.getElementById('i5').value) || 0; const healthIns = parseFloat(document.getElementById('i6').value) || 0; const otherMed = parseFloat(document.getElementById('i7').value) || 0; // Kansas Child Support Guidelines (2023) // Combined income, basic child support obligation from Kansas tables const combinedIncome = incomeF + incomeM; // Basic support obligation based on combined income and number of children (Kansas table simplified) let basicObligation = 0; if (combinedIncome <= 800) { basicObligation = combinedIncome * 0.20; } else if (combinedIncome <= 1500) { basicObligation = 160 + (combinedIncome - 800) * 0.18; } else if (combinedIncome <= 3000) { basicObligation = 286 + (combinedIncome - 1500) * 0.16; } else if (combinedIncome <= 5000) { basicObligation = 526 + (combinedIncome - 3000) * 0.14; } else if (combinedIncome <= 8000) { basicObligation = 806 + (combinedIncome - 5000) * 0.12; } else if (combinedIncome <= 12000) { basicObligation = 1166 + (combinedIncome - 8000) * 0.10; } else { basicObligation = 1566 + (combinedIncome - 12000) * 0.08; } // Adjust for number of children multiplier const kidsMultiplier = [1, 1.0, 1.42, 1.78, 2.10, 2.40, 2.70]; const idx = Math.min(numKids, 6); basicObligation = basicObligation * kidsMultiplier[idx]; // Add-ons: childcare, health insurance, other medical const totalAddons = childcare + healthIns + otherMed; // Parenting time adjustment (Kansas uses overnights) let parentingCredit = 0; if (overnights >= 110) { parentingCredit = 0.10; // 10% reduction for significant parenting time } else if (overnights >= 70) { parentingCredit = 0.05; } else if (overnights >= 35) { parentingCredit = 0.025; } // Each parent's proportional share let shareF = 0, shareM = 0; if (combinedIncome > 0) { shareF = incomeF / combinedIncome; shareM = incomeM / combinedIncome; } // Total obligation including add-ons const totalObligation = basicObligation + totalAddons; // Each parent's obligation const obligationF = totalObligation * shareF; const obligationM = totalObligation * shareM; // Presumed child support amount (non-custodial pays custodial) // Assume father is non-custodial (typical) - but we show both scenarios let supportAmount = obligationF - (parentingCredit * basicObligation * shareF); // If mother has higher income, she might pay let payer = "Non-custodial parent"; let payee = "Custodial parent"; let amount = supportAmount; if (incomeM > incomeF) { // Mother pays father supportAmount = obligationM - (parentingCredit * basicObligation * shareM); payer = "Mother (higher earner)"; payee = "Father (lower earner)"; amount = supportAmount; } // Ensure non-negative amount = Math.max(0, amount); // Color coding based on percentage of income const payerIncome = (payer.includes("Father") || payer.includes("Non-custodial")) ? incomeF : incomeM; const pctOfIncome = payerIncome > 0 ? (amount / payerIncome) * 100 : 0; let cls = "green"; if (pctOfIncome > 25) cls = "red"; else if (pctOfIncome > 15) cls = "yellow"; const formattedAmount = "$" + amount.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,'); showResult(formattedAmount, "Monthly Child Support", payer + " pays " + payee, [ {"label":"Combined Monthly Income","value":"$" + combinedIncome.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,'), "cls":""}, {"label":"Basic Obligation (Table)","value":"$" + basicObligation.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,'), "cls":""}, {"label":"Add-ons (Childcare, Insurance, Medical)","value":"$" + totalAddons.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,'), "cls":""}, {"label":"Father's Share","value":(shareF*100).toFixed(1)+"%", "cls":""}, {"label":"Mother's Share","value":(shareM*100).toFixed(1)+"%", "cls":""}, {"label":"Parenting Time Credit","value":(parentingCredit*100).toFixed(1)+"%", "cls":"yellow"}, {"label":"Support as % of Payer Income","value":pctOfIncome.toFixed(1)+"%", "cls":cls} ]); // Breakdown table document.getElementById("breakdown-wrap").innerHTML = `
Kansas Child Support Calculation Breakdown
Father's Monthly Gross Income$${incomeF.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,')}
Mother's Monthly Gross Income$${incomeM.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,')}
Combined Income$${combinedIncome.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,')}
Number of Children${numKids}
Basic Support Obligation (from table × multiplier)$${basicObligation.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,')}
Monthly Childcare Costs$${childcare.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,')}
Health Insurance Premium (children)$${healthIns.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,')}
Other Medical Costs$${otherMed.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,')}
Total Add-ons$${totalAddons.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,')}
Total Support Obligation$${totalObligation.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,')}
Father's Obligation (${(shareF*100).toFixed(1)}% share)$${obligationF.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,')}
Mother's Obligation (${(shareM*100).toFixed(1)}% share)$${obligationM.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,')}
Overnights per Year${overnights}
Parenting Time Credit${(parentingCredit*100).toFixed(1)}%
Final Child Support Amount${formattedAmount}
`; } function showResult(value, label, sub, gridItems) { document.getElementById("res-value").textContent = value; document.getElementById("res-label").textContent = label; document.getElementById("res-sub").textContent = sub || ""; const grid = document.getElementById("result-grid"); grid.innerHTML = ""; if (gridItems) { gridItems.forEach(item => { const div = document.createElement("div"); div.className = "result-grid-item" + (item.cls ? " " + item.cls : ""); div.innerHTML = `${item.label}${item.value}`; grid.appendChild(div); }); } document.getElementById("result-section").style.display = "block"; } function resetCalc() { document.querySelectorAll('.form-input').forEach(el => el.value = ''); document.querySelectorAll('.form-select').forEach(el => el.selectedIndex = 0); document.getElementById('
📊 Estimated Monthly Child Support Payments by Income Level in Kansas

What is Child Support Calculator Kansas?

The Child Support Calculator Kansas is a specialized digital tool designed to estimate the amount of child support one parent may be required to pay to the other under Kansas state guidelines. It uses the Kansas Child Support Guidelines, which are based on the Income Shares Model, to calculate a fair and consistent support obligation by factoring in both parents’ gross incomes, parenting time, and other allowable deductions. For any parent navigating a divorce, separation, or paternity case in Kansas, this calculator provides a realistic, data-driven preview of potential financial responsibilities without the need for immediate legal fees.

This tool is primarily used by custodial and non-custodial parents, family law attorneys, mediators, and even judges to establish or modify child support orders. It matters because accurate calculations help ensure that children receive the financial support they need for housing, food, education, and healthcare, while also preventing unfair financial burdens on either parent. In Kansas, the court typically adopts the guideline amount unless a parent can demonstrate that applying it would be unjust or inappropriate.

Our free online Child Support Calculator Kansas simplifies this complex legal process into a straightforward, step-by-step input form. You can enter your income, parenting time percentage, and health insurance costs to receive an immediate, court-aligned estimate—no registration or payment required.

How to Use This Child Support Calculator Kansas

Using our Kansas child support calculator is designed to be intuitive, even if you have no legal background. Follow these five steps to get an accurate estimate based on the Kansas Child Support Guidelines.

  1. Enter Both Parents’ Gross Monthly Incomes: Start by inputting the gross monthly income for both you (Parent A) and the other parent (Parent B). This includes wages, salaries, bonuses, commissions, self-employment income, and any recurring income from investments or rental properties. Do not deduct taxes or other withholdings at this stage—Kansas uses gross income as the starting point.
  2. Input Parenting Time Percentages: Next, enter the approximate percentage of overnight time each parent spends with the child(ren) each year. Kansas uses a "parenting time adjustment" that reduces the basic support obligation if the non-custodial parent has the child for more than 90 overnights per year (roughly 25% of the time). Be as precise as possible, as even a 5% difference can shift the final amount.
  3. Add Allowable Deductions: Enter any court-ordered child support payments for other children, health insurance premiums for the child(ren), and mandatory retirement contributions (e.g., Kansas Public Employees Retirement System). You can also include work-related child care costs that are actually paid. These deductions lower the combined parental income used in the calculation.
  4. Specify Additional Children: If either parent has other children from a different relationship who live with them, you can enter that number. Kansas allows a self-support reserve adjustment that reduces the obligor’s income to account for supporting other dependents in the household.
  5. Review the Calculated Result: After clicking "Calculate," the tool will display the estimated monthly child support obligation. This includes the basic support amount, any parenting time credit, and the proportional share of health insurance and child care costs. The result shows the amount the non-custodial parent should pay to the custodial parent each month.

For best accuracy, have recent pay stubs, tax returns, and a current parenting time schedule handy before you start. The calculator does not store your data, so you can run multiple scenarios to compare outcomes.

Formula and Calculation Method

The Kansas Child Support Guidelines use the 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 involves calculating a combined parental income, applying a standardized schedule of basic support obligations, then dividing that amount between parents based on their income shares and parenting time.

Formula
Basic Child Support Obligation = (Combined Adjusted Gross Income) × (Support Percentage from Kansas Schedule) × (Parent A Income Share %) – (Parenting Time Credit, if applicable) + (Proportional Health Insurance & Child Care Costs)

Let’s break down each variable so you understand exactly how the number is derived. The Kansas Department of Social and Rehabilitation Services publishes a detailed schedule (updated periodically) that maps combined adjusted gross income to a base support amount for one to six children. This schedule is the cornerstone of the calculation.

Understanding the Variables

Combined Adjusted Gross Income (CAGI): This is the sum of both parents' gross monthly incomes, minus allowable deductions such as prior child support orders, health insurance premiums for the child, and mandatory retirement contributions. For example, if Parent A earns $4,000/month and Parent B earns $3,000/month, and Parent A pays $200/month for health insurance, then CAGI = $4,000 + $3,000 – $200 = $6,800.

Support Percentage from Kansas Schedule: The Kansas schedule is a table that lists basic support obligations for various income levels. For a CAGI of $6,800 with one child, the schedule might indicate a base obligation of $1,200 per month. This amount represents the total cost of raising the child, including food, clothing, housing, and transportation.

Parent A Income Share %: This is Parent A’s share of the CAGI. In our example, Parent A earns $4,000 out of $6,800, which is 58.8%. Parent A’s share of the base obligation would be 58.8% × $1,200 = $705.60. Parent B’s share would be the remainder.

Parenting Time Credit: If the non-custodial parent (the one paying support) has the child for more than 90 overnights per year (25%), Kansas allows a credit. The credit reduces the basic obligation by a percentage equal to the overnight percentage, up to a maximum of 50% reduction. For example, if the non-custodial parent has 100 overnights (27.4%), the credit would reduce their share by 27.4%.

Proportional Health Insurance & Child Care Costs: Health insurance premiums specifically for the child and work-related child care costs are added to the basic obligation. These costs are then divided between parents in proportion to their income shares. So if health insurance costs $200/month and Parent A has a 58.8% share, Parent A owes $117.60 of that cost.

Step-by-Step Calculation

First, sum both parents' gross monthly incomes and subtract allowable deductions to get the Combined Adjusted Gross Income (CAGI). Second, locate the CAGI on the Kansas Child Support Schedule to find the basic support obligation for the number of children involved. Third, calculate each parent’s income share percentage by dividing each parent’s adjusted income by the CAGI. Fourth, multiply the basic obligation by the non-custodial parent’s percentage to get their preliminary share. Fifth, if the non-custodial parent has more than 90 overnights, reduce their preliminary share by the overnight percentage. Sixth, add the non-custodial parent’s proportional share of health insurance and child care costs. The final result is the monthly child support payment.

Example Calculation

Let’s walk through a realistic scenario to see the Kansas Child Support Calculator in action. This example uses numbers that a typical Kansas family might encounter.

Example Scenario: Sarah (Parent A) and Tom (Parent B) are divorcing in Johnson County, Kansas. They have one child, age 8. Sarah earns a gross monthly income of $5,000. Tom earns $3,500 per month. Sarah has the child 280 overnights per year (76.7%), and Tom has 85 overnights (23.3%). Tom pays $150/month for the child’s health insurance. There is no work-related child care cost. Neither parent has other children.

First, calculate CAGI: $5,000 (Sarah) + $3,500 (Tom) = $8,500. No deductions for prior support or mandatory retirement are given. Next, find the basic support obligation from the Kansas schedule for a CAGI of $8,500 with one child. The schedule (using 2023 values) shows a base obligation of approximately $1,450 per month. Sarah’s income share = $5,000 / $8,500 = 58.8%. Tom’s share = 41.2%. Tom is the non-custodial parent (fewer overnights), so his preliminary share = 41.2% × $1,450 = $597.40. Since Tom has only 85 overnights (23.3%), which is below the 90-overnight threshold, no parenting time credit applies. Now add health insurance: Tom pays $150, so his share stays at $150. Total Tom owes = $597.40 + $150 = $747.40 per month.

In plain English, Tom would pay Sarah $747.40 each month as child support. This covers his share of the child’s basic expenses plus the full health insurance premium he already pays. If Tom had more than 90 overnights, his payment would be lower.

Another Example

Consider a different scenario: Maria and Jose live in Wyandotte County. They have two children. Maria earns $3,000/month, and Jose earns $6,000/month. Maria has the children 200 overnights (54.8%), and Jose has 165 overnights (45.2%). Jose pays $250/month for health insurance for both children. Child care costs $400/month, which Maria pays directly. CAGI = $3,000 + $6,000 – $250 = $8,750. The schedule for two children at $8,750 shows a base obligation of about $2,100. Maria’s share = 34.3%, Jose’s share = 65.7%. Jose is non-custodial (fewer overnights), so his preliminary share = 65.7% × $2,100 = $1,379.70. Since Jose has 165 overnights (45.2%), which exceeds 90, he qualifies for a 45.2% credit: $1,379.70 × (1 – 0.452) = $755.60. Add his proportional share of health insurance: 65.7% × $250 = $164.25. Add his share of child care: 65.7% × $400 = $262.80. Total Jose owes = $755.60 + $164.25 + $262.80 = $1,182.65 per month. This example shows how a significant parenting time credit can substantially lower the payment.

Benefits of Using Child Support Calculator Kansas

Using a dedicated Kansas child support calculator offers tangible advantages for parents, attorneys, and mediators. It transforms a potentially intimidating legal calculation into a transparent, immediate, and actionable estimate. Here are the key benefits you can expect.

  • Instant, Accurate Estimates Without Attorney Fees: Instead of paying a family law attorney $300–$500 per hour just to run a preliminary calculation, you can use this tool for free and get a result in under two minutes. The calculator follows the exact same Kansas Income Shares Model and schedule used by the courts, so your estimate will closely match what a judge would order. This saves you significant money during initial negotiations or when deciding whether to pursue a modification.
  • Empowers Informed Negotiation and Mediation: When both parents know the guideline amount, they can negotiate from a position of knowledge rather than guesswork. The calculator allows you to test different parenting time scenarios or income changes to see how they affect the payment. This data-driven approach reduces conflict and helps both parties reach a fair agreement faster, whether in mediation or during a collaborative divorce process in Kansas.
  • Transparency in Understanding the Calculation: Many parents feel overwhelmed by the legal jargon in child support guidelines. This calculator breaks down each component—income shares, parenting time credit, health insurance, and child care—into clear, separate numbers. You can see exactly how each input affects the final result, which builds trust in the process and helps you explain the numbers to your ex-spouse or attorney.
  • Quick Scenario Testing for Modifications: Life changes—a job loss, a raise, a change in custody schedule, or a new child—can trigger a need to modify a child support order. Instead of waiting months for a court hearing, you can use the calculator to immediately see how a new income or different overnight count would change the obligation. This helps you decide whether a modification is worth pursuing under Kansas law.
  • Reduces Financial Stress and Uncertainty: One of the biggest stressors in divorce or separation is not knowing how much you will have to pay or receive. A clear, estimated number allows you to budget effectively, plan for housing costs, and reduce anxiety. The calculator provides a realistic baseline so you can move forward with confidence, knowing you have a reliable estimate based on current Kansas guidelines.

Tips and Tricks for Best Results

To get the most accurate and useful estimate from the Child Support Calculator Kansas, follow these expert tips. Small details can shift the final number by hundreds of dollars, so attention to precision matters.

Pro Tips

  • Always use gross monthly income before taxes. Kansas uses gross income as the starting point, not net income. Include all sources: wages, bonuses, commissions, self-employment profit, rental income, and even unemployment or disability benefits. Omitting a source can lead to an underestimate.
  • Count overnights accurately using a calendar. Do not estimate casually. Kansas courts often require a detailed parenting time schedule. Count every overnight from pick-up time to drop-off the next day. Even one overnight difference per month (12 per year) can move you above or below the 90-overnight threshold for the parenting time credit.
  • Include all allowable deductions. Many parents forget to subtract health insurance premiums they pay specifically for the child, or work-related child care costs. Also include court-ordered support for other children and mandatory retirement contributions like KPERS. These deductions lower the CAGI and can reduce your obligation.
  • Run multiple scenarios. Try different income assumptions (e.g., if you expect a raise) or different custody schedules (e.g., if you are negotiating for more time). Seeing how the numbers change helps you understand what is at stake and supports better decision-making during negotiations.

Common Mistakes to Avoid

  • Using net income instead of gross income: This is the most frequent error. Kansas guidelines explicitly use gross income. If you use take-home pay, you will underestimate the obligation by 20–30%. Always use the pre-tax figure from your pay stub or tax return.
  • Ignoring the self-support reserve: If the non-custodial parent’s income is very low (below approximately $1,500/month in 2023), Kansas applies a self-support reserve to ensure the parent can meet their own basic needs. The calculator automatically handles this, but if you manually try to adjust, you might get an incorrect result. Let the tool do the math.
  • Forgetting to update for new schedules: Kansas updates its child support schedule every few years based on economic data. Using an outdated schedule (e.g., from 2018) can produce numbers that are 10–15% off. Our calculator uses the most current published schedule, but always verify with a recent court order or attorney if you are in litigation.
  • Assuming 50/50 custody means no payment: In Kansas, equal parenting time does not automatically eliminate child support. The parent with higher income still typically pays the lower-income parent a proportional share. Only if both incomes are nearly identical would the payment approach zero. Always run the calculator to see the actual result.

Conclusion

The Child Support Calculator Kansas is an essential, free tool for any parent, attorney, or mediator dealing with child support matters in the Sunflower State. By using the Kansas Income Shares Model and the most current support schedule, it provides a reliable, court-aligned estimate that demystifies a complex legal process. Whether you are establishing a new order, negotiating a settlement, or considering a modification, this calculator gives you the clarity and confidence to make informed financial decisions that prioritize your child’s well-being.

Don’t leave your financial future to guesswork. Try our Child Support Calculator Kansas right now—simply enter your income, parenting time, and expenses to see your personalized estimate in seconds. Share the result with your attorney or mediator to streamline your case and save time and money. Start your calculation today and take the first step toward a fair, transparent child support arrangement.

Frequently Asked Questions

The Kansas Child Support Calculator is a state-mandated tool that estimates the presumptive child support obligation based on Kansas Supreme Court guidelines. It calculates the monthly payment amount by considering each parent's gross income, parenting time percentages, and allowable deductions like health insurance premiums and work-related child care costs. For example, if Parent A earns $4,000/month and Parent B earns $2,500/month with a standard parenting time schedule, the calculator will produce a specific dollar amount owed each month. It does not account for extraordinary expenses like private school tuition unless both parents agree.

The Kansas formula first combines both parents' gross monthly incomes, subtracts allowable deductions (e.g., $150 for health insurance, actual child care costs), and applies a percentage from the Kansas Child Support Schedule based on the combined income and number of children. For one child, the schedule rate is typically 18% of the combined adjusted income. The obligation is then prorated by each parent's income share. For example, with a combined adjusted income of $6,000 and one child, the base obligation is $1,080 (18% of $6,000); if Parent A earns 60% of the income, their share is $648, then adjusted for parenting time credits.

For a single child in Kansas, typical monthly support amounts range from $250 to $1,200 for combined parental incomes between $2,000 and $10,000. For two children, the range typically increases to $400–$1,800 per month. The Kansas guidelines set a low-income adjustment: if the paying parent's income is below $1,200/month, the calculator applies a reduced percentage (e.g., 10% instead of 18%). The "normal" range heavily depends on parenting time—a 50/50 schedule often results in zero or minimal support, while sole custody with one high earner can exceed $2,000/month.

The Kansas Child Support Calculator is highly accurate for establishing the presumptive guideline amount, which Kansas courts must use unless a judge finds a "rebuttal" reason. In over 90% of cases, the calculator's result is adopted as the final order. However, accuracy diminishes if parents have irregular income (e.g., self-employment, commissions) or if there are multiple children from different relationships. For example, a parent with fluctuating monthly income may see a 15% variance between calculator results and the judge's final imputed amount.

The Kansas calculator assumes a fixed gross monthly income, which fails to capture self-employed parents whose income varies month-to-month due to business expenses, seasonal work, or tax deductions. It does not automatically adjust for business write-offs or depreciation, so a self-employed parent reporting $3,000/month net profit may actually have $5,000 in gross cash flow. Additionally, the calculator cannot handle complex scenarios like multiple business entities, rental income losses, or irregular bonuses. In such cases, Kansas courts often require a forensic accountant to reconstruct "available income" before using the calculator.

The Kansas calculator provides a quick baseline estimate, but a professional attorney's analysis includes adjustments for deviations like extraordinary medical expenses, travel costs for visitation, or a parent's voluntary underemployment. For instance, an attorney may argue for a "deviation" of $200/month if the paying parent covers 100% of the child's health insurance, which the calculator only partly captures. Attorneys also know how Kansas judges interpret the "best interests of the child" standard, which can shift the final amount by 10–20% from the calculator's result in contested cases.

No, this is a common misconception. While 50/50 parenting time often reduces support, the Kansas calculator still applies a "parenting time credit" formula that can result in a positive support amount if one parent has significantly higher income. For example, with a 50/50 schedule, Parent A earning $8,000/month and Parent B earning $2,000/month may still owe $300–$500/month. The calculator subtracts a percentage of the lower earner's share from the higher earner's, but if the income gap is large, the higher earner still pays. Only when both parents have nearly equal incomes does 50/50 time typically yield zero support.

A parent who loses their job can use the Kansas Child Support Calculator to estimate a new payment amount based on reduced income (e.g., from $4,500/month to $1,500/month unemployment benefits). If the calculator shows a 15% or more reduction from the current order, Kansas law allows a petition for modification. For example, if the current order is $650/month and the calculator now outputs $300/month, the parent can file a motion with the court. The calculator's result serves as the primary evidence for the judge, though the court may impute minimum wage if the parent is voluntarily unemployed.

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

🔗 You May Also Like