Z-Score Calculator: Unlock Percentiles Free in 1 Click

Z-Score Calculator + PERCENTILE

Find the z-score, percentile and probability from a value & standard deviation — or straight from a data set.

I know the mean & SD
I have a data set

Result

Z-Score
Percentile
P(Z < z)
P(Z > z)
Two-tailed p
Show step-by-step working (with formula)

Probabilities use the standard normal distribution (Φ). A z-score tells you how many standard deviations a value is from the mean.

This free z score calculator finds the z-score of any value, then converts it to a percentile and probability using the normal distribution — either from a value, mean and standard deviation, or straight from your data set.

Key takeaways

  • A z-score measures how many standard deviations a value is from the mean: $z=\dfrac{x-\mu}{\sigma}$.
  • A positive z-score is above the mean; a negative one is below it; $z=0$ is exactly average.
  • Convert a z-score to a percentile with the normal CDF, $\Phi(z)$.
  • In ML, turning features into z-scores is called standardization.

How to use the z score calculator

The z score calculator at the top works two ways. If you already know the mean and standard deviation, type your value (x), the mean (μ) and the standard deviation (σ) and press Calculate. If you only have raw numbers, switch to the “I have a data set” tab, paste your values and the z score calculator computes the mean and standard deviation for you before scoring your value — and returns the percentile and probabilities too.

z-score calculator normal distribution curve with the area to the left of a z-score shaded
A z-score maps a value onto the standard normal curve; the shaded area to its left is the percentile.

What is a z-score?

A z-score (also called a standard score) tells you how far a data point sits from the mean, measured in standard deviations. See the formal definition on the standard score reference and the NIST handbook.

Definition. The z-score of a value is the signed number of standard deviations it lies above (positive) or below (negative) the mean of its distribution.
“A z-score turns any value into a common, unit-free scale — so you can compare apples to oranges across different distributions.”

The z-score formula

For a population with mean $\mu$ and standard deviation $\sigma$:

$$z=\frac{x-\mu}{\sigma}$$

When you’re working from a sample, use the sample mean $\bar{x}$ and sample standard deviation $s$:

$$z=\frac{x-\bar{x}}{s}$$
ℹ️ InfoThe z score calculator above uses exactly these formulas — open “Show step-by-step working” to watch it substitute your numbers.

How to calculate a z-score step by step

  1. Find the mean $\mu$ (or $\bar{x}$) of the distribution.
  2. Find the standard deviation $\sigma$ (or $s$). Need it? Use our standard deviation calculator.
  3. Subtract and divide: $z=\dfrac{x-\mu}{\sigma}$.
⚠️ Common mistakeUse the standard deviation, not the variance, in the denominator. If you accidentally divide by $\sigma^2$ your z-score will be far too small.

Worked example

A student scores 85 on a test where the mean is 70 and the standard deviation is 10:

$$z=\frac{85-70}{10}=\frac{15}{10}=1.5$$

A z-score of 1.5 means the score is 1.5 standard deviations above the mean — better than about 93.3% of students (the 93rd percentile).

✅ TipType 85, 70 and 10 into the z score calculator to see the percentile (93.32%) and tail probabilities computed automatically.

Z-score to percentile table

Z-scorePercentile (area to the left)Meaning
−2.02.3%Well below average
−1.015.9%Below average
0.050.0%Exactly average
+1.084.1%Above average
+1.593.3%Top ~7%
+2.097.7%Top ~2%
+3.099.9%Extremely high

Why z-scores matter in machine learning

If you’re into machine learning for beginners, you’ll meet z-scores as standardization — one of the most common preprocessing steps. The same idea connects to the covariance matrix and PCA.

🤖 ML insight

Standardizing a feature rescales it to mean 0 and standard deviation 1 using the z-score:

$$z=\frac{x-\mu}{\sigma}$$

This keeps features on a comparable scale so gradient-based models (logistic regression, SVMs, neural networks) converge faster and no single large-valued feature dominates. Z-scores also flag outliers: values with $|z|>3$ are unusually far from the mean.

Frequently asked questions

What does a negative z-score mean?
A negative z-score simply means the value is below the mean. For example, $z=-1$ is one standard deviation below average.
How do I turn a z-score into a percentile?
Apply the normal cumulative distribution function $\Phi(z)$ — the area to the left of the z-score. The z score calculator does this for you.
What is a good z-score?
It depends on context, but values within ±2 are typical; $|z|>3$ usually marks an outlier.
Do I use sample or population standard deviation?
Use the population SD when your data is the whole group, and the sample SD when it’s a sample. The data-set tab lets you choose.
Can the z score calculator work from raw data?
Yes — paste your numbers in the “I have a data set” tab and it computes the mean and standard deviation before scoring your value.

Z score calculator: summary

Whether you’re standardizing a test score or preprocessing features for a model, this z score calculator gives you the z-score, percentile and probabilities with the working shown. Pair it with the standard deviation calculator and keep learning with machine learning for beginners.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top