🧠MindStat

⚠️ Calculator not found

This calculator does not exist or may have been moved.

Browse all calculators
🔔
Distribution

Normal Distribution Calculator — Z Table

Free normal (Z) distribution calculator. Compute Φ(z), one- and two-tailed probabilities, and critical Z values for any confidence level — with a full standard-normal reference table.

📊 z = 1.96 → two-tailed p = .0500
Live calculator
🧮 Live Calculator
P(Z ≤ z)
P(Z ≥ z)
Two-tailed p
x = μ + σz
Got your number. Need a full analysis of your own data? Open MindStat
Formula, reference table & FAQ

The normal distribution — the familiar bell curve — is the single most important distribution in statistics. It describes countless natural and social measurements (height, measurement error, exam scores) and, via the Central Limit Theorem, approximates the sampling distribution of a sample mean even when the underlying data are not themselves normal. Its shape is fixed by only two parameters: the mean μ (center) and the standard deviation σ (spread). Standardizing any normal variable X into a Z-score, Z = (X − μ) / σ, converts it to the standard normal distribution N(0, 1), for which a single reference table works for every possible μ and σ.

Z-score
z=xμσ,Φ(z)=P(Zz)=z12πet2/2dt

Critical Z Values

Confidence / pOne-tailed zTwo-tailed z
90% (α = .1)1.2821.645
95% (α = .05)1.6451.960
97.5% (α = .025)1.9602.241
99% (α = .01)2.3262.576
99.5% (α = .005)2.5762.807
99.9% (α = .001)3.0903.291
Generated directly from src/core/distributions.js (normInv) — never hand-typed.

Frequently Asked Questions

What does z = 1.96 mean?
z = 1.96 is the value that cuts off exactly 2.5% of the area in each tail of the standard normal distribution — so 95% of the area lies between z = −1.96 and z = 1.96. It is the standard critical value for a 95% confidence interval and for a two-tailed test at α = .05.
How do I read a Z-table?
A standard Z-table gives Φ(z) = P(Z ≤ z), the cumulative probability up to z, for the standard normal N(0,1). Find your z-score's row (whole number + first decimal) and column (second decimal) to read off the cumulative probability directly — no interpolation needed with this calculator, since it computes Φ(z) exactly rather than reading a rounded table.
When do I use z instead of t?
Use z when the population standard deviation σ is known (rare in practice) or when the sample is large enough (conventionally n ≥ 30) that the t-distribution has essentially converged to the normal. Otherwise — a small sample with an estimated (not known) standard deviation — use the t-distribution, which has heavier tails to account for the extra uncertainty in estimating σ from the sample itself.
What is the difference between one-tailed and two-tailed p-values?
A one-tailed p-value, P(Z ≥ z), is the area beyond z in one direction only — appropriate when your hypothesis specifies a direction (e.g. 'greater than'). A two-tailed p-value doubles this (or equivalently sums both tails) and is appropriate for a non-directional hypothesis ('different from'), which is the more conservative and far more common default in research.