Percentage Change vs Percentage Point

May 28, 20265 min read

The Confusion That Costs Money

A news headline reads: "Interest rates rose 2%." Does that mean the rate went from 5% to 5.1% (a 2% increase of 5), or from 5% to 7% (a 2 percentage point increase)? These are dramatically different outcomes, and confusing them causes real financial and policy errors.

Percentage Change

Percentage change measures the relative difference between an old value and a new value, expressed as a proportion of the old value.

Percentage change = ((New - Old) / Old) × 100

Example: Interest rates rise from 5% to 7%.

Percentage change = ((7 - 5) / 5) × 100 = 40%

The rate increased by 40% relative to where it started.

Percentage Point Change

Percentage point change is the simple arithmetic difference between two percentages.

Percentage point change = New percentage - Old percentage

Same example: Interest rates rise from 5% to 7%.

Percentage point change = 7 - 5 = 2 percentage points

The rate increased by 2 percentage points.

Side-by-Side Comparison

Starting RateNew RatePercentage ChangePercentage Point Change
5%7%40%2 pp
10%12%20%2 pp
50%52%4%2 pp
1%3%200%2 pp
20%10%-50%-10 pp

Notice: the same 2 percentage point increase produces wildly different percentage changes depending on the starting value. A jump from 1% to 3% is a 200% increase — triple the original rate.

Where the Distinction Matters

Finance

A mortgage rate moving from 3% to 4% is a 33% increase in your interest cost — not just "1% more." On a $400,000 loan over 30 years:

RateMonthly PaymentTotal Interest
3.0%$1,686$207,109
4.0%$1,910$287,478

That 1 percentage point increase costs $80,369 more in interest — a 39% increase in total interest paid.

Elections

"Support for the candidate increased 5%" is ambiguous. If support went from 40% to 45%, that is:

  • 5 percentage points (the poll literally moved 5 points)
  • 12.5% increase relative to the original 40%

Political analysts use percentage points. So should you.

Health Statistics

Vaccination coverage rising from 60% to 75% is:

  • 15 percentage points more of the population
  • 25% increase in coverage

The first number tells you the population impact. The second tells you the relative improvement.

Common Errors in Reporting

Incorrect PhrasingWhat It ImpliesWhat Was Probably Meant
"Unemployment rose 2%"From 5% to 5.1%From 5% to 7% (2 pp)
"Tax rate increased 3%"From 20% to 20.6%From 20% to 23% (3 pp)
"Market share grew 10%"From 30% to 33%From 30% to 40% (10 pp)

Journalists and marketers routinely make this error. When you read a percentage headline, always ask: "Percentage of what?"

Quick Reference Rules

SituationUse
Comparing two rates or percentagesPercentage points
Measuring growth relative to a basePercentage change
Interest rates, tax rates, poll numbersPercentage points
Revenue growth, population growthPercentage change
Headlines for general audiencesSay both — "2 percentage points (a 40% increase)"

Calculating Both in Practice

function analyzeChange(oldRate, newRate) {
  const ppChange = newRate - oldRate;
  const pctChange = ((newRate - oldRate) / oldRate) * 100;
  return {
    percentagePoints: ppChange,
    percentageChange: pctChange
  };
}

// Interest rate: 5% → 7%
analyzeChange(5, 7);
// { percentagePoints: 2, percentageChange: 40 }

Key Takeaways

  • Percentage change is relative to the original value; percentage point change is the simple difference
  • The same percentage point change produces different percentage changes at different base values
  • Financial, political, and health data demand precise language — use percentage points for rate comparisons
  • When reading headlines, always clarify whether "increased X%" means percentage points or relative change
  • In professional writing, state both values to eliminate ambiguity

Try It Yourself

Calculate percentage changes and percentage point differences instantly with our Percentage Calculator. Enter your values and get both results side by side.