Calculate Z-score standard scores, percentiles, raw score values, and standard normal distribution probabilities P(Z < z).
Click "Calculate Z-Score" to compute standard score.
A high school student scoring 1350 on the SAT (mean 1050, SD 200) and 30 on the ACT (mean 21, SD 5) compares their performance across different test scales: calculating standard scores reveals an SAT Z-score of Z = (1350 - 1050) / 200 = +1.50 and an ACT Z-score of Z = (30 - 21) / 5 = +1.80, demonstrating stronger relative performance on the ACT. A physician inspecting a pediatric growth chart uses Z-scores to evaluate whether a child's height or weight falls within normal developmental ranges.
A Z-score (also known as a standard score) is a dimensionless statistical metric that quantifies how many standard deviations a raw observation X lies above or below the population mean μ.
Standardizing numbers onto a Standard Normal Distribution N(0, 1) with a mean of 0 and a standard deviation of 1 allows observations from completely different datasets to be directly compared. This calculator converts raw scores to Z-scores, computes reverse raw values, and calculates standard normal cumulative probabilities P(Z < z) and percentiles. The following guide covers Z-score formulas, standard normal distribution tables, and real-world applications in medicine, finance, and psychometrics.
When inputs are submitted, the engine evaluates standard score equations and uses polynomial error function approximations (Abramowitz & Stegun) to compute normal probabilities.
1. Z-Score Formula:
Z = (X - μ) / σ
Where X is the raw score, μ is the population mean, and σ is the population standard deviation.
2. Reverse Raw Score Formula:
X = μ + (Z × σ)
3. Standard Normal Cumulative Distribution Function (CDF):
P(Z < z) = Φ(z) = 1/√(2π) ∫₋∞ᶻ e^(-t²/2) dt
- Left Tail P(Z < z): Probability of obtaining a value less than z.
- Right Tail P(Z > z): 1 - P(Z < z).
- Two Tail P(|Z| > z): 2 × (1 - P(Z < |z|)).
4. Percentile Rank:
Percentile = P(Z < z) × 100%
Pediatric growth and clinical medical monitoring. Doctors use WHO child growth Z-scores for height-for-age and weight-for-age to detect malnutrition or growth disorders.
Academic testing and college admissions. Educational testing services convert raw test scores into standardized Z-scores to compare students across different exam editions.
Financial risk modeling and Altman Z-score. Credit rating analysts evaluate corporate bankruptcy risk using Altman Z-score financial ratio models.
Outlier detection in data engineering. Data scientists flag data points with |Z| > 3.0 as statistical outliers during data cleaning pipelines.
Ensure standard deviation σ is greater than zero.
Use Mode 1 to find the Z-score and percentile rank of a test score. Use Mode 2 to find what raw score corresponds to a target Z-score (e.g. top 5% cutoff Z = +1.645).
For sample mean standard errors, pair this tool with our T-Score Calculator or Confidence Interval Calculator.
The calculation engine operates client-side in JavaScript using polynomial approximations of erf(x) accurate to 7 decimal places. Calculations evaluate in under 1 millisecond.
| Z-Score Value | Percentile Rank | Meaning / Position |
|---|---|---|
| Z = -3.0 | 0.13th Percentile | Extreme lower outlier (Bottom 0.13%) |
| Z = -2.0 | 2.28th Percentile | Significantly below average |
| Z = -1.0 | 15.87th Percentile | Below average |
| Z = 0.0 | 50.00th Percentile | Exact population mean (Average) |
| Z = +1.0 | 84.13rd Percentile | Above average |
| Z = +2.0 | 97.72nd Percentile | Significantly above average |
| Z = +3.0 | 99.87th Percentile | Extreme upper outlier (Top 0.13%) |
A Z-score of 0 means the raw score is exactly equal to the population mean.
Z-scores are used when the population standard deviation σ is known, or for large samples (n ≥ 30). T-scores are used when sample size is small (n < 30) and σ is estimated from sample standard deviation s.
A Z-score of +2.5 means the score is 2.5 standard deviations above the mean, placing it in the 99.38th percentile (top 0.62% of the population).
T-Score Calculator — Calculates T-scores for small sample sizes with degrees of freedom.
Confidence Interval Calculator — Computes confidence interval bounds for sample means.
P-Value Calculator — Computes p-values for hypothesis testing.