IndusInd Bank offers highly competitive fixed deposit rates specifically tailored for senior citizens (individuals aged 60 and above). Typically, senior citizens receive an additional interest premium of 0.50% to 0.75% over the standard public rates. This makes IndusInd Bank a preferred choice for retirees looking for secure and high-yield investment options.
How the Maturity is Calculated
For most tenures exceeding 6 months, IndusInd Bank calculates interest on a quarterly compounding basis. The formula used is:
A = P (1 + r/n)^(n*t)
A: Maturity Amount
P: Principal Amount
r: Annual interest rate (decimal)
n: Number of compounding periods per year
t: Total tenure in years
Indicative Interest Rates for Senior Citizens
Tenure
Senior Citizen Rate (p.a.)*
1 Year to < 1 Year 6 Months
8.25%
1 Year 6 Months to 2 Years
8.00%
2 Years to 3 Years
7.75%
Above 5 Years
7.50%
*Rates are subject to change based on bank policies and RBI guidelines.
Example Calculation
If a senior citizen deposits ₹5,00,000 for a tenure of 2 years at an interest rate of 8.25% per annum with quarterly compounding:
Principal: ₹5,00,000
Interest Earned: ₹88,776
Maturity Value: ₹5,88,776
function calculateIndusIndFD() {
var p = parseFloat(document.getElementById('depositAmount').value);
var r = parseFloat(document.getElementById('seniorRate').value);
var years = parseFloat(document.getElementById('tenureYears').value) || 0;
var months = parseFloat(document.getElementById('tenureMonths').value) || 0;
var n = parseInt(document.getElementById('compoundingFreq').value);
if (isNaN(p) || isNaN(r) || p <= 0 || r <= 0) {
alert("Please enter valid positive numbers for deposit and rate.");
return;
}
// Total time in years
var t = years + (months / 12);
if (t <= 0) {
alert("Please enter a valid tenure.");
return;
}
var annualRateDecimal = r / 100;
var maturityValue = 0;
// Standard FD Compound Interest Formula: A = P(1 + r/n)^(nt)
maturityValue = p * Math.pow((1 + (annualRateDecimal / n)), (n * t));
var totalInterest = maturityValue – p;
// Display results
document.getElementById('resPrincipal').innerText = "₹" + p.toLocaleString('en-IN', {maximumFractionDigits: 0});
document.getElementById('resInterest').innerText = "₹" + totalInterest.toLocaleString('en-IN', {maximumFractionDigits: 0});
document.getElementById('resMaturity').innerText = "₹" + maturityValue.toLocaleString('en-IN', {maximumFractionDigits: 0});
document.getElementById('fdResultBox').style.display = 'block';
}