Skip to content
CalculatorsRuns in your browserPopular

Percentage Calculator

Work out percentages, increases, decreases and reverse percentages.

Input
No upload needed — instant
Privacy
Nothing is uploaded
Cost
Free · no sign-up · no watermark

Loading tool…

The tool is loading its code on your device. This happens once and is cached for later visits.

Processed entirely on your device

Everything you type or paste is handled by JavaScript running in this tab. No request is sent, nothing is logged and nothing is stored. Close the page and it is gone.

Overview

About the Percentage Calculator

Free percentage calculator with six modes: what is X% of Y, X is what % of Y, percentage change, increase, decrease and reverse percentage.

Percentages cause more everyday numerical errors than any other common calculation, mostly because the word hides three genuinely different operations. "What is 20% of 50", "20 is what percent of 50" and "what is the percentage change from 20 to 50" all use the same vocabulary and none of the same arithmetic.

The six questions

1. What is X% of Y?

result = (X ÷ 100) × Y

A tip, a discount, a tax, a commission. You know the rate and the base and want the amount.

2. X is what percent of Y?

result = (X ÷ Y) × 100

A score, a share, a proportion. You know the part and the whole and want the rate.

3. Percentage change from X to Y

result = ((Y − X) ÷ X) × 100

Growth, decline, month-on-month movement. The sign tells you the direction; the base is always the starting value.

4. Increase X by Y%

result = X × (1 + Y ÷ 100)

Adding VAT, applying a markup, projecting growth.

5. Decrease X by Y%

result = X × (1 − Y ÷ 100)

Applying a discount, removing a fee, projecting a decline.

6. Reverse percentage — X after a Y% change, what was the original?

original = X ÷ (1 ± Y ÷ 100)

The one people get wrong most. If something costs 120 including 20% VAT, the pre-VAT price is 100, not 96. Subtracting 20% from the total applies the rate to the wrong base.

Percentage points versus percent

This distinction matters far more than it appears to. If a conversion rate moves from 2% to 3%:

  • it rose by one percentage point;
  • it rose by 50 percent.

Both statements are true and they describe completely different magnitudes. Interest rates, unemployment figures, poll movements and tax brackets should always be quoted in percentage points when discussing absolute movement, and in percent only when discussing relative change.

Compounding and why sequential changes do not cancel

A 25% decrease requires a 33.3% increase to recover. Starting from 100: down 25% gives 75; 75 up 33.3% gives 100. The asymmetry comes from the changing base — the decrease was measured against 100, the recovery against 75.

This is why investment losses hurt disproportionately, why a "10% off then 10% off" sale is 19% off in total, and why averaging percentage changes arithmetically produces wrong answers. For a series of changes, use the geometric mean.

Precision

Percentages are exact arithmetic, but the inputs often are not. A figure quoted as "about 15%" carried through four operations should not be reported to three decimal places. Match your output precision to your input precision — usually one or two significant figures is more honest than the full float the calculator can give you.

Step by step

How to use the Percentage Calculator

  1. Pick the question you are actually asking from the six modes.

  2. Enter the two values you have.

  3. Read the result, shown with the working written out in words.

  4. Use the reverse modes when you know the outcome and need the starting figure.

  5. Copy the result, or switch modes to check the same numbers a different way.

Why use it

Benefits and common use cases

What this tool is good for, and what it deliberately does not try to do.

Six modes for six different questions

'What is 15% of 200' and '15 is what percent of 200' are different problems that people routinely conflate. Separate modes remove the ambiguity.

Shows the working

Each result is accompanied by the formula and the substitution, so you can verify the answer and learn the method rather than just trusting a number.

Percentage change done correctly

Handles the direction and the base properly — a drop from 80 to 60 is a 25% decrease, not 20%, and getting that wrong is a common and embarrassing error.

Handles negatives and reversals

Reverse percentage modes recover the original value before tax, discount or markup, which is the calculation spreadsheets get wrong most often.

Questions

Frequently asked questions

Short, honest answers about quality, limits and privacy.

How do I calculate a percentage increase?

Divide the increase by the original value and multiply by 100: ((new − old) ÷ old) × 100. Going from 80 to 100 is ((100 − 80) ÷ 80) × 100 = 25%. The base is always the original value, never the new one.

Why is a 20% increase followed by a 20% decrease not the same as no change?

Because the base changes. 100 increased by 20% is 120; 120 decreased by 20% is 96, since 20% of 120 is 24. Sequential percentage changes compound against different bases, which is why they do not cancel.

How do I reverse a percentage — find the original price before VAT?

Divide by (1 + rate). If a price including 20% VAT is 120, the original is 120 ÷ 1.20 = 100. For a discount, divide by (1 − rate): a price of 80 after a 20% discount came from 80 ÷ 0.80 = 100. Never subtract 20% from the final figure.

What is the difference between percentage points and percent?

A move from 4% to 6% interest is an increase of two percentage points but a 50% increase in the rate. Mixing these up is one of the most common errors in financial and political reporting, and it changes the meaning by an order of magnitude.

How do I calculate what percentage one number is of another?

Divide the part by the whole and multiply by 100. If 45 of 180 items are defective, that is (45 ÷ 180) × 100 = 25%. The result is dimensionless — it expresses a ratio, not a quantity.