백분율 차이 계산기
Percentage difference compares two values symmetrically, using their average as the reference. Use it when neither value is clearly the “original” — for example comparing two prices or two measurements.
풀이 예시
100 vs 120: (20 ÷ 110) × 100 ≈ 18.18%
계산 방법
- Enter the first value.
- Enter the second value.
- Read the relative difference — the result is the same whichever value you enter first.
공식
Difference = (|A − B| ÷ ((A + B) ÷ 2)) × 100
설명
- Comparing two quotes, suppliers or measurements.
- Science and engineering: comparing two experimental readings.
관련 계산기
자주 묻는 질문
Difference vs change — which one do I need?
Use percentage change when one value is the reference (before → after). Use percentage difference when comparing two values with no natural reference.
Why divide by the average?
Dividing by the average makes the result symmetric: swapping the two values gives the same percentage, which is what “difference” should mean.