Audited 25 May 2026·Last updated 27 Jul 2026·5 citations·Tier 1·0 uses

Loan Comparison Calculator

Compare two loans by total cost, monthly payment, and APR. Factor in rates, terms, fees, and points to find the cheaper mortgage or personal loan.

Loan Comparison Calculator

Principal borrowed for both loans.
$
Annual rate for the first loan option.
%
Amortization period for loan 1.
years
Origination, points, and closing costs.
$
Prepaid interest to reduce rate; 1 point = 1% of loan.
%
Annual rate for the second loan option.
%
Amortization period for loan 2.
years
Origination, points, and closing costs.
$
Prepaid interest to reduce rate; 1 point = 1% of loan.
%
Years over which to compare total cost.
years
Cost difference
$25,349.65
Absolute difference between total costs.
Loan 1 monthly payment
$1,896.20
Loan 2 monthly payment
$1,970.79
Loan 1 total cost
$685,633.47
Loan 2 total cost
$710,983.12
Cheaper loan
1
Loan 1 APR
6.60%
Loan 2 APR
6.92%

Background.

A loan comparison calculator evaluates two fixed-rate loan offers side by side, computing the total cost of each over a user-defined horizon and identifying the cheaper option in absolute dollars. The tool goes beyond the monthly payment figure—which lenders prominently advertise—and incorporates upfront origination fees, discount points, and closing costs to produce a true all-in cost metric. For borrowers choosing between mortgage quotes, auto loans, or personal loans, the calculator replaces heuristic guesswork with arithmetic that accounts for the time value of money.

The canonical user is a homebuyer receiving multiple Loan Estimates under the Truth in Lending Act. Lenders are required to deliver these three business days after application, and they standardize the presentation of interest rate, monthly payment, and closing costs. However, the Loan Estimate does not directly compare one lender's offer against another's. A borrower holding quotes from two different banks must manually reconcile different rate-point combinations: one lender might offer 6.5 percent with $3,000 in fees, while another offers 6.875 percent with no fees. The calculator translates both scenarios into total cost over the expected holding period, revealing whether the lower rate justifies the higher upfront cash outlay.

The mathematics are straightforward but unforgiving of approximation. A 0.25 percentage point rate reduction on a $300,000 30-year loan saves roughly $15,000 in interest over the full term. If that reduction costs two discount points—$6,000 in prepaid interest—the break-even horizon is approximately four years. A borrower who sells or refinances before year four loses money on the points. The calculator computes this break-even implicitly by showing total cost at any comparison horizon from one to fifty years. It also approximates the Annual Percentage Rate (APR) for each loan, which is the standardized metric Congress mandated in 1968 to facilitate cross-lender comparison.

Regulatory context matters because APR is legally defined under Regulation Z. It includes the finance charge—interest plus most fees—spread over the loan term. Lenders cannot exclude application fees, origination charges, or mortgage insurance premiums from the APR calculation. The calculator's APR approximation uses iterative root-finding to solve for the rate that equates the present value of payments to the net loan amount, matching the regulatory methodology. While the calculator's APR may differ slightly from the lender's figure due to rounding conventions or excluded fees, it provides an independent check.

The tool also exposes a common behavioral bias: borrowers overweight monthly payment and underweight total cost. A longer term reduces the monthly payment but increases total interest, often dramatically. The calculator makes this trade-off explicit by showing both figures for each loan and reporting the absolute dollar difference.

For financial advisors and mortgage brokers, the output serves as a client-facing document that anchors the conversation in data rather than sales pressure. Loan comparison is especially valuable when evaluating refinance offers from the current servicer, who may quote a streamlined rate without fully disclosing the fees embedded in the new note. By entering both the existing loan terms and the proposed terms into the calculator, borrowers can determine whether the advertised savings survive rigorous arithmetic.

What is loan comparison calculator?

A loan comparison calculator is a financial analysis tool that computes the total cost of two fixed-rate loans—mortgages, auto loans, or personal loans—and identifies the cheaper option over a specified time horizon. It models each loan as a stream of equal monthly payments derived from the standard amortization formula, plus an upfront cash outlay for fees and discount points. The calculator produces four core outputs for each loan: the monthly payment, the total cost over the comparison horizon, the approximate APR, and the cumulative interest paid. The primary comparison metric is the absolute dollar difference in total cost. A secondary metric is the APR, which annualizes the all-in cost including fees. The tool assumes fixed rates, level payments, and no prepayment. All outputs are in US dollars. The concept of total cost is distinct from monthly payment. Two loans with identical monthly payments can have vastly different total costs if their terms or fee structures diverge. The calculator prevents this hidden divergence by summing every cash outlay—upfront and recurring—into a single comparable figure. This aggregation makes it impossible for lenders to obscure the true cost of credit behind a low monthly payment or teaser rate. Borrowers can therefore enter negotiations with an independently verified benchmark that exposes hidden fees and inflated rates.

