How to Find the Percentage of a Number on a Calculator

Calculators — whether physical, built into your phone, or running in a browser tab — handle percentage calculations slightly differently depending on the type and platform. What looks like a simple button press can produce unexpected results if you don't understand what the calculator is actually doing under the hood.

What "Finding a Percentage" Actually Means

Before touching any buttons, it helps to be clear about what you're solving. "Finding the percentage of a number" usually means one of three things:

  • What is X% of Y? (e.g., What is 20% of 150?)
  • What percentage is X of Y? (e.g., 30 is what percent of 150?)
  • Percentage change — how much has a value increased or decreased in percentage terms?

Each of these requires a different sequence of steps, and conflating them is the most common source of wrong answers.

The Basic Math Behind It

For the most common case — finding X% of a number — the underlying operation is simple division and multiplication:

X% of Y = (X ÷ 100) × Y

So 20% of 150 = (20 ÷ 100) × 150 = 0.20 × 150 = 30

Every calculator method, regardless of device or app, is just a shortcut for this arithmetic. Understanding this means you can always fall back on manual entry even when the % button behaves unexpectedly.

Using the % Button on a Basic Calculator

Most physical calculators and simple calculator apps include a dedicated % key. Here's the standard sequence for finding a percentage of a number:

  1. Enter the base number (e.g., 150)
  2. Press × (multiply)
  3. Enter the percentage value (e.g., 20)
  4. Press %

On many basic calculators, pressing % at this point automatically completes the calculation — you don't need to press = afterward. The result should be 30.

⚠️ The catch: not all calculators follow this convention. Some require you to press = after %. Others convert the percentage inline, so pressing % turns 20 into 0.2 on screen, and then you press = to complete the multiplication. If your answer looks off by a factor of 100, this is almost always why.

How It Works on Smartphones

iPhone Calculator (iOS)

The iOS Calculator app in portrait mode behaves like a standard basic calculator. The % key divides the displayed number by 100 immediately. So if you're mid-calculation — say you've entered 150 × 20 — pressing % converts the 20 to 0.20 and pressing = gives you 30.

In landscape mode, the iPhone calculator becomes a scientific calculator with more functions, but the % behavior remains the same.

Android Calculators

Android ships with different calculator apps depending on the manufacturer. Google's default Calculator app handles percentages similarly to iOS — the % key applies a divide-by-100 conversion in context. Samsung's calculator app, included on Galaxy devices, also supports this but may display intermediate steps differently on screen.

The important variable: third-party calculator apps on Android vary significantly. Some treat % as a direct operator that completes the calculation; others use it purely as a conversion key.

Using Google's Built-In Calculator 🔢

Typing a calculation directly into Google Search — like 20% of 150 — returns an answer instantly using Google's built-in calculator widget. This is often the fastest method for one-off calculations and eliminates any ambiguity about button sequences.

You can also type expressions like:

  • 150 * 20% in the Google search bar
  • =150*20% directly into a Google Sheets cell

Both work reliably and are worth knowing as fallback methods.

Spreadsheets: Excel and Google Sheets

In spreadsheet applications, percentage calculations are straightforward once you understand how percentage formatting works:

GoalFormula ExampleResult
20% of 150=150*20% or =150*0.230
What % is 30 of 150?=30/150 (format cell as %)20%
Increase 150 by 20%=150*(1+20%)180
Decrease 150 by 20%=150*(1-20%)120

In spreadsheets, the % symbol within a formula is interpreted as ÷ 100, so 20% and 0.2 are treated identically. This makes spreadsheets arguably the most transparent environment for percentage work because the formula is always visible.

Where Results Diverge Across Calculators

The same button sequence can produce different results depending on:

  • Calculator type — scientific, basic, financial, or spreadsheet-based
  • App version and OS — behavior has changed across iOS and Android updates
  • Operator precedence rules — some calculators evaluate left to right; others follow mathematical order of operations
  • Whether % acts as a conversion or an operator — this single design choice drives most of the confusion

A financial calculator, for instance, treats percentage inputs very differently than a pocket calculator — because its intended use case involves interest rates, amortization, and compound growth, not simple multiplication.

The Variables That Determine Your Experience

Getting consistent results from percentage calculations depends on a few factors specific to your situation:

  • Which device and app you're using most often — and whether you've verified its % button behavior with a known test case
  • How frequently you need these calculations — occasional use favors Google Search or a browser calculator; repeated structured work favors a spreadsheet
  • The type of percentage problem — finding a percentage of a number, calculating a percentage difference, and finding what percentage one number is of another all require different approaches, even on the same calculator

The method that works reliably for one person's daily workflow may introduce errors for someone else's, simply because the underlying calculator logic differs. Knowing the base formula — (X ÷ 100) × Y — means you're never fully dependent on a button behaving the way you expect.