How Long It Really Takes to Pay Off a Loan
By WorkCalc Team · August 10, 2026
Most people guess how long a loan will take to pay off by dividing the balance by the payment. Ten thousand dollars at three hundred a month feels like it should take about 33 months. In practice it usually takes longer, sometimes much longer, because interest keeps adding itself back onto the balance before your payment ever touches it. The gap between the naive guess and the real number is where a lot of borrowers get surprised.
Interest comes first, every month
A loan balance doesn’t just sit still between payments. Each month, before your payment is applied, interest accrues on whatever balance is still outstanding. Only what’s left over after that interest charge actually reduces what you owe. That ordering, interest first, payment second, is the entire reason payoff takes longer than a simple balance-divided-by-payment estimate suggests.
This matters most when the payment is small relative to the balance and the rate. If your payment is $300 and this month’s interest charge is $150, only $150 of your payment chips away at the principal. The next month, interest is calculated on a balance that barely moved, so it charges you almost as much again. Progress compounds slowly at first and then accelerates as the balance shrinks and the interest portion of each payment shrinks with it.
The formula
There’s no clean closed-form answer here the way there is for a fixed-term mortgage payment, because the question being asked is different: given a fixed payment, how many months until the balance hits zero? The reliable way to answer that is to simulate it month by month.
Set remaining balance = starting balance
Set months = 0, total interest = 0, total paid = 0
Repeat until remaining balance is 0 (or a sane cap of months is hit):
months = months + 1
interest = remaining balance x (annual rate / 12)
total interest = total interest + interest
remaining balance = remaining balance + interest
payment = the smaller of (monthly payment, remaining balance)
remaining balance = remaining balance - payment
total paid = total paid + payment
Each pass through the loop is one month: interest gets added to the balance first, then the payment is subtracted. The loop stops the moment the balance reaches zero, and the number of loop iterations is your answer. A cap on the number of months is worth building in too, since a payment that never exceeds the interest charge would otherwise loop forever.
Worked example: $10,000 at 18% APR, $300 a month
Start with a $10,000 balance, an 18% annual rate, and a $300 monthly payment. The monthly rate works out to 18% divided by 12, or 1.5% of the balance each month. In month one, interest is $10,000 x 1.5%, which is $150. That leaves $150 of the $300 payment actually reducing the balance, bringing it down to $9,850 heading into month two.
Run that same process forward, month after month, and the balance eventually reaches zero after 47 months. Along the way you pay $3,967.21 in total interest, for a total of $13,967.21 paid on a $10,000 loan. Nearly 40% of everything paid was interest, not principal, which is a direct consequence of an 18% rate applied against a modest payment.
Worked example: $5,000 at 6% APR, $200 a month
Compare that to a friendlier scenario: a $5,000 balance, a 6% annual rate, and a $200 monthly payment. The monthly rate here is 6% divided by 12, or 0.5%. Month one’s interest is $5,000 x 0.5%, just $25, so $175 of that first $200 payment goes straight to principal.
Because the rate is lower and the payment is a larger share of the balance from the start, this loan pays off in 27 months, with $354.69 in total interest and $5,354.69 total paid. Interest here makes up only about 7% of what you pay overall, a very different picture from the first example even though both loans start with a similar payment-to-balance ratio in dollar terms.
The minimum payment trap
The most important nuance in this whole calculation is what happens when the payment barely exceeds, or doesn’t exceed, the interest charged each month. If your payment is close to that month’s interest, only a sliver goes toward principal, and payoff drags out far longer than intuition suggests. If the payment is equal to or less than the interest charge, the balance never goes down at all: every payment just cancels out that month’s interest and the loan sits there indefinitely, or grows if fees or additional charges get added.
This is exactly how minimum payments on credit cards can keep a balance alive for years, sometimes decades, while feeling like progress is being made. A small increase in the payment, even $25 or $50 a month, can cut months or years off the payoff timeline, because more of each payment escapes the interest charge and starts working on the principal instead.
A note on the fixed-rate assumption
This kind of month-by-month simulation assumes a fixed interest rate for the life of the loan. Credit cards, some personal loans, and adjustable-rate products don’t hold still that way. If your rate changes, your actual payoff timeline and total interest will diverge from any estimate based on today’s rate, sometimes considerably, especially over a payoff period stretching several years.
FAQ
Why does my loan take longer to pay off than balance divided by payment suggests? Because that simple division ignores interest. Every month, interest accrues on the outstanding balance first, and only the remainder of your payment reduces principal. The month-by-month simulation described above accounts for that, which is why it produces a longer, more realistic timeline.
What happens if my payment doesn’t cover the monthly interest? The balance won’t go down, and in some cases it will grow. Since your payment isn’t even fully covering the interest charge, nothing is left to apply toward principal. You’d need to increase the payment (or reduce the rate) for the balance to start shrinking at all.
Does paying a little extra each month really make a big difference? Yes, often disproportionately so. Extra dollars in early payments skip the interest entirely and go straight to principal, which lowers next month’s interest charge too. That compounding effect is why modest increases in a monthly payment can shave off a surprising number of months.
Use the Loan Payoff Calculator to run your own numbers.