Skip to content

Pennsylvania PSERS Class T-G

This page documents how FinZot models the Pennsylvania PSERS Class T-G defined benefit pension plan.

Employee contributions are the portion of salary that the employee pays into the pension fund.

FieldValue
Contribution Rate5.5% of salary
Tax TreatmentPre-tax (reduces taxable income)

Vesting determines when an employee has earned the right to receive pension benefits. The following formula must evaluate to TRUE for the employee to be vested:

OR(service_credits >= 10, AND(separation_age >= 67, service_credits >= 3))

Retirement eligibility determines when an employee can begin receiving pension payouts. The following formula must evaluate to TRUE:

OR(service_credits >= 10, AND(commencement_age >= 67, service_credits >= 3))

Formula Variables:

  • service_credits: Years of credited service
  • commencement_age: Age when pension payments commence

The annual pension benefit is calculated as:

Annual Benefit = Final Compensation × Benefit Factor × Service Credits

Final compensation is the salary figure used in the benefit calculation, typically an average of the employee’s highest-earning years.

FieldValue
MethodHighest Any Years
Years Averaged5

The benefit factor is a percentage multiplier that typically varies based on retirement age. Higher ages generally yield higher factors.

0.0125 *(CASE
WHEN commencement_age >= 67 AND service_credits >= 3 THEN 1.0
WHEN service_credits >= 35 AND(commencement_age + service_credits) >= 97 THEN 1.0
WHEN commencement_age >= 57 AND service_credits >= 25 THEN 1 -(67 - commencement_age) * 0.03
WHEN service_credits >= 10 THEN 0.93 ^(67 - commencement_age)
ELSE 0.0
END)

Formula Variables:

  • commencement_age: Age when pension payments commence
  • service_credits: Years of credited service

The COLA formula determines how pension benefits grow over time after retirement to keep pace with inflation.

initial_pension_benefit * 1.0

Formula Variables:

  • initial_pension_benefit: The annual benefit amount at retirement
  • years_since_retirement: Number of years since retirement began

Pension payouts from this plan are taxable as ordinary income.


Note: FinZot’s pension estimates are for planning purposes only and may not reflect all plan provisions. For official benefit estimates, contact your plan administrator.