attachment
attachment
attachment
attachment
attachment
attachment

How much amount still needs to pay to clear this loan …what should be my emi to cover this loan in 80 months …at 10.75% per annum

Running Command

python3 -c " P = 1378622.80 annual_rate = 10.75 r = annual_rate/12/100 n = 80 emi = P*r*(1+r)**n/((1+r)**n - 1) total_payment = emi*n total_interest = total_payment - P print('r=',r) print('EMI=',round(emi,2)) print('Total payment over 80 months=',round(total_payment,2)) print('Total interest=',round(total_interest,2)) "

Based on the amortization schedule from Central Bank (account 4006607894, run date 26/08/2026):

Outstanding amount to clear the loan

Outstanding Balance: ₹13,78,622.80 — this is the amount still owed as of the run date shown on the statement.
(Context: Total principal disbursed across the loan tenure was ₹30,38,377, total interest ₹21,58,174, total repayment ₹51,96,551, and the current EMI is ₹38,210/month.)

EMI required to clear ₹13,78,622.80 in 80 months at 10.75% p.a.

Using the standard EMI formula:
EMI = P × r × (1+r)ⁿ / [(1+r)ⁿ − 1]
Where:
  • P = ₹13,78,622.80 (outstanding balance)
  • r = 10.75% / 12 = 0.895833% per month
  • n = 80 months
EMI ≈ ₹24,213 per month
Summary over the 80-month tenure:
  • Total amount paid: ≈ ₹19,37,046
  • Total interest paid: ≈ ₹5,58,424
  • Principal: ₹13,78,623
So if you want to close this loan in exactly 80 months at 10.75% p.a., you'd need to pay roughly ₹24,213/month, which is about ₹13,997 less than your current EMI of ₹38,210 — meaning stretching to 80 months lowers your monthly outflow but adds more interest overall (₹5.58 lakh over that period) compared to continuing at the current higher EMI, which would close the loan faster and with less total interest.
If you'd like, I can also compute how many months remain at your current EMI of ₹38,210, or compare total interest cost between the two scenarios.

How many months to clear at current EMI of ₹38,210?

Running Command

python3 -c " import math P = 1378622.80 annual_rate = 10.75 r = annual_rate/12/100 emi = 38210.0 # n = ln(EMI/(EMI - P*r)) / ln(1+r) n = math.log(emi/(emi - P*r)) / math.log(1+r) print('r=', r) print('n (months) =', n) print('n rounded up =', math.ceil(n)) # verify with amortization simulation bal = P months = 0 total_interest = 0 while bal > 0: interest = bal * r principal = emi - interest if principal >= bal: # last payment last_payment = bal + interest total_interest += interest bal = 0 months += 1 break bal -= principal total_interest += interest months += 1 print('simulated months =', months) print('total interest (simulated) =', round(total_interest,2)) print('last payment amount =', round(last_payment,2)) "

At your current EMI of ₹38,210/month, on the outstanding balance of ₹13,78,622.80 at 10.75% p.a.:

It will take 44 months to fully clear the loan

Details:
  • Months 1-43: regular EMI of ₹38,210
  • Month 44 (final payment): ₹29,647.66 (smaller, since the balance clears before a full EMI is needed)
  • Total interest paid over this period: ≈ ₹2,94,055
  • Total amount paid: ≈ ₹13,78,622.80 (principal) + ₹2,94,055 (interest) ≈ ₹16,72,678
For comparison with the earlier 80-month scenario:
ScenarioEMITenureTotal Interest
Current EMI₹38,21044 months (~3.7 yrs)≈ ₹2,94,055
Stretched to 80 months₹24,21380 months (~6.7 yrs)≈ ₹5,58,424
Sticking with your current EMI of ₹38,210 clears the loan almost 3 years sooner and saves you roughly ₹2.64 lakh in interest compared to stretching repayment to 80 months.
This is a shared conversation. Sign in to Orris to start your own chat.