How to use this calculator.

  1. Enter the loan amount that is common to both offers.
  2. Input the interest rate, term, and total fees for the first loan.
  3. Add any discount points for loan 1; the calculator treats them as prepaid interest.
  4. Repeat step 2 and 3 for the second loan.
  5. Set the comparison horizon to your expected holding period or the full loan term.
  6. Review the monthly payments, total costs, APR, and cost difference.
  7. If the cheaper loan requires higher upfront fees, verify that your break-even point falls within your expected tenure.

The formula.

TotalCost = Fees + L×pts% + M × n

The loan comparison calculator applies the present-value ordinary annuity formula to each loan independently, then aggregates costs and solves for APR. The mathematical foundation is the equivalence between a lump-sum loan amount and a stream of equal periodic payments. For a fixed-rate loan, the monthly payment M is derived from: M = L × r × (1+r)ⁿ / [(1+r)ⁿ − 1]. Where L is the principal, r is the monthly interest rate, and n is the total number of payments. This formula is algebraically identical to the annuity payment formula because the lender is effectively purchasing an annuity from the borrower: the lender gives L today in exchange for n payments of M starting one month hence. The denominator [(1+r)ⁿ − 1] represents the future value of an annuity of $1 per period; multiplying by r converts it to the payment required to amortize $1 today. Total cost over the comparison horizon is: totalCost = upfrontFees + (L × points/100) + M × 12 × min(comparisonYears, termYears). The min() operator is critical. If the borrower compares two loans over a five-year horizon but one loan has a 15-year term, only 60 months of payments are included. After payoff, no further payments are due. This prevents the calculator from penalizing shorter-term loans for payments that would not actually occur. APR computation requires solving for the interest rate that equates the present value of payments to the net disbursement. The net disbursement is the loan amount minus upfront fees and points, because those costs reduce the cash the borrower actually receives. The equation is: L − upfront = M × [1 − (1+APR/12)⁻ⁿ] / (APR/12). This is a nonlinear equation in APR. It cannot be rearranged algebraically; it requires numerical methods. The calculator uses Newton-Raphson iteration: APR_{k+1} = APR_k − f(APR_k) / f'(APR_k). Where f(APR) is the present-value function minus the net disbursement, and f'(APR) is its derivative with respect to rate. The iteration starts at the stated interest rate and converges rapidly because the function is smooth and monotonic in the relevant domain. If Newton-Raphson fails to converge within 10 iterations—possible with extreme fee-to-loan ratios—the calculator falls back to bisection between 0 and 50 percent. Dimensional analysis confirms that APR is dimensionless (rate per period scaled to annual), total cost is in dollars, and cost difference is in dollars. The comparison is valid only when both loans share the same principal amount; comparing a $300,000 loan against a $350,000 loan would conflate cost differences with borrowing amount differences. The calculator enforces a single loanAmount input to prevent this ambiguity.

A worked example.

Example

Compare two 30-year offers on a $350,000 loan over a ten-year holding period. Loan 1 charges 6.375%, $4,500 in fees, and one discount point; Loan 2 charges 6.75%, $1,200 in fees, and no points. The calculated monthly payments are $2,183.54 and $2,270.09. Including upfront fees and points, the ten-year costs are $270,025.36 for Loan 1 and $273,611.20 for Loan 2. Loan 1 is therefore cheaper by $3,585.84 over the comparison horizon. The calculator's fee-adjusted APR approximations are 6.597% and 6.784%, respectively.

loan1 Points1
loan1 Term Years30
comparison Years10
loan1 Fees4,500
loan2 Rate6.75
loan2 Fees1,200
loan2 Term Years30
loan1 Rate6.375
loan2 Points0
loan Amount350,000

Frequently asked questions.

