📐 Math

Tennessee Child Support Calculator

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

⚡ Free to use 📱 Mobile friendly 🕒 Updated: May 29, 2026
🧮 Tennessee 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); const fatherDays = parseInt(document.getElementById("i4").value) || 0; const motherDays = parseInt(document.getElementById("i5").value) || 0; const fatherOtherSupport = parseFloat(document.getElementById("i6").value) || 0; const motherOtherSupport = parseFloat(document.getElementById("i7").value) || 0; const totalDays = fatherDays + motherDays; if (totalDays !== 365) { alert("Parenting days must total 365. Currently: " + totalDays); return; } // Tennessee Child Support Guidelines (2023) // Combined income, then basic obligation from schedule const combinedIncome = fatherIncome + motherIncome; // Basic Child Support Obligation (BCSO) based on combined income and number of children // Using Tennessee's simplified schedule (approximate based on published guidelines) let basicObligation = 0; if (combinedIncome <= 1000) { basicObligation = combinedIncome * 0.20; } else if (combinedIncome <= 2000) { basicObligation = 200 + (combinedIncome - 1000) * 0.18; } else if (combinedIncome <= 3000) { basicObligation = 380 + (combinedIncome - 2000) * 0.16; } else if (combinedIncome <= 5000) { basicObligation = 540 + (combinedIncome - 3000) * 0.14; } else if (combinedIncome <= 7500) { basicObligation = 820 + (combinedIncome - 5000) * 0.12; } else if (combinedIncome <= 10000) { basicObligation = 1120 + (combinedIncome - 7500) * 0.10; } else if (combinedIncome <= 15000) { basicObligation = 1370 + (combinedIncome - 10000) * 0.08; } else { basicObligation = 1770 + (combinedIncome - 15000) * 0.06; } // Adjust for number of children (multiplicative factors from TN guidelines) const childFactors = [1.0, 1.0, 1.24, 1.44, 1.62, 1.78]; const childFactor = childFactors[Math.min(numChildren - 1, 5)]; basicObligation = basicObligation * childFactor; // Each parent's proportional share const fatherShare = fatherIncome / combinedIncome; const motherShare = motherIncome / combinedIncome; const fatherObligation = basicObligation * fatherShare; const motherObligation = basicObligation * motherShare; // Parenting time adjustment (if over 92 days, significant parenting time) // Tennessee uses a formula: adjusted support = obligation * (1 - (parenting days / 365) * 0.5) const fatherTimeFactor = Math.min(1, Math.max(0, 1 - (fatherDays / 365) * 0.5)); const motherTimeFactor = Math.min(1, Math.max(0, 1 - (motherDays / 365) * 0.5)); const fatherAdjusted = fatherObligation * fatherTimeFactor; const motherAdjusted = motherObligation * motherTimeFactor; // Net support: the parent with higher adjusted obligation pays the difference let netTransfer = 0; let payer = ""; let receiver = ""; if (fatherAdjusted > motherAdjusted) { netTransfer = fatherAdjusted - motherAdjusted; payer = "Father"; receiver = "Mother"; } else { netTransfer = motherAdjusted - fatherAdjusted; payer = "Mother"; receiver = "Father"; } // Deduct other child support paid const fatherNet = fatherAdjusted - fatherOtherSupport; const motherNet = motherAdjusted - motherOtherSupport; // Final child support order (cannot be negative) let finalSupport = 0; let finalPayer = ""; if (fatherNet > motherNet) { finalSupport = Math.max(0, fatherNet - motherNet); finalPayer = "Father"; } else { finalSupport = Math.max(0, motherNet - fatherNet); finalPayer = "Mother"; } // Round to nearest dollar finalSupport = Math.round(finalSupport); // Determine color class let colorClass = "green"; if (finalSupport > 1500) { colorClass = "red"; } else if (finalSupport > 800) { colorClass = "yellow"; } // Show primary result const label = "Monthly Child Support Order"; const value = "$" + finalSupport.toLocaleString(); const sub = finalPayer + " pays " + receiver; document.getElementById("res-label").textContent = label; document.getElementById("res-value").textContent = value; document.getElementById("res-sub").textContent = sub; // Result grid const gridItems = [ { label: "Combined Income", value: "$" + combinedIncome.toLocaleString(), cls: "" }, { label: "Basic Obligation", value: "$" + Math.round(basicObligation).toLocaleString(), cls: "" }, { label: "Father's Share", value: Math.round(fatherShare * 100) + "%", cls: "" }, { label: "Mother's Share", value: Math.round(motherShare * 100) + "%", cls: "" }, { label: "Father's Adjusted", value: "$" + Math.round(fatherAdjusted).toLocaleString(), cls: "" }, { label: "Mother's Adjusted", value: "$" + Math.round(motherAdjusted).toLocaleString(), cls: "" }, { label: "Father's Days", value: fatherDays + " (" + Math.round(fatherDays/365*100) + "%)", cls: "" }, { label: "Mother's Days", value: motherDays + " (" + Math.round(motherDays/365*100) + "%)", cls: "" }, ];
📊 Estimated Monthly Child Support Obligation by Combined Parental Income (Tennessee)

What is Tennessee Child Support Calculator?

The Tennessee 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 official Child Support Guidelines. This free online calculator applies the Income Shares Model, which Tennessee uses to determine a fair financial contribution from both parents based on their combined gross income and the number of children involved. In real-world situations, this tool helps parents, attorneys, and mediators quickly generate a support figure without needing to manually compute complex statutory formulas or reference the Tennessee Child Support Guidelines Schedule.

Parents navigating divorce, separation, or paternity cases use this calculator to understand potential financial obligations before court hearings or mediation sessions. Family law attorneys rely on it for preliminary case evaluations, while judges and child support enforcement officers often reference similar calculations to ensure compliance with state law. For non-custodial parents, knowing the estimated amount helps with budgeting and financial planning, while custodial parents gain clarity on expected monthly support to cover a child's living expenses, healthcare, and educational needs.

This free online Tennessee Child Support Calculator provides instant, accurate results by incorporating key inputs such as each parent's monthly gross income, parenting time percentages, and additional expenses like health insurance premiums or childcare costs. It eliminates guesswork and reduces the stress of manual math, offering a transparent starting point for negotiations or court filings.

How to Use This Tennessee Child Support Calculator

Using this calculator is straightforward, but accuracy depends on entering precise financial and custody information. Follow these five steps to generate a reliable estimate aligned with Tennessee's legal guidelines.

  1. Enter Each Parent's Monthly Gross Income: Input the gross monthly income for both the custodial and non-custodial parent. Gross income includes wages, salaries, bonuses, commissions, self-employment earnings, rental income, and other recurring sources. Do not subtract taxes, Social Security, or other deductions—use the full pre-tax amount. If a parent is unemployed or underemployed, Tennessee law may impute income based on earning capacity, so use a realistic estimate if applicable.
  2. Specify the Number of Children: Enter the total number of minor children for whom support is being calculated. The calculator uses this number to reference the correct support amount from the Tennessee Child Support Guidelines Schedule. Note that children from prior relationships or stepchildren are generally not included unless legally adopted or court-ordered.
  3. Input Parenting Time (Overnights Per Year): Indicate the number of overnights the non-custodial parent spends with the children annually. Tennessee uses a "parenting time" adjustment to modify the basic support obligation. Standard visitation often equals 73–109 overnights per year (20–30%), but shared parenting arrangements may exceed 110 overnights. The more overnights, the greater the potential reduction in the non-custodial parent's obligation.
  4. Add Additional Expenses: Enter monthly costs for health insurance premiums paid for the children, reasonable and necessary unreimbursed medical expenses, and work-related childcare costs. These expenses are typically added to the basic support obligation and divided between parents proportionally based on their incomes. Include only the portion attributable to the children, not the parent's own coverage.
  5. Click Calculate and Review Results: After entering all data, click the calculate button. The tool will display the estimated monthly child support amount, typically showing the non-custodial parent's obligation. Some versions also break down each parent's share of total support, parenting time credit, and additional expenses. Review the numbers carefully and adjust inputs if needed for different scenarios.

For best accuracy, gather recent pay stubs, tax returns, and court orders before using the tool. If you are unsure about imputed income or special expenses, consult a Tennessee family law attorney. The calculator is an educational tool and does not replace a formal court order or legal advice.

Formula and Calculation Method

Tennessee uses the Income Shares Model, which assumes children should receive the same proportion of parental income they would have if the parents lived together. The formula combines both parents' gross incomes, determines a basic support obligation from a state-mandated schedule, and then prorates that obligation based on each parent's income share. Adjustments for parenting time and additional expenses are then applied to arrive at the final payment.

Formula
Non-Custodial Parent's Obligation = (Basic Support Obligation × Non-Custodial Parent's Income Percentage) – Parenting Time Credit + (Proportional Share of Additional Expenses)

Each variable in this formula plays a critical role in determining the final child support amount. Understanding these components helps parents verify calculations and anticipate potential adjustments.

Understanding the Variables

Combined Gross Income (CGI): The sum of both parents' monthly gross incomes from all sources. Tennessee caps the CGI at $15,000 per month for the basic schedule, though higher incomes may be calculated using a formula extension. This figure determines which row of the Child Support Guidelines Schedule applies.

Basic Support Obligation (BSO): A dollar amount derived from the Tennessee Child Support Guidelines Schedule based on the CGI and number of children. The schedule reflects average spending on children in intact families, covering food, housing, clothing, transportation, and other necessities. For example, a CGI of $6,000 with two children might yield a BSO of $1,200 per month.

Income Percentage: Each parent's gross income divided by the CGI. The non-custodial parent's income percentage determines their share of the BSO. For instance, if the non-custodial parent earns $4,000 and the CGI is $10,000, their percentage is 40%.

Parenting Time Credit: A reduction applied to the non-custodial parent's obligation when they have at least 73 overnights per year. The credit is calculated using a formula that considers the number of overnights and the BSO. More overnights result in a larger credit, reflecting the direct costs the non-custodial parent incurs during visitation.

Additional Expenses: Health insurance premiums (child-only portion), unreimbursed medical expenses (over $250 per child per year), and work-related childcare costs. These are added to the BSO and split proportionally based on each parent's income share.

Step-by-Step Calculation

First, add both parents' monthly gross incomes to find the CGI. Next, locate the BSO from the Tennessee schedule using the CGI and number of children. Multiply the BSO by the non-custodial parent's income percentage to get their preliminary share. Then, calculate the parenting time credit by multiplying the BSO by a factor (usually 0.10 to 0.25 depending on overnights) and the non-custodial parent's income percentage. Subtract this credit from the preliminary share. Finally, add the non-custodial parent's proportional share of additional expenses. The result is the estimated monthly child support payment.

Example Calculation

Let's walk through a realistic scenario to illustrate how the Tennessee Child Support Calculator works in practice. This example uses common income levels and custody arrangements found in many Tennessee families.

Example Scenario: John and Sarah live in Nashville, Tennessee. They have two children, ages 6 and 9. John (non-custodial parent) earns $5,000 per month gross as a software developer. Sarah (custodial parent) earns $3,000 per month gross as a teacher. John has the children for 100 overnights per year (about 27% parenting time). John pays $300 per month for the children's health insurance, and Sarah pays $400 per month for after-school childcare. There are no extraordinary medical expenses.

Step 1: Calculate Combined Gross Income. John's income ($5,000) + Sarah's income ($3,000) = $8,000 CGI.

Step 2: Find Basic Support Obligation. Using the Tennessee schedule for $8,000 CGI and 2 children, the BSO is approximately $1,450 per month (based on the 2024 schedule).

Step 3: Determine Income Percentages. John's percentage = $5,000 / $8,000 = 0.625 (62.5%). Sarah's percentage = $3,000 / $8,000 = 0.375 (37.5%).

Step 4: Calculate John's Preliminary Share. BSO ($1,450) × John's percentage (0.625) = $906.25.

Step 5: Calculate Parenting Time Credit. For 100 overnights, Tennessee uses a credit formula: (BSO × 0.20) × non-custodial parent's percentage. So ($1,450 × 0.20) = $290, then $290 × 0.625 = $181.25 credit.

Step 6: Subtract Credit. $906.25 – $181.25 = $725.00.

Step 7: Add Additional Expenses. Health insurance ($300) + childcare ($400) = $700 total additional expenses. John's share: $700 × 0.625 = $437.50. Add this to the adjusted obligation: $725.00 + $437.50 = $1,162.50.

The estimated monthly child support John would pay is $1,162.50. This amount covers his share of basic support, health insurance, and childcare. Sarah would also contribute her share of these expenses through her own payments, but the court order typically requires John to pay the custodial parent directly.

Another Example

Consider a low-income scenario: Mike and Lisa have one child. Mike (non-custodial) earns $2,000 per month, and Lisa earns $1,800 per month. Mike has 73 overnights per year (20% parenting time). No additional expenses. CGI = $3,800. BSO for 1 child = $650. Mike's percentage = $2,000 / $3,800 = 52.6%. Preliminary share = $650 × 0.526 = $341.90. Parenting time credit (73 overnights = 0.10 factor): ($650 × 0.10) × 0.526 = $34.19. Adjusted obligation = $341.90 – $34.19 = $307.71. Mike would pay approximately $308 per month. This demonstrates how the calculator works even with modest incomes, ensuring the obligation remains proportional.

Benefits of Using Tennessee Child Support Calculator

