The percent difference formula
Percent difference uses the formula |v₁ − v₂| ÷ ((v₁ + v₂) ÷ 2) × 100. The absolute value in the numerator and the average in the denominator make the calculation symmetric.
For example, comparing 100 and 80: |100 − 80| ÷ 90 × 100 ≈ 22.2%. Swapping the order gives the same result.
% diff = |v₁ − v₂| ÷ avg(v₁, v₂) × 100
Symmetric percent difference.