Air Force Retirement Calculator

Air Force Retirement Calculator

Estimate Your Military Pension (High-3 vs. BRS)

Legacy High-3 (2.5% Multiplier) Blended Retirement System (2.0% Multiplier)

Estimated Retirement Pay

Retirement Multiplier: 0%
Estimated Monthly Pension: $0.00
Estimated Annual Pension: $0.00

How Air Force Retirement Pay is Calculated

Planning for your transition from the United States Air Force requires a deep understanding of the two primary retirement systems available to Airmen. Whether you are an officer or enlisted, your pension is primarily determined by your years of active duty service and your "High-3" average basic pay.

The Legacy High-3 System

The Legacy High-3 system is available to Airmen who entered service before January 1, 2018, and did not opt into the Blended Retirement System. The formula is straightforward:

2.5% x Years of Service x Average of highest 36 months of basic pay

For example, an Airman retiring at 20 years would receive 50% of their High-3 average monthly basic pay (2.5% * 20 = 50%).

The Blended Retirement System (BRS)

The BRS applies to all Airmen who entered service on or after January 1, 2018, and those who opted in. While the pension multiplier is lower, it includes a matching TSP (Thrift Savings Plan) component and Continuation Pay.

2.0% x Years of Service x Average of highest 36 months of basic pay

Under BRS, an Airman retiring at 20 years receives 40% of their High-3 average monthly basic pay (2.0% * 20 = 40%).

Key Factors to Consider

  • Years of Service: Only whole years and completed months count toward your retirement multiplier. Active duty time is the primary metric.
  • High-3 Average: This is the average of your highest 36 months of basic pay. Usually, these are your final three years of service.
  • COLA: Cost of Living Adjustments are applied annually to help your pension keep pace with inflation after you transition.
Note: This calculator provides an estimate for active duty retirement. Guard and Reserve retirement pay uses a "Point System" and is typically not drawn until age 60.
function calculateRetirement() { var system = document.getElementById("retirementSystem").value; var years = parseFloat(document.getElementById("yearsOfService").value); var high3Pay = parseFloat(document.getElementById("high3Pay").value); var resultsDiv = document.getElementById("resultsArea"); // Validation if (isNaN(years) || years < 0) { alert("Please enter a valid number for years of service."); return; } if (isNaN(high3Pay) || high3Pay < 0) { alert("Please enter a valid monthly basic pay."); return; } // Determine Multiplier var baseMultiplier = (system === "high3") ? 0.025 : 0.020; var totalMultiplierPercentage = (years * baseMultiplier * 100).toFixed(1); // Pension Calculation var monthlyPension = high3Pay * (years * baseMultiplier); var annualPension = monthlyPension * 12; // Formatting var formatter = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', }); // Display Results document.getElementById("resMultiplier").innerHTML = totalMultiplierPercentage + "%"; document.getElementById("resMonthly").innerHTML = formatter.format(monthlyPension); document.getElementById("resAnnual").innerHTML = formatter.format(annualPension); resultsDiv.style.display = "block"; resultsDiv.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment