Mathematics Updated May 17, 2026 🕐 4 min read ✓ Verified

Reverse Percentage — How to Find the Original Value Before a Change

A reverse percentage calculation finds the original value before a percentage change was applied. If you know the final value and the percentage change, you can work backwards to find the starting amount. This is used to find the original price before a discount, to extract VAT from a tax-inclusive price, or to find a salary before a pay cut was applied.

reverse-percentage percentage original-price vat discount back-calculation

Quick reference

After a decrease
Original = Final / (1 - rate)
e.g. after 20% off: / 0,80
After an increase
Original = Final / (1 + rate)
e.g. after 15% rise: / 1,15
VAT extraction
VAT = Price x rate/(100+rate)
e.g. 21% VAT: x 21/121
Key rule
Never add % back to final price
Wrong base — always gives wrong answer

What reverse percentage is

A percentage change is always calculated relative to the original (starting) value. When you know the final value and the percentage change, you can find the original value by undoing the percentage operation.

If a price increased by 20% to reach 120, the original price was 100 because 100 x 1,20 = 120. Reverse: 120 / 1,20 = 100.

If a price decreased by 20% to reach 80, the original price was 100 because 100 x 0,80 = 80. Reverse: 80 / 0,80 = 100.

The critical insight: 20% of the original is not the same as 20% of the final. The percentage was applied to the original. To undo it, you must divide by the multiplier that was applied — not add or subtract a percentage of the final value.

The reverse percentage formula

Formula
\text{Original} = \frac{\text{Final value}}{1 \pm \frac{\text{Rate}}{100}}
Divide the final value by the multiplier that was applied. For a percentage decrease, the multiplier is (1 minus the rate). For a percentage increase, the multiplier is (1 plus the rate). Use the minus sign if the original was reduced, the plus sign if it was increased.
Final valueThe value after the percentage change was applied — this is what you know
RateThe percentage change as a whole number (e.g. 20 for 20%)
1 - Rate/100The multiplier for a percentage decrease (e.g. 1 - 0,20 = 0,80 for a 20% decrease)
1 + Rate/100The multiplier for a percentage increase (e.g. 1 + 0,15 = 1,15 for a 15% increase)

Why adding the percentage back gives the wrong answer

The most common error in reverse percentage calculations is to add the percentage back to the final value. This always gives a wrong answer because you are applying the percentage to the wrong base.

Example: a price is 80 after a 20% discount. What was the original?

Wrong method: 80 + 20% of 80 = 80 + 16 = 96. This is wrong. Correct method: 80 / (1 - 0,20) = 80 / 0,80 = 100.

Why is the wrong method wrong? A 20% discount means the sale price is 80% of the original. If the original was 100, the 20% discount is 20. But if you add 20% of the sale price (80) back, you are adding 16, not 20. You are adding 20% of the wrong number.

The original price is always the correct base for the percentage. The sale price is smaller, so 20% of the sale price is also smaller than 20% of the original. You need to divide the sale price by 0,80 to get back to the original, not add 20% of the sale price.

Worked examples

Example 1Finding original price after a discount
Given: Sale price: 75 | Discount applied: 25%
Result: Original price: 100

Original = 75 / (1 - 0,25) = 75 / 0,75 = 100. Verification: 100 x (1 - 0,25) = 100 x 0,75 = 75. Correct. The wrong method: 75 + 25% of 75 = 75 + 18,75 = 93,75. This would imply the original was 93,75. But 25% of 93,75 is 23,44, and 93,75 - 23,44 = 70,31, not 75. The wrong method does not even verify correctly.

Example 2Finding salary before a pay rise
Given: Current salary: 2.530 | Pay rise applied: 15%
Result: Original salary: 2.200

Original = 2.530 / (1 + 0,15) = 2.530 / 1,15 = 2.200. Verification: 2.200 x 1,15 = 2.530. Correct. If someone's salary is 2.530 after a 15% rise, subtracting 15% from 2.530 gives 2.530 x 0,85 = 2.150,50, which is wrong. The percentage must be undone by dividing by the multiplier, not by subtracting a percentage of the new value.

Example 3Finding the price before multiple sequential discounts
Given: Final price: 54 | First discount: 10% | Second discount: 25%
Result: Original price: 80

Work backwards through each discount. After 25% discount: 54 / 0,75 = 72. After 10% discount: 72 / 0,90 = 80. Alternatively, the combined multiplier is 0,90 x 0,75 = 0,675. Original = 54 / 0,675 = 80. Two sequential discounts of 10% and 25% are equivalent to one discount of 32,5%, not 35%. Percentage discounts are multiplicative, not additive.

