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

What Is Sigma? A Citizen's Definition

~11 min · sigma, standard-deviation, z-score, intuition

Level 0Stats Novice
0 XP0/55 lessons0/14 achievements
0/100 XP to next level100 XP to go0% complete
"σ is the citizen's measuring stick. Once it stops being a Greek letter and starts being a unit, the bell becomes legible."

The Definition, Plainly

The standard deviation σ is the typical distance between a value and the mean. Not the average distance (that would be the 'mean absolute deviation'), but the square root of the average squared distance. The squaring makes σ sensitive to extreme values; the square root puts the answer back into the same units as the original data.

Symbolically, for a distribution with mean μ:

σ = √(E[(X − μ)²])

For citizen purposes, the formula matters less than the interpretation: σ is the spread. Two distributions with the same mean but different σ live on different scales — one wide and flat, one narrow and tall. σ is the dial that controls the spread.

The Z-Score: Translating Any Scale

A z-score rescales any value into σ-units relative to its distribution:

z = (x − μ) / σ

The z-score answers: 'how many standard deviations above (positive z) or below (negative z) the mean is this value?' An IQ of 130 is z = +2 (two σ above the average IQ of 100, with σ = 15). A height of 190cm for a Korean adult male is roughly z = +2 (mean ≈ 174cm, σ ≈ 7cm). A response time of 200ms when the typical is 500ms and σ = 100ms is z = −3 (very fast).

Z-scores are the lingua franca that makes 'top 2% in test scores' and 'top 2% in height' equivalent statements: both correspond to roughly z = +2. The bell curve is the translation table.

The Citizen Interpretation

  • z = 1: 'noticeably above the average.' About 16% of values are at or above this level (under normality).
  • z = 2: 'meaningfully above the average.' About 2.5% of values reach this level. Borderline 'top of the class' territory.
  • z = 3: 'rare.' About 0.13% of values. Genuinely uncommon under normality.
  • z = 4 to 5: 'almost impossible under normality.' Less than 1 in tens of thousands to less than 1 in millions.

The Working Skill

To read a statistic in σ-units is to translate it onto a universal grid. Once any number is in z-form, you know roughly how surprising it is — regardless of the original units. That translation is the first sigma-trick. Apply it carefully, remembering that the bell-curve probabilities only hold if the underlying data is actually bell-shaped.

Code

Z-scores across four different domains·python
import numpy as np

# Three different real-world quantities, with their typical mean and sigma.
quantities = {
    "IQ score":                (100, 15),
    "Adult Korean male height (cm)": (174, 7),
    "Daily steps (active person)":   (10_000, 3_000),
    "Resting heart rate (bpm)":      (62, 10),
}

# Convert a few example values to z-scores.
for label, (mu, sigma) in quantities.items():
    print(f"\n{label}: mu={mu}, sigma={sigma}")
    for x in (mu - sigma, mu, mu + 2 * sigma, mu + 3 * sigma):
        z = (x - mu) / sigma
        print(f"  value={x:>6}   z={z:+.2f}")

# The same z-score means the same level of surprise across all of these
# different quantities — provided the underlying distribution is normal.
# This is what 'sigma as a universal language' looks like in practice.

External links

Exercise

Pick a personal metric you track (resting heart rate, daily steps, hours slept, sentences written per day). Estimate its mean and σ over a typical month for you. Then convert today's value to a z-score. Are you above or below your own normal range? How surprising is today, in personal-σ units?
Hint
Once you live in σ-units personally, you stop being startled by random daily fluctuation and start noticing true 2σ-or-more departures from your own baseline.

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.