About the Average Calculator
Paste any list of numbers and instantly get the mean, median, sum, minimum, maximum, and standard deviation. Accepts commas, spaces, or one number per line.
Everything is computed in your browser as you type, so a dataset you would rather not hand to a website never leaves your machine. There is no upload step, no account, and no limit on how many numbers you paste in.
How to use it
- Paste or type your numbers, separated by commas, spaces or new lines.
- Read the mean, median, mode and range as they update.
- Add or remove a value to see instantly how much it moves each measure.
Mean, median and mode are not interchangeable
The mean is the arithmetic average: add everything, divide by how many. It uses every value, which also means one extreme value drags it.
The median is the middle value once sorted. It ignores how extreme the outliers are, which is exactly why salary and house-price figures are usually quoted as medians.
The mode is the value that appears most often. It is the only one of the three that works on non-numeric data such as shirt sizes or survey answers.
A worked example
Take the dataset 12, 15, 11, 20, 15, 18, 15.
- Mean: the seven values total 106, so 106 ÷ 7 = 15.14
- Median: sorted it reads 11, 12, 15, 15, 15, 18, 20 — the middle value is 15
- Mode: 15 appears three times, so the mode is 15
- Range: 20 − 11 = 9
Now replace the 20 with 200. The median and mode stay at 15, but the mean jumps to 40.86. That single swap is the clearest demonstration of why the median is often the more honest summary.
Common mistakes
- Reporting a mean for skewed data such as income or waiting times. Use the median instead.
- Forgetting that a dataset can have two modes, or none at all when every value appears once.
- Averaging percentages that came from different-sized groups. That needs a weighted average, not a plain one.
Questions people ask
Which average should I actually use?
Use the mean for roughly symmetric data with no wild outliers. Use the median when the data is skewed or has extreme values. Use the mode when you care about the most common category rather than a numeric center.
What is the range good for?
It is the crudest measure of spread — highest minus lowest. It tells you how wide the data is but nothing about how it is distributed in between.
Can I paste a column copied from a spreadsheet?
Yes. Values separated by new lines, commas or spaces are all read the same way.