Skip to main content

% Percentage Calculator

Calculate percentages, percent change, and percentage difference instantly

Math Calculator

% Percentage Calculator

What a percentage is: a percentage expresses a part as a fraction of 100. To calculate any percentage, divide the part by the whole and multiply by 100. For example, if 25 students out of 200 passed an exam, the pass rate is (25 ÷ 200) × 100 = 12.5%. This calculator handles six percentage operations: percent of a number, what-percent-is-X-of-Y, percentage change, percentage difference, percentage increase, and percentage decrease — with step-by-step working shown for every result.

Reviewed: April 23, 2026 · Author: Naveen P N, Founder — AI Calculator · Verified against: Wikipedia: Percentage, Wolfram MathWorld.

Percentage formula — all six variants

All percentage problems reduce to one of six canonical forms. Every result on this page is produced by one of these equations, and the calculator picks the right one based on the inputs you provide.

1. Standard percentage (what % is X of Y)
Percentage = (Part ÷ Whole) × 100
2. Percent of a number (find the part)
Part = (Percentage ÷ 100) × Whole
3. Reverse percentage (find the whole)
Whole = Part ÷ (Percentage ÷ 100)
4. Percentage change (old → new)
% Change = ((New − Old) ÷ Old) × 100
5. Percentage difference (two values, no reference)
% Difference = (|V1 − V2| ÷ ((V1 + V2) ÷ 2)) × 100
6. Compound percentage (repeated application)
Final = Initial × (1 + r/100)n  —  where r = % rate, n = periods

Percentage vs. percentage points — the one distinction that matters: If a statistic moves from 40% to 45%, it has increased by 5 percentage points but increased by 12.5% (because 5 ÷ 40 × 100 = 12.5). Mixing these up is the single most common mistake in published statistics. Our calculator reports both to eliminate ambiguity.

Worked example 1 — a pass-rate problem (simple case)

Scenario: A high-school math teacher needs to compute the pass rate for a final exam. 47 out of 62 students scored 50% or higher. What is the pass rate as a percentage?

Step 1 — identify the part and the whole. The part is the quantity you're measuring (47 students who passed). The whole is the total reference quantity (62 students who took the exam).

Step 2 — apply formula 1:

Pass rate = (47 ÷ 62) × 100 = 0.758064... × 100 = 75.81%

Step 3 — round appropriately. For a school report, two decimal places (75.81%) is typical. For a press release, round to one decimal (75.8%) or whole number (76%). Never round inputs before dividing — that compounds rounding error. Always divide first, then round the final answer.

Sanity check: 47 is a bit more than three-quarters of 62, and three-quarters is 75% — so 75.81% is in the right neighborhood. This "estimate first, calculate second" habit catches decimal-point errors that would otherwise slip through.

Worked example 2 — percentage change when one value is zero (edge case)

Scenario: A startup's revenue in Q1 was $0 (still pre-launch). In Q2 it reached $50,000. What is the percentage change?

Naive calculation: % Change = ((50,000 − 0) ÷ 0) × 100 = undefined (division by zero).

What this actually means: percentage change is a relative measure. When the baseline is zero, the concept has no numerical meaning — mathematicians describe it as an "infinite" or "undefined" increase. You cannot express "from nothing to something" as a percentage.

Correct reporting:

  • Report the absolute values: "Revenue grew from $0 to $50,000 between Q1 and Q2."
  • If a percentage is mandatory (investor deck, board report), use a carefully-chosen non-zero baseline (e.g. industry median, prior-year same quarter) and disclose it: "Q2 revenue of $50,000 is 3.2× the sector median."
  • Never quote "infinity %" or "∞% growth" — this looks technically correct but flags an inexperienced analyst to anyone reading it seriously.

Our calculator's behavior: when you enter a whole of zero, the calculator returns an explicit error message ("Whole cannot be zero") rather than silently producing Infinity or NaN. This is the single most important defensive check in percentage arithmetic.

Worked example 3 — a real-world compound scenario (investment return after fees)