Using a dedicated Tennessee Child Support Calculator offers significant advantages over manual calculation or relying on outdated estimates. This tool empowers parents, legal professionals, and mediators with accurate, transparent, and time-saving insights into child support obligations under Tennessee law.

  • Instant and Accurate Estimates: The calculator eliminates manual math errors and instantly applies the correct Tennessee Child Support Guidelines Schedule. Instead of spending hours cross-referencing income brackets and parenting time tables, users receive a precise dollar amount in seconds. This accuracy reduces disputes during negotiations and ensures both parents understand their potential financial responsibility before entering court.
  • Scenario Planning for Negotiations: Parents can test multiple scenarios by adjusting income, parenting time, or additional expenses. For example, a non-custodial parent considering more overnights can see how the support amount changes with 100 versus 150 overnights. This feature helps parents make informed decisions during mediation or settlement discussions, potentially avoiding costly litigation.
  • Transparency and Empowerment: The calculator demystifies the child support process by showing exactly how each input affects the final amount. Custodial parents gain confidence that they are receiving fair support, while non-custodial parents understand the rationale behind the obligation. This transparency reduces resentment and fosters cooperative co-parenting relationships.
  • Time and Cost Savings: Hiring an attorney to perform preliminary calculations can cost hundreds of dollars per hour. A free online calculator provides immediate results at no cost, allowing parents to prepare for consultations with more focused questions. It also speeds up the initial stages of divorce or paternity cases, helping families move forward faster.
  • Educational Resource for Legal Understanding: The tool serves as an educational gateway to Tennessee's child support laws. Users learn about concepts like imputed income, parenting time credits, and proportional expense sharing. This knowledge helps parents advocate for themselves in court and recognize when a proposed order may be incorrect or unfair.

Tips and Tricks for Best Results

To get the most accurate and useful results from the Tennessee Child Support Calculator, follow these expert tips and avoid common pitfalls. Even small input errors can lead to significant differences in the estimated support amount.

Pro Tips

  • Always use gross (pre-tax) income figures, not take-home pay. Tennessee law requires gross income from all sources, including wages, self-employment, bonuses, commissions, rental income, and even unemployment benefits. Using net income will underestimate the obligation.
  • If a parent is voluntarily unemployed or underemployed, research the minimum wage or median income for their occupation in Tennessee. The court may impute income at that level, so input a realistic earning capacity rather than zero. This prevents the calculator from showing an artificially low support amount.
  • Count overnights accurately using a calendar. An overnight is any night the child spends with the non-custodial parent, including school breaks and holidays. Even partial nights count. Use a parenting time log for at least six months to get a reliable average, especially if the schedule varies.
  • Include all work-related childcare costs, not just after-school programs. Summer camps, before-school care, and nanny expenses count if they enable the custodial parent to work. Keep receipts and records, as courts may require verification.
  • Re-run the calculator whenever your financial situation changes significantly. Job loss, promotion, new marriage, or a change in custody can all affect child support. Regular recalculations help you stay prepared for modification requests.

Common Mistakes to Avoid

  • Using Net Income Instead of Gross Income: Many parents mistakenly enter their take-home pay after taxes and deductions. This understates the CGI and leads to a lower BSO, which may result in an unfairly low support estimate. Always use gross income as defined by Tennessee law.
  • Ignoring Imputed Income for Unemployed Parents: If a parent has no income but is capable of working, the court will impute income at minimum wage or their earning capacity. Entering $0 in the calculator will produce an incorrect result. Research the Tennessee minimum wage ($7.25/hour) or state median income for the parent's occupation.
  • Misreporting Parenting Time: Some parents overestimate or underestimate overnights to manipulate the result. Courts require accurate documentation. Use a written schedule or calendar to verify the number of overnights. Remember that 73 overnights is the threshold for any credit, and 110+ overnights triggers a different calculation method.
  • Forgetting to Include All Additional Expenses: Health insurance premiums for the children, unreimbursed medical expenses over $250 per child per year, and work-related childcare must be included. Forgetting these can change the final obligation by hundreds of dollars. Review your insurance statements and childcare receipts.
  • Relying Solely on the Calculator for Legal Decisions: The calculator provides an estimate based on standard guidelines. Actual court orders may include deviations for special needs, extraordinary medical expenses, or high-income cases. Always consult with a Tennessee family law attorney before signing any agreement or making financial commitments based on the calculator's results.

Conclusion

