loan
Auto Loan Calculator
Estimate monthly vehicle loan payments from price, down payment, trade-in value, rate, and term.
loan calculator
The Cash Back or Low Interest Calculator compares two vehicle incentive offers under the same entered vehicle, tax, fee, down-payment, and trade-in assumptions. The cash-back offer applies the rebate to the higher-rate loan amount and modeled total cost. The low-interest offer uses the lower entered rate with no rebate. The result identifies the lower modeled cost, not a dealer quote, lender approval, official APR disclosure, state tax lookup, or purchase recommendation. The model includes a selected state or region tax helper and a switch for paying title, registration, and tax upfront or adding them to the loan.
Your scenario
Working scenario
Not saved yet
Saved scenarios
Save this result, then use saved scenarios to switch between assumptions.
Use this calculator before asking a dealer or lender to compare a rebate offer with a low-rate offer on the same vehicle, term, down payment, trade-in, tax, and fee assumptions. Use Auto Loan for a plain vehicle loan payment, Lease for lease-style assumptions, APR for APR and fee context, Loan Payment for a generic fixed-rate payment, Payment or Amortization for broader schedules, and Debt-to-Income for monthly debt pressure. Use CFPB auto-loan materials, Regulation Z, FTC dealer-financing and advertising guidance, state tax authorities, DMV or title agencies, lender contracts, dealer documents, program terms, regulators, and legal sources for APR disclosures, tax treatment, fees, eligibility, stackability, approval, underwriting, consumer rights, or jurisdiction-specific claims.
The app normalizes loanTermMonths = max(1, round(loanTermMonths)). Tax(rebate) = max(0, autoPrice - taxable offsets) * salesTaxRate / 100, where taxable offsets are rebate plus trade-in value only when stateExemptsAutoRebatesFromTax includes the selected state or region; otherwise the generic path calculates tax before rebate. When includeFeesInLoan is yes, financedFees = titleRegistrationFees + cashBackSalesTaxAmount; otherwise financedFees is 0 and tax plus fees are paid upfront. cashBackLoanAmount = max(0, autoPrice - cashBackAmount - downPayment - tradeInValue + financedFees). lowInterestLoanAmount = max(0, autoPrice - downPayment - tradeInValue + financedFees). Each annual rate is converted to rate / 100 / 12. Nonzero-rate monthly payment is P * r / (1 - (1 + r)^(-n)); zero-rate payment is P / n. Total loan payments are monthly payment times months, total interest is total loan payments minus loan amount, totalCost = autoPrice + tax + titleRegistrationFees + totalInterest - rebate, and recommendedOffer is the offer with the lower modeled total cost. offerSavings is the absolute total-cost gap, and interestSavingsBeforeRebate is the cash-back offer interest minus the low-interest offer interest.
This formula page covers the app's Cash Back or Low Interest Calculator: a two-offer vehicle incentive comparison. It compares a cash-back rebate paired with the higher entered rate against low-interest financing with no rebate, using auto price, term months, down payment, trade-in value, state or region, entered sales-tax rate, title and registration fees, and a financed-fee switch. It estimates loan amounts, monthly payments, total loan payments, interest, total cost, savings, and a lower modeled cost label. It is not a dealer quote, eligibility decision, tax lookup, APR disclosure, legal disclosure, or personalised borrowing advice.
N = max(1, round(months)); Tax(rebate) = max(0, Price - (StateExempt ? rebate + Trade : 0)) * taxRate / 100; TaxCB = Tax(Rebate); TaxLI = Tax(0); TaxFin = TaxCB; F = includeFees ? TitleFees + TaxFin : 0; CBLoan = max(0, Price - Rebate - Down - Trade + F); LILoan = max(0, Price - Down - Trade + F); mHigh = highRate / 100 / 12; mLow = lowRate / 100 / 12; Pay(P, m, N) = m === 0 ? P / N : P * m / (1 - (1 + m)^-N); CBPay = Pay(CBLoan, mHigh, N); LIPay = Pay(LILoan, mLow, N); CBTotal = CBPay * N; LITotal = LIPay * N; CBInterest = CBTotal - CBLoan; LIInterest = LITotal - LILoan; TaxCostCB = includeFees ? TaxFin : TaxCB; TaxCostLI = includeFees ? TaxFin : TaxLI; CBCost = Price + TaxCostCB + TitleFees + CBInterest - Rebate; LICost = Price + TaxCostLI + TitleFees + LIInterest; Savings = abs(CBCost - LICost)
The calculator normalizes the month count, builds separate cash-back and low-interest loan amounts, applies the fixed-payment formula to each offer, then compares total modeled cost after vehicle price, tax, title and registration fees, interest, and rebate treatment.| Symbol | Meaning | How this page uses it |
|---|---|---|
| N | Loan term months | The Loan term input rounded to the nearest whole month and floored at one month. |
| Price | Auto price | The entered Auto price before rebate, down payment, trade-in, tax, title and registration fees, dealer add-ons, or lender-specific terms. |
| Rebate | Cash back amount | The cash-back incentive subtracted only from the cash-back offer's loan amount and total cost. |
| High | Higher-rate offer | The annual interest rate used for the cash-back offer, divided by 100 and 12 before payment math. |
| Low | Low-rate offer | The annual interest rate used for the low-interest offer, divided by 100 and 12 before payment math. |
| StateExempt | State rebate/trade-in tax flag | The app's hard-coded `stateExemptsAutoRebatesFromTax` result for the selected state or region. It is not an official state tax ruling. |
| taxRate | Sales-tax rate | The entered sales-tax percentage, not a rate lookup. |
| TaxCB | Cash-back tax amount | Sales tax from the helper when the rebate is present. In exempt states, the helper subtracts rebate plus trade-in value from the taxable base. |
| TaxLI | Low-interest tax amount | Sales tax from the helper with no rebate. This is the source of the displayed Sales tax output. |
| TaxFin | Financed sales tax amount | The app currently sets financed sales tax to TaxCB, so the financed-fee branch uses the cash-back tax amount for both offer loan amounts. |
| TitleFees | Title and registration fees | The flat title, registration, and other fees input. The app does not classify fee types or decide whether a fee is a finance charge. |
| F | Financed fees | Zero when fees are paid upfront; otherwise title and registration fees plus TaxFin. |
| Down | Down payment | The cash down payment subtracted from both offer loan amounts and included in upfront payment. |
| Trade | Trade-in value | A simple positive offset subtracted from both offer loan amounts. It is not a payoff, appraisal, negative-equity, or title model. |
| CBLoan | Cash-back loan amount | Auto price minus rebate, down payment, and trade-in value, plus any financed taxes and fees, floored at zero. |
| LILoan | Low-interest loan amount | Auto price minus down payment and trade-in value, plus any financed taxes and fees, floored at zero. |
| CBPay | Cash-back monthly payment | Fixed monthly payment solved from CBLoan, the higher monthly rate, and N. |
| LIPay | Low-interest monthly payment | Fixed monthly payment solved from LILoan, the lower monthly rate, and N. |
| CBInterest | Cash-back total interest | Cash-back total loan payments minus CBLoan. |
| LIInterest | Low-interest total interest | Low-interest total loan payments minus LILoan. |
| CBCost | Cash-back total cost | Auto price plus the relevant tax amount, title and registration fees, and cash-back interest, minus the rebate. |
| LICost | Low-interest total cost | Auto price plus the relevant tax amount, title and registration fees, and low-interest loan interest. |
| Savings | Better offer savings | The absolute difference between cash-back and low-interest total modeled costs. |
| InterestGap | Interest savings before rebate | Cash-back total interest minus low-interest total interest. This explains the interest gap before the rebate effect is considered. |
The fixtures cover the main comparison branches: the default low-interest win, a large rebate with tax and fees financed, a zero-rate branch, and a no-down/trade-in Scoped independent comparator checks scenario.
A smaller monthly payment can still lose on total modeled cost, and a larger rebate can still lose after interest. Use the result as a consistent comparison of entered assumptions, not as a recommendation, approval, tax answer, or dealer-offer decision.
Geographic scope: works globally. The math is currency-agnostic, so enter amounts in your own currency; local taxes, fees, and product rules are not included.
Whichever produces the lower total cost - which depends on your numbers, not a rule. The calculator prices both paths in parallel: the rebate shrinks the amount financed but carries the higher rate, while promotional financing keeps the price but cheapens the money. With the defaults ($1,000 rebate, 5 versus 2 percent on a $50,000 car over 60 months), the outputs name the winner and the dollar difference.
Some states exempt manufacturer rebates (and trade-ins) from sales tax - you pay tax on the price after the rebate - while others tax the full price. The calculator's state setting toggles that treatment, and on a large rebate the tax difference alone can flip which offer wins. Tax rules for vehicle purchases vary and change, so confirm your state's current treatment before signing.
No - the recommended-offer output is based on total modeled cost: price, tax, fees, and interest, minus the rebate. A rebate deal can carry the higher payment yet win on total cost, or vice versa. The side-by-side outputs show both payments and both totals so you can weigh cash flow against total cost explicitly instead of letting the payment figure decide by default.
This calculator is an original two-offer vehicle comparison pricing a rebate at a higher rate against promotional financing, with state-dependent rebate and trade-in tax exemption handling and fee-financing options, validated by deterministic fixtures and edge-case tests. It is not copied from a single source.
Fixtures pin both offer paths, the tax-exemption toggle, and the total-cost recommendation logic. The result remains an educational estimate, not a financing recommendation or a dealer quote.
Formula version 2026.05.22-generic-auto-incentive-comparison. The version marks the calculation logic and validation fixture set used for this estimate.
Results are educational estimates, not advice. Read the full disclaimer.
loan
Estimate monthly vehicle loan payments from price, down payment, trade-in value, rate, and term.
loan
Estimate a lease payment from asset value, residual value, term, and interest rate, or solve the effective rate implied by a quoted monthly lease payment.
loan
Estimate annual percentage rate from loan amount, note rate, term, and finance charges.
loan
Estimate monthly payment, total paid, and total interest for an amortizing loan at a fixed rate.
loan
Solve either the monthly payment for a fixed-term loan or the payoff time for a fixed monthly payment.
loan
Estimate a fixed loan payment schedule, payoff timing, first-month split, and interest saved from extra payments.
debt
Estimate housing-cost and total-debt ratios from before-tax income, housing obligations, and recurring monthly debt payments.
loan
Estimate boat loan payments or back-solve an affordable boat price while accounting for down payment, trade-in, tax, and fees.