Normal Distribution Z and Percentile Calculator
Converts a normal distribution value to standardized z score and estimates the cumulative percentile using error function approximation.
—
Normal distribution: z-score and percentile
The z-score standardises a value x drawn from a normal distribution with mean μ and standard deviation σ: Z = (x − μ) / σ. Its cumulative function Φ(z) gives you the percentile, which is the area under the curve sitting to the left of z. A couple of landmarks worth memorising: z = 1.96 puts Φ ≈ 0.975 (the 97.5th percentile, which underpins the 95% two-sided confidence interval), while z = 2.576 reaches 99.5%. The 68–95–99.7 rule sums it up nicely. Roughly 68% of values fall within 1σ of the mean, 95% within 2σ, and 99.7% within 3σ. Take IQ ~ N(100, 15). At x = 120 you get z = (120 − 100)/15 ≈ 1.333, so Φ(1.333) ≈ 0.909, landing at the 90.9th percentile.
Applications
It drives hypothesis testing and confidence intervals, and it underlies IQ scales and standardized test scoring (ENEM, for instance, uses TRI with mean 500 and σ = 100). You'll also see it in six-sigma quality control, in financial risk through Value-at-Risk, and when standardizing features for machine learning.
FAQ
What is a "good" z-score? That depends entirely on what you're doing. When hunting for outliers, anything with |z| > 3 counts as unusual. In a two-sided hypothesis test at α = 0.05, |z| > 1.96 is enough to reject the null.
Why is Φ not in closed form? Because the normal CDF is the integral of e^(−t²/2), and that integral has no elementary antiderivative. In practice people fall back on tables, on numerical approximations like Abramowitz & Stegun, and on the erf function.
Z-test or t-test? Go with z when σ is actually known (which is rare) or when the sample is large enough that n > 30 and the central limit theorem kicks in. In every other case, Student's t is the right call.
What if data isn't normal? First confirm it with a Q-Q plot or a Shapiro-Wilk test. A transformation such as log or Box-Cox often pulls the data back toward normal; when nothing helps, switch to non-parametric tests.
Related Tools
Normal Distribution PDF/CDF
Compute Normal(μ, σ) PDF and CDF at a point.
CI for the Ratio of Two Variances
Computes the confidence interval for the ratio between the variances of two normal populations, σ₁²/σ₂². Instead of just testing whether the variances differ, it gives a plausible range for how many times one is larger than the other. If the interval contains the number 1, there's no evidence the spreads are different. The calculation uses the F distribution, and because it's asymmetric, the bounds come from F quantiles with the degrees of freedom swapped. Enter the two samples and the confidence level.
Percentile Calculator
Compute the percentile of a value in a sample, or the value at a given percentile (p25, p50/median, p75, p99). Everything in your browser.
Normal Respiratory Rate by Age
Shows the normal RR range (breaths per minute) for newborn, infant, child and adult.
Poisson Probability Calculator
Computes probability of k occurrences in a Poisson distribution with mean lambda using the classic exponential factorial formula.
Percentile Rank Calculator
Paste a comma-separated data set and one value to get 100 * (L + 0.5E) / n: the share of points below it, with every tie counted as half a point.
The results provided by this tool are for general informational and educational purposes only and do not constitute professional, financial, medical, legal, tax or accounting advice. Always confirm important decisions with a qualified professional and official sources.