Calculating Fers Retirement

FERS Retirement Annuity Calculator

Estimate your Federal Employees Retirement System monthly benefit.

Your highest average basic pay over 3 consecutive years.

Estimated Benefits

Annual Gross Annuity:

$0.00

Monthly Gross Annuity:

$0.00

Understanding Your FERS Retirement Calculation

Calculating your Federal Employees Retirement System (FERS) pension is a critical step for federal employees planning their financial future. Unlike the older CSRS system, FERS is a three-tiered retirement plan consisting of the Basic Benefit Plan (pension), Social Security, and the Thrift Savings Plan (TSP).

The FERS Pension Formula

The core calculation for your annual gross annuity is based on three primary factors:

  1. High-3 Average Salary: This is the average of your highest basic pay over any three consecutive years of service. It includes locality pay but generally excludes overtime and bonuses.
  2. Years of Creditable Service: The total number of years and months you have worked for the federal government. Unused sick leave can often be added to this total.
  3. The Multiplier: This is the percentage used based on your age and years of service at retirement.

Which Multiplier Applies to You?

For most federal employees under FERS, the multiplier is determined as follows:

  • 1.0% Multiplier: Applied if you retire under age 62 OR if you are 62 or older with less than 20 years of service.
  • 1.1% Multiplier: Applied if you are age 62 or older at the time of separation AND have at least 20 years of creditable service.
  • Special Provisions: Law Enforcement Officers, Firefighters, and Air Traffic Controllers typically receive 1.7% for their first 20 years of service and 1.0% for every year thereafter.

Calculation Example

If an employee retires at age 63 with 25 years of service and a High-3 average of $100,000:

$100,000 (High-3) x 25 (Years) x 1.1% (Multiplier) = $27,500 per year.
Monthly benefit = $2,291.67

Important Considerations

This calculator provides a gross estimate. Your actual take-home "net" pension will be lower after deductions for:

  • Survivor Benefit Election (typically 10% reduction for full spouse coverage).
  • Federal and State Income Taxes.
  • Federal Employees Health Benefits (FEHB) premiums.
  • Federal Employees' Group Life Insurance (FEGLI) premiums.
function calculateFERS() { var high3 = parseFloat(document.getElementById('high3').value); var years = parseFloat(document.getElementById('years').value) || 0; var months = parseFloat(document.getElementById('months').value) || 0; var age = parseFloat(document.getElementById('age').value) || 0; var isSpecial = document.getElementById('specialProvision').checked; if (!high3 || high3 <= 0) { alert("Please enter a valid High-3 Average Salary."); return; } var totalYears = years + (months / 12); var annualAnnuity = 0; var multiplierText = ""; if (isSpecial) { // Special Provision: 1.7% for first 20 years, 1% after if (totalYears = 62 && totalYears >= 20) { multiplier = 0.011; multiplierText = "You qualify for the 1.1% multiplier because you are 62+ with 20+ years of service."; } else { multiplier = 0.01; multiplierText = "A 1.0% multiplier was applied based on your age and service years."; } annualAnnuity = high3 * totalYears * multiplier; } var monthlyAnnuity = annualAnnuity / 12; // Format results document.getElementById('annual-pension').innerText = "$" + annualAnnuity.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('monthly-pension').innerText = "$" + monthlyAnnuity.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('multiplier-note').innerText = multiplierText; // Show results box document.getElementById('fers-result-box').style.display = "block"; // Smooth scroll to result document.getElementById('fers-result-box').scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment