Loan Payment Calculator
Estimate monthly payment, total paid, and total interest for an amortizing loan at a fixed rate.
Formula and help
Learn how this calculator works, what formula it uses, and which assumptions sit behind the estimate.
Back to calculatorThe Lease Calculator estimates a generic asset lease using a present-value model. Monthly payment mode starts with asset value, residual value, lease years, lease months, and an entered annual rate. It discounts the residual value back to today, then amortizes the remaining value across the lease term. Interest rate mode keeps the quoted monthly payment and solves the effective annual rate implied by the same asset value, residual value, and term. The result is an educational calculator estimate, not a consumer lease disclosure, accounting lease calculation, tax answer, lender quote, contract review, or recommendation to lease an asset.
Use this calculator when you want a generic lease estimate for equipment, a vehicle, or another asset and the key inputs are asset value, residual value, term, and either an annual rate or quoted payment. Use Auto Lease when a vehicle quote uses money factor, down payment, trade-in value, or sales tax assumptions. Use Auto Loan, Loan Payment, APR, Payment, or Amortization when the question is a loan rather than a lease. Use CFPB Regulation M and eCFR Part 1013 for consumer lease disclosure claims, IFRS 16 or FASB ASC 842 materials for accounting treatment, and contract, tax, title, insurance, legal, or provider sources before treating real lease terms as settled.
This formula page covers the app's generic Lease Calculator: a present-value lease estimate that either calculates a monthly payment from asset value, residual value, term, and annual rate, or solves the effective annual rate implied by a quoted monthly payment. It is not a consumer lease disclosure, accounting lease calculation, tax answer, lessor quote, contract review, vehicle or equipment recommendation, approval decision, or personalised advice.
Term = max(1, round(leaseYears * 12 + leaseMonths)); r = interestRate / 100 / 12; Dep = max(0, Asset - Residual); RPV = Residual / (1 + r)^Term; PMT0 = (Asset - Residual) / Term; PMT = r == 0 ? PMT0 : ((Asset - RPV) * r) / (1 - (1 + r)^(-Term)); Total = PMT * Term; Interest = Total - Dep; PrincipalShare = Total > 0 ? Dep / Total * 100 : 0; InterestShare = Total > 0 ? Interest / Total * 100 : 0; solved-rate mode: if Quote <= PMT0 then EffectiveRate = 0 else binary search annualRate in [0, 100] for 120 iterations
Monthly-payment mode converts the entered annual rate to a monthly rate, discounts the residual value back to the start of the term, and amortizes the remaining present-value amount. Interest-rate mode keeps the quoted monthly payment and searches for the annual rate that makes the same payment equation match.| Symbol | Meaning | How this page uses it |
|---|---|---|
| Term | Lease term months | Lease years multiplied by 12 plus lease months, rounded to a whole number and floored at one month. |
| Asset | Asset value | The entered starting asset value used in the payment equation. It is not a provider quote or appraised value. |
| Residual | Residual value | The entered value expected at the end of the term. The calculator does not verify lessor schedules, vehicle guides, or equipment-vendor residual rules. |
| r | Monthly rate | The entered annual percentage rate divided by 100 and then by 12. |
| Dep | Depreciation amount | Asset value minus residual value, floored at zero for the displayed depreciation amount. |
| RPV | Residual present value | Residual value discounted back over the lease term at the monthly rate. |
| PMT0 | Zero-rate payment | Asset value minus residual value divided by the lease term when the monthly rate is zero. |
| PMT | Monthly payment | The calculated payment in monthly-payment mode, or the quoted monthly payment in interest-rate solve mode. |
| Quote | Quoted monthly payment | The Monthly payment input used when Calculate is set to interest rate. |
| EffectiveRate | Interest/return rate | The displayed annual percentage rate in the app's present-value equation. It is not a legal APR, Regulation M disclosure rate, or accounting discount-rate conclusion. |
| Total | Total monthly payments | Monthly payment multiplied by the normalized lease term. |
| Interest | Total interest | Total monthly payments minus displayed depreciation amount. It is formula context, not a fee-inclusive finance-charge disclosure. |
| PrincipalShare | Principal share | Displayed depreciation amount divided by total monthly payments when total monthly payments are positive. |
| InterestShare | Interest share | Displayed total interest divided by total monthly payments when total monthly payments are positive. |
This calculator is an original implementation based on the app's documented generic lease present-value formulas, fixed planning assumptions, deterministic fixtures, edge cases, rounding policy tests, and internal validation. It is not copied from a single source.
Outputs are checked with deterministic fixtures, edge cases, rounding policy tests, and internal validation artifacts. The result remains an educational estimate, not a consumer lease disclosure, not an accounting lease calculation, not a legal APR disclosure, lessor quote, contract review, tax answer, title or registration estimate, insurance quote, approval decision, asset recommendation, or personalised advice.
See the Calcs.finance methodology for the full review approach.
These examples use the app's package fixtures so the formula page matches production rounding.
The examples show how the app combines residual present value, whole-month term, and rate-solving math. They do not price real taxes or fees, determine accounting treatment, quote a lessor payment, interpret a contract, or recommend whether to lease an asset.
Estimate monthly payment, total paid, and total interest for an amortizing loan at a fixed rate.
Estimate personal loan payments, total cost, payoff date, and effective APR after fees and monthly insurance.
Estimate student loan repayment, extra-payment payoff savings, or projected balance after school and grace period.
Estimate business loan repayment, total interest, fees, and the real APR after loan costs.
Estimate annual percentage rate from loan amount, note rate, term, and finance charges.
Solve either the monthly payment for a fixed-term loan or the payoff time for a fixed monthly payment.