What Is a Measure of Central Tendency?

A measure of central tendency is a single value that represents the center or typical value of a data set. The three most common measures are the mean, median, and mode. Each has strengths and weaknesses depending on the shape and nature of your data.

The Mean (Arithmetic Average)

The mean is calculated by adding all values and dividing by the number of values:

Mean = (Sum of all values) / (Number of values)

Example: Data set: {4, 7, 8, 9, 12}
Mean = (4 + 7 + 8 + 9 + 12) / 5 = 40 / 5 = 8

When to Use the Mean

  • Data is roughly symmetrically distributed (bell-shaped).
  • There are no extreme outliers that would distort the average.
  • You need to use the value in further calculations.

Weakness

The mean is heavily influenced by outliers. A dataset {4, 7, 8, 9, 100} gives a mean of 25.6 — which doesn't represent most values well.

The Median

The median is the middle value when data is sorted in order. If there's an even number of values, the median is the average of the two middle values.

Example (odd): {3, 6, 9, 12, 15} → Median = 9
Example (even): {3, 6, 9, 12} → Median = (6 + 9) / 2 = 7.5

When to Use the Median

  • Data contains outliers or is skewed (e.g., income data).
  • You want a value that represents the "typical" member of the data set.
  • Data is ordinal (ranked categories).

The Mode

The mode is the value that appears most often. A dataset can have no mode, one mode, or multiple modes (bimodal, multimodal).

Example: {2, 4, 4, 6, 7, 7, 7, 9} → Mode = 7 (appears 3 times)

When to Use the Mode

  • Data is categorical (e.g., most popular color, most common shoe size).
  • You want to know the most frequent outcome.
  • Identifying peaks in a distribution.

Comparing All Three: A Practical Example

Consider the annual salaries at a small company: $30,000, $32,000, $35,000, $37,000, $38,000, $250,000

MeasureValueRepresents?
Mean$70,333Skewed high by the CEO's salary
Median$36,000More representative of typical employees
ModeNoneNo repeated values here

In this case, the median is clearly the most informative measure — which is exactly why economic reports typically cite median household income rather than the mean.

The Effect of Data Shape

  • Symmetric distribution: Mean ≈ Median ≈ Mode. Any measure works.
  • Right-skewed (positive skew): Mean > Median > Mode. Use median.
  • Left-skewed (negative skew): Mean < Median < Mode. Use median.

Key Takeaways

  • The mean is best for symmetric, outlier-free data.
  • The median is most robust against skewed data and outliers.
  • The mode is ideal for categorical data and frequency analysis.
  • Always visualize your data first — a histogram reveals its shape and guides your choice.

No single measure tells the whole story. In practice, report all three alongside a measure of spread (like standard deviation or range) for a complete picture of your data.