Home Loan Part Payment Calculator ICICI
Home Loan Part Payment Calculator
Calculate the effect of making part payments on your home loan with ICICI.
Not calculated yet.
Loan Amount: ${formatCurrency(loanAmount)}
Interest Rate: ${(interestRate*100).toFixed(1)}%
Tenure: ${loanTenure / 12} Years
Part Payment: ${formatCurrency(partPayment)}
`; loanSteps += `Formulas:
EMI = (Loan Amount × Monthly Rate of Interest × (1 + Monthly Rate of Interest)^Tenure) ÷ ((1 + Monthly Rate of Interest)^Tenure – 1)
`; loanSteps += `Results:
New Loan Amount: ${formatCurrency(principalRemaining)}
New EMI: ${formatCurrency(emi.toFixed(2))}
`; loanSteps += `Tip: Making a part payment can reduce your EMI and the total interest paid over the loan tenure.`; if (document.getElementById(“calculationSteps”).style.display === “block”) { document.getElementById(“calculationSteps”).innerHTML = loanSteps; } } function resetLoan() { document.querySelectorAll(“#calculator input”).forEach(el => el.value = “”); loanSteps = “”; document.getElementById(“calculationSteps”).innerHTML = “
Not calculated yet.
“; } function toggleSteps() { const s = document.getElementById(“calculationSteps”); const a = document.getElementById(“toggleArrow”); if (s.style.display === “none” || s.style.display === “”) { s.style.display = “block”; a.style.transform = “rotate(180deg)”; s.innerHTML = loanSteps || “Not calculated yet.
“; } else { s.style.display = “none”; a.style.transform = “rotate(0deg)”; } } function formatCurrency(n) { return currencySymbol + n.toFixed(2) + ” ” + fixedCurrency; }This home loan part payment calculator helps you understand how part payments on your ICICI home loan can affect your principal and EMI.
Loan Payment Formula
EMI = (Loan Amount × Monthly Rate of Interest × (1 + Monthly Rate of Interest)^Tenure) ÷ ((1 + Monthly Rate of Interest)^Tenure – 1)
Example Calculation
₹5,00,000 loan, 7.5% interest, 20 years tenure → part payment ₹1,00,000 → New Loan Amount = ₹4,00,000, New EMI = ₹30,000.
Why It Matters
Making part payments helps in reducing your EMI and the total interest you pay over the course of the loan.
Smart Strategy
Consider making part payments whenever possible to reduce the financial burden of your loan.