Math
Z-Score Calculator
Find a z-score from raw data, or work backward from a percentile to the matching z-score.
Z-Score Result
Z-Score
—
Percentile
—
Probability left of x
—
Probability right of x
—
Two-tailed probability
—
—
Percentile Result
Z-Score
—
One-tailed area
—
Two-tailed (±z) confidence
—
—
Formulas
Z-Score
z = (x − μ) / σ
Standard deviations a value is from the mean
Percentile
Φ(z) × 100
Φ is the standard normal CDF
Probability right
1 − Φ(z)
Area to the right of z
Two-tailed p-value
2 × (1 − Φ(|z|))
Area in both tails beyond ±|z|
Inverse (percentile → z)
z = Φ⁻¹(p / 100)
Solved here by bisection search
Common Z-Scores
Confidence intervals (two-tailed)
90% → z = 1.645 · 95% → z = 1.960 · 99% → z = 2.576 · 99.5% → z = 2.807
Percentiles
89th → z ≈ 1.227 · 90th → z ≈ 1.282 · 91st → z ≈ 1.341 · 92nd → z ≈ 1.405
These come from the points on the standard normal curve where the cumulative area matches the target percentage.
Interpreting Results
Sign: Positive z means above the mean; negative z means below the mean.
Magnitude: |z| beyond 2 is unusual; beyond 3 is a rare outlier in most normal distributions.
Percentile: A z of 1.0 sits at roughly the 84th percentile — higher than about 84% of the distribution.
Related
Related calculators.
FAQ
Frequently asked questions.
What is a z-score?
A z-score (also called a standard score) tells you how many standard deviations a value is above or below the mean of its distribution. A z-score of 0 means the value equals the mean, a positive z-score means the value is above the mean, and a negative z-score means it is below the mean. Because z-scores are standardized, they let you compare values from different data sets or units on the same scale.
How do you calculate a z-score?
The z-score formula is z = (x − μ) / σ, where x is the raw score, μ (mu) is the population mean, and σ (sigma) is the population standard deviation. Subtract the mean from your raw score, then divide the result by the standard deviation. For example, a score of 85 with a mean of 75 and a standard deviation of 10 gives z = (85 − 75) / 10 = 1.0, meaning the score is exactly one standard deviation above the mean.
What does a z-score tell you?
A z-score tells you how unusual or typical a value is relative to the rest of the distribution, expressed purely in standard deviations from the mean. A z-score near 0 indicates a typical, average value, while a z-score beyond ±2 or ±3 indicates an increasingly rare or extreme value. This makes z-scores useful for spotting outliers, standardizing test scores, and comparing measurements across different scales.
How do you convert a z-score to a percentile?
A z-score is converted to a percentile using the cumulative distribution function (CDF) of the standard normal distribution, often written Φ(z). This calculator computes Φ(z) with a numerical approximation of the error function and multiplies by 100, so a z-score of 1.0 converts to roughly the 84th percentile — meaning the value scores higher than about 84% of the distribution. Negative z-scores convert to percentiles below 50, and positive z-scores convert to percentiles above 50.
What are common z-scores for confidence intervals?
For a two-tailed 90% confidence interval, the critical z-value is 1.645. For 95% confidence it is 1.960, for 99% confidence it is 2.576, and for 99.5% confidence it is 2.807. These values come from the points on the standard normal curve that leave the specified percentage of area in the middle, with the remaining area split equally between the two tails.
What is the difference between a positive and negative z-score?
A positive z-score means the raw value is above the mean of the distribution, while a negative z-score means the raw value is below the mean. The magnitude of the z-score (ignoring the sign) shows how far the value is from the mean in standard deviations — a z-score of −2 is just as far from the mean as a z-score of +2, but on the opposite side.
What is a good z-score?
There is no universally 'good' z-score — it depends on context. In many practical settings, a z-score between −2 and +2 is considered normal or typical (covering about 95% of a normal distribution), while values beyond ±2 or ±3 are considered unusual or outliers. Whether a high or low z-score is 'good' depends on what is being measured, for example a high z-score is desirable for a test score but may be undesirable for a defect rate.
Last updated: August 17, 2026