Last active
August 29, 2015 14:26
-
-
Save dnch/327b06cde8a177fcc0d7 to your computer and use it in GitHub Desktop.
tax_nerd.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gross Income A = 180,200 | |
Deductions A = 0 | |
Taxable Income A = Gross Income A - Deductions A => 180,200 | |
Tax Liability A = 54,547 + (0.45 * (Taxable Income A - 180000)) => 54,637 | |
Gross Income B = 180,200 | |
Deductions B = 300 | |
Taxable Income B = Gross Income B - Deductions B => 179,900 | |
Tax Liability B = 17,547 + (0.37 * (Taxable Income B - 80000)) => 54,510 | |
Tax Liability A - Tax Liability B => 127 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment