Loan Payment (Amortized Loan or Mortgage)

Also known as mortgage payment · monthly payment · car payment · amortization payment · PMT

M=Pi1(1+i)nM = \frac{P\,i}{1 - (1+i)^{-n}}

Enter your known values, leave one input blank, and solves for the missing one. Try different units for next level excitement!

Learning zone

Every amortized loan is a promise to hand over the same amount, on the same day, until the balance is gone. Working out that amount looks hard and is not: the payments form a geometric series, and summing it gives M=Pi/(1(1+i)n)M = P i / (1 - (1+i)^{-n}). The classic case is a $200,000 mortgage at 6% nominal over 30 years, which means i=0.06/12=0.005i = 0.06/12 = 0.005 per month and n=360n = 360 payments, giving $1,199.10.

The single most common mistake is feeding it an annual rate alongside a monthly count. The rate and the payment count must describe the same period, always. A second trap is national: Canadian mortgages are compounded semi-annually by law, so a 6% Canadian mortgage has a monthly rate of 1.031/610.0049391.03^{1/6} - 1 \approx 0.004939, not 0.005, and the payment comes out slightly lower than the American figure above.

A quick sanity check lives inside the formula. Set n=1n = 1 and it collapses to M=P(1+i)M = P(1+i), which is exactly right: one payment repays the principal plus a single period's interest. Note also which variable is missing here. You can solve for the principal, and you can solve for the number of payments by taking logs, but there is no closed-form solution for the interest rate. Recovering ii from a payment means finding the root of a degree-nn polynomial, which is why every spreadsheet computes it by iteration.

Loan Payment (Amortized Loan or Mortgage)
M=Pi1(1+i)nM = \frac{P\,i}{1 - (1+i)^{-n}}
Where
  • MM= Payment per period
  • PP= Principal borrowed
  • ii= Interest rate per period
  • nn= Number of payments