How to Work Out the Percentage Difference Between Two Numbers?

Quick answer: Percentage Difference = |Number 1 − Number 2| ÷ ((Number 1 + Number 2) ÷ 2) × 100. Take the absolute (positive) difference between the two numbers, divide it by their average, then multiply by 100. Unlike percentage change, this formula doesn’t care which number came first — swapping the two values gives you the exact same result.

That symmetry is the entire point of this specific formula, and it’s exactly what separates it from the more commonly confused “percentage change” calculation. Here’s the full breakdown.

The Formula, Step by Step

Percentage Difference = |a − b| ÷ ((a + b) ÷ 2) × 100

Step 1 — Find the absolute difference. Subtract one number from the other, and drop any negative sign (the two vertical bars around a − b mean “absolute value,” i.e., always positive).

Step 2 — Find the average of the two numbers. Add them together and divide by 2.

Step 3 — Divide the difference by the average.

Step 4 — Multiply by 100 to express the result as a percentage.

Worked Example

Find the percentage difference between 30 and 50.

  1. Absolute difference: |30 − 50| = 20
  2. Average: (30 + 50) ÷ 2 = 40
  3. Divide: 20 ÷ 40 = 0.5
  4. Multiply by 100: 50%

The percentage difference between 30 and 50 is 50%.

Worked Examples With Different Number Pairs

Percentage difference between 5 and 7:

  1. |5 − 7| = 2
  2. (5 + 7) ÷ 2 = 6
  3. 2 ÷ 6 × 100 = 33.3%

Percentage difference between 180 and 65:

  1. |180 − 65| = 115
  2. (180 + 65) ÷ 2 = 122.5
  3. 115 ÷ 122.5 × 100 = 93.9%

Notice how much larger this second result is — when two numbers are far apart relative to their size, the percentage difference climbs quickly, since it’s measuring the gap relative to a fairly small average.

Why the Order of the Numbers Doesn’t Matter

Try the same calculation the other way around — percentage difference between 50 and 30:

  1. |50 − 30| = 20 (same result, since it’s an absolute value)
  2. (50 + 30) ÷ 2 = 40 (same average either way)
  3. 20 ÷ 40 × 100 = 50%

Identical answer. This is a deliberate feature of the formula, not a coincidence — because the denominator uses the average of both numbers rather than picking one as a fixed starting point, swapping the values can never change the result. This makes percentage difference the right tool specifically when neither number is naturally the “original” or “before” value.

Percentage Difference vs. Percentage Change: Don’t Mix These Up

This is where most confusion happens, and it’s worth being precise about, since the two formulas answer genuinely different questions:

Percentage DifferencePercentage Change
Formula|a − b| ÷ ((a+b)÷2) × 100(New − Old) ÷ Old × 100
Order matters?No — symmetricYes — depends on which is “old” vs “new”
Can be negative?No — always positiveYes — negative means a decrease
Use when…Neither number is a clear starting point (comparing two independent measurements, two prices, two test scores)There’s a clear original value and a clear new value (before/after, over time)

When to Use Which

  • Use percentage difference when you’re comparing two values of equal standing — neither one is the “before” or the “correct” one. Examples: comparing two students’ test scores, two competitors’ prices, two lab instruments’ readings of the same sample.
  • Use percentage change when there’s a genuine starting point and ending point — something that moved from one value to another over time. Examples: a stock price yesterday vs. today, a grade from last semester vs. this semester, a company’s revenue this year vs. last year.

Percentage Change Formula and Example

Percentage Change = (New Value − Old Value) ÷ Old Value × 100

If a student’s test score went from 70 to 84:

(84 − 70) ÷ 70 × 100 = 14 ÷ 70 × 100 = 20% increase

Notice this result depends entirely on which number is treated as the starting point — reversing it (from 84 down to 70) would give a different percentage: (70 − 84) ÷ 84 × 100 = −16.7%, a decrease. That directional asymmetry is exactly what percentage difference is built to avoid.

Percent of Change Example: 8 to 10

A frequently searched variation asks specifically about going from 8 to 10:

(10 − 8) ÷ 8 × 100 = 2 ÷ 8 × 100 = 25% increase

This is a percentage change calculation (not percentage difference), since 8 is clearly the starting point and 10 is the resulting value.

Percentage Reduction (Decrease) Between Two Numbers

When a value goes down rather than up, the same percentage change formula applies — the result simply comes out negative, which represents a percentage reduction or percentage decrease:

Percentage Reduction = (Old Value − New Value) ÷ Old Value × 100

For example, if a price drops from 80 to 60:

(80 − 60) ÷ 80 × 100 = 20 ÷ 80 × 100 = 25% reduction

Some calculators phrase this formula with Old minus New (giving a positive number for a decrease) rather than New minus Old (giving a negative number) — both describe the same reduction, just with the sign flipped depending on convention. Either way, always divide by the original value, not the new one.

A Third Related Concept: Percentage Error

If you’re comparing an experimental or measured value against a known, accepted, or “true” value (rather than two equally-weighted numbers), the correct tool is actually percentage error, not percentage difference:

Percentage Error = |Measured Value − True Value| ÷ |True Value| × 100

The key distinction: percentage error always divides by the true value specifically, not the average of both — because one of the two numbers is treated as the authoritative reference point.

Real-World Example in a Grading Context

Say two sections of the same class took the same test. Section A averaged 78%, and Section B averaged 85%. Since neither section’s average is the “correct” or “original” one — they’re just two equally valid data points — percentage difference is the right formula:

  1. |78 − 85| = 7
  2. (78 + 85) ÷ 2 = 81.5
  3. 7 ÷ 81.5 × 100 = 8.59%

