My Calculator

Normal Distribution Calculator

Calculate the probability (area under the bell curve) for a normal distribution — P(X < x), P(X > x), or P(a < X < b) — from any mean and standard deviation.

Probability0.8413
As Percentage84.13%
Z-Score (x1)1

Bell Curve — P(X < 115)

The shaded region under this bell curve represents P(X < 115), which is approximately 84.13% of all outcomes in a normal distribution with mean 100 and standard deviation 15.

Step-by-Step Solution

Here's exactly how this answer was calculated, one step at a time.

  1. 1

    Write down the given values

    μ = 100, σ = 15, x = 115

    These are the mean (μ), standard deviation (σ), and the value (x) you want the probability for.

  2. 2

    Standardize x into a Z-score

    Z = (x − μ) / σ = (115 − 100) / 15 = 1

    The Z-score tells you how many standard deviations x is away from the mean. This converts your specific normal distribution into the standard normal distribution (mean 0, standard deviation 1).

  3. 3

    Look up Φ(Z), the area to the left of Z

    Φ(1) = 0.8413

    Φ(Z) is the cumulative distribution function — it gives the probability that a value falls below Z, exactly what a standard normal (Z) table would give you.

  4. 4

    Read off the answer

    P(X < 115) = Φ(Z) = 0.8413

    Since we want P(X < x), the answer is simply Φ(Z) — no further steps needed.

Final Answer: P(X < 115) ≈ 0.8413 (84.13%)

Normal Distribution & Probability Calculator

This tool is a probability calculator for the normal distribution, also known as the bell curve calculator or Gaussian distribution calculator. Unlike a plain descriptive-statistics tool that only summarizes a data set (mean, median, standard deviation), this calculator answers a probability question: given a normally distributed random variable with a known mean and standard deviation, what is the chance (probability) that a randomly picked value falls below, above, or between certain numbers? That is the core difference between probability and statistics — statistics describes data you already have, while probability predicts the likelihood of future or unseen outcomes based on a distribution model. This calculator sits firmly on the probability side of that line, even though it uses the mean and standard deviation, two statistical parameters, as its inputs.

The normal distribution is the most important continuous probability distribution in mathematics, engineering, data science, and the natural and social sciences. Heights, exam scores, measurement errors, IQ scores, blood pressure readings, and countless other real-world quantities approximately follow this symmetric, bell-shaped curve. Because so many phenomena cluster around an average value with predictable spread, the normal distribution — and the probabilities calculated from it — shows up constantly in hypothesis testing, quality control, machine learning, finance, and standardized testing.

Normal Distribution Formula

The probability density function (PDF) of a normal distribution with mean μ and standard deviation σ is:

f(x) = ( 1 / (σ√(2π)) ) · e^( −(x−μ)² / (2σ²) )

This formula describes the height of the bell curve at any point x, but on its own it does not give a probability — for continuous distributions, probability is the area under this curve, not the height at a single point. To get an actual probability, this calculator uses the cumulative distribution function (CDF), Φ(z), which gives P(X ≤ x) by integrating the PDF from negative infinity up to x. The calculator first standardizes your value using the Z-score formula, Z = (X − μ) / σ, converting your specific normal distribution into the standard normal distribution (mean 0, standard deviation 1), then looks up the equivalent of a Z-table using a numerical approximation of Φ(z) — exactly what a printed Z-table or P-value table would give you, but computed instantly.

For the three probability modes offered here: P(X < x) = Φ(z), P(X > x) = 1 − Φ(z), and P(a < X < b) = Φ(z_b) − Φ(z_a), where z_a and z_b are the Z-scores of a and b respectively.

How to Use This Bell Curve Calculator

Choose whether you want the probability of a value being less than, greater than, or between two values. Enter your value (or the lower and upper bounds for the 'between' option), then enter the mean (μ) and standard deviation (σ) of the distribution. The calculator instantly returns the probability as both a decimal and a percentage, along with the corresponding Z-score(s) and a live bell curve chart marking exactly where your value sits.

  • P(X < x) — probability of a value falling below a threshold (a left-tail probability).
  • P(X > x) — probability of a value falling above a threshold (a right-tail probability).
  • P(a < X < b) — probability of a value falling inside a specific range (used for confidence intervals and quality-control tolerance bands).

Worked Example

Suppose exam scores are normally distributed with a mean of 100 and a standard deviation of 15. What is the probability that a randomly selected student scores above 115? First find the Z-score: Z = (115 − 100) / 15 = 1. From the standard normal table, Φ(1) ≈ 0.8413, so P(X < 115) ≈ 0.8413. Since we want P(X > 115), subtract from 1: P(X > 115) = 1 − 0.8413 = 0.1587, or about 15.87%. This calculator performs exactly this sequence of steps automatically, whatever mean, standard deviation, and threshold you enter.

Why the Bell Curve Matters in Probability Theory

The normal distribution underlies the empirical rule (68-95-99.7 rule): roughly 68% of values lie within one standard deviation of the mean, 95% within two, and 99.7% within three. It is also the foundation of the Central Limit Theorem, which states that the sampling distribution of a mean approaches a normal distribution as sample size grows, regardless of the shape of the original population. This is why the normal distribution is the default assumption behind so many statistical tests, confidence intervals, and P-value calculations used across math, engineering, and data science coursework.

Frequently Asked Questions

What is the difference between the normal distribution calculator and a Z-score calculator?

A Z-score calculator converts a raw value into a standardized score (how many standard deviations it is from the mean). This normal distribution calculator goes one step further and converts that Z-score into an actual probability — the area under the bell curve — for less-than, greater-than, or between-range scenarios.

Is this calculator for probability or statistics?

It is a probability calculator. It uses statistical parameters (mean and standard deviation) as inputs, but its output is a probability — the likelihood of a value falling in a given range — rather than a descriptive summary of a data set. If you need descriptive statistics like mean, median, mode, or standard deviation from raw data, use the dedicated statistics calculators listed below instead.

How accurate is the probability calculation?

This calculator uses a well-established numerical approximation of the standard normal cumulative distribution function (the Abramowitz and Stegun approximation), which matches standard Z-tables and statistical software to at least 4-5 decimal places of accuracy for practical use.

Can I use this as a P-value calculator?

Yes. A one-tailed P-value for a Z-test is exactly P(X > x) or P(X < x) depending on the direction of your test, and a two-tailed P-value can be derived from the same probabilities. Enter your test statistic as the value, with mean 0 and standard deviation 1 if you already have a Z-score, or your raw sample mean and standard error otherwise.

What if my data isn't normally distributed?

This calculator assumes the underlying data follows (or approximately follows) a normal distribution. If your data is skewed or has heavy outliers, the probabilities produced here may not accurately reflect real-world likelihoods — consider checking normality first or using a distribution-appropriate method.