Mathematical Statistics

Numerical Descriptive Measures, Tchebysheff’s Theorem and the Empirical Rule

Samir Orujov, PhD

ADA University, School of Business

Information Communication Technologies Agency, Statistics Unit

2026-09-10

🎯 Learning Objectives

By the end of this lecture, you will be able to:

  • Compute the sample mean, variance and standard deviation, and explain the divisor \(n-1\)

  • Distinguish the parameters \(\mu, \sigma^2\) from the statistics \(\bar{y}, s^2\) that estimate them

  • Apply Tchebysheff’s theorem to bound the mass within \(k\) standard deviations, for any distribution

  • Apply the empirical rule to mound-shaped data, and state when it is not available to you

  • Use the range approximation \(s \approx \text{range}/4\) to catch arithmetic errors before they reach a client

🗺️ Overview

Wackerly §§1.4 – 1.6

  1. From pictures to numbers: why three numbers must replace the histogram

  2. Measures of centre: mean, median, mode

  3. Measures of variability: range, variance, standard deviation

  4. Tchebysheff’s theorem — a bound that never fails

  5. The empirical rule — a sharper statement, at a price

  6. Why any of this counts as inference

💡 Motivation: Two Funds, One Mean

Two funds report the same average monthly return of 1.0%.

Fund A: monthly returns between \(-1\%\) and \(+3\%\).

Fund B: monthly returns between \(-18\%\) and \(+20\%\).

The mean is identical and useless on its own. What separates them is spread, and spread is what the client is actually buying.

Today we make “spread” precise, then bound how much of the data any spread can hide.

📝 Measures of Central Tendency

Definition — the sample mean

\[\bar{y} = \frac{1}{n}\sum_{i=1}^{n} y_i\]

  • The median is the middle value once sorted — robust to a single catastrophic day

  • The mode is the most frequent value — rarely useful for continuous returns

For skewed data — loan losses, claim sizes — the mean sits to the right of the median. That gap is the skewness.

📏 Measures of Variability

Definitions

Range \(= y_{(n)} - y_{(1)}\)

Sample variance \(\displaystyle s^2 = \frac{1}{n-1}\sum_{i=1}^{n}(y_i - \bar{y})^2\)

Sample standard deviation \(s = \sqrt{s^2}\)

The range uses two observations and throws away the rest. The variance uses all of them, which is why it is the one that survives into the rest of the course.

➗ Why \(n-1\) and Not \(n\)?

The deviations \(y_i - \bar{y}\) are not free: they must sum to zero.

\[\sum_{i=1}^{n}(y_i - \bar{y}) = 0\]

Fix any \(n-1\) of them and the last is determined. There are \(n-1\) degrees of freedom, so we average over \(n-1\).

In Chapter 8 we prove the consequence: \(E(s^2) = \sigma^2\). Dividing by \(n\) would give an estimator that is systematically too small.

🧮 The Computing Formula

\[s^2 = \frac{1}{n-1}\left[\sum_{i=1}^{n} y_i^2 - \frac{\left(\sum_{i=1}^{n} y_i\right)^2}{n}\right]\]

Algebraically identical to the definition, one pass through the data instead of two.

Warning. With large numbers of similar size — index levels rather than returns — the two sums nearly cancel and the formula loses precision. Compute on returns, not on prices.

📐 Tchebysheff’s Theorem

Theorem

For any data set and any \(k > 1\), at least

\[1 - \frac{1}{k^2}\]

of the measurements lie within \(k\) standard deviations of the mean.

No assumption whatsoever about shape. That is its power, and the reason for its weakness.

🔢 What the Bound Actually Says

\(k\) Interval At least
2 \(\bar{y} \pm 2s\) 75%
3 \(\bar{y} \pm 3s\) 88.9%
4 \(\bar{y} \pm 4s\) 93.75%

At \(k=1\) the bound says “at least 0%” — true, and worthless. The theorem earns its keep from \(k=2\) onwards.

🔔 The Empirical Rule

For mound-shaped, roughly symmetric data

\(\bar{y} \pm s\) contains approximately 68%

\(\bar{y} \pm 2s\) contains approximately 95%

\(\bar{y} \pm 3s\) contains approximately 99.7%

Compare \(k=2\): Tchebysheff guarantees 75%, the empirical rule suggests 95%. Sharper — but only if the shape assumption holds.

⚖️ Which One Do You Use?

Tchebysheff

  • Holds always, no assumptions

  • A lower bound, often far from the truth

  • Right tool when the shape is unknown or ugly

Empirical rule

  • Approximation, not a guarantee

  • Requires a mound shape

  • Fails exactly when it matters: crisis returns, claim sizes

In risk work, quoting 95% from the empirical rule on heavy-tailed returns is how firms discover their tails at the worst possible moment.

📊 Worked Example: A Bank Share

For \(n = 40\) daily returns: \(\bar{y} = 0.10\%\), \(s = 1.45\%\).

Tchebysheff, \(k = 2\): at least 75% of days fall in \[0.10 \pm 2(1.45) = (-2.80,\ 3.00)\]

Empirical rule, if mound-shaped: about 95% fall in that same interval.

Count the actual data: 38 of 40, i.e. 95%. The empirical rule was the better description — and Tchebysheff was still correct.

🧰 The Range Approximation

