You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary
iitax is intended, according to how I read the code, to be all income taxes less refundable credits and less nonrefundable credits. In other words, the bottom line for income taxes (which can be negative). However, the documentation, as I read it, does not correctly identify the fact that refundable credits are subtracted.
I think a simple fix (if I understand how Tax-Calculator documentation works) would be to edit the "desc" field of the records_variables json file (screenshot below) to mention refundable credits.
I would offer that up as a PR but (a) I haven't yet bothered to learn how to do a PR, (b) it might be more complicated than I think - other changes might be required - for example, this file (1st screenshot below) appears to need manual updating, but I think this one (2nd screenshot below) might (?) be code-generated and might not, and (c) the documentation could use further updating beyond 2016.
Details
The code for iitax is iitax = c09200 - refund where c09200 is, according to documentation (and code) "Income tax liability (including othertaxes) after non-refundable credits are used, but before refundable credits" and refund is "Total refundable income tax credits". Function for iitax and refund is:
The relevant function for c09200 is:
However, the documentation for iitax says:
I think this is not correct. It says start with 1040 line 63 and subtract lines 57 and line 62a. Here is a screenshot of the relevant part of the 1040 for the latest year referenced, 2016:
Line 63, as I read the form, is total taxes (including the self-employment tax and add-on Medicare tax). Line 57 is self-employment tax and line 62a is the additional Medicare tax from Form 8959. Non-refundable credits are subtracted in arriving at line 56, which is an input to line 63. However - and this is the key - refundable credits are not subtracted in the calculation the documentation gives. They are subtracted in the "Payments" section - for example, line 66a for the EITC and line 67 for the additional child tax credit. Thus, I think the documentation needs to be modified to say this and to be clear that the concept is total income taxes (less SE tax and Medicare) after all credits, including refundable credits.
The text was updated successfully, but these errors were encountered:
Summary
iitax is intended, according to how I read the code, to be all income taxes less refundable credits and less nonrefundable credits. In other words, the bottom line for income taxes (which can be negative). However, the documentation, as I read it, does not correctly identify the fact that refundable credits are subtracted.
I think a simple fix (if I understand how Tax-Calculator documentation works) would be to edit the "desc" field of the records_variables json file (screenshot below) to mention refundable credits.
I would offer that up as a PR but (a) I haven't yet bothered to learn how to do a PR, (b) it might be more complicated than I think - other changes might be required - for example, this file (1st screenshot below) appears to need manual updating, but I think this one (2nd screenshot below) might (?) be code-generated and might not, and (c) the documentation could use further updating beyond 2016.
Details
The code for iitax is
iitax = c09200 - refund
wherec09200
is, according to documentation (and code) "Income tax liability (including othertaxes) after non-refundable credits are used, but before refundable credits" andrefund
is "Total refundable income tax credits". Function foriitax
andrefund
is:The relevant function for
c09200
is:However, the documentation for iitax says:
I think this is not correct. It says start with 1040 line 63 and subtract lines 57 and line 62a. Here is a screenshot of the relevant part of the 1040 for the latest year referenced, 2016:
Line 63, as I read the form, is total taxes (including the self-employment tax and add-on Medicare tax). Line 57 is self-employment tax and line 62a is the additional Medicare tax from Form 8959. Non-refundable credits are subtracted in arriving at line 56, which is an input to line 63. However - and this is the key - refundable credits are not subtracted in the calculation the documentation gives. They are subtracted in the "Payments" section - for example, line 66a for the EITC and line 67 for the additional child tax credit. Thus, I think the documentation needs to be modified to say this and to be clear that the concept is total income taxes (less SE tax and Medicare) after all credits, including refundable credits.
The text was updated successfully, but these errors were encountered: