# Bell Curve: Normal Distribution Explained

The bell curve, also called the normal distribution or Gaussian normal distribution, is a symmetric, continuous probability distribution in which most observations cluster near the center and become progressively rarer toward both tails. It is fully defined by two parameters: the mean (the center) and the standard deviation (the spread).

That two-number definition is why the normal curve shows up everywhere in life science. Body temperature, birth weight, enzyme activity, and measurement error all get modeled as normal curves at some point, and the tools built on that model (z-scores, reference intervals, t-tests, control charts) are the daily vocabulary of laboratory and clinical work. Understanding the normal distribution chart is therefore less about memorizing a formula and more about knowing when the assumption holds and when it quietly fails.

## What the Normal Curve Actually Is

A normal curve is a specific shape with three defining properties.

1. **Symmetry.** The left half mirrors the right half. Mean, median, and mode all sit at the same point.
2. **A single central peak.** There is one mode, at the mean. No secondary bumps.
3. **Tails that thin out but never touch zero.** Extreme values are possible, just unlikely.

The shape is controlled entirely by the mean and standard deviation. The mean shifts the curve left or right along the x-axis. The standard deviation stretches or squeezes it. A small standard deviation produces a tall, narrow peak. A large standard deviation produces a low, wide curve. The total area under any normal curve is 1, which is what makes probability statements possible.

### The Normal Curve Formula in Plain Terms

The normal curve formula is usually written as:

f(x) = (1 / (σ√(2π))) × e^(-(x - μ)² / (2σ²))

You do not need to evaluate this by hand. What matters is reading it structurally. The term (x - μ)² measures how far a value sits from the mean, squared. Dividing by 2σ² scales that distance by the spread. The exponential then converts distance into a density that falls off smoothly. The constant out front (1 / (σ√(2π))) simply rescales the curve so the total area equals 1.

Two consequences follow directly from that structure.

- Because the distance is squared, values equally far above and below the mean get identical density. That is the source of symmetry.
- Because the exponent is negative, density decreases monotonically as you move away from the mean in either direction.

The Greek letters matter. μ (mu) is the population mean. σ (sigma) is the population standard deviation. Sample estimates use x̄ (x-bar) and s. Mixing population and sample notation is one of the most common errors in student write-ups.

## The Empirical Rule: 68, 95, 99.7

<figure class="article-figure">
  <img src="https://thumb.wikimedia.org/wikipedia/commons/thumb/2/25/The_Normal_Distribution.svg/1280px-The_Normal_Distribution.svg.png" alt="Normal curve with standard deviations, cumulative percentages, and percentile equivalents labeled" loading="lazy" decoding="async" width="1000" height="750" />
  <figcaption>The empirical rule in one view: 68%, 95%, and 99.7% of values fall within 1, 2, and 3 standard deviations of the mean. Image: Heds 1 at English Wikipedia, Public domain, via <a href="https://commons.wikimedia.org/wiki/File:The_Normal_Distribution.svg" rel="noopener noreferrer">Wikimedia Commons</a>.</figcaption>
</figure>

The empirical rule states that for any normal distribution:

- About **68%** of observations fall within 1 standard deviation of the mean.
- About **95%** fall within 2 standard deviations.
- About **99.7%** fall within 3 standard deviations.

These are approximations of exact values (68.27%, 95.45%, 99.73%), and the rounding is standard practice.

The rule is powerful because it converts a standard deviation into an intuitive statement about coverage. If adult systolic blood pressure in a population has a mean of 120 mmHg and a standard deviation of 10 mmHg, then roughly 68% of that population sits between 110 and 130 mmHg, roughly 95% between 100 and 140 mmHg, and roughly 99.7% between 90 and 150 mmHg.

The empirical rule also explains why outliers are rare under normality. A value 4 standard deviations from the mean occurs with probability around 0.006%, roughly 1 in 15,000. When you see several 4-sigma values in a dataset of 200, the normality assumption is the first thing to question.

## Z-Scores: Standardizing Any Normal Curve

A z-score expresses a raw value as the number of standard deviations it sits from the mean:

**z = (x - μ) / σ**

where x is the observed value, μ is the mean, and σ is the standard deviation.

The transformation does two things at once. It centers the distribution at zero and rescales the spread to one. The result is the standard normal distribution, sometimes called the z-distribution, with mean 0 and standard deviation 1. Every normal curve, regardless of its original units, maps onto this single reference curve. That is why one table of probabilities can serve every normal distribution in existence.

### Worked Example 1: Birth Weight

Suppose birth weights at a hospital follow an approximately normal distribution with a mean of 3,400 grams and a standard deviation of 450 grams.

**Question A.** What proportion of newborns weigh less than 2,500 grams (the conventional low birth weight threshold)?

z = (2,500 - 3,400) / 450 = -900 / 450 = -2.00

A z of -2.00 corresponds to a cumulative probability of about 0.0228. So roughly 2.3% of newborns fall below 2,500 grams under this model.

**Question B.** What proportion weigh more than 4,300 grams?

z = (4,300 - 3,400) / 450 = 900 / 450 = 2.00

Cumulative probability to the left of z = 2.00 is about 0.9772. The proportion above is 1 - 0.9772 = 0.0228, again about 2.3%.

**Question C.** What is the interquartile range?

The 25th percentile sits at z = -0.674 and the 75th at z = +0.674. Converting back to grams:

Lower quartile = 3,400 + (-0.674 × 450) = 3,400 - 303 = 3,097 g
Upper quartile = 3,400 + (0.674 × 450) = 3,400 + 303 = 3,703 g

So the middle 50% of birth weights spans roughly 3,100 to 3,700 grams.

Notice how the z-score does the interpretive work. A birth weight of 2,500 grams means nothing on its own. A z of -2.00 immediately says "this is far into the lower tail."

### Table of Common Z Cutoffs

The following cutoffs appear constantly in confidence intervals, hypothesis tests, and reference interval calculations.

| z-score | Cumulative probability (left tail) | Right tail | Typical use |
|--|--|--|--|
| -2.576 | 0.005 | 0.995 | 99% two-sided confidence interval |
| -1.960 | 0.025 | 0.975 | 95% two-sided confidence interval |
| -1.645 | 0.050 | 0.950 | 90% one-sided or 90% two-sided interval |
| -1.282 | 0.100 | 0.900 | 80% two-sided interval |
| -1.000 | 0.159 | 0.841 | 1 SD below mean |
| 0.000 | 0.500 | 0.500 | The mean |
| 1.000 | 0.841 | 0.159 | 1 SD above mean |
| 1.282 | 0.900 | 0.100 | 80% two-sided interval |
| 1.645 | 0.950 | 0.050 | 90% one-sided or 90% two-sided interval |
| 1.960 | 0.975 | 0.025 | 95% two-sided confidence interval |
| 2.576 | 0.995 | 0.005 | 99% two-sided confidence interval |

Read the table this way. For a two-sided 95% interval you need the central 95% of the curve, which leaves 2.5% in each tail. The z that cuts off 2.5% in the upper tail is 1.96. For a two-sided 99% interval, 0.5% remains in each tail, giving z = 2.576. For a one-sided 95% bound, all 5% sits in one tail, giving z = 1.645.

These three numbers (1.645, 1.96, 2.576) are worth memorizing outright. They appear in every statistics course, every clinical reference interval calculation, and most method-validation protocols.

## Worked Example 2: Reference Intervals in the Clinical Lab

Reference intervals are the ranges printed next to lab results, such as a sodium reference interval of roughly 135 to 145 mmol/L. The standard parametric approach assumes the analyte is normally distributed in the healthy reference population.

The conventional construction uses the central 95% of the reference population, which means cutting 2.5% from each tail. That corresponds to z = ±1.96.

**Reference interval = mean ± 1.96 × SD**

Suppose a laboratory measures fasting glucose in a healthy reference population and finds a mean of 90 mg/dL with a standard deviation of 8 mg/dL.

Lower limit = 90 - (1.96 × 8) = 90 - 15.7 = 74.3 mg/dL
Upper limit = 90 + (1.96 × 8) = 90 + 15.7 = 105.7 mg/dL

So the parametric reference interval is approximately 74 to 106 mg/dL.

Two features of this construction deserve attention.

First, by definition, 5% of healthy people fall outside a central 95% reference interval. A "flagged" result does not automatically mean disease. It means the value is unusual relative to the reference population.

Second, the whole calculation depends on normality. If the underlying distribution is skewed, the mean ± 1.96 SD interval will be misplaced, often asymmetrically, and the actual coverage in each tail will not be 2.5%. Clinical laboratories handle this with nonparametric methods (typically the 2.5th and 97.5th percentiles of the observed data) or by applying a mathematical transformation before computing the interval.

### Why 1.96 and Not 2

Students often round 1.96 to 2 for convenience. That is acceptable for quick mental math but not for reported intervals. Using 2 instead of 1.96 widens a 95% interval by about 2%, which matters when the interval is narrow and clinically decisive.

## Where Normal Curves Appear in Life Science

The normal distribution earns its central place for three reasons.

**Biological traits are often approximately normal.** Many continuous traits, including height, birth weight, and blood pressure, are influenced by many small genetic and environmental effects that add together. Sums of many independent influences tend toward normality, which is the practical consequence of the central limit theorem.

**Measurement error is usually modeled as normal.** Repeated measurements of the same sample scatter around a true value in a roughly symmetric pattern. This underpins assay validation, quality control charts, and the standard deviation as a precision metric.

**[Statistical tests](/blog/guides/statistical-tests-choosing-the-right-one-for-your-data) assume it.** The t-test, ANOVA, linear regression, and most parametric confidence intervals rely on normality of residuals or of the sampling distribution. When that assumption is badly violated, p-values and intervals lose their stated meaning.

Normality also appears inside other modeling frameworks. Species sensitivity distributions used in ecological risk assessment fit a distribution to toxicity data across species and read off a hazardous concentration. In one soil toxicity study on tetracycline, the normal distribution provided the best acceptable fit to the species sensitivity data, with a root mean square error of 0.060, and the fitted curve yielded a 5th percentile threshold used as an ecological risk benchmark [1]. That is a direct example of a normal curve being used as a regulatory tool rather than a descriptive convenience.

## Testing Whether Data Are Normal

You cannot confirm normality by eyeballing a histogram, though eyeballing catches the worst violations. Standard practice combines graphical and numerical methods.

### Graphical Methods

- **Histogram with a superimposed normal curve.** Fast, but sensitive to bin width.
- **Q-Q plot (quantile-quantile plot).** Plots observed quantiles against theoretical normal quantiles. Points on a straight line indicate normality. Curvature at the ends signals heavy or light tails. This is the single most informative diagnostic.
- **Boxplot.** Detects gross asymmetry and extreme values.

### Numerical Methods

- **Skewness.** Measures asymmetry. Zero for a perfect normal curve. Positive values indicate a right tail.
- **Kurtosis.** Measures tail heaviness relative to normal. Excess kurtosis is zero for a normal distribution.
- **Shapiro-Wilk test.** Widely used for sample sizes up to a few thousand. A small p-value indicates departure from normality.
- **Anderson-Darling test.** More sensitive to tail behavior than Shapiro-Wilk.
- **Kolmogorov-Smirnov test.** General purpose but less powerful against normality specifically.

A practical rule: with small samples, formal tests have low power and often fail to detect real non-normality. With very large samples, trivial departures become statistically significant. Always pair a test result with a Q-Q plot and a judgment about whether the departure matters for the analysis at hand.

## Common Mistakes and Limitations

### Many Biological Variables Are Skewed, Not Normal

This is the most consequential limitation. A large family of biological measurements is right-skewed: a long tail of high values with most observations bunched near the low end. Examples include:

- Serum triglycerides and most enzyme activities
- Antibody titers
- Colony counts and microbial loads
- Time-to-event measurements such as incubation periods
- Concentrations of trace analytes near the detection limit

Right-skewed data often become approximately normal after a log transformation, which is why log-normal distributions are so common in biology. Failing to transform before running a t-test inflates Type I error rates and distorts confidence intervals.

The consequences are measurable. A simulation study comparing effect size indices under skewed distributions found that indices derived from Cohen's d showed substantial bias and poor coverage under skewness and heteroscedasticity, while a nonparametric overlapping index remained unbiased under shape differences [2]. In other words, the normality assumption is not a technicality. Violating it changes the numbers you report.

Non-normality also affects measurement theory. A study on testing the independence of measurement errors showed that standard second-moment methods cannot detect violations of that assumption, and that third and fourth cumulant-based statistics are needed when observed scores deviate from the Gaussian distribution [3]. When data are non-Gaussian, the whole toolkit of variance and covariance-based inference becomes incomplete.

