What Are Measures of Central Tendency?
When you look at a data set — test scores, daily temperatures, salaries at a company — the raw numbers can be overwhelming. Measures of central tendency summarize an entire data set with a single representative value that describes where the "center" of the data lies.
The three most common measures are the mean (arithmetic average), the median (middle value), and the mode (most frequent value). Each captures a different aspect of the data's center, and choosing the right one depends on the shape of your data and the question you are trying to answer.
Where you see them in everyday life
In everyday life, these measures are everywhere. Your GPA is a weighted mean. When the news reports "median household income," they are choosing the median over the mean because income data is heavily skewed. Product ratings on an e-commerce site often highlight the mode — the most commonly given star rating.
Understanding what each measure tells you, and more importantly what it does not tell you, is a foundational skill for statistics, data science, economics, and any field that involves interpreting numbers.
How to Find the Mean (Average)
The mean is the most widely used measure of central tendency.
mean = (sum of all values) ÷ (number of values).Let us work through an example with this data set of eight quiz scores: 72, 85, 90, 68, 95, 88, 76, 90.
First, add them up: 72 + 85 + 90 + 68 + 95 + 88 + 76 + 90 = 664.
Then divide by the count: 664 ÷ 8 = 83.
mean = 83The mean has a nice property: it uses every data point in its calculation, so it reflects the entire data set. However, this also means it is sensitive to extreme values (outliers). If one student scored 20 instead of 72, the sum drops to 612 and the mean falls to 76.5 — a single low score dragged the average down noticeably.
The weighted mean
It is also worth mentioning the weighted mean, where each value has a different importance. Your GPA is a weighted mean because a 4-credit course counts more than a 1-credit course.
weighted mean = Σ(value × weight) ÷ Σ(weights).How to Find the Median
The median is the middle value when all data points are arranged in order from smallest to largest. It splits the data set into two equal halves.
To find it, follow two steps.
- Sort the data in ascending order
Arrange every value from smallest to largest.
- Pick the middle value (or average the two middle values)
If there is an odd number of values, the median is the single middle value. If there is an even number, the median is the average of the two middle values.
Using our quiz scores: sorted data is 68, 72, 76, 85, 88, 90, 90, 95.
There are 8 values (even), so the median is the average of the 4th and 5th values: (85 + 88) ÷ 2 = 86.5.
median = 86.5Now consider an odd-count example: 3, 7, 9, 12, 15.
The middle value (3rd out of 5) is 9.
median = 9The median is especially useful because it is resistant to outliers. Even if the highest score in our quiz data were 950 instead of 95, the median would still be 86.5. This robustness makes the median the preferred measure for skewed data like household incomes, home prices, and hospital wait times, where a few extreme values can distort the mean.
How to Find the Mode
In our quiz scores 68, 72, 76, 85, 88, 90, 90, 95, the value 90 appears twice while every other value appears once.
mode = 90No mode, bimodal, and multimodal data sets
| Case | Condition | Example | Result |
|---|---|---|---|
| No mode | All values occur with equal frequency | 2, 4, 6, 8 | No mode |
| Bimodal | Two values tied for highest frequency | 3, 3, 5, 7, 7, 9 | Modes 3 and 7 |
| Multimodal | More than two modes | Several values tied | All tied values are modes |
The mode is the only measure of central tendency that works with categorical (non-numerical) data. If you survey 100 people about their favorite color and 35 say blue, 28 say red, and 20 say green, the mode is "blue." You cannot compute a mean or median of colors, but the mode tells you the most popular category.
The mode is also useful for understanding purchasing patterns, voting preferences, and the most common defect type in manufacturing.
Range and How Outliers Affect Everything
range = maximum value − minimum value.For our quiz scores, range = 95 − 68 = 27.
range = 27While the range is easy to compute, it only considers the two most extreme data points and tells you nothing about how the rest of the data is distributed. A single outlier can inflate the range dramatically.
How outliers distort the mean
Outliers also have a major impact on the mean. Consider annual salaries at a small company: $40K, $42K, $45K, $48K, $50K, $500K.
The mean is $120.8K, but five of the six employees earn less than $50K — the CEO's $500K salary pulls the mean far above what is typical.
The median, however, is ($45K + $48K) ÷ 2 = $46.5K, which much better represents the typical employee's salary.
mean = $120.8K, median = $46.5KThis is exactly why government agencies report median household income rather than mean income. When analyzing any data set, always check for outliers before deciding which measure to report. A quick comparison of mean and median can reveal skewness: if the mean is significantly higher than the median, the data is right-skewed (pulled by high outliers), and vice versa.
When to Use Mean vs Median vs Mode
Choosing the right measure depends on the nature of your data.
| Measure | When to use | Example data | Why |
|---|---|---|---|
| Mean | Data is roughly symmetric with no extreme outliers | Heights of adult men, standardized test scores in a large population, daily temperatures over a month | The mean incorporates every data point and works well with further statistical calculations like standard deviation. |
| Median | Data is skewed or contains outliers | Incomes, home prices, hospital bills, or any distribution with a long tail | The median gives a better sense of the "typical" value because it is not dragged toward extremes. |
| Mode | Working with categorical data, or you want to know the single most likely outcome | Favorite colors, most-purchased product, most common shoe size | The mode identifies the most frequent category or value, which the mean and median cannot describe for non-numerical data. |
In some cases, reporting all three gives the fullest picture. For example, a teacher might report the mean test score for grading purposes, the median to show the typical student's performance, and the mode to identify the most common score.
When you need to verify calculations across all three measures, Solver AI can compute mean, median, mode, and range instantly — just type or snap a photo of your data set and get step-by-step results.