# Normal Distribution & Z-Score Calculator

Compute Z-scores and normal distribution (CDF) probabilities for left-tail, right-tail, and between-bounds ranges with a visual bell curve shown instantly.

---

- **Canonical URL:** https://dothecalculation.com/calculators/normal-distribution-calculator
- **Category:** Math calculators
- **Publisher:** Do The Calculation (https://dothecalculation.com)
- **Cost:** Free, no account or sign-up required
- **Privacy:** Runs entirely in the browser; inputs are never sent to a server
- **Methodology:** https://dothecalculation.com/methodology

---

## Normal Distribution & Z-Score Calculator

Compute Z-scores and normal (CDF) probabilities for left-tail, right-tail, and between-bounds ranges with custom means and standard deviations.

- Z-score calculation & normalization
- Left-tail, right-tail & between-bounds probability
- Shaded bell curve graphic

## Introduction to the Normal (Gaussian) Distribution

The normal distribution, also known as the Gaussian distribution or the bell curve, is the most important probability distribution in statistics. It describes a continuous probability distribution that is symmetrical about its mean, showing that data near the mean are more frequent in occurrence than data far from the mean. In graphical form, the normal distribution appears as a bell-shaped curve. This distribution is ubiquitous because of the Central Limit Theorem, which states that the sum of many independent and identically distributed random variables tends toward a normal distribution, regardless of their original distribution.

Many natural phenomena and human measurements closely follow a normal distribution. Examples include height, weight, blood pressure, IQ scores, standardized test results, and measurement errors in scientific experiments. Because of its predictable mathematical properties, scientists and statisticians use the normal distribution to perform hypothesis testing, calculate confidence intervals, and estimate population parameters from sample data.

This calculator lets you define any custom normal distribution by entering its mean \(\mu\) and standard deviation \(\sigma\). It computes the probability of obtaining values below, above, or between specific thresholds, converts values to standard Z-scores, and generates a shaded bell curve visualization.

## Z-Scores and Standardizing Data

A Z-score (or standard score) represents the number of standard deviations a data point \(x\) is from the mean \(\mu\). Standardizing data allows us to compare scores from different normal distributions on a single scale called the Standard Normal Distribution (where \(\mu = 0\) and \(\sigma = 1\)).

The formula to calculate a Z-score is:

$$Z = \frac{x - \mu}{\sigma}$$

A positive Z-score indicates the value lies above the mean, while a negative Z-score indicates it lies below the mean. A Z-score of 0 is exactly equal to the mean.

## How to Use This Calculator

Enter the mean (μ) and standard deviation (σ) of your distribution, choose left-tail, right-tail, or between-bounds mode, and enter the threshold value(s). The calculator returns the Z-score(s) and the corresponding probability, along with a shaded bell curve. It computes probabilities in the "given x, find P" direction only — it doesn't work backward from a target probability to a threshold value.

## Worked Example: P(X ≤ 1) for the Standard Normal Distribution

With \(\mu = 0\) and \(\sigma = 1\) (the calculator's default), find \(P(X \leq 1)\).

$$Z = \frac{x - \mu}{\sigma} = \frac{1 - 0}{1} = 1$$

$$P(X \leq 1) = \Phi(1) \approx 0.8413 \; (84.13\%)$$

This matches the empirical rule: about 84% of the distribution lies at or below one standard deviation above the mean.

## Related Calculators

To compute the standard deviation of your own dataset before modeling it as normal, use the [standard deviation calculator](/calculators/standard-deviation-calculator). For related conditional probability problems, see the [Bayes' theorem calculator](/calculators/bayes-theorem-calculator).

## Probability Density (PDF) and Cumulative Probability (CDF)

The Probability Density Function (PDF) of a normal distribution defines the height of the bell curve at any value \(x\):

$$f(x) = \frac{1}{\sigma \sqrt{2\pi}} e^{-\frac{1}{2}\left(\frac{x - \mu}{\sigma}\right)^2}$$

This calculator uses the PDF internally to draw the bell curve's shape, though it doesn't display a numeric PDF height as a result — its reported outputs are Z-scores and cumulative probabilities.

The Cumulative Distribution Function (CDF) represents the area under the curve to the left of \(x\), defining the probability \(P(X \leq x)\):

$$P(X \leq x) = \int_{-\infty}^{x} f(t)\, dt$$

Since this integral cannot be solved in closed form using elementary functions, this calculator uses a numerical approximation of the error function (\(\text{erf}\)) to compute probabilities accurate to about 7 decimal places.

## Frequently asked questions

### What is a normal distribution?

A normal distribution is a symmetric, bell-shaped probability distribution where most observations cluster around the central mean.

### What is a Z-score?

A Z-score indicates how many standard deviations a value x is above or below the mean of its distribution.

### What are the parameters of a normal distribution?

The distribution is fully defined by its mean (μ), which sets the center, and its standard deviation (σ), which sets the width.

### What is the standard normal distribution?

The standard normal distribution is a special case of the normal distribution where the mean is exactly 0 and the standard deviation is 1 — this calculator's default.

### What is the empirical rule (68-95-99.7 rule)?

It states that approximately 68% of data falls within 1 standard deviation of the mean, 95% within 2, and 99.7% within 3 standard deviations.

### How do you calculate a Z-score?

Use the formula Z = (x − μ) / σ, where x is the value, μ is the mean, and σ is the standard deviation.

### What is cumulative probability?

Cumulative probability P(X ≤ x) is the probability that a random variable takes a value less than or equal to x, representing the area under the curve to the left of x.

### Does this calculator compute the inverse normal distribution (percentile to value)?

No — it only works in the "given a threshold x, find the probability" direction (left-tail, right-tail, or between-bounds). Finding the x-value for a target percentile (the inverse direction) isn't supported here.

### What is the Central Limit Theorem?

It states that as sample sizes grow larger, the distribution of sample means will approach a normal distribution, regardless of the population distribution shape.

### What is the probability of a single exact value in a normal distribution?

Since it is a continuous distribution, the probability of obtaining an exact single value is 0. Probabilities are only defined over intervals (areas under the curve) — which is why this calculator only offers left-tail, right-tail, and between-bounds modes.

### What is the error function (erf)?

The error function is a non-elementary mathematical function used in chemistry, physics, and statistics to calculate areas under the normal curve. This calculator uses a polynomial approximation of erf internally to compute its probabilities.

### How do you interpret a negative Z-score?

A negative Z-score means that the value is less than the mean of the distribution.

## Related concepts

- **Central Limit Theorem** — The theorem explaining why normal distributions are so common.
- **Empirical Rule** — The 68-95-99.7 percentage rules for standard deviations.
- **Standard Normal Distribution** — The bell curve with a mean of 0 and standard deviation of 1.

## Related guides

- [Standard Deviation Guide: Measure Data Spread Clearly](https://dothecalculation.com/blog/math/standard-deviation-explained) — Understand variance, population vs sample formulas, and data spread with worked examples tied to the live DTC standard deviation calculator.

## Related calculators

- [Binomial Distribution Probability Calculator](https://dothecalculation.com/calculators/binomial-distribution-calculator) — Compute binomial probability mass function, cumulative distribution, mean, and variance instantly with this free statistics calculator.
- [Markov Chain Transition & Steady State Calculator](https://dothecalculation.com/calculators/markov-chain-calculator) — Compute multi-step transition distributions and steady-state probabilities for Markov chains instantly with this free calculator.
- [Percentile & Percentile Rank Calculator](https://dothecalculation.com/calculators/percentile-calculator) — Find the percentile value of a dataset or compute the percentile rank of a specific data point instantly with this free tool.
- [Linear Regression & Correlation Calculator](https://dothecalculation.com/calculators/regression-analysis-calculator) — Perform linear regression analysis, solve slope-intercept equations, and compute Pearson correlation coefficient r instantly.
- [Average Calculator](https://dothecalculation.com/calculators/average-calculator) — Use our free average calculator to find the mean, weighted average, and GPA. Shows step-by-step work for any set of numbers.
- [Chi-Square Test Calculator](https://dothecalculation.com/calculators/chi-square-test-calculator) — Run a Chi-Square goodness-of-fit test on observed vs. expected category counts and get the test statistic, degrees of freedom, and p-value.

---

_This mathematical solver is designed for academic, engineering, and educational analysis. Rounding errors, numerical tolerances, or algorithm constraints might apply near poles, boundary conditions, or complex coordinate spaces. Always verify critical computations independently._

---

_Source: [Do The Calculation](https://dothecalculation.com/calculators/normal-distribution-calculator). Quote freely with attribution and a link to this page._
