Skip to content

Guide

Why percentage change isn't percentage difference (and when to use each)

Percentage change is directional. Percentage difference is symmetric. Different math, different jobs.

From 80 to 100 is a 25% increase. From 100 to 80 is a 20% decrease. Same physical change, different percentages. The first is “percentage change.” The second is also percentage change but in the opposite direction. And the symmetric “percentage difference” between them — a third number, 22.2% — is something else entirely.

This is one of math’s most reliable sources of confusion. Let’s straighten it out.

Percentage change (directional)

change% = (new − old) / old × 100

Percentage change uses the starting value (old) as the base. It’s signed: positive for increases, negative for decreases. It’s the answer to “by what percent did this grow/shrink?”

Examples:

  • Sales went from $80K to $100K: change = (100 − 80) / 80 × 100 = +25%
  • Then sales went from $100K back to $80K: change = (80 − 100) / 100 × 100 = −20%

The two percentages aren’t equal even though the physical change is the same. That’s because the base changed.

Percentage difference (symmetric)

difference% = |a − b| / ((a + b) / 2) × 100

Percentage difference uses the averageof the two values as the base, and takes the absolute value of the difference. It’s always positive and symmetric — the difference between 80 and 100 equals the difference between 100 and 80, both 22.2%.

It’s the answer to “how far apart are these two values, without saying which one is the reference?”

The asymmetry that confuses people

Percentage change is the unit most familiar to most people (“the stock went up 5% today”). Percentage difference is the one statisticians and physicists use for comparison of measurements where neither value is privileged. News reporting almost always means percentage change but sometimes uses the word “difference” loosely.

Worth memorising:

  • Percentage change: signed, base = starting value.
  • Percentage difference: unsigned, base = average of the two values.
  • They’re only equal when one of the values is zero (degenerate).

The mistake that compounds

If something rises 50% and then falls 50%, where does it end up? Most people’s gut says “back where it started.”

Not even close. 100 → 150 (up 50%) → 75 (down 50%). You lost 25% of the original.

Why: the second 50% was applied to the new base (150), not the original (100). 50% of 150 is 75, leaving 75. To get from 150 back to 100 you’d need a 33.3% decrease, not 50%.

This is why investments take longer to recover than to lose: losing 50% requires a 100% gain to recover; losing 80% requires a 400% gain. Underlies a lot of finance writing that sounds obvious until you do the arithmetic.

When to use each

Percentage change

  • Year-over-year revenue, profit, traffic, anything with a clear “before” and “after.”
  • Stock returns, investment performance, salary increases.
  • Population growth (where the previous census is the base).
  • Inflation rate (current price vs same period last year).

Percentage difference

  • Comparing two measurements where neither is the reference (two lab tests, two surveys).
  • Quality control between two production batches.
  • Comparing two competitors, two cities, two products — when the question is “how different are they?” not “by what factor did A grow into B?”

Where our calculator stands

Convertitive’s percentage calculatorcomputes percentage change (the more common operation) via its third tab. We don’t compute percentage difference because it’s rarely what people are actually after — when they think they want it, they usually want change, with absolute-value applied. If your job genuinely needs percentage difference, use the formula above directly — it’s simple enough not to need a tool.

Related

Published May 15, 2026