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ý.
 
Thread 'Video on imaginary numbers and some queries'
Hi, I was watching the following video. I found some points confusing. Could you please help me to understand the gaps? Thanks, in advance! Question 1: Around 4:22, the video says the following. So for those mathematicians, negative numbers didn't exist. You could subtract, that is find the difference between two positive quantities, but you couldn't have a negative answer or negative coefficients. Mathematicians were so averse to negative numbers that there was no single quadratic...
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Suppose ,instead of the usual x,y coordinate system with an I basis vector along the x -axis and a corresponding j basis vector along the y-axis we instead have a different pair of basis vectors ,call them e and f along their respective axes. I have seen that this is an important subject in maths My question is what physical applications does such a model apply to? I am asking here because I have devoted quite a lot of time in the past to understanding convectors and the dual...

Similar threads

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