Rbi Floating Rate Bond Calculator

.rbi-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; 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); } .rbi-calc-header { text-align: center; margin-bottom: 30px; } .rbi-calc-header h2 { color: #1a237e; margin-bottom: 10px; } .rbi-calc-row { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; } .rbi-calc-field { flex: 1; min-width: 250px; } .rbi-calc-field label { display: block; font-weight: 600; margin-bottom: 8px; color: #333; } .rbi-calc-field input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 16px; box-sizing: border-box; } .rbi-calc-btn { background-color: #1a237e; color: white; padding: 15px 30px; border: none; border-radius: 6px; cursor: pointer; font-size: 18px; font-weight: bold; width: 100%; transition: background-color 0.3s; } .rbi-calc-btn:hover { background-color: #0d47a1; } .rbi-results { margin-top: 30px; padding: 20px; background-color: #f8f9fa; border-radius: 8px; display: none; } .rbi-result-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #dee2e6; } .rbi-result-item:last-child { border-bottom: none; } .rbi-result-label { font-weight: 500; color: #444; } .rbi-result-value { font-weight: 700; color: #1a237e; font-size: 18px; } .rbi-article { margin-top: 40px; line-height: 1.6; color: #333; } .rbi-article h3 { color: #1a237e; border-left: 4px solid #1a237e; padding-left: 15px; margin-top: 25px; } .rbi-article ul { padding-left: 20px; } .info-note { font-size: 0.9em; color: #666; margin-top: 5px; }

RBI Floating Rate Savings Bond Calculator

Calculate your semi-annual interest income and total returns on RBI 7.15% (Floating) Bonds.

Minimum investment: ₹1,000
Current rate (NSC + 0.35%)
Fixed tenure for RBI FRB is 7 years.
Semi-Annual Interest Payout: ₹0.00
Annual Interest Income: ₹0.00
Total Interest (7 Years): ₹0.00
Maturity Value (Principal + Total Interest): ₹0.00

What are RBI Floating Rate Savings Bonds (FRSB)?

The RBI Floating Rate Savings Bonds 2020 (Taxable) are debt instruments issued by the Government of India. Unlike traditional Fixed Deposits or Fixed Rate Bonds, the interest rate on these bonds is not static; it is reset every six months on January 1st and July 1st.

How the Interest Rate is Determined

The interest rate is linked to the prevailing National Savings Certificate (NSC) rate. The formula is: NSC Rate + 0.35%. For example, if the NSC rate is 7.70%, the RBI Floating Bond rate becomes 8.05%.

Key Features of RBI Floating Bonds

  • Tenure: Fixed at 7 years.
  • Minimum Investment: ₹1,000 with no maximum limit.
  • Payout Frequency: Interest is paid out semi-annually. There is no cumulative option.
  • Safety: Sovereign guarantee as it is issued by the Government of India.
  • Taxation: Interest is fully taxable as per your income tax slab. TDS is applicable.

Example Calculation

If you invest ₹10,00,000 at a current rate of 8.05%:

  • Annual Interest: ₹80,500
  • Semi-Annual Payout: ₹40,250 (Paid on Jan 1 and July 1)
  • Total Interest over 7 Years: ₹5,63,500 (Assuming the rate remains constant)

Note: Since the rate is floating, actual returns will vary based on future NSC rate adjustments.

Who Should Invest?

These bonds are ideal for investors seeking safety of capital and a regular income stream that adjusts with inflation/market rates. It is particularly popular among senior citizens looking for a higher yield than traditional savings accounts with zero credit risk.

function calculateRBIBond() { var principal = parseFloat(document.getElementById('investmentAmount').value); var rate = parseFloat(document.getElementById('interestRate').value); var tenure = parseFloat(document.getElementById('bondTenure').value); if (isNaN(principal) || principal <= 0) { alert("Please enter a valid investment amount."); return; } if (isNaN(rate) || rate <= 0) { alert("Please enter a valid interest rate."); return; } // Semi-annual calculation (Rate is p.a., so divide by 2 for 6 months) var annualInterest = principal * (rate / 100); var semiAnnualInterest = annualInterest / 2; var totalInterest = annualInterest * tenure; var maturityValue = principal + totalInterest; // Formatting for Indian Currency var formatter = new Intl.NumberFormat('en-IN', { style: 'currency', currency: 'INR', maximumFractionDigits: 0 }); document.getElementById('semiAnnualValue').innerText = formatter.format(semiAnnualInterest); document.getElementById('annualValue').innerText = formatter.format(annualInterest); document.getElementById('totalInterestValue').innerText = formatter.format(totalInterest); document.getElementById('maturityValue').innerText = formatter.format(maturityValue); document.getElementById('rbiResults').style.display = 'block'; }

Leave a Comment