# Loan Payment Calculator

- **URL:** https://codeasystem.com/calculators/finance/loan-payment-calculator/
- **Category:** finance
- **Description:** Work out the monthly payment, total interest and payoff cost for any fixed-rate installment loan.
- **Primary output:** Monthly payment: $628.08

## Inputs
- Loan amount (name: `amount`, type: number, prefix: $, example: 25000)
- Interest rate (name: `rate`, type: number, example: 9.5)
- Term (name: `term`, type: number, example: 48)

## Outputs
- Monthly payment: $628.08
- Total interest: $5,147.76
- Total repaid: $30,147.76
- Interest as share of loan: 20.59%

## Formula / methodology
```
M = P · r / (1 − (1 + r)^−n)
```

Uses the standard amortizing-payment formula with the monthly rate r = APR ÷ 12 and n equal to the number of monthly payments. Every payment first covers that month’s interest; the rest reduces the balance.

## Assumptions & limitations
- Fixed APR and equal monthly payments.
- No origination fees or prepayment penalties are modeled.
- A 0% rate divides the principal evenly across the term.

## Example
Borrowing $25,000 at 9.5% APR over 48 months costs $628.08 per month with $5,147.76 total interest.

Result for these inputs:

```
Monthly payment: $628.08
```

## About this calculator
### Where this applies

Personal loans, debt consolidation, student-style installment plans and many point-of-sale financing offers use this same structure. If a lender quotes “APR”, you can drop it straight into this calculator.

### Watch the total cost, not just the payment

Longer terms shrink the monthly payment but grow total interest. Comparing “total repaid” between two terms is usually more revealing than comparing payments alone.

## FAQs
### What is the difference between APR and interest rate?

APR folds certain fees into an annualized rate, so it better reflects the true borrowing cost. If your lender quotes both, use the APR here.

### Does paying early save money?

With simple-interest amortizing loans, yes; extra principal payments shorten the term and cut remaining interest, assuming no prepayment penalty.

### Can I use years instead of months?

Multiply years by 12 before entering the term.

> **Disclaimer:** This calculator is for general educational purposes only and does not constitute professional advice.

## Related calculators
- [Mortgage Calculator](https://codeasystem.com/calculators/finance/mortgage-calculator/)
- [Car Loan Calculator](https://codeasystem.com/calculators/finance/car-loan-calculator/)
- [Debt Payoff Calculator](https://codeasystem.com/calculators/finance/debt-payoff-calculator/)

---
Last updated: 2026-08-23 · Version: 1.0.0 · [HTML version](https://codeasystem.com/calculators/finance/loan-payment-calculator/)
