Revise tax credit calculations for children and other dependents #2211
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request updates the calculation of the nonrefundable child tax credit (CTC) and other dependent tax credit (ODTC), the sum of which is entered on line 12a of 2018 Form 1040, and updates the calculation of the refundable additional child tax credit (ACTC), which is entered on line 17b of 2018 Form 1040. These changes are being made because of the problems discussed in open issue #2197 and in merged pull request #2205.
After commit f47e16f, which rewrites the
ChildDepTaxCredit
function, the code in this pull request still produces the same CTC amounts and the same ACTC amounts for 2017 as on the master branch, which is important because those values have been validated against TAXSIM-27. However, there are a number of 2018 cases for which there are differences with TAXSIM-27 when using the commit f47e16f code.After commit b99acf1, which rewrites the
AdditionalCTC
function, the code in this pull request still produces the same CTC amounts and the same ACTC amounts for 2017 as on the master branch, which is important because those values have been validated against TAXSIM-27. However, there are still a number of 2018 cases for which there are differences with TAXSIM-27 when using the commit b99acf1 code.Future commits will attempt to eliminate the remaining 2018 differences. But before doing this we need 2018 values for the policy parameters, which are pending in pull request #2212.