standarddeviationcalculator.net

Bell curve generator

Enter a mean and a standard deviation to draw the curve, with each sigma band shaded and the exact coverage labelled.

Curve for μ and σ 100 ± 15
Mean (μ)100
Standard deviation (σ)15
Variance (σ²)225
±1σ range85 to 115
±2σ range70 to 130
±3σ range55 to 145
Inflection points85 and 115
Peak height0.0266
+1σ −1σ+2σ −2σ+3σ −3σ±1σ → 68.27%±2σ → 95.45%±3σ → 99.73%

The 68–95–99.7 rule is a rounding of the exact coverages shown above. It holds only for data that is roughly normal.

Show the working, step by step

Reading a bell curve

The height of the curve at any point is not a probability — it is a density. Probability is area, which is why questions like "what fraction scores above 120?" are answered by shading a region rather than reading a height. The normal distribution calculator does that shading for any range.

The features worth knowing how to spot:

What each parameter does

ChangeEffect on the curve
Increase the meanSlides right. Shape unchanged.
Decrease the meanSlides left. Shape unchanged.
Increase σWider and flatter — more spread, lower peak.
Decrease σNarrower and taller — tightly clustered data.

The peak height is 1 / (σ√(2π)), so it depends only on σ. Doubling the standard deviation halves the peak, because the area underneath has to stay at 1.

The equation

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

The (x − μ)² in the exponent is the same squared deviation that appears in the standard deviation formula. Dividing it by 2σ² is what makes the curve's width scale with the standard deviation, and the 1 / (σ√(2π)) in front is exactly the constant needed to make the area come to 1.

A caution about "bell curves"

Plenty of real data is not bell-shaped, and drawing a smooth curve over it does not make it so. Incomes, waiting times and city sizes are all strongly right-skewed. Before relying on a normal model, plot the actual data — the box plot will show a badly off-centre median if the shape is wrong, and the standard deviation calculator reports what fraction of your values really do fall within one σ so you can compare it against the expected 68%.

Related calculators

Common questions

How do I make a bell curve graph?

Enter a mean and a standard deviation above. The curve is drawn immediately with each sigma band shaded and labelled. To graph your own data instead, put the numbers into the standard deviation calculator, which plots them against a fitted curve.

What determines the shape of the curve?

Only two numbers. The mean slides it left or right; the standard deviation sets how wide and flat it is. Every normal curve is the same shape stretched and shifted.

Where is the standard deviation on a bell curve?

At the inflection points — where the curve stops bending downwards and starts bending outwards. Those sit exactly one standard deviation either side of the mean, which makes σ something you can literally see on the graph.

Can I make a bell curve in Excel?

Yes: create a column of x values spanning about μ ± 4σ, then use =NORM.DIST(x, mean, sd, FALSE) for the height at each, and chart the pair as a scatter with smooth lines. Setting the last argument to TRUE gives the cumulative S-curve instead. More Excel formulas.

Written and reviewed by our editorial team. Last updated . Method and sources: how these numbers are computed.