How to Calculate Loan EMI
Dev Nexus4 min read
A step-by-step guide to calculating your loan EMI using the standard formula, with a worked example you can follow.
Before you take a loan, one number decides whether you can afford it: the EMI, or Equated Monthly Installment. It is the fixed amount you will repay every month until the loan is cleared.
This guide shows you exactly how EMI is calculated - the formula, what each part means, and a full worked example - so you can check any lender's quote and compare loans with confidence.
The Problem
Lenders quote an interest rate and a tenure, but the figure that actually hits your budget is the monthly EMI. Working it out by hand is awkward: the formula uses a monthly rate and an exponent, and it is easy to plug in the annual rate by mistake or forget to convert years into months.
It gets worse when you want to compare options. Change the tenure, the rate, or the down payment and you have to redo the whole calculation. Most people give up and trust whatever the salesperson says - which is exactly when a loan that looks cheap per month turns out to be expensive overall.
The Solution
EMI follows one standard reducing-balance formula, and once you understand it you can verify any quote. The formula is EMI = P * r * (1 + r)^n / ((1 + r)^n - 1), where P is the principal, r is the monthly interest rate, and n is the number of monthly installments.
The key detail is r: it is the monthly rate, so you take the annual rate, divide by undefined, then divide by undefined to get a decimal. A undefined% annual rate becomes r = 0.01. Get that right and the rest is arithmetic.
Rather than punch this into a calculator by hand every time, the Loan / EMI Calculator does it instantly and privately in your browser - enter principal, rate, and tenure, and it returns the EMI, total interest, and total payable. Nothing you type is uploaded.
Step-by-Step Guide
- 1
Gather your three inputs
You need the principal (the amount you actually borrow, after any down payment), the annual interest rate the lender quotes, and the tenure - the repayment period. Convert the tenure into months, so undefined years becomes undefined.
- 2
Convert the annual rate to a monthly rate
Divide the annual rate by undefined to get the monthly percentage, then by undefined to get a decimal. For a undefined% annual rate:
10 / 12 = 0.8333%, which isr = 0.008333. This is the single most common step to get wrong. - 3
Apply the EMI formula
Plug your numbers into
EMI = P * r * (1 + r)^n / ((1 + r)^n - 1). Work out(1 + r)^nfirst, then the numerator and denominator. Take your time with the exponent - a small error here changes the whole result. - 4
Work through the example
Borrow undefined,
P = 500000at undefined% for undefined years:P = 500000,r = 0.008333,n = 60. The formula gives an EMI of about undefined,undefined per month. Over undefined months that is roughly undefined,undefined repaid, so about undefined,undefined is interest. - 5
Check the total, not just the EMI
Multiply the EMI by the number of months to get the total payable, then subtract the principal to see the total interest. This is the number that reveals the true cost of stretching a loan over a longer tenure.
Common Mistakes
Using the annual rate as the monthly rate
The formula needs the monthly rate
r, not the annual one. Forgetting to divide by undefined inflates the EMI enormously. Always convert the annual percentage to a monthly decimal first.Mixing years and months
The tenure
nmust be in months and must match the monthly rate. If you enter years fornwhile using a monthlyr, the result is meaningless. Convert everything to months before you start.Judging the loan by the EMI alone
A longer tenure lowers the monthly EMI but raises the total interest, sometimes dramatically. Always calculate the total payable so you can see what the lower installment really costs you.
Forgetting fees and taxes
The formula gives the pure principal-and-interest EMI. Processing fees, insurance, and taxes are extra, so your real monthly outgo can be higher than the calculated figure.
Frequently Asked Questions
What is the formula to calculate EMI?
EMI = P * r * (1 + r)^n / ((1 + r)^n - 1), where P is the principal, r is the monthly interest rate as a decimal, and n is the number of monthly installments.
How do I convert the annual interest rate for the formula?
Divide the annual rate by 12 to get the monthly percentage, then by 100 to get a decimal. For example, 12% annual becomes 1% per month, or r = 0.01.
Can I calculate EMI without the formula?
Yes. Use the Loan / EMI Calculator - enter the principal, annual rate, and tenure, and it returns the EMI, total interest, and total payable instantly, with nothing uploaded.
Why does most of my early EMI go to interest?
Interest is charged on the outstanding balance, which is highest at the start. So early EMIs are mostly interest and later ones are mostly principal, even though the EMI amount stays fixed.
How do I find the total interest I will pay?
Multiply the EMI by the number of months to get the total payable, then subtract the original principal. What remains is the total interest over the life of the loan.
Try the Tool
Loan / EMI
Enter principal, rate, and tenure to get your EMI, total interest, and total payable instantly - all in your browser.
Related Tools
Related Articles
How EMI Works: Principal, Interest & Tenure
A plain-English explanation of how each EMI splits into principal and interest across the loan tenure.
Read articleAre UUIDs Really Unique?
In practice UUIDs never collide - here is the math behind why, and the one thing people get wrong: a UUID is an identifier, not a secret.
Read articleencodeURI vs encodeURIComponent Explained
The clear difference between encodeURI and encodeURIComponent, with examples showing which one to use for a value versus a whole URL.
Read article