This page is a toolbox opening. The parent note throws around μ, σ, E[⋅], skewness, covariance, correlation r, and matrix notation as if you already own them. Here we buy each tool from an empty shelf, in the order you actually need them. Nothing is used before it is built.
Everything below sits on top of one picture. Hold it in your head.
Why this comes first: every symbol later is about a single column (like the age column) or about two columns together (age vs income). If you don't see the rectangle, the symbols float.
Why the topic needs it: spread tells you whether a mean is trustworthy. Mean income of $50k with \sigma=\2kisatight,reliablegroup;thesamemeanwith\sigma=$40$k is a wild mix. Both are used later in outlier detection.
The parent note writes Skewness=σ3E[(X−μ)3]. Let's earn every piece.
This is why the parent's age example (mean 34.5, median 32.0, so mean is the larger of the two) is called right-skewed — the two-number comparison and the sign of skewness agree.
Read it upward: the rectangle gives you columns; columns give you sums; sums give the mean; the mean gives deviations; deviations branch into spread (variance/σ) and lopsidedness (skewness), and pair up into covariance and correlation. All of it pours into the parent EDA workflow.
Cover the right side and answer each. If any stalls you, reread its section above before opening the parent note.
What does the subscript i in xi do?
Points to which value in the column — a walking ticket number from 1 to n.
What does ∑i=1nxi mean?
Add up every value in the column, from the first to the n-th.
Why is xˉ called a balance point?
It's the pivot where the see-saw of marbles balances; deviations on each side cancel.
How do you compute the median when n is even?
Order the values and average the two middle ones — e.g. for 2,4,6,8 the median is (4+6)/2=5.
Why do the raw deviations (xi−xˉ) average to zero?
Positive and negative arrows cancel exactly — that's what the mean is.
Why do we square deviations for variance?
To remove signs (so they don't cancel) and to punish far-away points more heavily.
When do you divide by n vs n−1?
n for a whole population (σ2); n−1 for a sample you're estimating from (s2, the unbiased estimator) — the EDA default.
Why take the square root to get σ?
To return to the original units so the spread is human-readable.
What does E[⋅] mean in plain words, concretely?
"The average of" the bracketed quantity — literally n1∑ over all rows.
Why does the cube (k=3) detect skew when the deviation-sum can't?
Cubing keeps the sign, so a long tail's large cubes don't cancel — the sum leans positive or negative.
What does dividing by σ3 (or σXσY) achieve?
Removes units, making the number scale-free and comparable across columns.
What is the difference between covariance and correlation r?
Same "move together" idea, but r is standardized into the fixed range [−1,+1] so its size is meaningful.
Why is r undefined for a constant column?
That column has σ=0, so r=00 — a never-moving column can't "move together" with anything.
What does rij with two subscripts represent, and what is R?
rij is the correlation between column i and column j; the full grid of all such pairs (with 1s on the diagonal) is the correlation matrix R.
Recall Self-test: mean vs median for skew
A column has mean 34.5 and median 32.0. Which way is it skewed and what sign of skewness do you expect?
Answer: mean > median → a long right tail → positive skewness.