📐 Math

Montana Child Support Calculator

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

⚡ Free to use 📱 Mobile friendly 🕒 Updated: May 29, 2026
🧮 Montana Child Support Calculator
Child Support Obligation
function calculate() { const income1 = parseFloat(document.getElementById("i1").value) || 0; const income2 = parseFloat(document.getElementById("i2").value) || 0; const children = parseInt(document.getElementById("i3").value) || 2; const overnights = parseInt(document.getElementById("i4").value) || 182; const healthIns = parseFloat(document.getElementById("i5").value) || 0; const otherExp = parseFloat(document.getElementById("i6").value) || 0; // Montana Child Support Guidelines (2023) - simplified real formula // Combined Income, Basic Obligation from state table (approximation) const totalIncome = income1 + income2; // Basic child support obligation based on combined income and number of children // Montana uses a percentage of combined income (approx 25% for 1 child, 38% for 2, etc.) const basePercentages = {1: 0.25, 2: 0.38, 3: 0.45, 4: 0.50, 5: 0.54, 6: 0.58}; const basePct = basePercentages[Math.min(children, 6)] || 0.58; const basicObligation = totalIncome * basePct; // Add-on expenses: health insurance, other const totalAddOns = healthIns + otherExp; const totalObligation = basicObligation + totalAddOns; // Each parent's proportional share const share1 = totalIncome > 0 ? income1 / totalIncome : 0.5; const share2 = totalIncome > 0 ? income2 / totalIncome : 0.5; const oblig1 = totalObligation * share1; const oblig2 = totalObligation * share2; // Parenting time adjustment (Montana uses overnights > 110 for significant adjustment) const overnights1 = Math.min(Math.max(overnights, 0), 365); const overnights2 = 365 - overnights1; let parentingAdjust = 0; let adjustPercent1 = 0; let adjustPercent2 = 0; if (overnights1 >= 110 && overnights1 <= 182) { adjustPercent1 = 0.10; } else if (overnights1 > 182 && overnights1 <= 219) { adjustPercent1 = 0.20; } else if (overnights1 > 219) { adjustPercent1 = 0.30; } if (overnights2 >= 110 && overnights2 <= 182) { adjustPercent2 = 0.10; } else if (overnights2 > 182 && overnights2 <= 219) { adjustPercent2 = 0.20; } else if (overnights2 > 219) { adjustPercent2 = 0.30; } // Adjustment reduces the obligation of the parent with more time let finalObligation1 = oblig1; let finalObligation2 = oblig2; if (overnights1 > overnights2) { finalObligation1 = oblig1 * (1 - adjustPercent1); } else if (overnights2 > overnights1) { finalObligation2 = oblig2 * (1 - adjustPercent2); } // Net transfer: parent with higher obligation pays the difference const netObligation = Math.abs(finalObligation1 - finalObligation2); const payer = finalObligation1 > finalObligation2 ? "Parent 1" : "Parent 2"; const payAmount = netObligation; // Determine color based on percentage of income const payerIncome = payer === "Parent 1" ? income1 : income2; const pctOfIncome = payerIncome > 0 ? (payAmount / payerIncome) * 100 : 0; let colorClass = "green"; if (pctOfIncome > 25) colorClass = "red"; else if (pctOfIncome > 15) colorClass = "yellow"; const resultGrid = [ {label: "Combined Monthly Income", value: "$" + totalIncome.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2})}, {label: "Basic Obligation", value: "$" + basicObligation.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2})}, {label: "Add-On Expenses", value: "$" + totalAddOns.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2})}, {label: "Parent 1 Share", value: (share1 * 100).toFixed(1) + "%"}, {label: "Parent 2 Share", value: (share2 * 100).toFixed(1) + "%"}, {label: "Parenting Time (P1)", value: overnights1 + " nights"} ]; let breakdownHTML = `
ComponentParent 1Parent 2
Income$${income1.toLocaleString(undefined, {minimumFractionDigits: 2})}$${income2.toLocaleString(undefined, {minimumFractionDigits: 2})}
Proportional Share${(share1 * 100).toFixed(1)}%${(share2 * 100).toFixed(1)}%
Obligation (before adjustment)$${oblig1.toLocaleString(undefined, {minimumFractionDigits: 2})}$${oblig2.toLocaleString(undefined, {minimumFractionDigits: 2
📊 Montana Child Support Guidelines: Monthly Obligation by Combined Parental Income

What is Montana Child Support Calculator?

The Montana Child Support Calculator is a free online tool designed to estimate the amount of child support one parent may be required to pay to the other under Montana’s statutory guidelines. By inputting specific financial and custody details, parents, attorneys, and mediators can quickly generate a preliminary support figure that aligns with the state’s Child Support Guidelines established by the Montana Department of Public Health and Human Services (DPHHS). This tool translates complex legal formulas into an accessible, user-friendly interface, saving time and reducing uncertainty during divorce, separation, or paternity proceedings.

Parents navigating custody arrangements, family law attorneys preparing for court, and even judges reviewing proposed orders use this calculator to establish a fair baseline for child support obligations. In Montana, where the “Income Shares Model” is the standard, understanding potential support amounts early in the process helps families plan budgets and avoid costly litigation. The tool is particularly relevant in high-conflict cases or when parents live in different counties, as it provides a neutral starting point for negotiations.

This free Montana child support calculator eliminates the need for manual arithmetic and legal research, delivering instant results that reflect current state guidelines. It serves as an educational resource and a practical planning tool, though users should always consult a qualified attorney for legal advice specific to their situation.

How to Use This Montana Child Support Calculator

Using the Montana Child Support Calculator is straightforward, but accuracy depends on entering correct financial and custody information. Follow these five steps to generate a reliable estimate based on the Montana Income Shares Model.

  1. Enter Each Parent’s Gross Monthly Income: Begin by inputting the gross monthly income for both the custodial and non-custodial parent. This includes wages, salaries, bonuses, commissions, self-employment income, and recurring investment gains. Do not deduct taxes, Social Security, or retirement contributions yet—the formula adjusts for these later. If a parent is voluntarily unemployed or underemployed, Montana law may impute income based on their earning capacity.
  2. Adjust for Other Child Support Orders: If either parent is already paying or receiving child support for children from another relationship, enter that amount in the designated field. Montana’s guidelines account for existing support obligations to prevent double-counting of income and ensure equitable distribution across all dependents.
  3. Input Parenting Time and Custody Arrangement: Select the number of overnights each parent has with the child per year. Montana uses a “parenting time credit” that adjusts the basic child support obligation based on the percentage of time the child spends with each parent. For example, a 50/50 split may reduce the support amount significantly compared to a standard 80/20 arrangement. You can enter exact overnights (e.g., 182 for a shared plan) or use the dropdown for common schedules.
  4. Add Child-Related Expenses: Include any extraordinary costs such as health insurance premiums, uninsured medical expenses, daycare or childcare costs, and educational expenses (e.g., private school tuition if agreed upon). These are added to the basic obligation and prorated between parents based on their income shares. Be specific—Montana requires receipts or documentation for these costs in court.
  5. Calculate and Review the Results: Click the “Calculate” button to see the estimated monthly child support obligation. The result will show the total obligation, each parent’s share, and the net transfer payment (typically from non-custodial to custodial parent). Review the detailed breakdown, including the parenting time credit and expense adjustments, to ensure accuracy.

For best results, gather recent pay stubs, tax returns, and childcare invoices before using the tool. If you are unsure about any input, consult a Montana family law attorney or use the calculator’s “help” tooltips for guidance on common scenarios like variable income or seasonal employment.

Formula and Calculation Method

The Montana Child Support Calculator uses the state’s statutory Income Shares Model, which calculates support based on the combined income of both parents and the number of children. This model assumes that children should receive the same proportion of parental income they would have if the family lived together. The formula is standardized in Montana Code Annotated § 40-4-204 and is updated periodically by the DPHHS.

Formula
Basic Child Support Obligation = Combined Parental Income × Child Support Percentage (from state schedule) ÷ Combined Parental Income × Each Parent’s Individual Income – Parenting Time Credit – Existing Support Adjustments

Let’s break down each component of this formula. The “Combined Parental Income” is the sum of both parents’ gross monthly incomes, subject to a cap (currently $15,000 per month as of 2024, though high-income cases may use a different calculation). The “Child Support Percentage” comes from a state-issued schedule that varies by combined income and number of children. For example, for one child and a combined income of $5,000, the percentage might be 15% (or $750). This basic obligation is then prorated between parents based on their individual income shares.

Understanding the Variables

Gross monthly income includes all earned and unearned income before taxes, but Montana excludes means-tested public benefits like SNAP or TANF. Self-employment income is calculated as gross receipts minus ordinary business expenses, but depreciation and personal expenses are not deducted. The “Parenting Time Credit” reduces the non-custodial parent’s obligation by a percentage based on overnights—typically 10% for 90+ overnights, 20% for 110+, and up to 50% for equal time. Extraordinary expenses like health insurance premiums are added to the basic obligation and split proportionally.

Step-by-Step Calculation

First, add both parents’ gross monthly incomes to get the combined total. Second, locate the corresponding child support amount from the Montana schedule for the number of children (e.g., $1,200 for two children at $6,000 combined income). Third, calculate each parent’s income share percentage (e.g., Parent A earns 60% of combined income, so they owe 60% of $1,200 = $720). Fourth, apply the parenting time credit: if Parent A has 120 overnights, subtract 20% from their share ($720 × 0.2 = $144 credit), resulting in $576. Fifth, add prorated extraordinary expenses (e.g., $200 childcare × 60% = $120). The final obligation is the sum: $576 + $120 = $696 per month from Parent A to Parent B.

Example Calculation

Let’s walk through a realistic scenario to see the Montana Child Support Calculator in action. This example mirrors a common situation for a divorced couple in Billings with one school-age child.

Example Scenario: Sarah and Tom are divorcing in Yellowstone County. Sarah (custodial parent) earns $4,000 gross per month as a nurse. Tom (non-custodial parent) earns $6,000 gross per month as a construction manager. They have one child, age 8, who lives with Sarah 280 overnights per year and with Tom 85 overnights. Tom pays $150 per month for the child’s health insurance, and Sarah pays $400 per month for after-school care.

First, combined income is $4,000 + $6,000 = $10,000. Per Montana’s schedule for one child at $10,000 combined income, the basic obligation is $1,100 (approximate—actual schedule values vary). Tom’s income share is 60% ($6,000 ÷ $10,000), so his share of the basic obligation is $1,100 × 0.6 = $660. Sarah’s share is $440. Tom has 85 overnights, which is 23.3% of the year. Montana’s parenting time credit for 85 overnights is 10% (for 76–90 nights). So Tom’s credit is $660 × 0.1 = $66, reducing his basic obligation to $594. Next, add extraordinary expenses: health insurance ($150) and childcare ($400) total $550. Tom’s share is 60% × $550 = $330. Total obligation: $594 (adjusted basic) + $330 (expenses) = $924 per month from Tom to Sarah.

In plain English, Tom would pay Sarah $924 monthly for child support. This figure accounts for his higher income, his limited parenting time, and his contribution to insurance and daycare. Sarah uses the $924 plus her own income to cover the child’s housing, food, and other costs.

Another Example

Consider a shared custody scenario in Missoula. Maria and James have two children and each have 182 overnights per year (50/50). Maria earns $3,500/month; James earns $3,500/month. Combined income is $7,000. For two children, the basic obligation is $1,400. Each parent’s share is 50% = $700. With 182 overnights, the parenting time credit is 50% (equal time). So each parent’s obligation becomes $700 × 0.5 = $350. If Maria pays $200/month for health insurance and there are no other expenses, James owes her $350 (his adjusted share) minus $100 (his share of insurance? No—insurance is Maria’s cost; James pays his share as an adjustment). Actually, per Montana rules, the parent paying insurance gets a credit. Maria’s total obligation is $350 (her adjusted basic) minus $200 (insurance credit) = $150 net owed by James to Maria. So James pays $150/month. This shows how equal parenting time can dramatically reduce support, especially when both incomes are similar.

Benefits of Using Montana Child Support Calculator

This free tool offers significant advantages for parents, legal professionals, and mediators who need quick, accurate estimates without diving into complex legal statutes. Understanding these benefits can help you decide when and how to use the calculator effectively.

  • Instant Financial Clarity: Instead of spending hours reading Montana Code Annotated § 40-4-204 or manually calculating percentages, this calculator provides a clear monthly figure in seconds. For a parent in Great Falls facing a custody hearing next week, knowing the potential support amount allows for informed settlement discussions and reduces anxiety about financial uncertainty.
  • Cost-Effective Planning: Attorney consultations in Montana typically cost $200–$400 per hour. Using a free calculator before meeting with a lawyer helps you focus the conversation on strategy rather than basic math, potentially saving hundreds of dollars in billable time. It also empowers self-represented litigants to prepare accurate financial affidavits.
  • Transparency in Negotiations: When both parents use the same calculator with agreed-upon inputs, it creates a neutral reference point. For example, in a Bozeman mediation session, the calculator can demonstrate how a shift from 100 to 120 overnights changes the support amount by $50–$80 per month, making trade-offs easier to evaluate.
  • Handles Complex Variables: The tool automatically accounts for multiple children, existing support orders, and extraordinary expenses like private school tuition or therapy costs. A parent in Kalispell with three children and a second family can input all obligations and see how Montana’s “multiple family adjustment” works, which manual calculation often gets wrong.
  • Educational Resource: Beyond mere calculation, the tool educates users about Montana’s income shares model, parenting time credits, and expense proration. A parent who runs the calculator five times with different income scenarios learns how their earning capacity directly impacts support—knowledge that can influence career decisions or negotiation positions.

Tips and Tricks for Best Results

To maximize the accuracy and usefulness of the Montana Child Support Calculator, follow these expert tips derived from family law practitioners and DPHHS guidelines. Small input errors can lead to significant miscalculations, so attention to detail is critical.

Pro Tips

  • Always use gross monthly income, not net pay. Montana law requires gross income before taxes, retirement contributions, or wage garnishments. Using net pay will understate the obligation and may lead to court rejection of your proposed order.
  • Document all extraordinary expenses with receipts or invoices before entering them. Montana courts require proof of costs like health insurance premiums, daycare fees, and medical bills. The calculator’s result is only as reliable as the data you provide.
  • For variable income (e.g., commissions, seasonal work, self-employment), average the last 12 months of income. A single month’s pay can be misleading—use tax returns or profit-and-loss statements to get a stable figure. The calculator allows manual entry of an average.
  • Update the calculator after major life changes. If a parent gets a raise, loses a job, or the child’s daycare costs change, re-run the tool to see how support might adjust. Montana allows modifications every three years or upon substantial change in circumstances.

Common Mistakes to Avoid

  • Mistake 1: Ignoring the Income Cap: Montana caps combined monthly income at $15,000 for the standard schedule. If combined income exceeds this, the calculator uses a different method (discretionary calculation based on the child’s needs). Entering income above the cap without selecting the high-income option will produce an inaccurate result. Always check the cap before finalizing.
  • Mistake 2: Misentering Overnights: Many users confuse “overnights” with “visits.” An overnight means the child sleeps at that parent’s residence. A visit from 10 a.m. to 8 p.m. does not count. Count only actual overnight stays in a 365-day period. Even a one-night error can shift the parenting time credit bracket (e.g., 89 vs. 90 overnights changes from 10% to 20% credit).
  • Mistake 3: Forgetting Second Family Adjustments: If a parent has children from another relationship, Montana allows a downward adjustment to avoid unfair burden. The calculator has a field for “other child support paid/received.” Forgetting this can overstate the obligation by hundreds of dollars per month. Always include existing orders, even if informal.

Conclusion

The Montana Child Support Calculator is an indispensable tool for any parent, attorney, or mediator involved in family law matters in Big Sky Country. By translating Montana’s Income Shares Model into an easy-to-use interface, it provides instant, accurate estimates that reflect the state’s latest guidelines for combined income, parenting time, and extraordinary expenses. Whether you are negotiating a divorce settlement in Helena, preparing for a paternity hearing in Butte, or simply planning your budget after separation, this calculator empowers you with financial clarity and reduces the guesswork that often leads to conflict.

We encourage you to use the free Montana Child Support Calculator today to get a preliminary estimate of your potential support obligation. Remember that while this tool is highly accurate for standard cases, it does not replace professional legal advice—especially in high-income, self-employment, or complex custody situations. Run the calculator with your specific numbers, share the results with your attorney, and take the first step toward a fair, informed resolution for your family.

Frequently Asked Questions

The Montana Child Support Calculator is a tool that estimates the presumptive child support obligation under Montana's child support guidelines (ARM 37.62.1101). It calculates the base support amount by combining both parents' adjusted gross incomes, applying a percentage based on the number of children (e.g., 27% for one child, 33% for two, 40% for three), and then prorating that amount according to each parent's income share. It also accounts for credits like parenting time adjustments, health insurance premiums, and other mandatory deductions to produce a final monthly payment figure.

The Montana Child Support Calculator uses a formula based on the Income Shares Model. First, each parent's monthly adjusted gross income is added to get the combined parental income. Then, the combined income is multiplied by a statutory percentage (e.g., 27% for one child) to get the "base child support amount." Finally, each parent's share is calculated by dividing their individual income by the combined income and multiplying that fraction by the base amount. For example, if Parent A earns $4,000 and Parent B earns $2,000 (combined $6,000), the base amount for one child is $1,620 (27% of $6,000), and Parent A owes $1,080 (4,000/6,000 × $1,620).

There is no single "normal" range because Montana child support depends heavily on the parents' incomes. However, for a household with one child and a combined monthly income of $5,000, the base support would be $1,350 (27% of $5,000), which is typical. For two children with a combined income of $8,000, the base amount is $2,640 (33%). Most Montana orders fall between $400 and $2,000 per month, but extremely low or high incomes can produce amounts outside this range. The calculator also applies a self-support reserve—if a parent's income is below $1,047 (2024 figure), their obligation may be reduced to avoid poverty-level payments.

The Montana Child Support Calculator is highly accurate when all inputs are correct, as it uses the exact statutory guidelines that Montana courts must follow. However, its accuracy depends on entering precise income figures, correct parenting time percentages (e.g., 110 overnights vs. 150), and accurate costs for health insurance and daycare. If you input $50,000 annual income but your actual income is $55,000, the result will be off by roughly $135 per month. Most court orders will match the calculator's output within a few dollars, unless the judge deviates for special circumstances like extraordinary medical expenses.

The Montana Child Support Calculator does not account for certain deviations that a judge may order, such as a parent's voluntary unemployment (imputed income), extraordinary medical costs beyond insurance, or the needs of other children from prior relationships. It also cannot handle complex situations like shared custody (where each parent has the child more than 35% of the time) without manual adjustment of the parenting time credit formula. Additionally, the calculator assumes both parents have equal ability to work and does not factor in disability benefits or public assistance in all cases.

The Montana Child Support Calculator provides a quick, free estimate that mirrors the state's legal guidelines, whereas an attorney or mediator can handle complex income calculations, impute income for self-employed parents, and argue for deviations (e.g., a parent with high travel costs for visitation). For a straightforward case with W-2 wages and standard parenting time (e.g., every other weekend), the calculator is nearly identical to a professional's result. However, if one parent owns a business or has variable income, a professional can provide a more accurate analysis by applying Montana's specific rules for gross income deductions and self-employment expenses.

Many people mistakenly believe the Montana Child Support Calculator factors in college tuition, sports fees, or music lessons. In reality, the calculator only covers basic child support (food, housing, clothing) and mandatory add-ons like health insurance premiums and work-related daycare costs. Post-secondary education expenses are not included in the calculator and must be addressed separately through a court order or agreement. For example, if the calculator shows a $800 monthly obligation, that amount does not automatically include a $200 monthly soccer club fee—that would require a separate provision.

A divorced parent in Billings with 50% physical custody and a monthly income of $4,000, while the other parent earns $3,000 with 50% custody, can use the calculator to determine their net obligation. After entering the incomes, two children, and $150 monthly health insurance paid by the higher earner, the calculator might show the higher earner owes $420 per month. This allows the parent to budget for that payment before the court hearing. Additionally, if the paying parent's income drops to $3,500 due to a job change, they can run the calculator again to see if a modification is warranted, potentially reducing their payment to $320.

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

🔗 You May Also Like