Scenario: You invest $10,000 in an index fund. The fund returns 7.2% in year 1 and 9.8% in year 2. The fund charges a 0.45% annual management fee (deducted at year-end). What is your total return after 2 years?

Year 1 calculation:

Gross gain = $10,000 × (7.2 ÷ 100) = $720
Gross balance = $10,720
Fee = $10,720 × (0.45 ÷ 100) = $48.24
Year-end balance = $10,720 − $48.24 = $10,671.76

Year 2 calculation (note: year 2 gains are calculated on the new starting balance — this is why compound growth matters):

Gross gain = $10,671.76 × (9.8 ÷ 100) = $1,045.83
Gross balance = $11,717.59
Fee = $11,717.59 × (0.45 ÷ 100) = $52.73
Year-end balance = $11,717.59 − $52.73 = $11,664.86

Total return:

% Change = (($11,664.86 − $10,000) ÷ $10,000) × 100 = 16.65%

The naive mistake: adding 7.2% + 9.8% = 17.0% and subtracting 2 × 0.45% = 0.9%, giving 16.1%. This is wrong in two ways: (a) percentages don't add across periods (they compound), and (b) fees are applied to the growing balance, not the original principal. The 0.55-percentage-point gap between 16.65% and 16.1% is small here but matters enormously over 30 years — the difference between a comfortable retirement and an uncomfortable one. This is why financial planning always uses compound-percentage formulas, never additive approximations.

Common mistakes — the seven errors that cause 90% of percentage bugs

  1. Reversing part and whole. "What percentage is 40 of 200?" is 20%. "What percentage is 200 of 40?" is 500%. The calculator doesn't know which you meant — you do. Always label: "I am computing [part] as a percentage of [whole]." Write it out in words before plugging numbers in.
  2. Confusing percentage points and percent change. "Unemployment rose from 4% to 5%" — that's a 1 percentage-point rise but a 25% relative increase. Financial and political reporting routinely conflates these. If you see a headline with a percentage change in an already-percentage statistic (inflation rate, interest rate, poll number), check which the author means.
  3. Applying successive percentage changes additively. A 20% loss followed by a 20% gain does NOT return you to where you started. $100 × (1 − 0.20) = $80. $80 × (1 + 0.20) = $96, not $100. You need a ~25% gain to recover from a 20% loss. Our compound formula (variant 6 above) handles this correctly.
  4. Applying discounts "on top of" discounts. "20% off plus an extra 10%" is not 30% off. It's 1 − (0.80 × 0.90) = 1 − 0.72 = 28% off. Retailers deliberately structure stacked discounts this way because most shoppers calculate them wrong.
  5. Rounding inputs before computing. Computing (47.3 ÷ 62.8) × 100 after rounding to (47 ÷ 63) × 100 changes the answer from 75.32% to 74.60%. For any calculation you'll cite publicly, keep full precision internally and round only the displayed output.
  6. Ignoring the sign on percentage change. A −40% change is a loss; a +40% change is a gain. In tables and reports, always use a sign or explicit "down" / "up" prefix — the number alone is ambiguous.
  7. Treating percentage difference as percentage change. These are different formulas (4 vs 5 above). Use change when there's a clear "before" and "after" (time-series data, forecast vs actual). Use difference when comparing two readings with no inherent order (two sensors, two lab samples, two products).

When NOT to use a percentage — four cases where percentages mislead

Percentages are a brilliant compression tool but they hide information. In the following scenarios, report the absolute numbers instead or alongside the percentage:

  • Very small denominators. "50% of our users requested this feature" sounds compelling until you learn the user base is 4 people. Always disclose the sample size alongside any percentage computed from fewer than 30 observations.
  • Zero baselines. As covered in Example 2, percentage change from zero is mathematically undefined. Report the absolute values.
  • Comparing fundamentally different quantities. "My business grew 400% this year, his only grew 50%" — true, but meaningless if yours went from $1K to $5K and his went from $10M to $15M. Percentages should only be compared between quantities of similar magnitude.
  • Measurements with negative values. Percentage change on a quantity that can be negative (profit/loss, temperature in Celsius) produces nonsensical results. If last year's profit was −$1M and this year's is +$1M, the "percentage change" is mathematically undefined and philosophically meaningless — you went from losing money to making money, which is a categorical shift, not a proportional one.

