HomeFinance › EMI Calculator

EMI Calculator

Computes the equated monthly instalment (EMI) of a home, car or personal loan from the loan amount, annual interest rate and tenure in months, with the total interest and total amount payable; identical to the standard amortizing-loan payment formula.

When to use

You want the EMI for a loan quoted with an annual rate and a tenure in months, as is customary in India and other markets that use the EMI term.

Do not use when: You need the year-by-year breakdown (use amortization-schedule), or a flat-rate loan where interest is charged on the original principal for the whole term (multiply principal × flat rate × years instead).

Formula

r = annual_rate_percent / 1200; n = tenure_months; EMI = loan_amount × r × (1 + r)^n / ((1 + r)^n − 1); loan_amount / n when r = 0

Reducing-balance (diminishing) interest with payments at the end of each month, the formula used by Indian banks and identical to the annuity payment in loan-payment. Processing fees and prepayment charges are not included.

Inputs

ParameterTypeUnitRequiredDescription
loan_amountnumberyesPrincipal borrowed. Range: > 0, ≤ 1000000000000
annual_rate_percentnumber%yesReducing-balance annual rate in percent; the monthly rate is this / 12. Range: ≥ 0, ≤ 100
tenure_monthsintegermonthsyesLoan tenure in months (20 years = 240). Range: ≥ 1, ≤ 480

Outputs

OutputTypeUnitDescription
eminumberEquated monthly instalment.
total_interestnumberemi × tenure_months − loan_amount.
total_paymentnumberemi × tenure_months.
interest_share_of_total_percentnumber%total_interest / total_payment × 100.

Example

10,00,000 at 8.5 % for 240 months: {"loan_amount":1000000,"annual_rate_percent":8.5,"tenure_months":240}{"emi":8678.23,"total_interest":1082775.76,"total_payment":2082775.76,"interest_share_of_total_percent":51.99}

5,00,000 at 10 % for 60 months: {"loan_amount":500000,"annual_rate_percent":10,"tenure_months":60}{"emi":10623.52,"total_interest":137411.34,"total_payment":637411.34}

GET https://tttkmbb.com/api/v1/calculate/emi?loan_amount=1000000&annual_rate_percent=8.5&tenure_months=240

Machine access

Sources

FAQ

Is EMI the same as a loan payment?

Yes. EMI is the Indian-English term for the level monthly payment of an amortizing loan; loan-payment gives the same number for the same inputs (with the term in years and/or months).

What is the difference between a reducing-balance and a flat rate?

A flat rate charges interest on the full original principal every year, so a 10 % flat rate costs roughly the same as an 18 % reducing-balance rate over 5 years. Enter the reducing-balance rate here.

Related calculators