Normal Distribution Calculator
Enter a mean, standard deviation, and value to find the probability, z-score, and percentile rank instantly — covers left-tail, right-tail, and between-values probabilities with full bell curve breakdown.
Enter your values above to see the results.
Tips & Notes
- ✓Standard deviation must be positive — it cannot be zero or negative. A σ of 0 means all values are identical and there is no distribution to compute.
- ✓For between-values probability, compute z-scores for both bounds separately: z₁ = (a−μ)/σ and z₂ = (b−μ)/σ, then subtract: P(a ≤ X ≤ b) = Φ(z₂) − Φ(z₁).
- ✓The 68-95-99.7 rule gives fast mental estimates: about 68% of data falls within 1 standard deviation of the mean, 95% within 2, and 99.7% within 3.
- ✓A z-score of ±1.96 corresponds to the central 95% of the distribution — which is why 1.96 appears in nearly every 95% confidence interval formula.
- ✓The normal distribution is a model, not a law. Real data approximates it; always check whether your data is actually bell-shaped before applying normal probabilities.
Common Mistakes
- ✗Confusing left-tail and right-tail probabilities. P(X ≤ x) and P(X ≥ x) always sum to 1 (since the distribution is continuous). If you need "greater than", compute 1 minus the left-tail result.
- ✗Using the wrong standard deviation — population σ vs. sample s. For known populations (e.g., IQ tests with defined parameters), use σ. For sample data, use s. The formulas are identical; the interpretation differs.
- ✗Forgetting to standardize before looking up probabilities. You cannot use a z-table directly with raw x values — always convert x to z = (x−μ)/σ first.
- ✗Applying normal distribution to data that is not normally distributed. Skewed data, count data, or data with hard boundaries (like 0% to 100%) often violates normality. Always check your data distribution first.
- ✗Double-counting in between-values probability. P(a ≤ X ≤ b) = Φ(z_b) − Φ(z_a). A common error is adding instead of subtracting: Φ(z_b) + Φ(z_a) gives a number that can exceed 1.
Normal Distribution Calculator Overview
The normal distribution — the bell curve — is the most important distribution in statistics. Heights, exam scores, measurement errors, blood pressure readings, and thousands of other real-world phenomena follow it naturally. Understanding the normal distribution means being able to answer questions like: what percentage of people are taller than 6 feet? What is the probability a product falls within tolerance? This calculator computes probabilities, z-scores, and percentile ranks for any normal distribution.
Standardizing to a z-score:
z = (x − μ) / σ
EX: Heights normally distributed, μ = 68 inches, σ = 4 inches. For x = 74 inches: z = (74 − 68) / 4 = 6/4 = 1.50Left-tail probability — P(X ≤ x):
P(X ≤ x) = Φ(z) — read from standard normal table or calculator
EX: z = 1.50 → Φ(1.50) = 0.9332 → 93.32% of people are 74 inches or shorterRight-tail probability — P(X ≥ x):
P(X ≥ x) = 1 − Φ(z)
EX: z = 1.50 → P(X ≥ 74) = 1 − 0.9332 = 0.0668 → 6.68% of people are taller than 74 inchesBetween-values probability — P(a ≤ X ≤ b):
P(a ≤ X ≤ b) = Φ(z_b) − Φ(z_a)
EX: P(64 ≤ X ≤ 72) with μ=68, σ=4 → z_a=(64−68)/4=−1.0, z_b=(72−68)/4=1.0 → Φ(1.0)−Φ(−1.0) = 0.8413−0.1587 = 0.6827 (68.27%)The 68-95-99.7 empirical rule — key reference:
| Range | Z-score Range | % of Data | Practical Meaning |
|---|---|---|---|
| μ ± 1σ | −1 to +1 | 68.27% | Most values fall here |
| μ ± 2σ | −2 to +2 | 95.45% | Almost all typical values |
| μ ± 3σ | −3 to +3 | 99.73% | Virtually all values; outliers beyond |
| μ ± 1.96σ | −1.96 to +1.96 | 95.00% | Standard 95% confidence interval |