← Back to blog

Mean, Median, and Mode Explained with Examples

August 6, 2026
Mean, Median, and Mode Explained with Examples

TL;DR:

  • Mean, median, and mode are three measures of central tendency that describe different aspects of data distribution.
  • The dataset’s mean is approximately 14.11, the median is 14, and the mode is 14, indicating a fairly symmetric distribution.

Mean, median, and mode are three measures of central tendency: the mean is the arithmetic average (sum divided by count), the median is the middle value when data is ordered, and the mode is the most frequent value. For the dataset 13, 16, 12, 14, 19, 12, 14, 13, 14, the results are:

  • Mean: (13 + 16 + 12 + 14 + 19 + 12 + 14 + 13 + 14) ÷ 9 = 127 ÷ 9
  • Median: Ordered list is 12, 12, 13, 13, 14, 14, 14, 16, 19 — the middle value is 14
  • Mode: 14 appears three times — more than any other value — so the mode = 14

For this dataset, all three measures land at or near 14, which tells you the data is fairly symmetric with no dramatic outliers pulling the mean away. The mode is the most intuitive "typical" value here because it is the most common score and matches the median exactly.

Table of Contents

What do mean, median, and mode each measure?

These three measures each capture a different idea of "typical." Knowing which one to reach for depends on your data type and whether outliers are present.

  • Mean (arithmetic average): Add all values, divide by the count. The mean is sensitive to outliers — one extreme value can pull it far from the center of the rest of your data.
  • Median (middle value): Sort the data, pick the middle. The median resists extreme values because it is position-based, not calculation-based. Use it when your data is skewed or contains outliers.
  • Mode (most frequent value): Count occurrences, find the highest frequency. The mode is the only measure that works for nominal (categorical) data/02%3A_Exploring_and_Summarizing_Data/2.01%3A_Measures_of_Central_Tendency-_Mean_Median_and_Mode) — like favorite colors or shirt sizes — where mean and median are meaningless.
MeasureBest situation
MeanSymmetric numeric data, no extreme outliers
MedianSkewed numeric data or datasets with outliers
ModeCategorical data, or finding the most common value

How to calculate the mean step by step

The arithmetic mean formula is:

x̄ = Σx / n

Woman calculating mean at home office desk

Here, is the mean, Σx is the sum of all values, and n is the count of values.

For the dataset 13, 16, 12, 14, 19, 12, 14, 13, 14, here is the full calculation:

  1. Add all values: 13 + 16 + 12 + 14 + 19 + 12 + 14 + 13 + 14 = 127
  2. Count the values: There are 9 numbers in the set.
  3. Divide: 127 ÷ 9

The mean of 14.11 tells you that if you redistributed the total equally across all nine values, each one would be approximately 14.1. It is a useful summary when every data point deserves equal weight in the result.

One thing to watch: if you added a tenth value of, say, 95, the mean would jump to about 22.4 — far above most of the original values. That sensitivity is exactly why the median often tells a more honest story.

How to calculate the median for odd and even counts

Sorting your data before finding the median is non-negotiable. The median of an unsorted list is meaningless.

  1. Sort the data in ascending order.
  2. Odd count (n is odd): The median is the single middle value at position (n + 1) / 2.
  3. Even count (n is even): Average the two middle values at positions n/2 and (n/2) + 1.
  4. Report the result as a single number, even when it falls between two data points.

Odd count example (our dataset, n = 9): Sorted: 12, 12, 13, 13, 14, 14, 14, 16, 19 Position (9 + 1) / 2 = 5th value → Median = 14

Even count example (n = 6): Dataset: 3, 7, 8, 12, 15, 20 Two middle values (positions 3 and 4): 8 and 12 Median = (8 + 12) / 2 = 10

Notice that 10 does not appear in the original dataset — that is perfectly fine. The median is a positional summary, not a requirement to match an actual data point.

How to find the mode, including multimodal cases

Finding the mode starts with a frequency count: tally how many times each value appears, then identify the highest frequency.

Student arranging data cards to find mode in classroom

For the dataset 13, 16, 12, 14, 19, 12, 14, 13, 14:

ValueFrequency
122
132
143
161
191

14 appears three times — more than any other value — so the mode is 14. This dataset is unimodal (one mode).

  • Unimodal: One value appears most often (e.g., mode = 14 above).
  • Bimodal: Two values tie for highest frequency (e.g., in {2, 4, 4, 6, 6, 8}, both 4 and 6 are modes).
  • Multimodal: Three or more values share the top frequency.
  • No mode: Every value appears exactly once — no single value stands out.

The mode shines brightest with categorical data. If you survey 50 students about their favorite subject and "Math" gets chosen 22 times, that is your mode — and it is the only central tendency measure that makes sense for that question. Applying mean or median to category labels is not possible.

When should you use mean vs. median vs. mode?

