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

Personal exemption payroll tax #1381

Closed
wants to merge 11 commits into from
Closed

Personal exemption payroll tax #1381

wants to merge 11 commits into from

Conversation

econ02
Copy link
Collaborator

@econ02 econ02 commented May 25, 2017

closes #1369

This allows implementation of a personal exemption to the payroll tax through as outlined in Timothy P. Carney, "The case for a payroll tax cut". The exemption amount is set by both filing status and number of kids for both Social Security and Medicaid payroll taxes. Income below the sum of the filing status and number of kids exemptions is not subject to the payroll tax rate.

The four policy parameters created are:

  1. _SS_em_k : Social Security Payroll Tax Exemption by Number of Kids
  2. _SS_em_f : Social Security Payroll Tax Exemption by Filing Status
  3. _FICA_em_k : Medicaid Payroll Tax Exemption by Number of Kids
  4. _FICA_em_f : Medicaid Payroll Tax Exemption by Filing Status

Three records variables are also created. These are:

  1. ss_exemption : The total Social Security exemption (sum of filing status exemption and per kid exemption).
  2. mc_exemption : Same as above, for Medicaid
  3. _payrolltax_exemption : Summed differences between the income and non-exempted income. This is the total income not subject to the payroll taxes.

Notes:

  • Applies to wage income and self-employment income
  • Social Security and Medicaid taxes can be treated with different exemption amounts.
  • The filing status and kid exemption policies are separate to accomplish the goals outlined in the post: "A single earner pays no payroll tax on his first $x. A couple gets $2x of income before they start paying payroll taxes. If you've got a husband and three kids, your first $5x of income is payroll-tax-free."

@andersonfrailey

@feenberg
Copy link
Contributor

feenberg commented May 25, 2017 via email

@@ -3217,8 +3217,8 @@
},

"_FICA_mc_k": {
"long_name": "FICA payroll tax exemption by number of kids.",
"description": "This is the FICA payroll tax exemption amount for number of kids. ",
"long_name": "Medicaid payroll tax exemption by number of kids.",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Medicare not Medicaid.

@econ02
Copy link
Collaborator Author

econ02 commented May 26, 2017

Please see #1382, which has the most recent code.

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.

request for personal exemption to payroll tax
4 participants