Why does the calculator show a different APR than my lender?
The calculator approximates APR using the regulatory formula under Regulation Z, but small discrepancies can arise from rounding conventions, fee inclusions, and assumptions about prepaid finance charges. Lenders are permitted to round APR to the nearest one-eighth of 1 percent for advertising and to the nearest one-quarter of 1 percent on the Loan Estimate. The calculator does not round until the final display. Additionally, some lenders exclude certain third-party fees that the borrower can shop for, while others include them. If your lender's APR differs by more than 0.125 percent, request a written fee worksheet and verify which charges are included in the finance charge.
Should I always choose the loan with the lower total cost?
Not necessarily. Total cost is computed over the comparison horizon you specify. If you refinance or sell before that horizon, the ranking may flip. A loan with lower upfront fees and a slightly higher rate can be cheaper over short horizons because the upfront savings are not yet offset by higher monthly payments. The calculator allows you to toggle the comparison horizon to model this. Additionally, liquidity constraints matter: a borrower who cannot afford $8,000 in closing costs may rationally choose the no-fee loan even if it is more expensive over ten years. Total cost is a necessary but not sufficient decision criterion.
What are discount points and how do they work?
Discount points are prepaid interest that reduces the loan's interest rate. One point equals 1 percent of the loan amount. Lenders publish rate sheets showing the trade-off between points and rate, typically in 0.125 percent increments. Buying one point might reduce the rate by 0.25 to 0.50 percentage points, depending on the yield curve and lender pricing. The economic value of a point depends on how long you keep the loan. If you sell before the break-even point, you lose money on the points. The calculator treats points as an upfront fee added to total cost; it does not adjust the rate automatically because lenders' point-rate schedules vary daily.
Does the calculator handle adjustable-rate mortgages?
No. The calculator assumes fixed rates for the entire comparison horizon. Adjustable-rate mortgages introduce index uncertainty, rate caps, and adjustment periods that cannot be captured with a single rate input. If you are comparing a fixed-rate loan against an ARM, you can approximate the ARM by entering its initial fixed-period rate and the horizon equal to that fixed period. For example, a 5/1 ARM can be modeled as a 5-year fixed loan at the teaser rate. After the fixed period, the comparison becomes speculative because the index future is unknown.
Why does total cost include fees but not escrow?
Escrow reserves for property taxes and homeowner's insurance are not finance charges under Regulation Z because they are payments to third parties for services unrelated to the credit transaction. The borrower would pay these amounts directly even without a loan. The calculator follows this regulatory distinction and includes only lender charges, points, and mandatory third-party fees such as appraisal and title insurance. Prepaid interest, escrow deposits, and per-diem tax adjustments are excluded from total cost. Users who wish to include them can add the estimated annual escrow to the fees field manually.
Can I compare loans with different principal amounts?
The calculator requires a single loanAmount because comparing different principal amounts conflates the cost of credit with the quantity of credit borrowed. A $400,000 loan will always show higher total cost than a $300,000 loan at the same rate, but that does not mean the $400,000 loan is a worse deal. If you need to compare different loan sizes, normalize the output by dividing total cost by loan amount or use the APR metric, which is already size-normalized. For home purchases, down payment differences should be modeled by adjusting the loan amount to reflect the same purchase price.
What is the difference between interest rate and APR?
The interest rate is the nominal cost of borrowing expressed as an annual percentage, used to compute the monthly payment. APR is the all-in cost including most fees, expressed as an annualized rate. APR is always equal to or higher than the interest rate because it incorporates upfront charges. For loans with zero fees, APR equals the interest rate. For loans with significant fees, the APR can exceed the rate by 0.25 to 1.00 percentage points. Congress mandated APR disclosure in the Truth in Lending Act of 1968 precisely because lenders were advertising low rates while burying fees.
How do I model a no-closing-cost loan?
A "no-closing-cost" loan typically rolls the fees into the interest rate rather than waiving them. The lender pays the fees in exchange for a higher rate. To model this, enter the higher rate in the rate field and set fees to zero. Compare this against a loan with the lower rate and positive fees. The calculator will show whether the rate premium is cheaper or more expensive than paying the fees upfront over your comparison horizon. Be aware that rolled-in fees are still financed, meaning you pay interest on them over the full term.
Can the calculator compare auto loans or personal loans?
Yes. The mathematics of amortization is identical for any fully amortizing fixed-rate loan. Enter the principal, rate, term, and fees for each auto or personal loan offer. Auto loans typically have shorter terms—36 to 72 months—and lower fees than mortgages. Personal loans may carry origination fees of 1 to 8 percent that are often deducted from the disbursement. If the personal loan deducts the fee from principal, enter the net amount you receive as the loanAmount and add the fee to the fees field so the total cost reflects the true finance charge.
What if I plan to make extra principal payments?
Extra payments shorten the term and reduce total interest, but they also invalidate the comparison horizon if the loan pays off before the horizon ends. The calculator does not model prepayment. If you intend to prepay aggressively, use the mortgage payoff calculator to generate the actual payoff date and remaining balance for each loan, then input the effective term into the loan comparison calculator. Alternatively, set the comparison horizon to the expected payoff year and recognize that the total cost will be lower than the baseline figure.

Embed

Quanta Pro

Paid features are coming later.

  • All 313 calculators remain free
  • No billing is enabled
Coming soon