C.W.K.
Stream
Lesson 01 of 05 · published

The Bell Curve: Why Nature Loves Symmetry

~8 min · gaussian, bell-curve, mean, std

Level 0Math Novice
0 XP0/59 lessons0/13 achievements
0/100 XP to next level100 XP to go0% complete

The Shape That Rules the Universe

Heights of adults. Measurement errors. Sums of dice rolls. The noise in a sensor. Birth weights. IQ scores (when defined that way). Many many more. These wildly different phenomena all settle into the same shape: the normal distribution, also called the Gaussian, also called the bell curve.

It's symmetric, peaked at the mean , and tapers to zero on both sides at a rate controlled by the standard deviation . The formula:

Don't memorize the formula. Memorize the shape and what controls it.

Two Numbers Tell the Whole Story

  • (mean) — where the peak sits.
  • (standard deviation) — how wide the bell is. Small σ → narrow tall bell; large σ → wide flat bell.
Two parameters describe a normal distribution. When data approximately follows a bell curve, you can summarize it in 2 numbers without losing much. That's an enormous compression.

Code

Sampling a normal distribution·python
import numpy as np

samples = np.random.normal(loc=100, scale=15, size=10000)
print(f"mean: {samples.mean():.2f}, std: {samples.std():.2f}")
# mean: ~100, std: ~15

# Plotting (with matplotlib) shows the classic bell shape

Exercise

Sample 10,000 numbers from a normal distribution with mean 50 and std 10. Compute the empirical mean and std. Plot a histogram. What if you use std=2 instead — how does the shape change?
Hint
np.random.normal(50, 10, 10000) then plt.hist. Smaller std = narrower bell concentrated near the mean.

Progress

Progress is local-only — sign in to sync across devices.
Spotted a bug or have feedback on this page?Report an Issue

Comments 0

🔔 Reply notifications (sign in)
Sign inPlease sign in to comment.

No comments yet — be the first.