1
$\begingroup$

I'm working a problem, attempting to find a income tax rate that will change depending on the gross paycheck amount. Some data points:

$800 gross = 11% taxed

$1500 gross = 16% taxed

$2000 gross = 20% taxed

How would I go about finding the relationship between the gross paycheck amount and the percentage taxed? Beyond that as well, how will I then be able to apply that relationship mathematically in order to obtain other data points (\$1000 gross paycheck, $500, etc...) and get an accurate tax percentage for them as well? I have a feeling it'll be an answer lying somewhere in the statistics field, but I'm no math expert.

  • 2
    Your problem has no unique solution, there is an infinite amount of tax regulations that will generate your output.2011-11-26
  • 0
    Well I'm not looking for something that's exactly perfect in it's output, but plotting the data points it does seem to follow a trend. So hopefully from that I can ascertain a polynomial that will give me accurate answers within a given percentage.2011-11-27
  • 0
    It is possible to find a polynomial that returns exact values for finite number of points. If the relationship is truly a polynomial of degree n (or less), then every thing is fine. However, if the polynomial is of a degree > n, then any interpolation or extrapolation, may not provide an accurate value.2012-01-26

1 Answers 1

1

As Listing says, there is no unique solution. One approach would be to plot tax paid against gross income, draw a smooth curve and estimate any interpolated values.

enter image description here

So for a gross income of $\$1000$, tax might be about $\$130$ i.e. about 13%.

If you are feeling brave, you might try to extrapolate outside the points you know (the tax on a gross income of $\$0$ might be $\$0$), but you are more likely to be wrong.

  • 0
    The curve is looking exponential, so I should have enough data to solve for a regular polynomial I would assume. That may give me an answer that will help me at least estimate within a given means of accuracy.2011-11-27
  • 1
    @Mike: an exponential curve would result in tax paid being above gross income, which is rare and difficult to collect.2011-11-27
  • 0
    You have an excellent point. It must be painfully clear I really have no idea what I'm talking about.2011-11-28