Skip to content
CertoflowCertoflow
Education Tools

Percentage Calculator

Calculate percentages and percent change.

Guide

Introduction

Percentages appear in homework, finance, fitness tracking, shopping discounts, and grade calculations — yet the wording changes the formula. "What is 15% of 80?" differs from "80 is what percent of 200?" and both differ from "price went from 50 to 65 — what percent change?" Certoflow's Percentage Calculator handles these three patterns in one interface, updating results as you type. Everything runs client-side in your browser: no sign-up, no ads-driven data collection, and no round-trip to a server for basic arithmetic.

Students checking algebra problems, employees estimating sale tax, and shoppers comparing markdowns all need the same core operations with different labels. This tool maps plain-language questions to the correct formula so you spend time understanding the answer, not memorizing which number goes in the denominator.

What this tool does

Three modes, selected by tabs at the top:

ModeLabelQuestion answered
X% of YPercent-ofWhat is X percent of number Y?
X is ?% of YWhat-percentX is what percent of Y?
% ChangeChangePercent increase or decrease from original to new value

Each mode shows two numeric inputs with context-specific labels:

  • X% of Y — fields: Percentage, Number
  • X is ?% of Y — fields: Part, Whole
  • % Change — fields: Original, New value

Results appear automatically when both fields contain valid numbers. Invalid or empty inputs hide the result until values are complete.

How it works

Certoflow applies standard formulas locally in JavaScript:

Percent of (X% of Y)

result = (X / 100) × Y

Example: 15% of 80 → (15/100) × 80 = 12

What percent (X is ?% of Y)

percent = (X / Y) × 100

Example: 25 is what percent of 200 → (25/200) × 100 = 12.5%

Division by zero (Y = 0) returns an error message instead of a number.

Percent change (original → new)

change% = ((new − original) / original) × 100

Example: original 50, new 65 → ((65−50)/50) × 100 = 30% increase

Original value of zero cannot compute change (division by zero); the tool displays an appropriate message.

No data leaves your device. Calculations re-run instantly on every keystroke via in-browser memoization.

Formula quick reference

TaskFormulaCertoflow mode
Tip on a billamount × (tip% / 100)X% of Y
Test score(points earned / total points) × 100X is ?% of Y
Price markup((new − old) / old) × 100% Change
Sale discount((original − sale) / original) × 100% Change

Real-world examples

Restaurant tip (X% of Y)

Bill total $86.50, tipping 18%:

  • Percentage: 18
  • Number: 86.50
  • Result: 18% of 86.50 = 15.57

Add tip mentally or split among diners from that value.

Exam score (what percent)

You scored 42 points out of 50:

  • Part: 42
  • Whole: 50
  • Result: 42 is 84.00% of 50

Compare to a 90% A threshold for the course.

Stock price change (% change)

Share price moved from $120 to $138:

  • Original: 120
  • New value: 138
  • Result: Change: 15.00%

Negative change appears when new value is below original (for example, 120 → 102 shows −15%).

Retail markdown

Shirt was $45, now $27:

  • Original: 45
  • New value: 27
  • Result: Change: −40.00%

The negative sign indicates a decrease; 40% off the original price.

GPA-style weighted contribution

A project worth 30% of the course: you earned 88% on the project. How many percentage points does it add to the course?

  • Part: 88 (your project percent)
  • Whole: 100
  • Then take X% of Y: 30% of 88 = 26.4 points toward the course — combine with other weighted components separately.

Chemistry concentration

Solution has 250 mL solute in 1000 mL total (simplified):

  • Part: 250
  • Whole: 1000
  • Result: 250 is 25.00% of 1000

Always confirm whether chemistry problems use mass/mass or volume/volume before applying.

Common mistakes

Using the wrong base in percent change. Change is always relative to the original value, not the new value. A rise from 100 to 150 is 50% increase, not 33%. Certoflow divides by the original field correctly in change mode.

Swapping part and whole. "What percent is 20 of 50?" needs part=20, whole=50. Reversing yields 250% — wrong for the intended question.

Treating percent change as symmetric. A 50% drop from 100 to 50 requires a 100% increase (not 50%) to return to 100. Percent change is not reversible by negating the sign.

Adding percentages incorrectly. 20% off plus 10% off is not 30% off total; discounts compound multiplicatively. Use sequential change mode or multiply remaining fractions.

Forgetting percent means "per hundred." 0.15 as a decimal is 15%, not 0.15%. In X% of Y mode, enter 15 for fifteen percent, not 0.15.

Rounding too early in multi-step homework. Certoflow shows two decimal places. Show extra precision on paper until the final step if your teacher requires it.

Confusing percentage points with percent change. Interest rate rising from 2% to 3% is a 1 percentage point increase but a 50% relative increase. Change mode reports relative percent unless you compute points manually.

Use cases

Middle and high school math — Verify word problems for percent of a number, finding the whole, and percent increase/decrease chapters.

Personal finance — Budget categories ("housing is what percent of income?"), tip calculation, and comparing year-over-year utility bills.

Fitness and nutrition — Macro targets ("30% of daily calories from protein" given calorie goal).

Business reporting — Quick sanity checks on revenue or conversion rate deltas before building spreadsheets.

Shopping — Compare Black Friday claims; confirm whether "60% off" matches shelf tags.

Data literacy — Journalists and analysts double-check percentage headlines that often confuse absolute and relative change.

Teaching — Instructors project the tool to show how swapping inputs changes mode interpretation.

FAQ

How do I calculate percent change?

Select % Change, enter the original value and the new value. The tool computes ((new − original) / original) × 100 and labels the result as increase (positive) or decrease (negative).

What does "X% of Y" mean numerically?

It means multiply Y by X divided by 100. Fifteen percent of 200 is 0.15 × 200 = 30.

Why does the tool say "Cannot divide by zero"?

In what percent mode, the whole (denominator) cannot be zero. In change mode, the original value cannot be zero because change is defined relative to a starting amount.

Does Certoflow store my numbers?

No. Inputs and results exist only in your browser session. There is no account and no server upload.

How many decimal places are shown?

Results display with two decimal places (for example, 12.50%). Very large or small numbers still follow standard floating-point limits of JavaScript.

Can I calculate reverse percentage (find the whole given part and percent)?

If you know 30 is 20% of an unknown whole, use what-percent mode to verify relationships, or algebra: whole = part / (percent/100). A dedicated "find whole" mode is not separate — set up the equation from X% of Y results.

Is percent change the same as percentage points?

No. Going from 10% to 15% failure rate is 5 percentage points but 50% relative change. This calculator's change mode reports relative percent change.

Can I use this offline?

Yes, after the page loads. All formulas run locally without network access.

Which mode for sales tax?

Tax owed: X% of Y (tax rate as X, purchase price as Y). Price with tax: add result to original price manually, or use Y + (X% of Y).

Which mode for "how much bigger" comparisons?

If comparing two values where one is the reference baseline, use change with the baseline as original. If asking what fraction one value is of another without time direction, use what percent.

Frequently Asked Questions

How do I calculate percent change?
Enter the original value and the new value. The tool computes increase or decrease automatically.
Are results stored?
No. All math runs locally in your browser.

Continue with these related utilities.