Percentage Calculator

Percentage Calculator

Calculate percentages, percentage increase/decrease, find X% of Y, what percent is X of Y. Free online percentage calculator with formulas

Percentage problems are deceptively easy to get wrong because the same English question maps to three different calculations: "what is 20% of 150?", "20 is what percent of 150?", and "150 is 20% more than what?". This calculator splits them into clearly-labeled modes so you do not end up dividing when you meant to multiply, plus handles compound changes (a 10% increase followed by a 10% decrease does not return you to the start — it loses 1%).

The three percentage operations

Every percentage problem reduces to one of three relationships between a percent (p), a part, and a whole:

  1. Find the part: part = whole × (p / 100). "What is 20% of 150?" → 150 × 0.20 = 30
  2. Find the percent: p = (part / whole) × 100. "30 is what percent of 150?" → (30 / 150) × 100 = 20%
  3. Find the whole: whole = part / (p / 100). "30 is 20% of what?" → 30 / 0.20 = 150

Identifying which one of these you actually have is 90% of the difficulty. Once you know, the arithmetic is rote.

Working example: VAT inclusive vs exclusive

Polish VAT is 23%. If a receipt shows 123 zł "gross" (VAT included), the net price is NOT 123 × 0.77 = 94.71 zł. That treats 23% as a multiplier on gross instead of on net.

Input

Gross: 123 zł
VAT: 23%
Find: net price

Output

Correct: net = gross / (1 + VAT) = 123 / 1.23 = 100.00 zł
Wrong:   gross × (1 - VAT) = 123 × 0.77 = 94.71 zł

Difference: 5.29 zł per 100 zł of net — a 5%+ mispricing if you use the wrong formula.

The reason: VAT is calculated ON the net, not subtracted from the gross. Recovering net from gross requires dividing by (1 + VAT rate), not multiplying by (1 − VAT rate).

Compound percentage changes

A 10% increase followed by a 10% decrease does not return you to the starting value. The decrease is applied to a larger base than the original.

  • Start: 100
  • After +10%: 110 (= 100 × 1.10)
  • After −10%: 99 (= 110 × 0.90)
  • Net change: −1%, not 0%

This is why stock prices that "recovered" to break-even after a 50% drop need to gain 100% from the bottom, not 50%. The asymmetry compounds — n equal-percentage swings of opposite sign always leave you below the start.

When to reach for this tool

  • You are extracting net from gross on an invoice and want to avoid the "× 0.77" mistake.
  • A spreadsheet column shows percentage changes and you need to confirm whether the cumulative effect compounds or adds.
  • You are calculating a tip + tax + service charge and need to know whether the order of application changes the final amount (yes, sometimes — depends on whether they multiply or add to the subtotal).
  • You are presenting "down 25%" vs "down 25 percentage points" and want to be sure you mean what you say.

What this tool will not do

  • It will not compute compound interest with monthly contributions or annuities — use the dedicated compound interest calculator.
  • It will not handle percentage point arithmetic with statistical confidence intervals — for that, use a stats tool, not a percentage calculator.
  • It will not convert basis points specifically (100 bps = 1 percentage point) but you can do this manually: divide by 100.

Frequently asked questions

What is the difference between "percent" and "percentage point"?

Interest rates going from 4% to 5% is a 1 percentage point increase OR a 25% increase (1/4 = 0.25). News headlines routinely confuse the two. When in doubt, write out the absolute values: "from 4% to 5%" is unambiguous.

Why is +50% followed by −50% not zero?

Because the −50% applies to a larger base. 100 → +50% → 150 → −50% → 75. To return to 100 from 150 you need −33.3%, not −50%. This is the geometric vs arithmetic mean distinction in a single example.

How do I calculate "X is what percent more than Y"?

Percent change = (X − Y) / Y × 100. So if your salary went from 5000 to 5500, that is (5500 − 5000) / 5000 × 100 = 10%. The denominator is the original value, not the new one.

Can a percentage be greater than 100?

Yes. 200% means "twice as much". 150% of 80 is 120. The 100% cap only applies when you are describing parts of a whole (like an exam score) — for ratios, growth rates, and multipliers, there is no upper limit.

How do I split a tip between people, then add tax?

Order matters slightly for tax-on-tip vs tip-on-tax jurisdictions. In most places: subtotal × tip% = tip; subtotal × tax% = tax; total = subtotal + tip + tax; per-person = total / N. Some restaurants add a service charge before tax, which compounds — check the receipt.

Why does my discount code give a different amount than I expected?

Usually because the discount is applied AFTER another discount or BEFORE tax, and the order matters. "20% off then 10% off" is not the same as "30% off" — it is 28% off (0.8 × 0.9 = 0.72).

Related tools

Last updated · E-Utils editorial team