Loan Payment Calculator
Estimate monthly payment, total paid, and total interest for an amortizing loan at a fixed rate.
Formula and help
Learn how this calculator works, what formula it uses, and which assumptions sit behind the estimate.
Back to calculatorThe 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.
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.
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. |
This calculator is an original implementation based on documented formulas, app-specific assumptions, deterministic fixtures, edge cases, rounding policy tests, and internal validation. It is not copied from a single source.
Outputs are checked with deterministic fixtures, edge cases, rounding policy tests, and internal independent comparator checks where overlapping outputs are available. The result remains an educational estimate, not a quote, approval, tax answer, or personalised advice.
See the Calcs.finance methodology for the full review approach.
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.
Estimate monthly payment, total paid, and total interest for an amortizing loan at a fixed rate.
Estimate personal loan payments, total cost, payoff date, and effective APR after fees and monthly insurance.
Estimate student loan repayment, extra-payment payoff savings, or projected balance after school and grace period.
Estimate business loan repayment, total interest, fees, and the real APR after loan costs.
Estimate annual percentage rate from loan amount, note rate, term, and finance charges.
Solve either the monthly payment for a fixed-term loan or the payoff time for a fixed monthly payment.