How to Calculate Percentage Change
One formula, and three places people get it wrong: which number goes on the bottom, why increases and decreases are not symmetric, and points versus percent.
· 2 min read
Subtract the old value from the new one, divide by the old value, multiply by a hundred. That is the whole formula, and almost every mistake made with it comes from the division rather than the arithmetic. The denominator is always where you started, never where you ended, and never the average of the two.
change % = (new - old) / old x 100
200 to 250 (250 - 200) / 200 = 0.25 -> +25%
250 to 200 (200 - 250) / 250 = -0.20 -> -20%Increases and decreases are not symmetric
Those two lines describe the same pair of numbers and give different answers, and both are correct. Going up by twenty-five percent and coming back down by twenty percent returns you to the start. The asymmetry is not a quirk to be corrected — it falls directly out of the denominator changing — and it is why a stock that falls fifty percent needs to gain a hundred to recover.
Percent and percentage points are different units
If a rate moves from four percent to five percent, that is a rise of one percentage point and of twenty-five percent. Both statements are true and they differ by a factor of twenty-five. Headlines routinely pick whichever sounds larger, which is worth remembering whenever a figure seems surprising: interest rates, tax bands and unemployment are all quoted in percent already, so any change in them has two legitimate descriptions.
Percentage points measure the gap. Percent measures the change relative to where you were.
Changes do not add up
A ten percent rise followed by a ten percent rise is not twenty percent, it is twenty-one, because the second applies to the already-increased figure. Successive percentages multiply rather than add. This is the same mechanism as compound interest, and it is why a discount stacked on a discount never removes as much as the two numbers suggest.
The reversal that catches everyone
To find a price before a twenty percent tax was added, do not subtract twenty percent. Divide by 1.2. Subtracting takes twenty percent of the larger figure and lands you short every time. The same applies to reversing a discount, a markup or any other proportional change: you undo a multiplication by dividing, not by subtracting the same percentage.
- Denominator is the starting value, always.
- A rise and the fall that undoes it have different percentages.
- Percentage points and percent are different units; say which one you mean.
- Reverse a percentage by dividing, not by subtracting.
When percentage change is the wrong tool
It breaks down entirely when the starting value is zero, because any increase from nothing is infinite, and it becomes misleading when the base is very small. A rise from two cases to three is a fifty percent increase, which is technically correct and tells the reader almost nothing. When the base is small, report the raw numbers as well.
Frequently asked questions
- What is the difference between percentage change and percentage difference?
- Percentage change has a direction, from an old value to a new one, and divides by the old value. Percentage difference compares two values with no order, and conventionally divides by their average instead.
- How do I reverse a percentage increase?
- Divide by one plus the rate as a decimal. To remove a twenty-five percent markup, divide by 1.25. Subtracting twenty-five percent from the marked-up figure gives a different and incorrect answer.
- Can a percentage change be more than one hundred percent?
- An increase can be any size, since doubling is a hundred percent increase and tripling is two hundred. A decrease cannot exceed one hundred percent, because that would mean ending below nothing.
Related reading
- 2 min read
Hex, RGB, HSL or OKLCH: Which Should You Use?
Four ways to write the same colour, with different strengths. Why HSL lies about brightness, and what OKLCH fixes that the others cannot.
- 2 min read
How Long Does It Take to Double Your Money?
The rule of 72 answers it in your head, and it is accurate enough to be useful. Where it comes from, where it drifts, and what it quietly assumes.
- 2 min read
How Long Should a Password Be in 2026?
Why length beats complexity, what entropy actually measures, and how to pick a password length that will still hold up in ten years.
- 2 min read
How Much Should You Tip? What Custom Actually Says
Tipping norms differ enormously by country, and the reason is structural rather than cultural. How to work out the right amount somewhere unfamiliar.