All tools

Percentage Change Calculator

Math

Compute the percentage increase or decrease between two numbers, plus the absolute change, direction, and multiplier.

Percentage change trips people up because of one easy mistake: dividing by the wrong number. This calculator takes an original value and a new value and returns the change as ((new - old) divided by the absolute original) times 100, so an increase from 200 to 250 reads as +25 percent, not the +20 percent you get if you divide by the new value. Alongside the percent, it shows the raw absolute difference, whether the value went up, down, or stayed flat, and the multiplier (how many times the original the new value is). Reach for it for period-over-period growth, price markups and discounts, metric deltas, or any before-and-after comparison. It is pure arithmetic that runs entirely in your browser, and the only value it refuses is a zero original with a nonzero new value, since dividing by zero has no defined percentage.

financepercentagegrowthchangemath

How to use Percentage Change Calculator

  • 1.Enter the original (starting) value and the new (ending) value.
  • 2.Read the percentage change, which is positive for an increase and negative for a decrease.
  • 3.Check the absolute change, direction, and multiplier for the full picture of the delta.

Frequently asked questions

How is percentage change calculated?
As ((new - old) / |old|) x 100. Using the absolute value of the original keeps the sign intuitive even when the starting number is negative.
Why can't the original value be zero?
Percentage change divides by the original value, so a change from zero to any nonzero number is mathematically undefined (infinite). A change from zero to zero is reported as no change.
What is the multiplier?
It is new / old, so 200 to 250 gives 1.25x. It answers 'how many times the original is the new value' rather than the percent difference.
Is this the same as a growth rate?
For a single period, yes. This computes the simple period-over-period change; it does not annualize a multi-period rate (use the compound interest or present-value tools for that).

Use via API, SDK, or MCP

cURL# Free: 1,000 req/day · Pro: 10,000 req/day
curl -X POST https://api.utilix.tech/v1/tools/percentage-change-calculator \
  -H "Authorization: Bearer utx_live_..." \
  -H "Content-Type: application/json" \
  -d '{"oldValue":200,"newValue":250}'

Get an API key from your dashboard · Full API docs →