Quick reference — common percentages

For mental math, memorizing these equivalences is worth more than carrying a calculator. All values assume the operand is the "whole."

Percentage Fraction Decimal Quick shortcut
1%1⁄1000.01Move the decimal 2 places left
5%1⁄200.05Divide by 20 (halve twice & divide by 5)
10%1⁄100.1Move the decimal 1 place left
12.5%1⁄80.125Divide by 8
15%3⁄200.1510% + half of 10%
20%1⁄50.2Divide by 5 (or double 10%)
25%1⁄40.25Divide by 4
33.33%1⁄30.3333…Divide by 3
50%1⁄20.5Halve it
66.67%2⁄30.6667…Double then divide by 3
75%3⁄40.75Quarter it, subtract from whole
100%1⁄11.0The whole value

Mental-math pro tip: x% of y = y% of x. So 4% of 75 is the same as 75% of 4, which is 3 — much easier to compute. This symmetry, underused in school but loved by professional traders and engineers, makes many tip-and-tax calculations solvable in your head.

Where percentages show up — 10 real-world applications

  1. Sales tax and VAT: the price you see vs. the price you pay. A 7.25% California sales tax on a $120 purchase adds $8.70 — our tip & tax calculator handles the whole thing.
  2. Tip calculation: 18% of the bill at a sit-down restaurant, 20% for excellent service, 15% for takeout. The math is trivial; the social etiquette is not.
  3. Discount pricing: retailers show "30% off $89" to make the math harder. Final price = $89 × 0.70 = $62.30. Our discount calculator handles stacked discounts too.
  4. Loan interest and EMI: mortgage rates (7.5%), credit-card APR (24.99%), and monthly EMI payments all start as percentage calculations. See our loan EMI calculator.
  5. Investment returns: "the S&P 500 returned 24% last year" — understanding compound vs. simple percentage is the difference between a wealthy retirement and a disappointing one.
  6. Body composition: body fat percentage, basal metabolic rate variance, percentile weight-for-age. See our BMI, body fat, and BMR calculators.
  7. Academic grading: 85% on an exam = B+. GPA itself is a weighted percentage average with some odd American conventions (see our GPA calculator).
  8. Engineering tolerances: "hold the machined diameter to ±0.5%" is a percentage specification. In electrical engineering, cable derating factors are applied as percentages — see our cable sizing calculator.
  9. Probability and statistics: a 72% chance of rain, a 95% confidence interval, an election candidate polling at 43% ± 3 percentage points.
  10. Nutrition labels: "20% of Daily Value of Vitamin C per serving" — understanding the denominator (2,000-calorie reference diet) matters.

Where the percent sign comes from — a short history

The word "percent" comes from the Latin per centum, meaning "by the hundred." Ancient Romans taxed sales and auctions using such ratios, though they had no symbol for it — they simply wrote out the fractions. The modern symbol "%" evolved from Italian merchant shorthand. In 15th-century manuscripts, clerks wrote "per 100" as "p cento," then "p 100" with a small superscript, then "pc̄o", then the "c̄o" compressed into the familiar "%". By 1650 the symbol had stabilized across European commerce.

The related symbols "‰" (per mille, one per thousand) and "‱" (per myriad, one per ten thousand, also called a "basis point") follow the same pattern. Basis points are the standard unit of interest-rate change: "the Fed raised rates by 25 basis points" = 0.25 percentage points. Financial journalists who mix up "percent" and "basis points" are immediately exposed to trader readers.

Today, percentages are so culturally embedded that misuse of them — conflating percentage points with percent change, reporting a percentage from a sample of 3, saying "400% more" when you mean "5× as much" — is one of the fastest ways to undermine credibility in any quantitative writing.

