Skip to content
ToolMoose

Average Calculator

Find the mean, median, mode, range, sum and count of any list of numbers.

Detected 5 numbers. Non-numeric text is ignored.

Mean (average)
5
Sum25
Count5
Median4
Mode4 (appears 2 times)
Range7
Minimum2
Maximum9
Std dev (population)2.366432
Std dev (sample)2.645751

Worked examples

A simple set: 2, 4, 4, 6, 9
Sum is 25 and count is 5, so the mean is 25 ÷ 5 = 5. The median is 4, the mode is 4, and the range is 9 − 2 = 7.
Test scores: 88, 92, 79, 95, 88
Sum is 442 over 5 scores, so the mean is 88.4. The median is 88, the mode is 88, and the range is 95 − 79 = 16.
An even count: 3, 7, 9, 12
With four values there is no single middle, so the median averages the two middle numbers: (7 + 9) ÷ 2 = 8. The mean is 31 ÷ 4 = 7.75.
No repeats: 10, 20, 30
The mean and median are both 20, the range is 20, and there is no mode because every value appears exactly once.

How the average calculator works

“Average” usually means the mean, but a list of numbers has several useful summary values. This tool reads whatever you paste, cleans it up, and reports the mean, median, mode, range, sum, count, and standard deviation at once. It splits your input on commas, spaces, and line breaks, keeps only the values that are real numbers, and ignores stray text so a messy copy-and-paste still works.

The mean = sum ÷ count

The mean is the classic average. Add every number to get the sum, count how many numbers there are, then divide:

  • Mean = sum ÷ count

Take the set 2, 4, 4, 6, 9. The sum is 2 + 4 + 4 + 6 + 9 = 25 and there are 5 values, so the mean is 25 ÷ 5 = 5. That single figure is the balance point of the data: if every value were replaced by 5, the total would still be 25.

The median and even-sized lists

The median is the middle value after you sort the numbers from smallest to largest. Sorting 2, 4, 4, 6, 9 leaves the middle number as 4, so the median is 4.

When the list has an even count there is no single middle, so the median is the average of the two middle values. For 3, 7, 9, 12 the two middle numbers are 7 and 9, so the median is (7 + 9) ÷ 2 = 8. The calculator handles both cases automatically.

The mode

The mode is the value that appears most often. In 2, 4, 4, 6, 9 the number 4 shows up twice while everything else appears once, so the mode is 4. A list can have more than one mode when several values tie for the highest frequency, and it can have no mode at all when every value is unique (for example 10, 20, 30). The calculator lists every value that ties for most frequent, or tells you there is no mode.

Range, minimum and maximum

The range measures spread as the gap between the largest and smallest values:

  • Range = maximum − minimum

For 2, 4, 4, 6, 9 the maximum is 9 and the minimum is 2, so the range is 9 − 2 = 7. The range is quick to read but only reflects the two extremes, so standard deviation (also shown) gives a fuller picture of how tightly the numbers cluster around the mean.

When the median beats the mean

The mean and median agree when data is roughly symmetric, but they can diverge sharply when the data is skewed by outliers. Consider salaries of 30,000, 32,000, 35,000, 40,000, 500,000. The mean is 127,400, which no one in the group actually earns, while the median is 35,000, a far better description of a typical salary. Whenever a handful of very large or very small values could distort the picture (house prices, incomes, response times), lean on the median. For balanced data with no extreme outliers, the mean is the standard choice.

A note on accuracy: results are computed directly from the numbers you enter, so double-check that your list is complete and that any pasted text separated cleanly into the values you expected.

Frequently asked questions

How do I calculate an average (mean)?
Add up all the numbers to get the sum, then divide by how many numbers there are. For the set 2, 4, 4, 6, 9 the sum is 25 and the count is 5, so the mean is 25 ÷ 5 = 5. This calculator does the addition and division for you as you type.
What is the difference between mean, median and mode?
The mean is the sum divided by the count (the everyday average). The median is the middle value once the numbers are sorted. The mode is the value that appears most often. For 2, 4, 4, 6, 9 the mean is 5, the median is 4, and the mode is 4. They can all differ, especially when the data is skewed.
When should I use the median instead of the mean?
Use the median when a few very large or very small values would distort the mean, such as house prices or incomes. One mansion can pull the mean far above what a typical home costs, while the median (the middle value) stays representative of the group.
What is the range of a set of numbers?
The range is the difference between the largest and smallest values: range = maximum − minimum. For 2, 4, 4, 6, 9 the range is 9 − 2 = 7. It gives a quick sense of how spread out the numbers are, though it only looks at the two extremes.
How do I enter my numbers?
Paste or type them into the box separated by commas, spaces or new lines. You can mix separators freely, so a list copied from a spreadsheet column or a comma-separated row both work. Any non-numeric text is ignored, and the calculator shows how many valid numbers it detected.

Last updated: 2026-07-02