The right measure depends on your data's shape and what you are trying to communicate. In symmetric distributions, the mean, median, and mode coincide/02%3A_Exploring_and_Summarizing_Data/2.01%3A_Measures_of_Central_Tendency-_Mean_Median_and_Mode); as skewness increases, they diverge and the mean moves toward the long tail.

Infographic comparing when and why to use mean, median, and mode

A practical example: newspapers and researchers consistently prefer the median for household income because a small number of very high earners pull the mean well above what most households actually earn. The median gives the truer picture.

Start with a histogram or box plot to judge symmetry and spot outliers before committing to a measure.

Data type / situationBest measure
Symmetric numeric (no outliers)Mean
Skewed numeric or outliers presentMedian
Categorical / nominalMode
Ordinal (ranked, e.g., survey scales)Median
Finding most popular item or scoreMode

You can also use the relationship between mean and median as a quick skew diagnostic. If the mean is greater than the median, the data is typically right-skewed; if the mean is less than the median, it is typically left-skewed. For our dataset, the mean and median values are very close, confirming the data is close to symmetric.

Common mistakes to avoid when calculating these measures

  • Forgetting to sort for the median. Picking the middle value from an unsorted list gives a wrong answer every time.
  • Miscounting n. Always count your data points explicitly. Off-by-one errors in n change both the mean and the median position.
  • Calling the mode an "average" for continuous data. When every value in a dataset is unique, there is no mode — do not force one.
  • Rounding too early. Round only the final answer, not intermediate sums. Rounding 127 ÷ 9 at each step compounds error.
  • Reporting "average" without naming which one. Statistics experts advise always specifying mean, median, or mode to avoid miscommunication — "average salary" and "median salary" can differ by tens of thousands of dollars.

Pro Tip: Compare your mean and median before reporting. If they are close, your data is roughly symmetric and the mean is reliable. If they diverge noticeably, outliers or skew are likely present — switch to the median and investigate the extremes.

Practice problems and the Apexa Pro calculator

The Apexa Pro mean/median/mode calculator runs free in your browser with no sign-up. Enter your dataset, and it returns the mean, median, and mode instantly — useful for checking hand calculations before submitting homework or a report.

How to use it:

  1. Open the calculator at apexapro.com.
  2. Type or paste your numbers, separated by commas.
  3. Hit calculate and compare the output against your hand-worked answer.
  4. If results differ, recheck your sum (mean), your sorted order (median), or your frequency tally (mode).

Practice problems:

  1. Simple: Dataset: 5, 8, 3, 7, 8, 6, 8 Mean = 45 ÷ 7 ≈ 6.43; Median (sorted: 3,5,6,7,8,8,8) = 7; Mode = 8

  2. With an outlier: Dataset: 10, 12, 11, 13, 10, 75 Mean = 131 ÷ 6 ≈ 21.8; Median = (11 + 12) / 2 = 11.5; Mode = 10. Notice how the outlier (75) inflates the mean far above the median.

  3. Categorical/multimodal: Favorite seasons survey: Spring, Fall, Spring, Winter, Fall, Summer, Spring, Fall Mode = Spring and Fall (each appears 3 times — bimodal). Mean and median do not apply.

Key Takeaways

The mean, median, and mode each measure a different aspect of central tendency, and choosing the right one depends on your data's shape, type, and the presence of outliers.

PointDetails
Mean for symmetric dataUse the mean when data is symmetric and free of extreme outliers.
Median for skewed dataThe median resists outliers and is the better choice for skewed distributions.
Mode for categoriesThe mode is the only measure that works for nominal (categorical) data.
Always name your measureSaying "average" without specifying mean, median, or mode causes confusion.
Apexapro calculatorUse the free Apexa Pro tool at apexapro.com to verify hand calculations instantly.

Why reporting all three measures matters

Teaching mean, median, and mode as a trio rather than picking one and ignoring the others is the approach that actually builds statistical literacy. Reporting only the mean, for instance, can paint a misleading picture the moment your data has a single dramatic outlier. Reporting mean and median together takes seconds and immediately signals whether skew is present. When the two values are close, the mean is trustworthy; when they diverge, the median is the honest summary and the gap itself is worth explaining.

The mode adds a third dimension that the other two cannot provide: it tells you what is most common, not just what is central. For a teacher reviewing test scores, the mode reveals the score cluster where most students landed. For a retailer tracking shoe sales, the mode is the only number that matters for inventory decisions.

Try the Apexa Pro free calculator now

Checking your mean, median, and mode by hand is the best way to learn. Verifying those answers instantly is the best way to build confidence.

Apexapro

The Apexa Pro calculator handles all three measures in one place, runs entirely in your browser, and requires zero sign-up. It is also fully bilingual in English and Spanish, so it works for learners and classrooms across the United States. Enter any dataset, get your results, and move on. Head to apexapro.com to run your first calculation right now.

Useful sources for further reading