probability calculators

Normal Distribution Probability Calculator

Compute the cumulative probability P(X ≤ x) for a normal distribution with a given mean and standard deviation. Use it to find the percentage of a population below a test score, measurement threshold, or quality specification limit.

About this calculator

The normal distribution is a symmetric, bell-shaped continuous probability distribution fully defined by its mean μ and standard deviation σ. To find P(X ≤ x), we first standardize the value using the Z-score formula: Z = (x − μ) / σ, which measures how many standard deviations x lies from the mean. The cumulative distribution function (CDF) Φ(Z) gives the probability that a standard normal variable is less than or equal to Z. There is no closed-form expression for Φ(Z), so this calculator uses a highly accurate polynomial approximation (Horner's method) to evaluate it. Approximately 68% of values fall within one σ of the mean, 95% within two σ, and 99.7% within three σ — the empirical rule. The normal distribution is foundational in statistics, natural sciences, and engineering, where many processes are approximately normally distributed due to the Central Limit Theorem.

How to use

Suppose exam scores are normally distributed with a mean μ = 70 and standard deviation σ = 10. You want to know the probability that a randomly chosen student scored below x = 85. First compute the Z-score: Z = (85 − 70) / 10 = 1.5. Looking up Φ(1.5) using the calculator gives approximately 0.9332. This means about 93.3% of students scored below 85, or equivalently, a score of 85 is at the 93rd percentile. To find the probability of scoring between two values, compute the CDF at both and subtract the lower from the higher.

Frequently asked questions

What is the difference between PDF and CDF in a normal distribution?

The probability density function (PDF) gives the relative likelihood of the random variable taking a specific value — it shows the shape of the bell curve. However, for a continuous distribution, the probability of any single exact value is technically zero. The cumulative distribution function (CDF) solves this by giving the probability that the variable is less than or equal to a specific value, i.e., the area under the PDF curve up to that point. This calculator computes the CDF, which is what you need for statements like 'the probability of scoring below 85' or 'the probability of a part being within tolerance.'

How do I find the probability between two values using the normal distribution?

To find P(a ≤ X ≤ b), calculate the CDF at the upper bound P(X ≤ b) and subtract the CDF at the lower bound P(X ≤ a). For example, with μ = 70 and σ = 10, P(60 ≤ X ≤ 85) = CDF(85) − CDF(60) = 0.9332 − 0.1587 ≈ 0.7745. Run the calculator twice, once for each bound, and take the difference. This technique works for any interval on a normal distribution and is the standard approach in quality control and hypothesis testing.

Why is the normal distribution used so widely in statistics and science?

The normal distribution's ubiquity stems largely from the Central Limit Theorem, which states that the sum or average of a large number of independent random variables tends toward a normal distribution regardless of the original distributions involved. This means that many real-world measurements — heights, test scores, manufacturing dimensions, financial returns — are approximately normally distributed because they result from the accumulation of many small independent effects. Additionally, the normal distribution has convenient mathematical properties: it is fully characterized by just two parameters (μ and σ), and many statistical tests (t-tests, ANOVA, regression) are built on the assumption of normality.