Percentage difference between two numbers
The percentage difference compares two values without treating either one as the reference point. It divides the absolute difference by the average of the two numbers:
percentage difference = |A − B| ÷ ((A + B) ÷ 2) × 100
Because it uses the average rather than a starting value, the result is the same whichever order you enter the numbers — and it is always positive. Use percentage change instead when one value is clearly the “before” and the other the “after”. Everything here runs in your browser.