Z-Score Calculator
Convert any raw score to a standard score and find its percentile in a normal distribution.
📖 What is a Z-Score?
A Z-score (also called a standard score) measures how many standard deviations a particular data point lies above or below the mean of a distribution. It is one of the most fundamental tools in statistics, used to standardise values from any normal distribution to a common scale with mean 0 and standard deviation 1.
Z-scores enable meaningful comparison between values measured on different scales. For example, you cannot directly compare a score of 80 on a maths test with a score of 650 on an aptitude exam - but you can compare their Z-scores to determine which performance was more exceptional relative to its respective group.
The concept was developed in the context of the standard normal distribution (also known as the Gaussian distribution), which is completely described by its mean and standard deviation. Once you know the Z-score, you can immediately look up the corresponding percentile using the standard normal table (or the calculator above), which tells you what fraction of the population scored below that value.
Z-scores are used throughout statistics, science, and business: in hypothesis testing (Z-tests), quality control (Six Sigma process capability), finance (Altman Z-Score for bankruptcy prediction), standardised testing (SAT, GRE, IQ scores), clinical diagnostics (bone density T-scores), and machine learning (feature standardisation for gradient-based models).
📐 Formula
X = raw score (the value you want to standardise)
μ (mu) = population mean
σ (sigma) = population standard deviation (must be > 0)
Reverse formula (Z to X): X = μ + Z × σ
Percentile from Z: Φ(Z) × 100% where Φ is the standard normal CDF. For Z = 1.96, percentile ≈ 97.5%. This calculator uses a high-accuracy rational approximation of Φ.
Sample Z-score (when estimating from sample data): Z = (X − x̄) / s, where x̄ is the sample mean and s is the sample standard deviation. When the population parameters are unknown, use the t-distribution instead for small samples.
📖 How to Use This Calculator
📝 Example Calculations
Example 1 - Student Test Score
A student scores 85 on an exam. The class mean is 72 and SD is 9.
Z = (85 − 72) / 9 = 13 / 9 = 1.44
Percentile ≈ 92.5% - the student performed better than about 92.5% of the class.
Example 2 - Below-Average Performance
An employee's productivity score is 58. Department mean is 75, SD is 12.
Z = (58 − 75) / 12 = −17 / 12 = −1.42
Percentile ≈ 7.8% - the employee is in the bottom ~8% of the department.
Example 3 - Reverse Lookup (Z to Raw Score)
A university wants students at or above the 90th percentile (Z = 1.282). Mean SAT = 1050, SD = 210.
X = 1050 + 1.282 × 210 = 1050 + 269.2 = 1319
Students scoring ≥ 1319 qualify for the programme.
Example 4 - Quality Control
A bolt has diameter 10.05 mm. Process mean is 10.00 mm, SD is 0.02 mm. Spec limit is Z = ±3.
Z = (10.05 − 10.00) / 0.02 = 0.05 / 0.02 = 2.5
Within ±3 sigma spec - percentile = 99.4%. The bolt is within specification.
Example 5 - IQ Score Interpretation
IQ is standardised with mean 100 and SD 15. What is the Z-score for IQ = 130?
Z = (130 − 100) / 15 = 30 / 15 = 2.0
Percentile ≈ 97.7% - a score of 130 is in the top 2.3% of the population.