Get the probability from a normal curve in seconds
The Normal Distribution Calculator computes the z-score and the probability that a value falls below, above, or between bounds for a normal distribution. Enter your mean (μ), standard deviation (σ), and one or two x-values to get results immediately.
What a normal distribution calculator does
A normal distribution describes how values cluster around an average. In real data, it’s common in test scores, measurement errors, and many natural variations.
This calculator converts your input value(s) into a standardized form, then uses the normal cumulative distribution function (CDF) to compute probabilities.
Key variables
- Mean (μ): the center of the bell curve.
- Standard deviation (σ): how spread out the values are.
- Value (x): the data point you want to evaluate.
Step 1: Convert x to a z-score
The z-score tells you how many standard deviations x is from the mean:
z = (x − μ) / σ
Step 2: Turn z-scores into probabilities
Probabilities come from the standard normal CDF, written as Φ(z). The calculator uses the relationship between Φ and the error function:
Φ(z) = 0.5 · (1 + erf(z / √2))
From Φ(z), you can compute common probability types:
- P(X ≤ x) = Φ(z)
- P(X ≥ x) = 1 − Φ(z)
- P(a ≤ X ≤ b) = Φ(zb) − Φ(za)
How to use the Normal Distribution Calculator
Choose the probability type, then enter μ and σ. Add your x-value(s) using the fields that match your selection.
- Below (P(X ≤ x)): enter one x-value.
- Above (P(X ≥ x)): enter one x-value.
- Between (P(a ≤ X ≤ b)): enter a lower bound a and an upper bound b.
Make sure σ is greater than 0. If σ is 0 or negative, the normal distribution is not valid and the calculator will flag the input.
Practical examples
Example 1: Test scores below a cutoff
Suppose test scores are normally distributed with μ = 75 and σ = 10. You want the probability a student scores at most 85.
Use Below and enter x = 85. The calculator computes z = (85 − 75) / 10 = 1, then returns Φ(1) ≈ 0.8413. So about 84.13% score 85 or less.
Example 2: Probability of a measurement within a range
Imagine a machine produces a dimension that is normally distributed with μ = 50 and σ = 2. You accept parts between a = 46 and b = 53.
Use Between. The calculator finds Φ(zb) − Φ(za). With za = (46 − 50)/2 = −2 and zb = (53 − 50)/2 = 1.5, the probability is Φ(1.5) − Φ(−2) ≈ 0.9332 − 0.0228 = 0.9104, or about 91.04%.
Common mistakes to avoid
- Mixing up μ and σ: μ is the average; σ is the spread. σ must be positive.
- Using the wrong probability type: “below” and “between” are different operations on Φ(z).
- Assuming units don’t matter: x, μ must share the same units. σ must use the same units as x.
- Forgetting bounds order: for “between,” ensure a ≤ b. If you enter the reverse, the calculator will correct or warn depending on the implementation.
When the normal model is a good fit
A normal distribution calculator is most appropriate when data are roughly symmetric around the mean and the spread is reasonably captured by σ. Many processes produce near-normal outcomes due to averaging effects.
If your data are strongly skewed or have heavy tails, consider other models. Still, the normal distribution is a strong starting point for inference and probability estimates.
Frequently Asked Questions
What is a z-score in a Normal Distribution Calculator?
A z-score is the standardized distance from the mean: z = (x − μ) / σ. It tells you how many standard deviations x is above or below the mean. The calculator uses z to look up the cumulative probability on the standard normal curve.
How do I find P(X ≤ x) using a normal distribution calculator?
Select the probability type “Below (P(X ≤ x)),” then enter μ, σ, and the value x. The calculator converts x to a z-score and returns Φ(z), the area under the standard normal curve to the left of z.
How do I compute the probability between two values?
Pick “Between (P(a ≤ X ≤ b)).” Enter the lower bound a and upper bound b along with μ and σ. The calculator computes Φ(zb) − Φ(za), which represents the area under the normal curve between those two z-scores.
Why must σ be greater than 0?
Standard deviation σ measures spread and must be positive. If σ is zero, all values collapse to the mean and the normal distribution is not defined for probability calculations. Negative σ is invalid and the calculator will show an error.
Do I need to convert units before using the calculator?
Yes. The calculator assumes x, μ, and σ use the same units. If your x is in inches but μ is in centimeters, convert one set so all inputs match. Then the probability output will be consistent with the normal model.