Percentage Calculator
Calculate percentages, percentage change, and what percentage one number is of another.
Enter your values and click Calculate
How It Works
This calculator handles three distinct percentage operations, each using its own formula. Mode 1 — 'What is X% of Y?': Result = (X ÷ 100) × Y. This finds a fractional portion of a number. For example, 15% of 200 = (15 ÷ 100) × 200 = 0.15 × 200 = 30. Use this for tips, tax amounts, discounts, and commission figures. Mode 2 — 'X is what % of Y?': Result = (X ÷ Y) × 100. This expresses X as a proportion of Y scaled to a 0–100 range. For example, 45 is what % of 180 = (45 ÷ 180) × 100 = 25%. Use this for test scores, completion rates, and market share calculations. Mode 3 — 'Percentage change from X to Y': Result = ((Y − X) ÷ |X|) × 100. This measures the relative change between a starting and ending value. The formula uses the absolute value of X in the denominator so it behaves correctly even when the starting value is negative. A positive result is an increase; a negative result is a decrease. For example, from 80 to 100: ((100 − 80) ÷ 80) × 100 = 25% increase. The absolute difference between X and Y is displayed alongside the percentage so you have both the relative and absolute context.