← Math & statistics

Normal Distribution Calculator

Enter mean and standard deviation to find normal distribution probability, z-scores, percentiles, and inverse normal cutoffs from one page.

Use left-tail, right-tail, interval, or inverse CDF modes without leaving the page. A common test-score example is preloaded, and everything runs in your browser.

Other languages 日本語 | English | 简体中文 | 繁體中文 | 繁體中文(香港) | Español | Español (México) | Português (Brasil) | Português (Portugal) | Bahasa Indonesia | Tiếng Việt | 한국어 | Français | Deutsch | Svenska | Suomi | Dansk | Norsk bokmål | Italiano | Русский | हिन्दी | العربية | বাংলা | اردو | Türkçe | ไทย | Polski | Filipino | Bahasa Melayu | فارسی | Nederlands | Українська | עברית | Čeština

Quick answer: pick the result type first

  1. Given a score x, find probability: use CDF (left/right/two-tailed).
  2. Given two cutoffs a and b, find the area between them: use Interval probability.
  3. Given percentile p, find cutoff x: use Inverse CDF (quantile).
  4. Given x, compare across tests: use Z-score mode to standardize.

For cleaner results, set mu and sigma from your dataset first, then run this calculator for probability or percentile interpretation.

How to use (3 steps)

  1. Enter the mean and standard deviation, then choose what you want to find (PDF/CDF, interval, percentile, or z-score). The default values use a test with mean 100 and σ = 15.
  2. Fill in x, the interval [a, b], the percentile p, or the z-score z, and pick left, right, or two-tailed if you are in CDF mode.
  3. Click “Calculate” to see the numeric result, working steps, and a shaded normal curve. You can copy the result text or a shareable URL for homework or lesson notes.

Common tasks (examples)

Interpretation (and when to use a normal model)

Worked examples

References

Mode
Tail

By default we show “P(X ≤ 120)” for a test with mean 100 and σ = 15. You can also set a = 85 and b = 115 to explore the classic “within 1σ of the mean” interval.

Results

Value:

Steps

    Probabilities are shown both as a 0–1 value and as a percentage. Use these as an educational guide; final decisions should rely on appropriate professional or academic judgement.

    Normal curve preview

    We plot the range from −4σ to +4σ and highlight the chosen tail or interval in blue, so you can see at a glance which part of the distribution the probability refers to.

    How to choose the right normal distribution mode

    Use this page when you already know the mean and standard deviation and need a probability, z-score, percentile, or inverse normal cutoff.

    Start with the question you are trying to answer

    Common interpretation mistakes

    Worked examples

    For test scores with μ = 100 and σ = 15, enter x = 120 in CDF mode to get the percentile below 120. If you need the 95th-percentile cutoff instead, switch to Inverse CDF and enter p = 0.95 to recover the score threshold directly.

    See also

    FAQ

    What is a normal distribution?

    A normal distribution models a continuous variable that clusters around a mean μ with spread measured by the standard deviation σ. The familiar bell-shaped curve is symmetric: values close to μ are common, while very large or very small values are rare.

    What do the mean μ and standard deviation σ represent?

    The mean μ is the central or average value, and the standard deviation σ describes how spread out the data are around μ. A small σ means most observations lie close to μ; a large σ means observations are more dispersed.

    What is a z-score?

    A z-score shows how many standard deviations a value x is above or below the mean: z = (x − μ)/σ. For example, z = 1 means “one σ above the mean”, and z = −2 means “two σ below the mean”. This makes different normal distributions comparable.

    How do I find the probability between two values?

    Use Interval probability and enter the lower and upper bounds a and b. The calculator converts both endpoints to z-scores and subtracts the corresponding CDF values to get the shaded area between them.

    When should I use left-tail, right-tail, or two-tailed probabilities?

    Left-tail covers P(X ≤ x), right-tail covers P(X ≥ x), and two-tailed combines both ends where |X−μ| is at least |x−μ|. Use the tail that matches your question, test setup, or classroom example before interpreting the result.

    Can I use a normal model for percentages or counts?

    Sometimes, but not always. A normal model works best for continuous, roughly symmetric data without hard bounds. If your variable is strongly skewed, discrete, bounded, or dominated by outliers, check whether another model fits better before relying on the result.

    How accurate is the inverse CDF (quantile) result?

    We rely on Peter Acklam’s rational approximation with a single Newton step. The typical absolute error stays near 10−6, which is more than adequate for teaching, homework, and exam preparation.

    Related

    How it’s calculated

    • Standardises to z = (x − μ) / σ and evaluates the normal PDF f(x) = 1/(σ√(2π))·exp(−(x−μ)²/(2σ²)) and CDF Φ(z) = 0.5·(1 + erf(z / √2)).
    • Tail and interval probabilities reuse Φ: left P(X ≤ x), right 1 − Φ(z), two-tailed 2·min(Φ(z), 1 − Φ(z)), and intervals Φ((b−μ)/σ) − Φ((a−μ)/σ).
    • Quantiles use Peter Acklam’s inverse-normal approximation with one Newton refinement (typical error ≈ 10⁻⁶); everything runs in your browser and the shareable URL only stores μ, σ, mode, and inputs.