Medical Expenses in 22-variable Taxsim

Part of the medical deduction is a preference, and part is not. If you are satisfied to get the regular tax correct (and have an error in the AMT) then just add

max(0,med-.075*agi) to Line 20 (where med is the total of deductible medical expenses). The .075 becomes .1 in 2013 for non-elderly taxpayrs. This doesn't account for the AMT preference of min(max(0,med-.075*agi),.025*agi) which could be added to Line 16, except that then Line 16 plus Line 20 would exceed the actual allowed deduction on Schedula A.

If I could change the interface by adding another variable (for medical expenses) this could be dealt with without additional explanation. But for the moment I don't want to add variables, especially for an item that very few users will have data on. So the question is, can the user allocate the medical expenses to get the correct answer for both regular and AMT?

The answer is yes. To get both the regular and AMT correct, the medical deduction must be split up according to the following:

line16_med = med_preference = min(max(0,med-.075*agi),.025*agi) line20_med = med_non_preference = max(0,med-.075*agi) - line16_med Note that the Schedule A deductions include both Lines 16 and 20. So we want the total medical deduction to be allocated across the two lines such that they add up to the correct amount for Schedule A, while ensuring that the amount on Line 16 is correct for the form 6251 (the AMT).

This formula works because the AMT preference for medical expenditures is always equal to or less than the medical deduction on Schedule A. The amount for the AMT is given my the line16_med expression above. Then in line 20 subtract that amount from the Schedule A deduction. Then the total will be the correct Schedule A amount.

The formulas above work for all taxpayers 1960-2012 and for the elderly in 2013. For non-elderly taxpayers in 2013+ the formulas would be:

line16_med = 0 line20_med = max(0,med-.1*agi)

I would like to thank Kathryn Stevens for pointing out this difficulty.

Dan Feenberg
617-863-0343


Last revision 30 August 2016 by drf