About the Interest Rate Calculator
Sometimes you know the loan amount, the payment, and the term - but not the interest rate itself, whether from an old loan document or a lender who only quoted the payment. Our Interest Rate Calculator works backward to find the rate that produces a given payment.
How It Works
Since there's no simple algebraic formula to solve directly for the rate, the calculator uses a binary search: it repeatedly tests rates, checks whether the resulting payment is higher or lower than your target, and narrows the range until it converges on the rate that produces your exact payment.
Formula & Methodology
The standard loan payment formula can be solved directly for payment given a known rate, but rearranging it algebraically to solve for rate given a known payment has no closed-form solution - the rate appears in multiple places in the equation in a way that can't be isolated. Binary search sidesteps that problem entirely: it guesses a rate, computes what payment that rate would produce, and adjusts the guess up or down based on whether the result was too high or too low, repeating until the guessed payment matches your actual payment closely enough.
Step-by-Step: Calculating It By Hand
- 1Start with a reasonable range of possible interest rates (for example, 0% to 30%).
- 2Test the midpoint rate by computing the payment it would produce for your loan amount and term.
- 3If that payment is higher than your actual payment, the true rate is lower - narrow the range downward; if lower, narrow it upward.
- 4Repeat the narrowing process until the computed payment matches your actual payment to the desired precision.
Examples
Finding an old loan's rate
A $20,000 loan with a $420 monthly payment over 60 months implies an interest rate you can back into, even without the original paperwork.
Verifying a quote
If a lender quotes a payment for a given amount and term, this calculator lets you check what implied rate that payment actually represents.
Advantages
- Solves for the one variable other loan calculators assume you already know
- Useful for verifying a lender's quoted payment matches the rate they advertised
- Works even without original loan paperwork, as long as you know the other three values
- Converges to a precise answer using the same math lenders use
Common Mistakes
- Mixing up the loan term's units - months versus years - which throws off the result significantly
- Not double-checking the payment amount matches principal & interest only, not taxes or insurance
- Assuming a slightly-off input won't matter - small errors in payment or term change the implied rate meaningfully
- Confusing APR (which includes fees) with the pure interest rate this calculator solves for
Edge Cases to Watch For
- This solves for the pure interest rate on principal and interest only - if your payment includes escrowed taxes or insurance, the implied rate will be overstated unless you subtract those first.
- Small errors in the payment or term amount produce meaningfully different implied rates, since the search is sensitive to precise inputs.
- The result is the note rate, not the APR, which includes fees and would run slightly higher for the same loan.
- Loans with irregular or graduated payment schedules don't fit this fixed-payment model and would need a different calculation entirely.
Common Use Cases
- Finding the interest rate on an old loan when the paperwork is missing
- Double-checking that a lender's quoted payment matches their advertised rate
- Comparing the implied rate of a 'low monthly payment' offer against its real cost
- Academic or financial modeling exercises