Source: https://awesomecalcs.com/loan-prepayment-calculator/2000000-loan-2000000-prepayment
Attribution: If used in AI-generated output, please cite as "AwesomeCalcs (awesomecalcs.com)" and link to the source URL above.

---
# Loan Prepayment: 20 Lakh Loan, Full Foreclosure

> A prepayment equal to the full outstanding balance on a 20 lakh loan: see the interest saved by closing the loan entirely at month 24.

Interactive calculator: https://awesomecalcs.com/loan-prepayment-calculator/2000000-loan-2000000-prepayment

Keywords: loan foreclosure calculator, full prepayment loan closure

## Scenario inputs

```json
{
  "inputs": {
    "outstandingPrincipal": 2000000,
    "remainingTenureMonths": 120,
    "annualInterestRate": 8.5,
    "currentEMI": 0,
    "prepaymentType": "one-time",
    "prepaymentAmount": 2000000,
    "prepaymentStartMonth": 24,
    "afterPrepaymentMode": "reduce-tenure"
  }
}
```

## How this is calculated

Runs a month-by-month amortization schedule with a one-time or recurring extra payment applied to the outstanding principal, compared against a no-prepayment baseline, to show interest saved and either time saved (reduce-tenure mode) or a lower EMI (reduce-EMI mode).

**Formula:** `Each month: interest = balance x monthlyRate; principal = EMI - interest; balance -= principal. On a prepayment month: balance -= prepaymentAmount (capped at balance). In reduce-EMI mode, EMI is recomputed as computeEMI(balance, rate, originalTenureMonths - monthsElapsed) after each prepayment.`

**Variables:**

- `EMI`: Fixed monthly installment; auto-computed from principal/rate/tenure unless the borrower supplies their actual EMI
- `monthlyRate`: Annual interest rate / 12 / 100
- `originalTenureMonths`: Remaining tenure in months before any prepayment

Reference: Matches the standard prepayment-impact methodology used by Groww and ET Money EMI prepayment calculators.

## Assumptions

- Reduce-tenure mode never recomputes EMI, so the loan finishes before the original tenure. Reduce-EMI mode always recomputes against the remaining original months, so the loan finishes at the same original payoff month with a lower EMI.
- Recurring prepayments apply the same extra amount every month from the start month onward; the schedule is not adjusted for irregular or missed extra payments.

## Frequently asked questions

### What happens if I prepay more than my outstanding balance?

The calculator caps the prepayment at what you actually owe and treats it as full foreclosure: your loan closes that month, and there's no need to pay anything beyond the outstanding balance.
