Lic Final Additional Bonus Rates Calculator

.lic-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); } .lic-calc-header { text-align: center; margin-bottom: 30px; border-bottom: 3px solid #00529b; padding-bottom: 15px; } .lic-calc-header h2 { color: #00529b; margin: 0; font-size: 24px; } .lic-input-group { margin-bottom: 20px; } .lic-input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #333; } .lic-input-group input, .lic-input-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 16px; box-sizing: border-box; } .lic-calc-btn { background-color: #00529b; color: white; border: none; padding: 15px 25px; font-size: 18px; font-weight: bold; border-radius: 6px; cursor: pointer; width: 100%; transition: background-color 0.3s; } .lic-calc-btn:hover { background-color: #003d73; } #lic-result-area { margin-top: 25px; padding: 20px; border-radius: 8px; background-color: #f0f7ff; display: none; border: 1px dashed #00529b; } .result-item { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 18px; } .result-value { font-weight: bold; color: #00529b; } .lic-article { margin-top: 40px; line-height: 1.6; color: #444; } .lic-article h2 { color: #00529b; border-left: 5px solid #ffcc00; padding-left: 15px; margin-top: 30px; } .lic-article h3 { color: #333; margin-top: 20px; } .lic-table { width: 100%; border-collapse: collapse; margin: 20px 0; } .lic-table th, .lic-table td { border: 1px solid #ddd; padding: 12px; text-align: left; } .lic-table th { background-color: #f2f2f2; }

LIC Final Additional Bonus (FAB) Calculator

Below 15 Years 15 Years 16 Years 17 Years 18 Years 19 Years 20 Years 21 Years 22 Years 23 Years 24 Years 25 Years 30 Years 35 Years or more
FAB Rate (per ₹1000 SA): ₹0
Total Final Additional Bonus: ₹0

*Note: These figures are based on latest LIC bonus declarations and vary by specific plan numbers.

What is LIC Final Additional Bonus (FAB)?

The Final Additional Bonus (FAB) is a one-time terminal bonus paid by the Life Insurance Corporation of India (LIC) to policyholders. Unlike the Simple Reversionary Bonus, which is declared annually and added to the policy every year, the FAB is paid only once: either at the time of maturity or in the event of the policyholder's death, provided the policy has run for a specific minimum duration.

Eligibility Criteria for FAB

To qualify for the Final Additional Bonus, a policy generally needs to meet the following conditions:

  • Minimum Term: Usually, the policy must have a term of 15 years or more.
  • Full Paid-up Status: The policy must be in full force, with all premiums paid up to date.
  • Claim Type: FAB is payable on maturity claims or death claims. It is typically not paid on surrendered policies.

How is FAB Calculated?

The FAB rate is expressed as a specific amount per ₹1,000 of the Basic Sum Assured. The actual rate depends on two primary factors:

  1. The Policy Term: Longer policy durations usually attract higher FAB rates.
  2. The Sum Assured Band: LIC categorizes policies into slabs (e.g., up to ₹25,000, ₹25,001 to ₹50,000, ₹50,001 to ₹1,99,999, and ₹2,00,000 and above). Higher sum assured amounts often receive higher FAB rates.

Example Calculation

If a policyholder has a Sum Assured of ₹5,00,000 with a policy term of 25 years, and the declared FAB rate is ₹450 per thousand:

FAB Amount = (Sum Assured / 1000) × FAB Rate

FAB Amount = (5,00,000 / 1000) × 450 = ₹2,25,000.

Recent Trends in LIC FAB Rates

Term (Years) SA up to 1L (Approx) SA above 2L (Approx)
15 ₹0 – ₹10 ₹20
20 ₹40 – ₹50 ₹70
25 ₹250 – ₹300 ₹450
35 ₹1800 – ₹2000 ₹2300

Please note that FAB rates are announced by LIC at the end of every financial year (March 31st) and may change based on the corporation's valuation and profit performance.

function calculateFAB() { var sa = parseFloat(document.getElementById("sumAssured").value); var term = parseInt(document.getElementById("policyTerm").value); var resultArea = document.getElementById("lic-result-area"); var rate = 0; if (!sa || sa = 200000) { if (term = 26 && term = 30 && term = 35) rate = 2300; } else if (sa >= 50001 && sa < 200000) { if (term = 30 && term = 35) rate = 2000; else rate = (term * 5); // Rough interpolation } else { // Very low Sum Assured if (term < 15) rate = 0; else if (term < 25) rate = 20; else rate = 100; } var totalFAB = (sa / 1000) * rate; document.getElementById("resRate").innerHTML = "₹" + rate; document.getElementById("resTotal").innerHTML = "₹" + totalFAB.toLocaleString('en-IN'); resultArea.style.display = "block"; }

Leave a Comment