Calculate Gross Tax only knowing Net Earnings

  • Thread starter Thread starter bradles
  • Start date Start date
  • Tags Tags
    Net Taxes
AI Thread Summary
To calculate gross earnings from net income, a step function formula is needed based on the tax brackets provided. For net incomes up to $6,000, gross income equals net income. For net incomes between $6,001 and $29,412, gross income can be calculated as net income divided by 0.85. For net incomes between $29,412 and $107,143, the formula changes to net income divided by 0.70. A more detailed tax schedule is also suggested for better accuracy, along with an Excel formula for automated calculations. Understanding these formulas allows for accurate gross income estimation based on net earnings.
bradles
Messages
6
Reaction score
0
Hi All,

I was wondering if it is possible to work out a formula for calculating what your gross earnings would have to be to earn a certain net value.

The tax on earnings scales go like this:

Between $0 - $6000 you pay no tax.
Between $6001 - $25000 you pay 15c per dollar.
Between $25001 - $75000 you pay 30c per dollar.
Between $75001 - $150000 you pay 40c per dollar.
Greater than $150000 you pay 45c per dollar.

So Gross - Tax = Net. Based on the above I'd like to be able to solve what your gross would be if you knew your net earnings.

Does anyone know how to write the formula for this? I'm having trouble just writing a formula to explain the above solving for gross.

Brad.
 
Mathematics news on Phys.org
Just as your tax table is a "step function", so the formula giving gross income as a function of net income will be a step function:
Let N= net income, G= gross income in dollars.

If 0<= N<= 6000, then G= N
If 6001<= N<= 29412, Then N= G- .15G= 0.85G so G= N/.85.
(the upper limit, $29412, is 25000/.85)
If 29412<= N<= 107143, Then N= G- .30G= 0.70G so G= N/.70.
(Again, the upper limit, $107143, is 75000/.70)

etc.

By the way, a more realistic tax schedule would be

Between $0- $6000 you pay no tax.
Between $6001- $25000 you pay 15c per dollar over $6000
Between $25001- $75000 you pay 3750 (.15*$25000) plus 30c per dollar 1over $25000
Between $75001- $150000 you pay $18750 (3750+ .30(50000)) plus 40c per dollar over $75000
Over $150001, you pay $48750 ($18750+ .40(75000)) plus 45c per dollar over $150001.
 
If you'd like a formula in Microsoft Excel to this for you...

=IF(A1<=6000,0,IF(A1<=25000,(A1-6000)*0.15,IF(A1<=75000,3750+(A1-25000)*0.3,IF(A1<=150000,18750+(A1-75000)*0.4,48750+(A1-150000)*0.45))))

where A1 is the cell which contains the Net salarý.
 
Seemingly by some mathematical coincidence, a hexagon of sides 2,2,7,7, 11, and 11 can be inscribed in a circle of radius 7. The other day I saw a math problem on line, which they said came from a Polish Olympiad, where you compute the length x of the 3rd side which is the same as the radius, so that the sides of length 2,x, and 11 are inscribed on the arc of a semi-circle. The law of cosines applied twice gives the answer for x of exactly 7, but the arithmetic is so complex that the...

Similar threads

Replies
46
Views
9K
Replies
18
Views
6K
Replies
38
Views
25K
Replies
1
Views
3K
Back
Top