Intuition The ONE core idea
A pile of numbers has a middle (the mean) and a width (how far the numbers stray from that middle). This whole topic is just a careful recipe for turning "how wide is the spread?" into a single honest number — and every symbol below is one small brick in that recipe.
Before you can understand variance, you have to be able to read it. The parent note throws a lot of little symbols at you very fast: ∑ , x ˉ , x i , n , σ 2 , μ , x 2 . If any one of them is a blur, the derivations become spellcasting. This page defines each one from absolute zero , anchors it to a picture, and says why the topic can't live without it .
Everything starts with a list of numbers you actually measured — test marks, dart distances, heights, whatever.
Definition Data value and the subscript
x i
A single measured number is called a data value . We write the whole collection as x 1 , x 2 , x 3 , … , x n .
The letter x = "a data value in general."
The little number underneath, called a subscript , is just a name tag telling us which one . x 1 is the first value, x 2 the second, and x i means "the i -th one," where i is a placeholder you can slide from 1 up to n .
Look at the figure. Each dot on the number line is one x i . The subscript is nothing scary — it is exactly like numbering the students in a row: "student 1, student 2, ..." The x tells you what kind of thing , the subscript tells you which specific one .
Intuition Why the topic needs
x i
To write "do the same thing to every number" in one short line, we need a way to say "a typical number." That typical number is x i ; sliding i from 1 to n visits every dot in the picture.
n
n is simply how many data values there are — the number of dots on the line. In 2 , 4 , 4 , 6 , 9 we have n = 5 .
Writing x 1 + x 2 + x 3 + x 4 + x 5 is fine for five numbers, but painful for five hundred. Mathematicians invented a single symbol that means "add up a whole sequence."
∑
The stretched capital-S Greek letter ∑ (read "sigma," meaning S for S um) is a machine that adds. Read it left-to-right like a sentence:
∑ i = 1 n x i = x 1 + x 2 + x 3 + ⋯ + x n
The i = 1 below = "start the counter at 1."
The n above = "stop when the counter reaches n ."
The x i after = "here is the thing you add each time."
Look at the figure. The counter i walks along the bottom: 1 , 2 , 3 , … Each step it picks up the value x i and drops it into a running total. When the counter passes n , it stops and hands you the final sum.
Worked example Reading a sigma out loud
i = 1 ∑ 5 x i with data 2 , 4 , 4 , 6 , 9 means 2 + 4 + 4 + 6 + 9 = 25 .
And i = 1 ∑ 5 x i 2 means "square each first, then add": 4 + 16 + 16 + 36 + 81 = 153 .
∑ x i 2 is NOT ( ∑ x i ) 2
Wrong feeling: the square can slide outside the sum. It cannot.
∑ x i 2 = 4 + 16 + 16 + 36 + 81 = 153 , but ( ∑ x i ) 2 = 2 5 2 = 625 . The little 2 inside means "square each term first." Position of the exponent changes everything — watch it like a hawk.
Intuition Why the topic needs
∑
Every dispersion formula is "do something to each value, then total it up." ∑ is the total-it-up part. Without it, the variance formula would be an infinitely long chain of plus signs.
To ask "how far do numbers stray from the middle?" we first need the middle .
x ˉ
The mean (everyday "average") is the total divided by the count:
x ˉ = n 1 ∑ i = 1 n x i
The bar over the x (read "x-bar ") is the universal signal for "the average of the x 's."
Look at the figure. Imagine the number line is a see-saw and each data value is a weight sitting where it lands. The mean is the exact balance point — the pivot where the plank tips neither left nor right. Values far to the right are counterweighted by values far to the left.
Definition Population mean
μ vs sample mean x ˉ
Same idea, two names, because of where the data came from :
x ˉ ("x-bar") = mean of a sample — a handful you grabbed to represent a bigger group.
μ (Greek "mu") = mean of the whole population — every single member, none missing.
They are computed identically; the different letters just remind you whether you measured everyone (μ ) or some (x ˉ ). This is exactly why the parent note later cares about dividing by n versus n − 1 .
Intuition Why the topic needs the mean first
Spread is always measured from a centre . The mean is that centre. See Mean, Median, Mode — measures of central tendency for why the mean (not median) is the natural partner of variance — it's the balance point, and squaring distances is happiest around a balance point.
Now that we have a centre, we can ask each value: how far are you from it?
Look at the figure. Each coloured arrow runs from the mean to a data point . Arrows pointing right are positive deviations (orange), arrows pointing left are negative (blue). The length of the arrow is how far off that value is; the direction is the sign.
Intuition The magic cancellation — why we can't stop here
Add up every arrow: the rightward ones exactly cancel the leftward ones, because the mean is the balance point. In symbols, ∑ d i = ∑ ( x i − x ˉ ) = 0 , always . That is the whole reason the parent note squares the deviations — to destroy the signs so the distances stop cancelling. Hold onto this arrow picture; it is what "( x i − x ˉ ) 2 " is silently drawing.
The shortcut formula in the parent note lives or dies on telling these apart.
Definition Mean of the squares
x 2
Square every value first, then average.
x 2 = n 1 ∑ x i 2
The bar sits over the whole x 2 , so the squaring happens inside , per value.
Definition Square of the mean
( x ˉ ) 2
Average first, then square the single answer.
( x ˉ ) 2 = ( n 1 ∑ x i ) 2
The bar sits over x alone; the squaring is outside , applied once at the end.
Worked example Watch them differ
Data 2 , 4 , 4 , 6 , 9 :
x 2 = 5 153 = 30.6 (square each, then average).
( x ˉ ) 2 = 5 2 = 25 (average is 5 , then square).
They are not equal — and the parent note's shortcut says their difference is the variance : 30.6 − 25 = 5.6 .
Read the bar's position. Bar over x 2 = "squaring done first." Bar over x = "averaging done first." Whichever operation the bar covers happens first.
σ 2 and standard deviation σ
σ (Greek lowercase "sigma" — same letter family as ∑ , but this is the statistic , not the sum machine) is the standard deviation : a single number for the typical arrow-length, in the data's own units.
Its square σ 2 is the variance : the average of the squared arrow-lengths, in squared units.
σ 2 ≥ 0 always (it's an average of squares — nothing squared is negative).
σ = σ 2 pulls us back to the original units.
σ that sums vs the σ that spreads
Capital ∑ = "add everything up" (an instruction). Lowercase σ = "the spread number" (a result). Same Greek letter, totally different jobs — the case and the context tell you which.
mean x-bar = total over n
deviation = value minus mean
square the deviation to kill signs
variance = average squared deviation
mean of squares vs square of mean
standard deviation = square root of variance
Coefficient of Variation, Normal Distribution
Read it top to bottom: raw data need a count and a sum to build the mean ; the mean lets us measure deviations ; squaring and summing them gives variance ; a square root gives standard deviation , which then powers Coefficient of Variation and the Normal Distribution .
Reveal each and check you can answer instantly before tackling the parent note.
What does the subscript in x i mean? A name tag saying which data value — the i -th one; slide i from 1 to n to visit every value.
What does i = 1 ∑ n x i instruct you to do? Start a counter i at 1, add the term x i each step, stop after i = n — i.e. total every value.
Is ∑ x i 2 the same as ( ∑ x i ) 2 ? No. ∑ x i 2 squares each term first then adds; ( ∑ x i ) 2 adds first then squares once.
What is n ? The count — how many data values you have.
Give the formula for the mean x ˉ . x ˉ = n 1 ∑ i = 1 n x i — the total divided by the count.
What picture is the mean? The balance point of a see-saw with a weight at each data value.
Difference between μ and x ˉ ? μ = mean of the whole population; x ˉ = mean of a sample. Same formula, different source of data.
Define the deviation d i and its sign. d i = x i − x ˉ ; positive if the value is right of the mean, negative if left, zero if on it.
What does ∑ ( x i − x ˉ ) always equal, and why? Exactly 0 — the mean is the balance point, so rightward and leftward deviations cancel.
x 2 vs ( x ˉ ) 2 — which squares first?x 2 squares each value first then averages; ( x ˉ ) 2 averages first then squares once. They are equal only if all values are identical.
Variance σ 2 vs standard deviation σ — units and relation? σ 2 is in squared units;
σ = σ 2 restores the original units.