Nsc Rate Calculator

.nsc-calculator-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 600px; margin: 20px auto; padding: 25px; border: 1px solid #e0e0e0; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 20px rgba(0,0,0,0.08); } .nsc-calculator-container h2 { color: #1a237e; text-align: center; margin-top: 0; margin-bottom: 25px; font-size: 24px; } .nsc-input-group { margin-bottom: 20px; } .nsc-input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #333; } .nsc-input-group input { width: 100%; padding: 12px; border: 2px solid #ddd; border-radius: 6px; font-size: 16px; box-sizing: border-box; transition: border-color 0.3s; } .nsc-input-group input:focus { border-color: #1a237e; outline: none; } .nsc-btn { width: 100%; padding: 15px; background-color: #1a237e; color: white; border: none; border-radius: 6px; font-size: 18px; font-weight: 600; cursor: pointer; transition: background-color 0.3s; } .nsc-btn:hover { background-color: #283593; } .nsc-results { margin-top: 25px; padding: 20px; background-color: #f5f5f5; border-radius: 8px; display: none; } .nsc-result-item { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 16px; } .nsc-result-item span:last-child { font-weight: 700; color: #1a237e; } .nsc-maturity-total { border-top: 2px solid #ddd; padding-top: 10px; margin-top: 10px; font-size: 18px !important; } .nsc-info-section { margin-top: 40px; color: #444; line-height: 1.6; } .nsc-info-section h3 { color: #1a237e; border-bottom: 2px solid #eee; padding-bottom: 10px; }

National Savings Certificate (NSC) Calculator

Initial Investment: ₹ 0
Total Interest Earned: ₹ 0
Total Maturity Value: ₹ 0

Understanding the National Savings Certificate (NSC)

The National Savings Certificate (NSC) is a fixed-income post office savings scheme backed by the Government of India. It is highly favored by conservative investors seeking safe returns and tax benefits under Section 80C of the Income Tax Act.

How NSC Interest is Calculated

The NSC interest rate is set by the government quarterly. Unlike standard savings accounts where interest might be paid out, NSC interest is compounded annually but remains reinvested within the scheme. This means you do not receive periodic payouts; instead, the accumulated interest is paid out alongside the principal at the end of the 5-year lock-in period.

Key Features of NSC VIII Issue

  • Fixed Tenure: The current NSC (VIII Issue) comes with a fixed maturity period of 5 years.
  • Minimum Investment: You can start investing with as little as ₹1,000. There is no maximum limit on the investment amount.
  • Compounding Logic: Interest is compounded yearly. The formula used is A = P(1 + r/100)^t, where A is the maturity amount, P is the principal, r is the annual interest rate, and t is the time in years.
  • Safety: Being a government-backed scheme, there is zero risk of capital loss.

Example Calculation

If you invest ₹1,00,000 at an interest rate of 7.7% per annum for 5 years:

  • Year 1 Interest: ₹7,700 (Principal for Year 2 becomes ₹1,07,700)
  • Year 2 Interest: ₹8,293 (Principal for Year 3 becomes ₹1,15,993)
  • Year 3 Interest: ₹8,931
  • Year 4 Interest: ₹9,619
  • Year 5 Interest: ₹10,360
  • Total Maturity Value: Approx. ₹1,44,903

Tax Implications

The principal amount invested (up to ₹1.5 lakh) qualifies for tax deduction under Section 80C. Furthermore, the interest earned each year is considered "reinvested" and is also eligible for tax deduction under 80C in the first 4 years. However, the interest earned in the 5th (final) year is taxable as per the investor's income tax slab because it is not reinvested.

function calculateNSC() { var p = parseFloat(document.getElementById('principalAmount').value); var r = parseFloat(document.getElementById('annualRate').value); var t = parseFloat(document.getElementById('nscTenure').value); if (isNaN(p) || p <= 0) { alert("Please enter a valid investment amount."); return; } if (isNaN(r) || r <= 0) { alert("Please enter a valid interest rate."); return; } // NSC Formula: Amount = P * (1 + r/100)^t (Compounded Annually) var maturityValue = p * Math.pow((1 + (r / 100)), t); var totalInterest = maturityValue – p; // Formatting numbers to Indian Currency Format var formatter = new Intl.NumberFormat('en-IN', { style: 'currency', currency: 'INR', maximumFractionDigits: 0 }); document.getElementById('resPrincipal').innerText = formatter.format(p); document.getElementById('resInterest').innerText = formatter.format(totalInterest); document.getElementById('resMaturity').innerText = formatter.format(maturityValue); document.getElementById('nscResultBox').style.display = 'block'; }

Leave a Comment