Skip to content

Interest Portion of Payment

Calculates how much of a specific loan payment goes toward interest. Takes the original loan setup plus the payment number, computes the balance immediately before that payment, and multiplies by the per-period rate.

When to use: Use to spot-check a single payment's interest charge without scrolling through a full amortization schedule. Common questions: "How much of payment 60 goes to interest?", "What's the interest on the first payment of my mortgage?", "What does the interest portion look like in the final year?"

Calculator

Formula

Interestp=Bp1×km,Bp1=PV(1+k/m)p1PMT(1+k/m)p11k/mInterest_p = B_{p-1} \times \frac{k}{m}, \quad B_{p-1} = PV(1 + k/m)^{p-1} - PMT \cdot \frac{(1 + k/m)^{p-1} - 1}{k/m}

Variables

SymbolNameDescriptionUnit
InterestInterest PortionInterest component of payment p$
PVOriginal LoanOriginal loan amount$
PMTPaymentPeriodic payment amount (per period, e.g. monthly)$
kAnnual RateNominal annual interest rate as a decimal (e.g. 0.06 for 6% APR)%
mPeriods/YearNumber of payments per year (1 for annual, 12 for monthly)integer
pPayment NumberWhich payment to compute (1 = first payment)integer

Real-Life Examples

Example 1: First Mortgage Payment

$300,000 mortgage at 6% APR, monthly payments of $1,798.65 over 30 years. Interest portion of payment 1?

Given

PV = 300,000PMT = 1,798.65k = 0.06m = 12p = 1

Step-by-Step

1.Per-period rate = 0.06 / 12 = 0.005
2.B_0 = $300,000 (no payments made yet)
3.Interest_1 = $300,000 × 0.005 = $1,500.00
Result:1,500.00

$1,500 of the first $1,798.65 payment is interest — leaving only $298.65 to reduce the principal. This is the classic "frontloaded interest" pattern.

Example 2: Mid-Loan Payment

Same $300k 30-year mortgage at 6%. What's the interest on payment 180 (year 15)?

Given

PV = 300,000PMT = 1,798.65k = 0.06m = 12p = 180

Step-by-Step

1.Per-period rate = 0.005
2.B_179 = $300,000 × (1.005)^179 − $1,798.65 × ((1.005)^179 − 1)/0.005 ≈ $213,876
3.Interest_180 = $213,876 × 0.005 ≈ $1,069.38
Result:1,069.38

Halfway through the loan, $1,069 of each payment still goes to interest — the principal share has only just caught up.

Example 3: Final Payment

Same loan. What's the interest on the very last payment (p=360)?

Given

PV = 300,000PMT = 1,798.65k = 0.06m = 12p = 360

Step-by-Step

1.Per-period rate = 0.005
2.B_359 ≈ $1,789 (almost paid off)
3.Interest_360 ≈ $8.95
Result:8.96

The final payment is almost entirely principal — under $9 of interest on a payment of $1,798.65.

Frequently Asked Questions

Interest is charged on the outstanding balance, and the balance shrinks every time you make a payment. The first payment's interest is calculated on the full loan amount; the last payment's interest is calculated on whatever sliver remains. That curve is why amortization tables look "frontloaded."

Same math, different presentation. The amortization table on the Payment from PV formula shows the breakdown for every payment; this formula answers a single question quickly without scrolling. Use it when you want one number, not the whole schedule.

In the US, mortgage interest on a primary residence is generally deductible if you itemize, subject to loan-amount limits. Knowing the interest portion of each payment helps estimate the deduction. Consult a tax professional for your specific situation.

Extra principal payments lower the balance immediately, which reduces the interest portion of every future payment. This formula assumes the standard schedule with no prepayments — to model extra payments accurately, walk the schedule manually with the extra principal applied each month.