### Reference Intervals Assume Normality

The mean ± 1.96 SD construction is only valid when the reference population is normally distributed. Applying it to a skewed analyte produces intervals that are wrong in both directions: the lower limit is pushed too low and the upper limit too high, or the coverage is asymmetric and the tails do not each hold 2.5%.

Laboratories address this by:

- Using nonparametric percentile estimates (the 2.5th and 97.5th observed percentiles) when the reference sample is large enough, typically 120 or more individuals.
- Applying a transformation (log, square root, Box-Cox) before computing the interval, then back-transforming.
- Partitioning the reference population by age, sex, or other covariates when the distribution differs by subgroup.

A common student error is computing a reference interval from a skewed dataset without checking the distribution first. Always inspect the Q-Q plot before applying the parametric formula.

### Other Frequent Errors

- **Confusing standard deviation with standard error.** SD describes scatter of individual values. Standard error describes uncertainty in the mean and equals SD divided by the square root of n. They are not interchangeable.
- **Assuming the empirical rule applies to any distribution.** The 68-95-99.7 rule is specific to normal curves. For skewed data, the coverage at ±1 SD can be far from 68%.
- **Treating a non-significant normality test as proof of normality.** Failure to reject is not evidence of the null. Small samples frequently pass normality tests simply because they lack power.
- **Using z-tables when σ is unknown and n is small.** In that case the t-distribution applies, which has heavier tails. The difference shrinks as sample size grows, but at n = 5 it is substantial.
- **Ignoring the effect of outliers on mean and SD.** Both are sensitive to extreme values. A single erroneous data point can shift the mean and inflate the SD enough to distort every downstream z-score.

### Misconceptions About the Shape

- **"The bell curve means most values are average."** True only in the sense that density is highest at the center. The probability of any exact value is zero for a continuous distribution.
- **"Normal means typical or healthy."** In statistics, normal means "following the normal distribution." A perfectly healthy person can have an abnormal lab value and a sick person can have a normal one.
- **"Real data are always normal."** Almost never exactly. The question is whether the departure is small enough to ignore for the analysis at hand.
- **"The tails never matter."** In risk assessment, pharmacovigilance, and toxicology, the tails are often the entire point. A 5th percentile hazard concentration is a tail statement.

## Quick Review

1. The bell curve is defined by two parameters: the mean (center) and the standard deviation (spread).
2. The empirical rule: about 68% of values fall within 1 SD, 95% within 2 SD, and 99.7% within 3 SD.
3. A z-score is (x - μ) / σ and converts any normal curve into the standard normal distribution with mean 0 and SD 1.
4. Memorize three cutoffs: 1.645 (one-sided 95%), 1.96 (two-sided 95%), 2.576 (two-sided 99%).
5. Parametric reference intervals use mean ± 1.96 × SD and assume the reference population is normally distributed.
6. Many biological variables are right-skewed. Log transformation often restores approximate normality.
7. Always check normality with a Q-Q plot alongside a formal test, and decide whether any departure matters for your specific analysis.

## Frequently Asked Questions

### What is the difference between the bell curve and the normal distribution?

They are the same thing. "Bell curve" is the informal name based on the shape, and "normal distribution" or "Gaussian normal distribution" is the formal statistical term. The word "normal" here is a historical label, not a claim that other distributions are abnormal.

### What do the numbers 68, 95, and 99.7 mean in the empirical rule?

They are the approximate percentages of observations falling within 1, 2, and 3 standard deviations of the mean in a normal distribution. The exact figures are 68.27%, 95.45%, and 99.73%, and the rounded values are used in practice.

### How do I calculate a z-score?

Subtract the mean from the observed value, then divide by the standard deviation: z = (x - μ) / σ. A z of 1.5 means the value sits 1.5 standard deviations above the mean.

### Why is 1.96 used for a 95% confidence interval?

Because 95% of the area under a standard normal curve lies between z = -1.96 and z = +1.96, leaving 2.5% in each tail. For a one-sided 95% bound, the correct cutoff is 1.645.

### Can I use the normal distribution for skewed data?

Not directly. Skewed data violate the symmetry assumption, and parametric methods built on normality will produce biased estimates and inaccurate intervals. A log or similar transformation often makes the data approximately normal, after which the standard methods apply.

