Skip to content

Fix WA WFTC phase-out to use federal phase-out income (max of earned income, AGI)#8681

Open
DTrim99 wants to merge 1 commit into
PolicyEngine:mainfrom
DTrim99:wa-wftc-phaseout-income
Open

Fix WA WFTC phase-out to use federal phase-out income (max of earned income, AGI)#8681
DTrim99 wants to merge 1 commit into
PolicyEngine:mainfrom
DTrim99:wa-wftc-phaseout-income

Conversation

@DTrim99

@DTrim99 DTrim99 commented Jun 18, 2026

Copy link
Copy Markdown
Collaborator

Fixes #8680.

What

The Washington Working Families Tax Credit (WFTC) phase-out reduction was computed on earned income alone, but RCW 82.08.0206(3)(b) bases the reduction on the federal phase-out income — the federal EITC measure, i.e. the greater of earned income or AGI. The credit's eligibility ceiling and wa_working_families_tax_credit_maximum_qualifying_income already use max(earned income, AGI); this aligns the taper with them.

- excess = max_(0, earnings - phase_out_start)
+ excess = max_(0, higher_income - phase_out_start)   # higher_income = max(earnings, AGI)

Impact

Filers whose AGI exceeds earned income and lands in the phase-out band (unearned income — unemployment compensation, taxable pension, taxable Social Security — near the top of the eligibility range) were overpaid. Filers with earnings ≈ AGI, or income below the band, are unchanged.

Example (MFJ, 3 children, 2025)

Household earnings AGI before after
$40k wages + $16k unemployment comp $40,000 $56,000 $1,330 $866.57
$52k wages (earnings ≈ AGI) $52,000 $52,000 $1,330 $1,330

Tests

Added Case 6b to wa_working_families_tax_credit.yaml covering the $40k-wages + $16k-UI household (expected $866.57). Full WA WFTC suite (24 cases) passes.

Context

Surfaced by Daniel Feenberg (NBER TAXSIM) in PolicyEngine/policyengine-taxsim#986. The original household in that issue (earnings ≈ AGI, below the band) is not affected.

🤖 Generated with Claude Code

The Washington Working Families Tax Credit phase-out reduction was
computed on earned income alone, but RCW 82.08.0206(3)(b) bases it on
the federal phase-out income (the greater of earned income or AGI), the
same measure already used for the maximum-qualifying-income ceiling and
eligibility test. Filers with AGI above earned income in the phase-out
band (e.g. unemployment, taxable pension, taxable Social Security) were
overpaid.

Surfaced via PolicyEngine/policyengine-taxsim#986.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@codecov

codecov Bot commented Jun 18, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 100.00%. Comparing base (c6dac70) to head (2b50d56).
⚠️ Report is 21 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff            @@
##              main     #8681   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            5         1    -4     
  Lines           71        54   -17     
=========================================
- Hits            71        54   -17     
Flag Coverage Δ
unittests 100.00% <100.00%> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@DTrim99 DTrim99 requested a review from PavelMakarchuk June 18, 2026 15:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

WA Working Families Tax Credit phase-out uses earned income instead of federal phase-out income (max of earned income, AGI)

1 participant