📊 Mean, Median, Mode & Range Calculator

Enter any list of numbers to get the mean, median, mode and range — including honest multimodal and no-mode results competitors force into one answer.

Free No Signup Required Browser-Based
Mean (Average)
14.1111
Sum 127 ÷ 9 data values
Median
14
Mode
14 (appears 3 times)
Range
7 (min 12, max 19)
Count & Sum
n = 9, Σx = 127

Sorted values & frequency

ValueTimes it appears
122
132
14 (mode)3
161
191

With an odd count of 9 values, the median is the single middle sorted value.

What Mean, Median, Mode & Range Calculator Does

Mean, median and mode all answer the same underlying question — "what is a typical value in this data?" — but they answer it in three different, sometimes contradictory, ways. The mean is the arithmetic average: add everything up and divide by how many values there are. The median is whatever sits in the exact middle once the values are sorted. The mode is whichever value occurs most often. On a data​set without repeats or skew the three can coincide; on real data they usually do not, and the gap between them is itself informative.

The subtlety a naive implementation gets wrong is the mode, specifically what to do when nothing repeats or when several values tie for most frequent. A dataset like 1, 2, 3, 4 has no value that occurs more often than any other — every value appears exactly once — so the statistically correct answer is "no mode." A weaker tool that always returns a value (often the first or the smallest) is not more helpful, it is wrong. The opposite failure is just as common: real data is frequently multimodal, with two or more values genuinely tied for most frequent, and a calculator that reports only one of them is throwing away real information about the shape of the data.

The median also has a rule that is easy to get backwards: for an odd count of values it is the single middle value once sorted, but for an even count there is no single middle value, so it is the average of the two values that straddle the middle. Skipping the sort step entirely — taking the "middle" of the data in its original entry order — is a common bug in hand-rolled scripts and gives a meaningless answer.

This tool covers central tendency and spread-of-range only. For how spread out the data is around its mean — variance, standard deviation, and whether that spread is large or small relative to the scale of the data — see the standard deviation calculator, which owns that explanation in full rather than repeating it here.

How to Use Mean, Median, Mode & Range Calculator

  1. Paste or type your numbers, separated by commas, spaces or line breaks
  2. Read the mean, median, mode and range from the results
  3. Check the sorted value/frequency table to see exactly which value(s) set the mode
  4. Watch for the "no mode" or "multimodal" label — both are correct statistical outcomes, not calculator errors

Formula Used by Mean, Median, Mode & Range Calculator

Mean (arithmetic average)

x̄ = (Σxᵢ) ÷ n

xᵢ
Each individual value in the data
Σxᵢ
The sum of every value
n
How many values there are

Worked example

The dataset 2, 4, 4, 4, 5, 5, 7, 9 (n = 8)

  1. Sum = 2 + 4 + 4 + 4 + 5 + 5 + 7 + 9 = 40
  2. 40 ÷ 8

Result: x̄ = 5

Median (middle value once sorted)

n odd → the middle value; n even → average of the two middle values

Worked example

The same dataset, sorted: 2, 4, 4, 4, 5, 5, 7, 9 (n = 8, even)

  1. The two middle values (4th and 5th) are 4 and 5
  2. Average them: (4 + 5) ÷ 2

Result: median = 4.5

Mode (most frequent value, or values)

mode = the value(s) whose frequency equals the highest frequency in the data

Worked example

The exact dataset behind the common search "what is the mean, median, and mode of 13 16 12 14 19 12 14 13 14"

  1. Sum = 13+16+12+14+19+12+14+13+14 = 127, and 127 ÷ 9 = 14.1111 → mean
  2. Sorted: 12, 12, 13, 13, 14, 14, 14, 16, 19 (n = 9, odd) → the 5th value, 14, is the median
  3. Frequencies: 12 appears twice, 13 appears twice, 14 appears three times, 16 and 19 appear once each
  4. 14 has the highest frequency (3), so it is the mode; range = 19 − 12

Result: mean = 14.1111, median = 14, mode = 14, range = 7

How to Read Your Result

"No mode" is a real, correct result

When every distinct value in a dataset occurs exactly once, no value is more common than the others, so there is nothing that qualifies as "most frequent." The mathematically honest answer is that the dataset has no mode. Forcing an answer anyway — as some simpler calculators do, typically returning the first or smallest value entered — invents a fact about the data that is not there.

Multimodal data is not a tie you break

If two or more values are tied for the highest frequency, the dataset genuinely has more than one mode: bimodal for two, multimodal for more. Picking just one of the tied values throws away real structure — a dataset that clusters around two different common values (say, two popular price points) is a different shape from one with a single dominant value, and reporting only one mode hides that.

Mean vs. median tells you about skew

When the mean and median are close, the data is roughly symmetric. When the mean sits noticeably higher than the median, a handful of unusually large values are pulling the average up (the classic case is household income or home prices); when the mean sits lower than the median, unusually small values are pulling it down. The median is more resistant to those extreme values because it only depends on which value is in the middle, not on how far away the other values sit.

Limitations & Accuracy Notes

  • This calculator treats every entered value as a plain number. For data that already arrives as a grouped frequency table (class intervals with counts), the mean, median and mode are estimated from the class midpoints instead, which is a different calculation not covered here.
  • The mode is only meaningful for data with genuine repeated values. For continuous measurements where every value is likely to be unique (e.g. precise sensor readings), "no mode" is the expected and correct result rather than a limitation of the tool.
  • Mean and range are both sensitive to a single extreme value; one outlier can move the mean and range substantially while leaving the median almost unchanged. Compare the two before assuming the mean represents a "typical" value.

Frequently Asked Questions

What is the mean, median, and mode of 13, 16, 12, 14, 19, 12, 14, 13, 14?
The mean is 127 ÷ 9 = 14.1111. Sorted, the nine values are 12, 12, 13, 13, 14, 14, 14, 16, 19, so the middle (5th) value gives a median of 14. The value 14 appears three times — more than any other value — so the mode is 14. The range is 19 − 12 = 7.
What is the mean, median and mode of 2, 4, 4, 4, 5, 5, 7, 9?
The mean is 40 ÷ 8 = 5. With an even count of 8, the median is the average of the two middle sorted values (4 and 5), giving 4.5. The value 4 appears three times, more than any other value, so the mode is 4. The range is 9 − 2 = 7.
What if every number in my data appears the same number of times?
Then there is honestly no mode. A mode is the value that occurs more often than the others — if 1, 2, 3 and 4 each occur exactly once, nothing stands out as "most frequent," so the correct statistical answer is "no mode," not a forced pick of the first or smallest value. This tool reports that explicitly instead of guessing one.
Can a dataset have more than one mode?
Yes. If two values are tied for the highest frequency the dataset is bimodal (for example 1, 1, 2, 2, 3 has modes 1 and 2, each appearing twice); with three or more tied values it is multimodal. This tool lists every tied value rather than showing only one.
Why is my median different from my mean?
The mean is pulled toward extreme values because every number contributes to the sum; the median only looks at what sits in the middle once the data is sorted. On skewed data — a few very large or very small values — the two can differ substantially, and the median is usually the more representative "typical value" in that case.

References & Further Reading

By OnlineToolHubs Team • September 2026