Calculate the original value

Enter the final value and percentage change to find the original price before the percentage was applied.

Open Percentage Calculator →

Extracting VAT from a tax-inclusive price

When a price includes VAT, extracting the VAT amount requires a reverse percentage calculation. The common error is to calculate VAT rate percent of the inclusive price.

For a 21% VAT rate on an inclusive price of 121:

Wrong method: 21% of 121 = 25,41 VAT. This implies the pre-tax price is 121 - 25,41 = 95,59, which is wrong.

Correct method: the inclusive price of 121 is 121% of the pre-tax price (100% pre-tax + 21% VAT). Pre-tax price = 121 / 1,21 = 100. VAT = 121 - 100 = 21.

Alternatively, use the fraction method: VAT = inclusive price x (VAT rate / (100 + VAT rate)) = 121 x (21 / 121) = 121 x 0,1736 = 21.

At the Netherlands standard VAT rate of 21%: divide the inclusive price by 1,21 to get the pre-tax price. At the reduced rate of 9% (food, medicine): divide by 1,09. At 0% (exports, some services): no VAT to extract.

VAT extraction — Netherlands rates

VAT RateDivide inclusive price byVAT fraction to applyExamples
21%1,2121/121 = 0,1736Most goods and services
9%1,099/109 = 0,0826Food, books, medicine
0%1,000Exports, international services

Common mistakes

✗ Adding the percentage back to the final price to find the original
✓ Always divide by (1 minus rate) for a decrease or (1 plus rate) for an increase. Adding a percentage of the final value gives the wrong answer because you are using the wrong base.
✗ Adding sequential discount percentages together before calculating
✓ Two 10% discounts are not a 20% discount. The correct combined multiplier is 0,90 x 0,90 = 0,81, which is a 19% discount. Calculate each multiplier and multiply them together, then apply the reverse: original = final / (multiplier1 x multiplier2).
✗ Calculating VAT as a percentage of the inclusive price
✓ VAT is a percentage of the pre-tax (exclusive) price, not the inclusive price. To extract VAT from an inclusive price, divide by (1 + rate) or use the fraction VAT rate / (100 + VAT rate) applied to the inclusive price.

Methodology

Reverse percentage uses the algebraic inverse of the percentage change formula. If final = original x (1 +/- rate), then original = final / (1 +/- rate). VAT extraction uses the same principle. All formulas use exact arithmetic with rounding applied only to final displayed results.

VAT rates used are Netherlands standard rates as of May 2026. Rates vary by country and product category. Always verify current rates with your local tax authority.

Cite this guide
APAMLAChicago
Last updated: May 2026

Calculate the original value now

Enter the final value and the percentage change to find the original price before the percentage was applied.

Calculate now →

Frequently asked questions

Why can I not just add the percentage back to find the original?
Because the percentage was applied to the original, not to the final value. If the original was 100 and a 20% discount was applied, the discount amount was 20 (20% of 100). The sale price is 80. If you add 20% of 80 back, you add 16, not 20. You get 96, not 100. The correct method divides 80 by 0,80, which correctly reverses the 20% reduction applied to the original.
What is the formula to find the original price after a discount?
Original price = Sale price / (1 - discount rate as a decimal). Example: sale price 60 after 25% discount: original = 60 / (1 - 0,25) = 60 / 0,75 = 80. Verify: 80 x (1 - 0,25) = 80 x 0,75 = 60. Correct.
How do I extract VAT from a price that already includes it?
Use the formula: Pre-tax price = inclusive price / (1 + VAT rate). VAT amount = inclusive price - pre-tax price. Example: inclusive price 121 at 21% VAT: pre-tax = 121 / 1,21 = 100. VAT = 121 - 100 = 21. Never calculate VAT as a percentage of the inclusive price — that gives the wrong answer.
How do sequential discounts work?
Sequential discounts must be multiplied together, not added. A 20% discount followed by a 15% discount is: combined multiplier = 0,80 x 0,85 = 0,68. This is equivalent to a single 32% discount, not 35%. To find the original price from the final price after two discounts, divide by the combined multiplier: original = final / (0,80 x 0,85) = final / 0,68.
Sources & References

Formula based on standard mathematical and financial methods. Results are for informational purposes. Last reviewed May 2026. Version 1.