0:00
Hello.
00:01
For problem 13, you're asked to revise the program to compute tax, or really to complete it, so that you can check for other filing statuses.
00:15
So most of this code is straight from there, but we have to complete for if you're married filing jointly, married filing separately, or filing as head of household.
00:28
In order to do that, i started by just copying all of the data for single filers into those other categories.
00:39
And then we have to change the numbers to match with the tax brackets.
00:46
So we can see that for a single filer, your first tax bracket is when your income is less than or equal to $8 ,350.
00:55
Whereas married filing jointly, it's 16 ,700.
01:00
So everywhere there's an 8350.
01:04
In the original code, you're going to replace it with 16 ,700 and so on and so forth...