Normal Distribution Calculator
Enter a mean and standard deviation to find the probability between, below or above any values, or find the cut-off for a given probability.
Normal distribution basics
The normal distribution N(μ, σ) is the symmetric bell curve described by Gauss. The mean sets its centre and the standard deviation its width. Every normal distribution becomes the standard normal N(0, 1) once you convert to z-scores, which is how the printed z-table covers them all.
This calculator computes Φ with a rational approximation accurate to about 15 significant digits (W. J. Cody’s algorithm), so tail areas far beyond the printed table are still reliable.
Frequently asked questions
How do I find the probability between two values in a normal distribution?
Convert both values to z-scores, find the cumulative area for each, and subtract: P(a < X < b) = Φ(z_b) − Φ(z_a). For IQ scores (mean 100, SD 15), P(85 < X < 115) = Φ(1) − Φ(−1) ≈ 0.6827.
What is the 68-95-99.7 rule?
In a normal distribution, about 68.27% of values lie within one standard deviation of the mean, 95.45% within two and 99.73% within three. It is also called the empirical rule or three-sigma rule.
How do I find a value from a probability (inverse normal)?
Find the z-score whose cumulative area equals the probability, then convert back: x = μ + zσ. The top 10% of IQ scores start at z = 1.2816, so x = 100 + 1.2816 × 15 ≈ 119.2. Excel’s NORM.INV and the TI-84 invNorm do the same.
What is P(X = x) for a normal distribution?
Zero. A continuous distribution assigns probability to intervals, not single points. If your values are rounded, use a small interval around x, such as 99.5 to 100.5.
When is it reasonable to assume normality?
Many measurements that are the sum of many small independent effects are close to normal: heights, measurement error, averages of samples. Counts, times and money are often skewed. Check a dot plot or histogram before relying on normal probabilities.