SA101: Principles of Statistics I
JUL 2026

Locating the Center

Every dataset has a center. The problem is that "center" means three different things depending on what you ask. The mean asks where the data balances. The median asks what value splits it in half. The mode asks what value appears most. On well-behaved data these three answers are close enough to ignore. On real data they diverge — and that divergence is not a problem to resolve. It is the most important thing the data is telling you.

Interactive 14The Mode's Blind Spots

The mode is the only measure of central tendency that works on nominal data. You cannot average nationalities. You cannot find the median shoe brand. But you can find the most common one. That's the mode's entire advantage — and it comes with two serious weaknesses: it sometimes doesn't exist, and it sometimes isn't unique.

2
3
5
7
9
Mode
Mode=5(appears 3 times) \text{Mode} = 5 \quad (\text{appears } 3 \text{ times})

The True Power: Categorical Data

American
n=12
British
n=8
French
n=15
Other
n=5

The mode's limitation is also its strength. It is the only measure that doesn't require numbers — which makes it the only measure that works on categorical data.

Interactive 15The Median's Armor

The median doesn't care about your outliers. It only cares about position — which value sits exactly in the middle when everything is sorted. You can replace the largest value with a number a thousand times bigger and the median won't move. That robustness is its defining property, and it's also its limitation: by ignoring the extremes, it ignores real information those extremes contain.

Position is immune to magnitude. Drag the max value to 10,000. The median doesn't care.
0
Rank 1
1
Rank 2
2
Rank 3
Median = 8.0
8
Rank 4
9
Rank 5
10
Rank 6
12
Rank 7
Median Rank
Median Rank=n+12=7+12=4 \text{Median Rank} = \frac{n + 1}{2} = \frac{7 + 1}{2} = 4

The median's resistance to outliers is mathematical, not accidental. Position is immune to magnitude.

Interactive 16The Weight of the Mean

The arithmetic mean is just a weighted mean where every observation gets equal weight. Once you see it that way, the weighted mean stops being a special formula and becomes the general case — and the arithmetic mean becomes its simplest instance. Change the weights and the center moves. Set them all equal and you're back where you started.

pivot
0
20
x=2
w=1
x=5
w=1
x=8
w=1
x=12
w=1
x=16
w=1
xˉ=8.6\bar{x} = 8.6
Weighted Mean Formula
xˉ=Σxn=8.6 \bar{x} = \frac{\Sigma x}{n} = 8.6

The Grand Mean

When combining two groups, simply averaging their means assumes both groups are exactly the same size. Real life rarely works that way.

Group 1: Males
n = 200
Mean Height = 170 cm
Group 2: Females
n = 100
Mean Height = 160 cm
Simple Average = (170 + 160) / 2 = 165.00
Grand Mean = ((200 × 170) + (100 × 160)) / (200 + 100) = 166.67
n=100
160
n=200
170
165.0 (Simple)
166.7 (Grand)

The arithmetic mean assumes everyone is equally important. The weighted mean lets you say otherwise.

Interactive 17The Outlier Test (Mean vs Median vs Mode)

This is the moment the three measures stop being abstract. Give them a dataset with an outlier and watch them respond differently. The mode doesn't notice. The median barely moves. The mean chases the extreme value across the number line. None of them is wrong. They are answering different questions about the same data.

0
350
Mode
Med
Mean
33
Calculations
xˉ=xin=11.0,Median=8.5,Mode=0 \bar{x} = \frac{\sum x_i}{n} = 11.0, \quad \text{Median} = 8.5, \quad \text{Mode} = 0

The mean uses all the data. That's its strength when data is well-behaved. That's its weakness when it isn't.

Interactive 18The Shape of the Gap

When a distribution is symmetric, mean, median, and mode are identical. When it skews, they separate — and the direction they separate tells you which tail is pulling the data. The mean always chases the tail. The median follows reluctantly. The mode stays at the peak. The gap between them is not measurement error. It is the shape of the distribution, expressed as a number.

- SkewSym+ Skew
Mode
Highest peak
Med
50th percentile
Mean
Balance point

Symmetric Distribution

Mean ≈ Median ≈ Mode

All three measures agree. The curve is balanced. This is the only situation where the mean is unambiguously the right choice for the 'center'.

The distance between mean and median is a measure of skewness. The mean always chases the longest tail.

Pearson's Second Skewness Coefficient
Sk=3(xˉMedian)s S_k = \frac{3(\bar{x} - \text{Median})}{s}

The distance between mean and median is a measure of skewness. The direction tells you which tail is longer.

Exercise: Reading Central Tendency

It's time to test your intuition. Given a specific scenario or a set of values, identify which measure of central tendency is the most appropriate or what shape the distribution must have.

Part 1: Which Measure?

Select the most appropriate measure of central tendency for each situation.

You want to know the most popular major at FEPS.

You want to describe average income in Egypt without being misled by billionaires.

You want to describe the average exam score in a normally distributed class.

You want to find the central tendency of students' satisfaction ratings: Poor, Fair, Good, Very Good, Excellent.

Act Progress4 / 7
Unit 4: Locating the Center
NEXT Unit 5: Measures of Spread

"Now that we know where the center is, we must measure how much the data disagrees with it."