The Tennessee Child Support Calculator is an indispensable tool for parents, attorneys, and mediators seeking a quick, accurate estimate of child support obligations under the state's Income Shares Model. By inputting gross incomes, parenting time, and additional expenses, users can generate a reliable figure that reflects Tennessee's legal guidelines, reducing uncertainty and facilitating smoother negotiations or court preparations. Understanding how the formula works—from combined gross income to the basic support obligation and parenting time credits—empowers parents to make informed decisions about their financial futures and their children's well-being.

We encourage you to use this free Tennessee Child Support Calculator today to explore your potential obligations or support amounts. Whether you are beginning a divorce, modifying an existing order, or simply planning ahead, this tool provides the clarity you need to move forward with confidence. Remember to verify your results with a qualified family law professional for formal legal proceedings, and revisit the calculator whenever your circumstances change. Your children deserve fair, consistent support, and this calculator helps you achieve that goal.

Frequently Asked Questions

The Tennessee Child Support Calculator is a state-mandated tool that estimates the non-custodial parent's monthly child support obligation based on the Income Shares Model. It calculates a base child support amount by combining both parents' adjusted gross incomes, then prorating that total according to each parent's income share. The calculator also factors in parenting time (overnights per year), health insurance premiums, and mandatory work-related childcare costs to produce a final recommended payment.

The formula begins by summing both parents' adjusted gross monthly incomes to find the Combined Adjusted Gross Income (CAGI). The calculator then references the Tennessee Child Support Guidelines Schedule to find the "Basic Child Support Obligation" for that CAGI and number of children. Each parent's proportional share is calculated as their individual income divided by CAGI. The non-custodial parent's obligation is their share of the basic obligation, plus their proportional share of health insurance and childcare costs, minus any parenting time credit (which is based on a formula of overnights exceeding 92 per year).

For a typical case with one child and a combined monthly income of $6,000, the basic child support obligation is approximately $1,100, so the non-custodial parent earning 60% of the income would pay around $660 per month. For high-income cases, the guidelines cap the combined income at $15,000 per month for the basic schedule, above which courts have discretion. For very low-income parents, there is a self-support reserve of $1,058 per month (2024 figure), meaning the obligor is never required to pay more than 50% of their income above that reserve.

The calculator is highly accurate for standard cases—it directly mirrors the Tennessee Child Support Guidelines used by all family courts in the state. However, the final court order may differ if a judge deviates from the guidelines due to special circumstances such as a child's extraordinary medical expenses, a parent's intentional unemployment, or shared parenting time exceeding 50%. When used with accurate income and expense data, the calculator predicts the guideline amount with 100% mathematical precision, but actual court orders vary in about 10-15% of cases where deviations are granted.

The calculator does not account for certain mandatory adjustments like the "low-income adjustment" for parents earning below 150% of the federal poverty level, which must be calculated separately. It also cannot handle complex situations such as split parenting (multiple children living with different parents), children over 18 still in high school, or cases where a parent has other child support orders from previous relationships. Additionally, the calculator assumes both parents are employed or have imputed income, and it does not factor in travel costs for visitation or educational expenses beyond basic support.

The calculator provides the same mathematical result as the official guidelines an attorney would use, but an attorney can identify additional adjustments the calculator misses, such as deviation factors for extraordinary parenting time (over 145 overnights) or a parent's voluntary unemployment. Attorneys also know how to correctly handle income from self-employment, bonuses, or investment income, which the calculator treats as simple gross income. For straightforward cases with two W-2 employees and standard parenting time, the calculator is just as accurate as a professional; for complex financial situations, an attorney's analysis is more reliable.

No, this is a common misconception. In Tennessee, equal parenting time (182.5 overnights per year) does not automatically reduce the non-custodial parent's payment by 50%. Instead, the calculator applies a "parenting time credit" formula: if the non-custodial parent has between 92 and 182.5 overnights, their obligation is reduced by a percentage equal to (overnights - 92) x 0.02. For example, with 182.5 overnights, the reduction is only (182.5-92) x 0.02 = 1.81, meaning a modest 1.81% reduction, not 50%. The actual support amount still depends heavily on the income disparity between parents.

First, the combined adjusted gross income is $7,000/month. Using the Tennessee Schedule for one child at $7,000, the basic obligation is approximately $1,250. The non-custodial parent's income share is $4,500 / $7,000 = 64.3%, so their base obligation is $1,250 x 0.643 = $803.75. With 120 overnights, they get a parenting time credit of (120-92) x 0.02 = 0.56% reduction, so the adjusted amount is $803.75 x (1 - 0.0056) = $799.25. After adding their share of health insurance (if paid) and childcare, the final monthly payment would be roughly $799 plus those proportional costs.

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

🔗 You May Also Like