Solve for the interest rate implied by a loan amount, payment, and term.
There's no closed-form formula for rate given payment, so this uses a numerical search (binary search) to find the rate that produces your stated payment.
Interest rate calculators typically solve for the rate implied by a known loan or investment structure — for example, given a payment amount, principal, and term, what rate produces that payment? Understanding rate types helps interpret the result correctly.
Where n is the number of compounding periods per year. A nominal 12% rate compounded monthly has an effective annual rate of about 12.68% — the difference comes entirely from compounding within the year.
| Compounding | Effective annual rate |
|---|---|
| Annually | 12.00% |
| Semi-annually | 12.36% |
| Monthly | 12.68% |
| Daily | 12.75% |
Effective annual rate by compounding frequency (12% nominal)
Example 1 — Solving for rate on a car loan: A $20,000 loan with a $400/month payment over 60 months implies an annual interest rate of roughly 7.4% — found by iterating the loan-payment formula until the calculated payment matches $400.
Example 2 — Checking a quoted mortgage rate: If a lender quotes a $300,000, 30-year loan with a $1,910/month payment, working backward confirms an implied rate of approximately 6.6% — useful for verifying a quote before signing.
Example 3 — Effective rate from a credit card APR: A credit card with an 18% nominal APR compounded daily has an effective annual rate of about 19.7% — nearly two full percentage points higher than the advertised nominal figure.
Because the standard loan payment formula can't be algebraically rearranged to isolate the rate directly, calculators use an iterative numerical method (often binary search or Newton's method): they guess a rate, compute the resulting payment, compare it to the target payment, and adjust the guess up or down until the computed payment converges on the actual payment.
Why do two loans with the same nominal rate cost differently? Differences in compounding frequency, fees, and how APR is calculated can make the effective cost differ even at the same nominal rate.
Is a lower rate always the better deal? Usually, but also check fees, prepayment penalties, and term length, which can offset a lower headline rate.
What's a "real" interest rate? The real rate subtracts the inflation rate from the nominal rate, showing the actual growth in purchasing power.
Why can't the rate be solved with simple algebra like the payment can? The loan payment formula involves the rate raised to a power inside a fraction, which can't be isolated algebraically — solving for the rate requires numerical iteration instead.
What's the difference between APR and interest rate on a loan disclosure? The interest rate reflects only the cost of borrowing the principal, while APR wraps in certain additional fees, giving a more complete (and often slightly higher) cost figure.
How much does credit score typically affect the rate offered? The exact impact varies by lender and loan type, but the gap between top-tier and weak credit can span several percentage points, which compounds into a large difference in total interest over a loan's life.
Can this calculator find the rate for an investment instead of a loan? Yes — the same rate-solving logic applies whenever you know the starting amount, ending amount (or payment), and time period, whether it's a loan or a savings/investment goal.
A $10,000 loan repaid at $220/month over 5 years (60 payments) implies an annual interest rate of roughly 8.5% — useful for checking whether an advertised rate on a similar loan lines up with what you're actually being asked to pay.
Implied rate: The interest rate mathematically derived from a known payment, loan amount, and term.
Effective rate: The actual rate paid or earned, accounting for compounding and fees.
Why can't the interest rate be solved directly like other loan variables?
The loan payment formula involves the rate raised to a power in multiple places, so there's no simple algebraic rearrangement — it's typically solved by iterative approximation (trying rates until the payment matches).