The two sections’ averages differ by about 8.6%. Compare this to a scenario where the same section’s average changed from 78% on one test to 85% on the next test — that’s a before/after comparison, so percentage change would be the correct formula instead: (85 − 78) ÷ 78 × 100 = 8.97% increase. Notice the two formulas give close but genuinely different answers, precisely because they’re measuring different things.

Calculating Percentage Difference in Excel or Google Sheets

If you’re comparing a list of number pairs rather than doing one calculation by hand, spreadsheet software makes this fast. For percentage difference specifically, using cells A2 and B2:

=ABS(A2-B2)/((A2+B2)/2)

Format the resulting cell as a percentage, or multiply by 100 manually if you want the raw number. For percentage change instead (with A2 as the old value and B2 as the new value):

=(B2-A2)/A2

Both formulas can be dragged down a column to apply the calculation to an entire dataset at once — useful for comparing many pairs of measurements, prices, or scores in a single sheet.

Quick Mental Math Shortcuts

For rough, on-the-fly estimates without a calculator, a few shortcuts help:

  • 10% of any number — move the decimal point one place left (10% of 250 = 25). Use this as a building block: 5% is half of that, 20% is double it, 15% is 10% + 5%.
  • Estimating percentage change roughly — round both numbers to the nearest convenient figure first, then do the division; exact precision rarely matters for a quick mental estimate.
  • “Percentage of two numbers” (a related but distinct question) simply means expressing one number as a percentage of another: (Part ÷ Whole) × 100. For example, what percentage is 15 of 60? (15 ÷ 60) × 100 = 25%. This is different from both percentage difference and percentage change — it’s asking what proportion one number represents of another, not how far apart or how much they moved.

Common Mistakes

  • Using percentage change formula when the numbers aren’t a before/after pair. If neither number is clearly the “starting point,” percentage change’s asymmetry (where order changes the result) makes it the wrong tool — use percentage difference instead.
  • Forgetting the absolute value. Percentage difference is never negative — if your calculation produces a negative number, you’ve likely used the percentage change formula by mistake, or forgotten to drop the sign.
  • Dividing by one number instead of the average. This is the single most common calculation error — percentage difference specifically divides by the average of both numbers, not by either one individually.
  • Using percentage difference for large disparities. When two numbers are extremely far apart (say, comparing 5 to 5,000), percentage difference can produce misleading or counterintuitive results, since the “average” reference point becomes far removed from either original number. In those cases, percentage change (with a clearly designated baseline) usually communicates the comparison more clearly.

Quick Reference Table

Comparing…Correct Formula
Two independent values, neither is a “before”Percentage Difference
An old value to a new value over timePercentage Change
A measured value to a known/true valuePercentage Error

Related Percentage Calculations

Percentage difference is part of a broader family of percentage calculations that come up constantly in academic contexts:

For grade and GPA calculations specifically, our GPA Calculator and Weighted Grade Calculator handle the underlying percentage math automatically.

Frequently Asked Questions

Can percentage difference ever be negative?

No — because the formula uses an absolute value in the numerator, the result is always zero or positive. If you get a negative number, you’re likely using the percentage change formula instead, which can legitimately be negative to indicate a decrease.

Is percentage difference the same as percentage error?

No, though the formulas look similar. Percentage difference divides by the average of two equally-weighted numbers, while percentage error divides specifically by the true or accepted value, since one number is treated as the authoritative reference and the other as a measurement being evaluated against it.

Why does the order of numbers not matter for percentage difference?

Because the denominator is the average of both numbers rather than either one individually, and the numerator uses an absolute value — both of these are calculated identically regardless of which number you list first, making the formula symmetric by design.

What’s a real-life example of when I’d use percentage difference instead of percentage change?

Comparing two candidates’ interview scores from different panels is a good case: neither score is the “original,” so percentage difference tells you how far apart the two evaluations landed without implying one panel came first. Percentage change would only make sense if you were tracking the same candidate’s score across two separate interview rounds.

Can I calculate percentage difference with negative numbers?

The standard formula assumes positive values, since dividing by the average of two numbers behaves unpredictably if that average is negative or zero (for example, if the two numbers are equal and opposite, like 5 and −5, the average is 0, making the calculation undefined). For values that can be negative, percentage change or a different comparison method is usually more appropriate.

How do I calculate percentage difference in Excel?

Use the formula =ABS(A2-B2)/((A2+B2)/2) in a cell, referencing the two values you’re comparing, then format the result as a percentage. This can be dragged down a column to apply the same calculation across an entire dataset at once.

What’s the easiest way to calculate percentages without a calculator?

For quick estimates, find 10% first by moving the decimal point one place left, then scale from there — 5% is half of the 10% figure, 20% is double it, and so on. This mental shortcut works for rough estimates, though exact figures still need the full formula.

How is this different from finding what percentage one number is of another?

Finding “what percentage is X of Y” uses a separate, simpler formula — (Part ÷ Whole) × 100 — and answers a different question than percentage difference or percentage change. It’s used when you want to express one number as a proportion of another, not to measure a gap or a change over time.

How is percentage difference used outside of math class?

It’s commonly used in science labs to compare two independent measurements of the same quantity, in business to compare prices or metrics between two competitors, and in quality control to check consistency between two production batches — anywhere two values carry equal weight with no clear “original” reference point.


Percentage difference, percentage change, and percentage error are related but distinct calculations — using the wrong one for your specific comparison can produce a technically correct but misleading result. Confirm which type of comparison you’re actually making before choosing a formula.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top