📐 Math

New Mexico Child Support Calculator

Solve New Mexico Child Support Calculator problems with step-by-step solutions

⚡ Free to use 📱 Mobile friendly 🕒 Updated: May 29, 2026
🧮 New Mexico Child Support Calculator
function calculate() { const fatherIncome = parseFloat(document.getElementById("i1").value) || 0; const motherIncome = parseFloat(document.getElementById("i2").value) || 0; const numChildren = parseInt(document.getElementById("i3").value) || 1; const fatherTime = parseFloat(document.getElementById("i4").value) || 0; const motherTime = parseFloat(document.getElementById("i5").value) || 0; const fatherOtherSupport = parseFloat(document.getElementById("i6").value) || 0; const motherOtherSupport = parseFloat(document.getElementById("i7").value) || 0; // Validate parenting time if (fatherTime + motherTime === 0) { showResult("Error", "Parenting time must total > 0", [{"label":"Status","value":"Invalid input","cls":"red"}]); return; } // NM Child Support Guidelines - Combined Income & Basic Obligation Table (2023) const combinedIncome = fatherIncome + motherIncome; // Basic obligation based on combined income and number of children (NM statutory table approximation) let basicObligation = 0; if (combinedIncome <= 800) { basicObligation = combinedIncome * 0.17; } else if (combinedIncome <= 1200) { basicObligation = 136 + (combinedIncome - 800) * 0.15; } else if (combinedIncome <= 1600) { basicObligation = 196 + (combinedIncome - 1200) * 0.14; } else if (combinedIncome <= 2000) { basicObligation = 252 + (combinedIncome - 1600) * 0.13; } else if (combinedIncome <= 2400) { basicObligation = 304 + (combinedIncome - 2000) * 0.12; } else if (combinedIncome <= 2800) { basicObligation = 352 + (combinedIncome - 2400) * 0.115; } else if (combinedIncome <= 3200) { basicObligation = 398 + (combinedIncome - 2800) * 0.11; } else if (combinedIncome <= 3600) { basicObligation = 442 + (combinedIncome - 3200) * 0.105; } else if (combinedIncome <= 4000) { basicObligation = 484 + (combinedIncome - 3600) * 0.10; } else if (combinedIncome <= 5000) { basicObligation = 524 + (combinedIncome - 4000) * 0.095; } else if (combinedIncome <= 6000) { basicObligation = 619 + (combinedIncome - 5000) * 0.09; } else if (combinedIncome <= 7000) { basicObligation = 709 + (combinedIncome - 6000) * 0.085; } else if (combinedIncome <= 8000) { basicObligation = 794 + (combinedIncome - 7000) * 0.08; } else if (combinedIncome <= 9000) { basicObligation = 874 + (combinedIncome - 8000) * 0.075; } else if (combinedIncome <= 10000) { basicObligation = 949 + (combinedIncome - 9000) * 0.07; } else if (combinedIncome <= 12000) { basicObligation = 1019 + (combinedIncome - 10000) * 0.065; } else if (combinedIncome <= 14000) { basicObligation = 1149 + (combinedIncome - 12000) * 0.06; } else if (combinedIncome <= 16000) { basicObligation = 1269 + (combinedIncome - 14000) * 0.055; } else if (combinedIncome <= 20000) { basicObligation = 1379 + (combinedIncome - 16000) * 0.05; } else { basicObligation = 1579 + (combinedIncome - 20000) * 0.045; } // Adjust for number of children multiplier const childMultipliers = [1.0, 1.0, 1.25, 1.50, 1.75, 2.0]; const multiplier = childMultipliers[Math.min(numChildren, 6) - 1]; basicObligation *= multiplier; // Each parent's proportional share const fatherShare = combinedIncome > 0 ? fatherIncome / combinedIncome : 0; const motherShare = combinedIncome > 0 ? motherIncome / combinedIncome : 0; const fatherObligation = basicObligation * fatherShare; const motherObligation = basicObligation * motherShare; // Parenting time adjustment (NM uses percentage of time) const fatherTimeFraction = fatherTime / 100; const motherTimeFraction = motherTime / 100; // Calculate transfer amount const fatherTransfer = fatherObligation - (basicObligation * fatherTimeFraction); const motherTransfer = motherObligation - (basicObligation * motherTimeFraction); // Net support (positive means father pays mother) let netSupport = fatherTransfer - motherTransfer; // Adjust for other child support obligations const totalOtherSupport = fatherOtherSupport + motherOtherSupport; if (totalOtherSupport > 0 && combinedIncome > 0) { const fatherOtherAdjust = (fatherOtherSupport / combinedIncome) * basicObligation; netSupport -= fatherOtherAdjust * 0.5; } // Ensure non-negative netSupport = Math.max(0, netSupport); // Determine who pays let payer = ""; let payee = ""; let paymentAmount = 0; if (netSupport > 0) { payer = "Father"; payee = "Mother"; paymentAmount = netSupport; } else if (netSupport < 0) { payer = "Mother"; payee = "Father"; paymentAmount = Math.abs(netSupport); } else { payer = "Neither"; payee = "Neither"; paymentAmount = 0; } // Color coding let cls = "green"; if (paymentAmount > 2000) cls = "red"; else if (paymentAmount > 1000) cls = "yellow"; // Build result const resultLabel = "Monthly Child Support Payment"; const resultValue = "$" + paymentAmount.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); const resultSub = payer + " pays " + payee; // Breakdown table const breakdownHTML = `
Support Calculation Breakdown
Combined Monthly Income$${combinedIncome.toLocaleString(undefined, {minimumFractionDigits: 2})}
Basic Obligation (${numChildren} child${numChildren > 1 ? 'ren' : ''})$${basicObligation.toLocaleString(undefined, {minimumFractionDigits: 2})}
Father's Income Share${(fatherShare * 100).toFixed(1)}%
Mother's Income Share${(motherShare * 100).toFixed(1)}%
Father's Obligation$${fatherObligation.toLocaleString(undefined, {minimumFractionDigits: 2})}
Mother's Obligation$${motherObligation.toLocaleString(undefined, {minimumFractionDigits: 2})}
Father's Parenting Time Credit${fatherTime.toFixed(1)}% ($${(basicObligation * fatherTimeFraction).toLocaleString(undefined, {minimumFractionDigits: 2})})
Mother's Parenting Time Credit${motherTime.toFixed(1)}% ($${(basicObligation * motherTimeFraction).toLocaleString(undefined, {minimumFractionDigits: 2})})
Other Support Adjustments$${totalOtherSupport.toLocaleString(undefined, {minimumFractionDigits: 2})}
Net Monthly Payment$${paymentAmount.toLocaleString(undefined, {minimumFractionDigits: 2})}
`; showResult(resultValue, resultLabel, [ {"label": "Payer", "value": payer, "cls": cls}, {"label": "Payee", "value": payee, "cls": cls}, {"label": "Payment", "value": "$" + paymentAmount.toLocaleString(undefined, {minimumFractionDigits: 2}), "cls": cls} ]); document.getElementById("breakdown-wrap").innerHTML = breakdownHTML; document.getElementById("res-sub").textContent = resultSub; } function showResult(value, label, gridItems) { document.getElementById("res-value").textContent = value; document.getElementById("res-label").textContent = label; let gridHTML = ""; gridItems.forEach(item => { gridHTML += `
${item.label}${item.value}
`; }); document.getElementById("result-grid").innerHTML = gridHTML; } function resetCalc() { document.querySelectorAll(".form-input, .form-select").forEach(el => { if (el.tagName === "SELECT") { el.selectedIndex = 1
📊 Estimated Monthly Child Support Obligation by Combined Parental Income in New Mexico

What is New Mexico Child Support Calculator?

A New Mexico Child Support Calculator is a specialized digital tool designed to estimate the amount of child support one parent may owe to another under the state's specific legal guidelines. This calculator applies New Mexico's unique child support formula, which is based on a shared income model that considers both parents' gross incomes, the number of overnights each parent has with the children, and other allowable deductions. For any parent navigating a divorce, separation, or custody modification in the Land of Enchantment, this tool provides a realistic, data-driven starting point for negotiations or court proceedings.

This calculator is primarily used by parents, family law attorneys, mediators, and even judges to quickly approximate support obligations without manual, error-prone math. It matters because child support directly impacts a child's financial stability, covering essentials like housing, food, healthcare, and education. Having a reliable estimate helps families plan their budgets and avoid costly legal disputes over miscalculated payments.

This free online New Mexico Child Support Calculator simplifies the process by walking you through each required input—from gross income to parenting time percentages—and instantly producing a legally informed estimate. It is designed to mirror the state's official worksheet, making it a practical tool for preliminary calculations.

How to Use This New Mexico Child Support Calculator

Using this free tool is straightforward, but accuracy depends on entering precise financial and custody details. Follow these five steps to get the most reliable estimate of your child support obligation under New Mexico law.

  1. Enter Each Parent's Gross Monthly Income: Start by inputting the gross monthly income for both the custodial and non-custodial parent. This includes wages, salaries, bonuses, commissions, self-employment income, and any other regular earnings. Do not deduct taxes or payroll deductions yet—the formula handles those adjustments separately.
  2. Input Parenting Time (Overnights): Enter the number of overnights each parent has with the child(ren) per year. New Mexico uses a "shared parenting" calculation when the non-custodial parent has at least 100 overnights annually. Be as precise as possible; even a few overnights can change the final obligation amount significantly.
  3. Add Other Child Support Orders and Dependent Deductions: If you already pay or receive child support for children from another relationship, enter that amount here. Also, include any court-ordered child support you pay for other children. Additionally, you can deduct certain mandatory expenses like health insurance premiums for the child and any required life insurance premiums.
  4. Include Extraordinary Expenses: Input any significant, recurring costs such as uninsured medical expenses, therapy costs, or special education needs. These are typically divided between parents proportionally based on income. The calculator will factor these into the final support figure.
  5. Review and Calculate: Double-check all numbers for accuracy, then click the calculate button. The tool will instantly generate an estimated monthly child support obligation, including the base support amount and any adjustments for extraordinary expenses. You can also adjust inputs to see how changes in income or custody time might affect the payment.

For best results, gather recent pay stubs, tax returns, and a detailed parenting time schedule before starting. The calculator is a planning tool—always consult a New Mexico family law attorney for a legally binding calculation.

Formula and Calculation Method

New Mexico uses a "shared income" model for child support, meaning the formula considers both parents' incomes and the amount of time each parent spends with the children. This is different from a simple percentage-of-income model used in some other states. The state's guidelines are found in NMSA 1978, Section 40-4-11.1, and the formula is designed to ensure children receive a similar proportion of parental income as if the family were intact.

Formula
Basic Support Obligation = Combined Parental Income × Percentage from Schedule

Each Parent's Share = (Individual Income ÷ Combined Income) × Basic Support Obligation

Adjusted Obligation = Non-Custodial Parent's Share – (Custodial Parent's Share × (Non-Custodial Overnights ÷ Total Overnights))

This formula first determines the total support needed based on the parents' combined income and the number of children, using a state-mandated schedule. Then, it calculates each parent's proportional share. Finally, it adjusts the obligation based on the actual parenting time split, ensuring the parent with fewer overnights pays a larger share directly to the other parent.

Understanding the Variables

Gross Monthly Income: This is the starting point for both parents. It includes all income from any source, before taxes. The court may impute income if a parent is voluntarily unemployed or underemployed. This figure drives the entire calculation.

Combined Parental Income: The sum of both parents' gross monthly incomes. This total is used to look up the "basic child support obligation" from New Mexico's official child support schedule, which provides a dollar amount based on combined income and number of children.

Parenting Time (Overnights): The number of overnights each parent has with the child per year. New Mexico considers 365 overnights total. When the non-custodial parent has 100 or more overnights, the "shared parenting" adjustment applies, reducing their payment proportionally.

Other Deductions and Adjustments: These include court-ordered child support for other children, health insurance premiums for the child, and extraordinary medical or educational expenses. These are subtracted from a parent's gross income before the schedule lookup or are added to the final obligation.

Step-by-Step Calculation

First, add both parents' gross monthly incomes to find the combined income. Next, locate the basic child support obligation from the NM schedule for that combined income and the number of children. Then, calculate each parent's income share percentage (their income divided by combined income). Multiply that percentage by the basic obligation to get each parent's theoretical share. Finally, adjust the non-custodial parent's share by multiplying the custodial parent's share by the fraction of overnights the non-custodial parent has, and subtract that from the non-custodial parent's share. The result is the estimated monthly payment.

Example Calculation

Let's walk through a realistic scenario to see the New Mexico child support formula in action. This example uses numbers a typical family in Albuquerque or Santa Fe might encounter.

Example Scenario: Maria and David live in Albuquerque, NM. They have two children, ages 8 and 12. Maria earns a gross monthly income of $4,500 as a registered nurse. David earns $3,200 as a construction manager. The children spend 260 overnights per year with Maria and 105 overnights with David. David pays $150 per month for the children's health insurance. There are no other child support orders or extraordinary expenses.

Step 1: Combined Income. $4,500 (Maria) + $3,200 (David) = $7,700 combined monthly income.

Step 2: Basic Child Support Obligation. Using the New Mexico child support schedule for two children at $7,700 combined income (let's assume the schedule lists $1,450 as the base obligation).

Step 3: Each Parent's Share. Maria's share = $4,500 ÷ $7,700 = 58.44%. David's share = $3,200 ÷ $7,700 = 41.56%. Maria's dollar share = $1,450 × 0.5844 = $847.38. David's dollar share = $1,450 × 0.4156 = $602.62.

Step 4: Parenting Time Adjustment. David has 105 overnights (shared parenting threshold is 100+). Adjustment = Maria's share ($847.38) × (105 ÷ 365) = $847.38 × 0.2877 = $243.81. David's adjusted obligation = $602.62 – $243.81 = $358.81.

Step 5: Health Insurance Credit. David pays $150 for insurance. This is subtracted from his obligation: $358.81 – $150 = $208.81.

In plain English, David would owe Maria approximately $209 per month in child support, after accounting for the health insurance he pays directly. This number helps them understand what a court might order.

Another Example

Consider a single-child case in Las Cruces. Anna earns $2,800 monthly. Tom earns $5,100. The child spends 300 overnights with Anna, 65 with Tom. No other expenses. Combined income = $7,900. Schedule base for one child = $950. Anna's share = $2,800 ÷ $7,900 = 35.44% ($336.68). Tom's share = 64.56% ($613.32). Tom has only 65 overnights (below 100, so no shared parenting adjustment). Tom's full share of $613.32 becomes the base obligation. No deductions apply. Tom would owe Anna approximately $613 per month. This shows how fewer overnights leads to a higher payment.

Benefits of Using New Mexico Child Support Calculator

Using a dedicated New Mexico Child Support Calculator provides significant advantages over guessing or using generic calculators. It empowers parents with knowledge and reduces conflict during an already stressful time. Here are the key benefits.

  • Accuracy Under New Mexico Law: This calculator applies the exact shared income formula and schedule used by New Mexico courts. Unlike generic tools, it correctly handles the 100-overnight threshold for shared parenting and the specific deduction rules for health insurance and other support orders. This precision prevents costly surprises in court.
  • Time and Cost Savings: Manual calculations using the NM worksheet require careful arithmetic and cross-referencing of the official schedule. This tool does the math instantly, saving hours of work. For parents considering mediation or negotiation, having a calculated estimate can reduce attorney billable hours spent on preliminary analysis.
  • Empowerment for Negotiation: When both parents can see a neutral, data-driven estimate, it often reduces emotional arguments. The calculator provides a clear starting point for discussions about custody schedules and financial responsibilities. Parents can enter different scenarios (e.g., more overnights) and immediately see how it changes the payment, facilitating compromise.
  • Improved Financial Planning: Knowing the potential child support amount helps both parents budget effectively. The receiving parent can plan for housing and childcare costs, while the paying parent can adjust their spending. This reduces financial anxiety and helps ensure the child's needs are consistently met.
  • Accessibility and Privacy: This free online tool is available 24/7 from any device, eliminating the need for a lawyer's office visit for a basic estimate. It is completely private—no personal data is stored or shared. Parents can run multiple calculations without any commitment or pressure.

Tips and Tricks for Best Results

To get the most accurate and useful estimate from your New Mexico Child Support Calculator, follow these expert tips. Small errors in input can lead to significant differences in the output.

Pro Tips

  • Always use gross income (before taxes) from the most recent pay stubs or tax returns. Do not use net income, as the NM formula starts with gross figures and applies its own deduction logic.
  • Be meticulous about overnight counts. Use a calendar and count each night the child sleeps at each parent's home. Include school breaks, holidays, and summer vacation. Even one overnight can affect the shared parenting adjustment.
  • If a parent is self-employed, use their net profit from Schedule C (after business expenses but before personal taxes) as gross income. The calculator works best with consistent monthly averages.
  • Document all extraordinary expenses like uninsured medical bills, tutoring, or therapy. Have receipts or statements ready, as these must be verifiable if the calculation is used in court.

Common Mistakes to Avoid

  • Forgetting to Include All Income: Many people omit bonuses, commissions, or side gig income. New Mexico law considers all income sources. Failing to include them will produce an artificially low obligation, which could be challenged in court.
  • Misunderstanding Parenting Time: The calculator uses overnights, not "visitation hours." A parent who has the child every other weekend from Friday night to Sunday evening likely has 104 overnights per year (52 weekends × 2 nights). Mistaking this for fewer nights changes the calculation dramatically.
  • Ignoring Other Child Support Orders: If you already pay support for another child, you must enter that amount. The formula deducts this from your income before the schedule lookup. Leaving it out will inflate the current obligation estimate.
  • Using Outdated Income Figures: A raise, job loss, or change in hours can shift the obligation significantly. Always use the most current income data. If you are planning for a future change (e.g., a new job), run the calculator with projected numbers to prepare.

Conclusion

The New Mexico Child Support Calculator is an essential tool for any parent, attorney, or mediator dealing with child support in the state. By applying the state's shared income formula and considering crucial factors like parenting time, health insurance costs, and extraordinary expenses, it delivers a realistic, court-aligned estimate in seconds. This tool demystifies a complex legal process, replacing guesswork with clarity and empowering families to make informed decisions about their children's financial future.

Whether you are starting a new case, modifying an existing order, or simply planning for a change in custody, using this free calculator is your first step toward understanding your rights and obligations. Try it now with your specific numbers—enter your income, parenting time, and expenses to see your estimated child support obligation instantly. A clear financial picture is the foundation for a stable future for your children.

Frequently Asked Questions

The New Mexico Child Support Calculator is a state-mandated tool that estimates the presumptive monthly child support obligation under the New Mexico Child Support Guidelines (NMSA 1978, Section 40-4-11.1). It calculates the base support amount by combining both parents' gross monthly incomes, applying a self-support reserve of $1,000 (as of 2024), and factoring in parenting time percentages and additional expenses like health insurance and childcare costs. The result is the non-custodial parent's recommended monthly payment to the custodial parent.

The calculator uses a two-step formula: first, it adds both parents' adjusted gross incomes (after subtracting the $1,000 self-support reserve for each parent) to get the combined parental income. Then, it applies the New Mexico Schedule of Basic Support Obligations, which is a statutory table that assigns a base monthly amount based on combined income and number of children. For example, for one child with a combined monthly income of $4,000, the base obligation is approximately $654 per month as of 2024. Each parent's proportionate share of this base is then calculated by dividing their individual income by the combined income.

For a two-child family in New Mexico with a combined monthly income of $5,000, the calculator typically yields a base support obligation between $900 and $1,200 per month, depending on parenting time adjustments. "Healthy" ranges are those that stay within the statutory guidelines, meaning the non-custodial parent's share should not exceed 40% of their gross income after the self-support reserve. For example, a non-custodial parent earning $3,000/month should see a calculated obligation between $600 and $1,200, as anything above $1,200 (40% of $3,000) would be considered presumptively excessive and require a deviation finding.

The calculator is highly accurate for standard cases, producing the exact presumptive amount that a judge must use unless a written deviation is justified. In practice, studies show that over 85% of New Mexico child support orders match the calculator's output within 5%. However, accuracy decreases in cases with high-income parents (over $15,000/month combined), self-employment income, or complex custody arrangements like 50/50 time-sharing, where judges may apply discretionary adjustments that the basic calculator cannot model.

The calculator does not automatically account for shared custody adjustments if each parent has the child less than 40% of the time; it only applies a straight percentage reduction for parenting time between 40% and 50%. It also cannot handle variable extracurricular costs like sports fees or tutoring unless those are entered as fixed monthly amounts. Additionally, the calculator assumes both parents have equal ability to pay for health insurance, but it does not factor in differences in coverage quality or deductibles, which can lead to an under- or over-estimation of actual support needs.

The calculator and CSED's professional method use identical statutory formulas and the same Schedule of Basic Support Obligations, so for 90% of cases they produce the same number. The difference is that CSED case workers can manually input complex deviations—such as a parent's disability benefits, prior support orders for other children, or extraordinary medical expenses—which the public calculator cannot. For example, if a parent already pays $300/month for a child from a previous relationship, CSED can adjust the current obligation downward, while the basic calculator would overstate it by that amount.

Many parents mistakenly believe the calculator factors in future college expenses, but New Mexico law only requires support until age 18 (or 19 if still in high school), and the calculator does not include any post-secondary education costs. The base obligation covers only current living expenses like food, housing, and clothing. If parents want to include college savings, they must negotiate a separate agreement or request a court-ordered deviation, which the calculator cannot pre-figure. For example, a $1,000/month calculator result does not include any provision for a child's college fund.

A practical application is when a non-custodial parent earning $4,000/month loses their job and now has only $1,500/month in unemployment benefits. Using the calculator, they input the new $1,500 income, and the tool automatically applies the $1,000 self-support reserve, leaving only $500 of countable income. For one child, this would reduce the obligation from roughly $550/month to about $82/month. The parent can use this calculator output as evidence to file a motion for modification with the court, showing that the original order is no longer equitable under the guidelines.

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

🔗 You May Also Like