### Do reference intervals mean 5% of healthy people are abnormal?

Yes, by construction. A central 95% reference interval excludes 5% of the healthy reference population, so roughly 1 in 20 healthy people will fall outside the range on any given analyte.

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "What is the difference between the bell curve and the normal distribution?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "They are the same thing. Bell curve is the informal name based on the shape, and normal distribution or Gaussian normal distribution is the formal statistical term. The word normal here is a historical label, not a claim that other distributions are abnormal."
      }
    },
    {
      "@type": "Question",
      "name": "What do the numbers 68, 95, and 99.7 mean in the empirical rule?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "They are the approximate percentages of observations falling within 1, 2, and 3 standard deviations of the mean in a normal distribution. The exact figures are 68.27%, 95.45%, and 99.73%, and the rounded values are used in practice."
      }
    },
    {
      "@type": "Question",
      "name": "How do I calculate a z-score?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Subtract the mean from the observed value, then divide by the standard deviation: z = (x minus mu) divided by sigma. A z of 1.5 means the value sits 1.5 standard deviations above the mean."
      }
    },
    {
      "@type": "Question",
      "name": "Why is 1.96 used for a 95% confidence interval?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Because 95% of the area under a standard normal curve lies between z = minus 1.96 and z = plus 1.96, leaving 2.5% in each tail. For a one-sided 95% bound, the correct cutoff is 1.645."
      }
    },
    {
      "@type": "Question",
      "name": "Can I use the normal distribution for skewed data?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Not directly. Skewed data violate the symmetry assumption, and parametric methods built on normality will produce biased estimates and inaccurate intervals. A log or similar transformation often makes the data approximately normal, after which the standard methods apply."
      }
    },
    {
      "@type": "Question",
      "name": "Do reference intervals mean 5% of healthy people are abnormal?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Yes, by construction. A central 95% reference interval excludes 5% of the healthy reference population, so roughly 1 in 20 healthy people will fall outside the range on any given analyte."
      }
    }
  ]
}
</script>

## Related Articles

- [Broiler Feed Intake Curves: Tracking Expected Consumption by Age](/knowledge/animal-farming/poultry/broiler-feed-intake-curves-tracking-expected-consumption-by-age)
- [Dog Toilet Training Bells Uk](/knowledge/veterinary-medicine/behavior/dog-toilet-training-bells-uk)
- [Dog Potty Training With Bell](/knowledge/veterinary-medicine/behavior/dog-potty-training-with-bell)
- [Dog Potty Training Bell](/knowledge/veterinary-medicine/behavior/dog-potty-training-bell)
- [Potty Training A Dog Using A Bell](/knowledge/veterinary-medicine/behavior/potty-training-a-dog-using-a-bell)
- [Dog Potty Training Bell Method](/knowledge/veterinary-medicine/behavior/dog-potty-training-bell-method)
- [Bimodal Data: Distribution Examples](/blog/research-skills/bimodal-data-distribution-examples)
- [Poisson Distribution: Formula and Examples](/blog/research-skills/poisson-distribution-formula-and-examples)
- [Right Skewed Distribution: Meaning and Examples](/blog/research-skills/right-skewed-distribution-meaning-and-examples)

## Further Reading

- [Spectral statistics and localization properties of a C_{3}-symmetric billiard.](https://pubmed.ncbi.nlm.nih.gov/42629929/)
- [Non-Gaussian statistics of the order parameter across a phase transition.](https://pubmed.ncbi.nlm.nih.gov/42486985/)
- [Exact diagonalization study of energy-level statistics in harmonically confined interacting bosons.](https://pubmed.ncbi.nlm.nih.gov/41715869/)

## Sources

1. [Soil-specific ecological risk thresholds for tetracycline derived from multi-trophic toxicity data and species sensitivity distribution.](https://pubmed.ncbi.nlm.nih.gov/42744183/)
2. [Not normal: a simulation study comparing effect sizes for skewed psychological data.](https://pubmed.ncbi.nlm.nih.gov/42094317/)
3. [Cumulant-Based Approaches for Testing the Assumption of Independent Errors in Non-Gaussian Parallel and Congeneric Measures.](https://pubmed.ncbi.nlm.nih.gov/42170375/)