Sources & further reading

Frequently Asked Questions

How do I calculate a percentage?

Divide the part by the whole and multiply by 100. For example, 25 out of 200 = (25 ÷ 200) × 100 = 12.5%. This single formula handles the most common percentage question: "what percentage is X of Y?"

How do I find a percentage of a number?

Multiply the number by the percentage and divide by 100. For example, 15% of 240 = 240 × 15 ÷ 100 = 36. Equivalently, convert the percentage to a decimal (0.15) and multiply: 240 × 0.15 = 36.

What is the difference between percentage and percentage points?

A percentage point is the absolute arithmetic difference between two percentages. If unemployment goes from 4% to 5%, that is a 1 percentage-point increase, but a 25% relative increase (because 1 is 25% of 4). Statisticians, economists, and journalists mix these up constantly — always specify which you mean when the underlying statistic is itself a percentage.

How do I calculate percentage increase?

% Increase = ((New − Old) ÷ Old) × 100. Example: from 80 to 100 = ((100 − 80) ÷ 80) × 100 = 25% increase. Note: always divide by the OLD value, not the new one. Dividing by the new value gives the percentage the old was OF the new, which is a different (and less useful) quantity.

How do I calculate percentage decrease?

% Decrease = ((Old − New) ÷ Old) × 100. Example: from 120 to 90 = ((120 − 90) ÷ 120) × 100 = 25% decrease. By convention decrease is reported as a positive number with "decrease" attached, rather than as a negative percentage change — this avoids sign-confusion in spoken or written reports.

What is the percentage difference between two numbers?

% Difference = (|V1 − V2| ÷ ((V1 + V2) ÷ 2)) × 100. It compares two values using their average as the reference, which is symmetric — it doesn't matter which you call V1 and which V2. Use this when there's no natural "before" or "after" (e.g. two sensor readings, two lab samples, two products).

How do I reverse a percentage (find the original amount)?

If you know the final amount and the percentage applied, divide: Original = Final ÷ (1 + rate/100) for increases, or Original = Final ÷ (1 − rate/100) for decreases. Example: a $60 item that is 25% off was originally $60 ÷ 0.75 = $80. This "reverse percentage" is the single most-requested variant of the formula.

Can a percentage be more than 100%?

Yes. Percentages express ratios, and ratios can exceed 1 (= 100%). If your revenue went from $50K to $150K, that's a 200% increase. If one class scored 1.5× the average, that's 150% of the average. Percentages above 100% are mathematically valid but require care in reporting — some audiences find them counterintuitive, so providing the absolute numbers alongside helps.

Why can't I calculate percentage change when the starting value is zero?

Percentage change divides by the starting value, and division by zero is undefined in standard arithmetic. When your baseline is zero, report the absolute change instead ("grew from $0 to $50,000") or pick a non-zero reference point and disclose it. Never write "infinity %" or "∞% growth" — it is technically correct but signals inexperience in any professional context.

Do successive percentages add up?

No, they compound. A 20% loss followed by a 20% gain does not return you to the start. $100 × 0.80 × 1.20 = $96, not $100. To recover from a 20% loss, you need a 25% gain. This is why financial planning always uses compound-percentage formulas (Final = Initial × (1 + r/100)ⁿ) rather than additive approximations.

How do I convert a percentage to a decimal or a fraction?

To convert a percentage to a decimal, divide by 100 (or move the decimal two places to the left): 42% → 0.42. To convert to a fraction, write the percentage over 100 and simplify: 42% = 42/100 = 21/50. Our fraction calculator handles the simplification automatically.

Is this percentage calculator free? Do I need to sign up?

Yes, completely free. No signup, no account, no email required, no usage limits. Every calculation runs in your browser — the numbers you enter are never sent to our servers. The site is funded by non-intrusive display ads via Google AdSense; see our privacy policy for details.

Need Advanced Calculations?

Use the full AI Calculator suite — 100+ precision engineering and science calculators with PDF report export.

% Open Full Math Calculator — Free