For a mound-shaped sample of moderate size,

\[s \approx \frac{\text{range}}{4}\]

Not a method of estimation — a method of checking. If your computed \(s\) is ten times range/4, you have made an arithmetic error, and you would rather find it yourself than have a client find it.

🔬 Interactive: Coverage Versus Shape

🧠 Think-Pair-Share

A portfolio has mean daily return \(\bar{y} = 0.04\%\) and \(s = 2.1\%\). A junior analyst writes:

“By the empirical rule, we lose more than 4.2% on at most 2.5% of days.”

Three minutes, in pairs:

  1. What has he assumed?

  2. What does Tchebysheff permit instead?

  3. Which number would you put in the risk report?

✅ Think-Pair-Share: Solution

  1. He assumed the returns are mound-shaped and roughly symmetric. Only then does \(\bar{y} \pm 2s\) hold about 95%, leaving 2.5% in each tail.

  2. Tchebysheff at \(k = 2\) guarantees only that at least 75% lies inside \(\bar y \pm 2s\). Up to 25% may lie outside, and the theorem says nothing about how that 25% splits between the tails — in principle all of it could sit in the left tail.

  3. Report the Tchebysheff figure, and say which one you used. Then test the shape assumption: histogram, and later a formal test. Daily equity returns are famously heavy-tailed, so the empirical rule understates the frequency of large losses — the direction of the error is against you.

The habit worth forming: state the assumption next to the number.

💰 Case Study: Do Real Returns Obey the Empirical Rule?

library(quantmod)

getSymbols("^GSPC", src = "yahoo", from = "2006-01-01", auto.assign = TRUE)
r <- 100 * diff(log(as.numeric(Cl(GSPC))))

m  <- mean(r)
s  <- sd(r)

coverage <- sapply(1:3, function(k) mean(abs(r - m) <= k * s))
tcheby   <- sapply(1:3, function(k) if (k > 1) 1 - 1 / k^2 else 0)

data.frame(
  k          = 1:3,
  empirical  = c(0.68, 0.95, 0.997),
  actual     = round(coverage, 4),
  tchebysheff = round(tcheby, 4)
)

What you will find: the actual coverage at \(k=1\) exceeds 68% and at \(k=3\) falls short of 99.7%. Too much mass in the middle and too much in the tails — the signature of a heavy-tailed distribution, and the reason Chapter 4 spends so long on shapes.

📝 Quiz #1: Degrees of Freedom

Why does the sample variance divide by \(n-1\)?

  • The deviations from \(\bar y\) sum to zero, so only \(n-1\) are free to vary
  • Because \(n-1\) is smaller, making the estimate conservative
  • Because the mean is unknown and must be guessed
  • It is a convention with no mathematical basis

📝 Quiz #2: Tchebysheff

A data set has \(\bar{y} = 50\) and \(s = 5\). What does Tchebysheff’s theorem guarantee about the interval \((40, 60)\)?

  • At least 75% of the measurements lie inside it
  • Exactly 95% lie inside it
  • At least 95% lie inside it
  • Nothing, unless the data are mound-shaped

📝 Quiz #3: Choosing the Right Tool

You have 500 daily returns with pronounced heavy tails. Which statement is defensible?

  • At least 88.9% of days fall within \(\bar y \pm 3s\)
  • About 99.7% of days fall within \(\bar y \pm 3s\)
  • The empirical rule applies because \(n\) is large
  • Neither rule applies to financial data

📝 Quiz #4: The Range Check

A sample of returns runs from \(-6\%\) to \(+6\%\). Your spreadsheet reports \(s = 0.03\%\). What should you do?

  • Suspect an error: range/4 = 3%, a hundred times larger
  • Accept it; the range approximation is unreliable
  • Recompute using \(n\) instead of \(n-1\)
  • Report both numbers and let the reader choose

📋 Summary

  • The mean locates the data; the variance and standard deviation measure how far it spreads

  • Dividing by \(n-1\) reflects the \(n-1\) free deviations, and makes \(s^2\) unbiased for \(\sigma^2\)

  • Tchebysheff’s theorem bounds the mass within \(k\) standard deviations for any distribution: at least \(1 - 1/k^2\)

  • The empirical rule is sharper but assumes a mound shape, and financial returns often refuse it

  • \(s \approx \text{range}/4\) is the arithmetic check that costs five seconds

📚 Practice Problems

Wackerly, 7th edition

  • Exercises at the end of §§1.3 – 1.5

  • Chapter 1 supplementary exercises, especially those contrasting Tchebysheff with the empirical rule

Problem Set 1 closes 26 September at 23:59 on WeBWorK, covering Chapter 1 and §§2.1 – 2.8. A tutorial runs that week before the deadline.

Next class: the probability of an event — sample spaces, the axioms, and the sample-point method.

🙏 Thank You

Dr. Samir Orujov

📧 sorujov@ada.edu.az 🏢 Building D, Room D325 🕓 Office hours: Wednesday, 16:00 – 18:00

Slides and readings: sorujov.net/teaching

❓ Questions

  • Can you construct a data set where Tchebysheff’s bound is exactly attained?

  • If \(s\) doubles while \(\bar y\) is unchanged, what happens to the interval that holds 75%?

  • Why should a bound that is usually far too loose be worth proving at all?