normal probability calculator

Calculate Probabilities for a Normal Distribution

Use this tool to find left-tail, right-tail, between, or outside probabilities for a normal random variable.

Computes the area under the curve to the left of x.

What this normal probability calculator does

A normal probability calculator estimates the chance that a value from a normally distributed variable falls in a specific region. In plain language, it answers questions like: “What percent of values are below 70?” or “How likely is a value between 90 and 110?”

This page lets you calculate four common cases:

  • Left tail: probability below a cutoff.
  • Right tail: probability above a cutoff.
  • Between: probability inside two cutoffs.
  • Outside: probability beyond two cutoffs.

How to use the calculator

Step-by-step

  • Enter the distribution mean μ.
  • Enter the standard deviation σ (must be positive).
  • Select the probability type you need.
  • Enter one cutoff value (or two bounds for between/outside).
  • Click Calculate to see the probability and z-scores.

If you choose a two-bound mode and type values in reverse order, the calculator automatically sorts them as lower and upper bounds.

Understanding the output

Probability in decimal and percent

Results are shown both as a decimal (like 0.841345) and as a percentage (84.1345%). Since probability is an area under a curve, it always stays between 0 and 1.

Z-scores

The z-score tells how far a value is from the mean in standard deviation units:

z = (x - μ) / σ

Z-scores are useful because they convert any normal distribution into the standard normal distribution. That makes comparisons much easier.

Real-world examples of normal probability

Test scores

Suppose exam scores are normally distributed with mean 75 and standard deviation 10. You can estimate the chance a student scores above 90 or between 70 and 85.

Manufacturing quality

If bolt lengths are normal with mean 50 mm and standard deviation 0.5 mm, engineers can estimate the percentage of parts that fall outside tolerance limits.

Finance and risk

Returns are not perfectly normal in the real world, but normal approximations are still common in introductory risk calculations for quick estimates of tail events.

The math behind this calculator

Normal probabilities come from the cumulative distribution function (CDF), usually written as Φ(x). The CDF gives the area under the normal curve from negative infinity up to x.

  • Left tail: P(X ≤ x) = Φ(x)
  • Right tail: P(X ≥ x) = 1 - Φ(x)
  • Between: P(a ≤ X ≤ b) = Φ(b) - Φ(a)
  • Outside: P(X ≤ a or X ≥ b) = 1 - [Φ(b) - Φ(a)]

In JavaScript, we approximate Φ using an error function approximation, which is highly accurate for practical use.

Common mistakes to avoid

  • Using a standard deviation of 0 (not valid).
  • Confusing left tail with right tail.
  • Entering sample statistics when population parameters are required for your context.
  • Assuming data are normal without checking shape, outliers, and context.

Final thoughts

This normal probability calculator is designed for fast, reliable probability lookups and learning. It is especially helpful for statistics students, data analysts, educators, and anyone doing quick quality-control or risk estimates.

🔗 Related Calculators