How to Calculate Percentage Difference
Percentage difference compares two values without a defined starting point. It is the right tool when neither value is the "original" -- comparing prices, wages, populations, or any two equal-status numbers.
The percentage difference formula
Take the absolute difference between the two values, divide it by their average, then multiply by 100. The result is always positive -- percentage difference has no direction.
Example: Store A sells a laptop for $850. Store B sells the same model for $920. |850 - 920| = 70. Average = (850 + 920) / 2 = 885. Percentage difference = (70 / 885) x 100 = 7.91%.
Why the average?
Using the average as the base makes the result symmetric. Swap A and B and you get the same answer. This is intentional -- when neither value is the reference point, the comparison should not change based on the order you enter the numbers.
Step-by-step walkthrough
Step 1 -- Find the absolute difference: Subtract the smaller value from the larger value (or subtract either from the other and drop any negative sign). This gives you the raw gap.
Step 2 -- Calculate the average: Add both values and divide by 2. This is the midpoint between them -- the symmetric base.
Step 3 -- Divide and multiply: Divide the absolute difference by the average, then multiply by 100.
Worked example: Comparing two cities' median incomes: City A at $52,000 and City B at $67,000. Step 1: |52,000 - 67,000| = 15,000. Step 2: (52,000 + 67,000) / 2 = 59,500. Step 3: (15,000 / 59,500) x 100 = 25.2% difference.
Percentage difference vs percentage change
These two calculations are frequently confused, but they answer different questions.
Use percentage change when there is a clear before and after: a price that went up, a score that improved, revenue from last quarter vs this quarter. The original value is the base, and direction matters (positive = up, negative = down).
Use percentage difference when comparing two things at the same point in time with no natural starting point: the price at two stores, the salary of two employees, the population of two cities. There is no direction -- just a gap.
Concrete example: If a product cost $80 last year and $100 now, that is a percentage change of 25% (the $80 is the reference). If two stores sell the same product -- one for $80 and one for $100 -- the percentage difference is 22.2% (using the average $90 as the base).
Same two numbers. Different question. Different formula. Different result.
Real-world examples
Price comparison: Grocery store A charges $3.49 for a jar of peanut butter. Store B charges $4.19. |3.49 - 4.19| = 0.70. Average = 3.84. Percentage difference = (0.70 / 3.84) x 100 = 18.2%.
Salary comparison: Two job offers: $72,000 and $85,000. Average = $78,500. Difference = $13,000. Percentage difference = (13,000 / 78,500) x 100 = 16.6%.
Scientific measurements: Two lab readings of the same sample: 14.7 and 15.3. Average = 15.0. |14.7 - 15.3| = 0.6. Percentage difference = (0.6 / 15.0) x 100 = 4%. In science this indicates how repeatable a measurement is.
Population comparison: City A has 340,000 residents, City B has 510,000. Average = 425,000. Difference = 170,000. Percentage difference = (170,000 / 425,000) x 100 = 40%.
FAQ