🍋
Menu
How-To Beginner 2 min read 306 words

Percentage Calculation Formulas and Real-World Applications

Percentages appear everywhere: discounts, tax rates, growth metrics, and exam scores. This guide covers the three core formulas and common calculation mistakes.

Key Takeaways

  • Every percentage problem reduces to one of three questions:
  • If an interest rate rises from 5% to 7%, it increased by 2 percentage points but by 40% in relative terms: `((7 - 5) / 5) * 100 = 40%`.
  • Finding the original value before a percentage was applied is a reverse calculation.
  • Sales tax**: Total = Price * (1 + Tax Rate)

The Three Core Formulas

Every percentage problem reduces to one of three questions:

1. What is X% of Y?

Formula: Result = Y * (X / 100)

Example: What is 15% of 200? 200 * (15 / 100) = 200 * 0.15 = 30

2. X is what percent of Y?

Formula: Percentage = (X / Y) * 100

Example: 45 is what percent of 180? (45 / 180) * 100 = 25%

3. Percentage change from X to Y

Formula: Change = ((Y - X) / X) * 100

Example: Sales grew from 800 to 1,000. ((1000 - 800) / 800) * 100 = 25% increase

Percentage Points vs Percentages

If an interest rate rises from 5% to 7%, it increased by 2 percentage points but by 40% in relative terms: ((7 - 5) / 5) * 100 = 40%. This distinction matters in finance and journalism.

Common Mistakes

Mistake Why It's Wrong
Adding percentages of different bases 10% of 100 + 10% of 200 is not 10% of 300
Reversing percentage changes A 50% increase then 50% decrease does NOT return to the original
Confusing markup and margin 50% markup on $10 = $15; 50% margin means cost is $5

Reverse Percentage

Finding the original value before a percentage was applied is a reverse calculation. If a discounted price is $85 after a 15% discount, the original price is 85 / (1 - 0.15) = 85 / 0.85 = $100.

Applications

  • Sales tax: Total = Price * (1 + Tax Rate)
  • Tip calculation: Tip = Subtotal * Tip Rate
  • Grade calculation: Score = (Points Earned / Total Points) * 100
  • Growth rate: Compare revenue, users, or traffic across periods