Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a new variable for adjusted gross income for charitable deductions to align with IRC definition (§ 170(b)(1)(H)) #5415

Open
MaxGhenis opened this issue Dec 21, 2024 · 0 comments
Labels
tax Federal and state tax policy

Comments

@MaxGhenis
Copy link
Contributor

MaxGhenis commented Dec 21, 2024

Current behavior

The positive_agi variable is currently calculated as shown in:

This is used in multiple places, including the charitable_deduction formula:

However, the Internal Revenue Code (IRC) defines the contribution base in § 170(b)(1)(H) as:

Contribution base means adjusted gross income (AGI), computed without regard to any net operating loss (NOL) carryback to the taxable year (§ 172).

PolicyEngine does not currently distinguish between AGI and the contribution base as defined by the IRC, and no variables exist to represent NOLs or NOL carrybacks.

Problem

Using positive_agi for charitable deductions:

  1. Does not exclude NOL carrybacks, potentially overstating allowable deductions for taxpayers with reduced AGI due to NOLs.
  2. Impacts other calculations that rely on positive_agi, creating potential inconsistencies if we try to modify positive_agi directly.

Proposed solution

  1. Create a new nol_carrybacks input variable
  2. Create a new charitable_deduction_contribution_base variable which equals adjusted_gross_income - nol_carrybacks
@MaxGhenis MaxGhenis added the tax Federal and state tax policy label Dec 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
tax Federal and state tax policy
Projects
None yet
Development

No branches or pull requests

1 participant