The Subtle Math Mistake in 'Backing Out' Sales Tax From a Total
Published 2026-09-14
A tempting but wrong shortcut
Given a receipt total of $108 that you know included 8% sales tax, it's tempting to compute the pre-tax price as $108 minus 8% of $108, i.e. $108 − $8.64 = $99.36. This feels reasonable — but it's wrong. The correct pre-tax price is exactly $100.00.
Why the shortcut fails
The 8% tax was originally calculated on the pre-tax price, not on the total. Subtracting 8% of the total instead removes too much, because the total already includes the tax layered on top of itself in that calculation. The relationship is total = pre-tax × (1 + rate), so recovering the pre-tax price requires dividing by (1 + rate), not subtracting a percentage of the total: $108 ÷ 1.08 = $100.00 exactly.
How big is the error, generally?
The gap between the two methods grows with the tax rate. At a 5% tax rate, the naive subtraction method is off by less than a dollar per $100; at higher rates common in some countries (15–20%+ VAT), the error becomes large enough to matter for accounting, expense reports, or reverse-engineering supplier pricing from a tax-inclusive quote.
Calculate it correctly, either direction
Our Sales Tax Calculator handles both directions correctly: forward from a pre-tax price to a total, and in reverse from a tax-included total back to the true pre-tax price and tax amount, using the correct division-based formula rather than the tempting-but-wrong subtraction shortcut.