Skip to the calculator
Rule Calculator

Loan Payment Calculator

With amount borrowed 25000 usd, annual rate 7.5 percent, term, years 5, or pay this much a month instead 600 usd, loan payment comes to $500.95 — monthly payment. It is reached in 7 steps, the last of which is i == 0 ? loan / n : loan * i / (1 - pow(1 + i, -n)), and each one is printed on the page with its numbers filled in. The formula is the one published by 12 CFR part 1026 (Regulation Z), not an approximation fitted to it.

The monthly payment on a loan, and how much sooner it clears if you pay a different amount instead.

By Alex Seote, Built and maintains Rule Calculator · Formula and sources checked · How we check

Amount borrowed 25000, Annual rate 7.5, Term, years 5, Or pay this much a month instead 600

$500.95

Monthly payment for the example below. Editing a field recomputes the calculator below; this figure holds the answer the page was loaded with.

It is written into the HTML rather than drawn by a script, so a search engine reading this page without running JavaScript still finds an answer.

Monthly payment
$500.95
Monthly payment
i == 0 ? loan / n : loan * i / (1 - pow(1 + i, -n))$500.95
Paid over the full term
payment * n$30,057
Interest over the full term
total_paid - loan$5,057
Months at that payment
48.418
Months sooner than the schedule
target_months == 0 ? 0 : max(0, n - target_months)11.582
Interest at that payment
target_months == 0 ? 0 : target_payment * target_months - loan$4,051
Interest saved
target_months == 0 ? 0 : max(0, total_interest - target_interest)$1,006

Ask about this in the chat

Worked example

$25,000 at 7.5% over five years is $500.95 a month and $5,056.92 of interest. Paying $600 instead clears it in 48.4 months rather than 60 — a year sooner, for about $99 a month, and $1,006 less interest.

How to work it out yourself

  1. 1.Enter the amount borrowed, the rate and the term the lender is offering.
  2. 2.To test a bigger payment, put it in the last field. The months and the interest at that payment appear in the working.
  3. 3.A payment at or below one month’s interest never clears the loan at all — the calculator reports zero months rather than a number, because there is no answer to report.

The formula

  1. Monthly paymenti == 0 ? loan / n : loan * i / (1 - pow(1 + i, -n))
  2. Paid over the full termpayment * n
  3. Interest over the full termtotal_paid - loan
  4. Months at that payment
  5. Months sooner than the scheduletarget_months == 0 ? 0 : max(0, n - target_months)
  6. Interest at that paymenttarget_months == 0 ? 0 : target_payment * target_months - loan
  7. Interest savedtarget_months == 0 ? 0 : max(0, total_interest - target_interest)

Source: 12 CFR part 1026 (Regulation Z) — Truth in Lending, US SEC Investor.gov — compound interest and loan mechanics

Questions people actually ask

Why does paying a little extra clear the loan so much sooner?
Because every extra dollar goes entirely to principal, and principal that is gone stops generating interest for the rest of the term. On the example above, $99 more a month — under 20% extra — removes nearly a fifth of the total interest and almost a year of payments. The effect is largest early, when the balance is high and interest is most of the payment.
What happens if I pay only the interest?
The balance never moves. A payment equal to one month’s interest leaves exactly the same amount owing next month, and anything below it makes the debt grow. That is why this calculator reports zero months rather than a large number: the loan does not take a long time to clear, it does not clear.
Is my payment the same every month?
On a fixed-rate amortising loan, yes — but what it consists of changes every month. Early payments are mostly interest and late ones are mostly principal, which is why the balance falls slowly at first. The amortisation schedule shows that split month by month.
Does the lender have to accept extra payments?
For most consumer loans made since 2014 there is no prepayment penalty on a mortgage that would have to be disclosed under Regulation Z, but some auto and personal loans still carry one, and precomputed-interest loans do not credit early payment at all. Check the note before assuming a bigger payment shortens the loan.
Should I pay off the loan or invest instead?
Compare the loan rate against what the money would earn after tax, and remember that clearing a debt is a certain return while an investment is not. A 7.5% loan is a guaranteed 7.5%; almost nothing else is. Where the loan rate is very low — an old mortgage, a subsidised student loan — the arithmetic can go the other way.

Related

Put this calculator on your site

Free, no attribution required beyond the link.

<iframe src="https://rulecalculators.com/embed/payment" width="100%" height="420" style="border:1px solid #e7e4de;border-radius:12px" title="Loan Payment Calculator"></iframe>
Did this answer your question?