India Post Fd Rates Calculator

India Post Time Deposit (FD) Calculator

1 Year 2 Years 3 Years 5 Years

Applicable Interest Rate: 6.9% p.a.

(Compounded Quarterly, Payable Annually)

Total Interest Earned ₹0
Maturity Amount ₹0
function updateRateDisplay() { var tenure = document.getElementById("tenureSelection").value; var rateSpan = document.getElementById("currentRateDisplay"); var rate = 0; if (tenure == "1") rate = 6.9; else if (tenure == "2") rate = 7.0; else if (tenure == "3") rate = 7.1; else if (tenure == "5") rate = 7.5; rateSpan.innerText = rate + "%"; } function calculatePostOfficeFD() { var principal = parseFloat(document.getElementById("depositAmount").value); var tenure = parseInt(document.getElementById("tenureSelection").value); var rate = 0; if (tenure == 1) rate = 6.9; else if (tenure == 2) rate = 7.0; else if (tenure == 3) rate = 7.1; else if (tenure == 5) rate = 7.5; if (isNaN(principal) || principal <= 0) { alert("Please enter a valid deposit amount."); return; } // India Post FD (Time Deposit) interest is compounded quarterly // Formula: A = P * (1 + r/n)^(n*t) // n = 4 (quarterly compounding) var n = 4; var annualRateDecimal = rate / 100; var maturityAmount = principal * Math.pow((1 + (annualRateDecimal / n)), (n * tenure)); var totalInterest = maturityAmount – principal; document.getElementById("totalInterestResult").innerText = "₹" + totalInterest.toLocaleString('en-IN', {maximumFractionDigits: 0}); document.getElementById("maturityAmountResult").innerText = "₹" + maturityAmount.toLocaleString('en-IN', {maximumFractionDigits: 0}); document.getElementById("fdResultSection").style.display = "block"; }

Understanding India Post Time Deposit (Post Office FD)

The Post Office Time Deposit Account (POTD), commonly referred to as a Post Office Fixed Deposit, is one of the most secure savings instruments in India. Backed by the Government of India, it offers guaranteed returns and is an ideal choice for risk-averse investors.

How India Post FD Interest is Calculated

Unlike many bank FDs that use simple interest or monthly compounding, India Post FDs use quarterly compounding. However, the interest is technically payable annually. The formula used by the calculator above is:

A = P [1 + (r/4)]^(4n)
  • P: Principal Deposit Amount
  • r: Annual Rate of Interest (as a decimal)
  • n: Tenure in Years

Current Interest Rates (Example Data)

Tenure Interest Rate (p.a.)
1 Year Time Deposit 6.9%
2 Year Time Deposit 7.0%
3 Year Time Deposit 7.1%
5 Year Time Deposit 7.5%

Key Features of Post Office FD

  1. Minimum Deposit: You can start a Time Deposit with as little as ₹1000. There is no maximum limit.
  2. Tax Benefits: Investments made in the 5-year Time Deposit qualify for tax deduction under Section 80C of the Income Tax Act, 1961.
  3. Guaranteed Returns: Since it is a government-backed scheme, your capital and interest are 100% safe.
  4. Transferability: Accounts can be easily transferred from one post office to another across India.
  5. Joint Accounts: Can be opened by a single adult, up to three adults jointly, or a guardian on behalf of a minor.

Calculation Example

If you invest ₹2,00,000 for a tenure of 5 years at an interest rate of 7.5%:

  • Principal: ₹2,00,000
  • Compounding: Quarterly (4 times a year)
  • Total Interest: ₹89,990 (approx.)
  • Maturity Value: ₹2,89,990 (approx.)

Note: Actual returns may vary slightly due to specific rounding rules applied by India Post and changes in quarterly interest rate notifications by the Ministry of Finance.

Leave a Comment