How to calculate an average
- Paste or type your numbers into the box above.
- Any separator works, commas, spaces, tabs or line breaks.
- Read the mean, median and mode side by side.
- Check the range and standard deviation to see how spread out the values are.
- Copy the full breakdown if you need it for a report.
What this calculator reports
- Mean, median and mode. The three things people mean by 'average'.
- Range, smallest and largest, which show the spread at a glance.
- Standard deviation for both a population and a sample.
- A count and a sum, so you can check nothing was dropped when pasting.
- Tolerant parsing that ignores stray text and empty entries.
- Live recalculation as you edit the list.
Three different things called 'average'
The word covers three distinct measures, and which one is appropriate depends entirely on the data. Reporting the wrong one is a well-established way to mislead without technically lying.
The mean adds everything and divides by the count. It uses every value, which is its strength and its weakness, a single extreme number drags it a long way.
The median is the middle value when sorted. It ignores how extreme the outliers are, which makes it far more representative of a typical case in skewed data.
The mode is the most frequent value. It is the only average that works for categories rather than numbers, and it is the right answer when you want the most common outcome rather than a central one.
When the mean lies
Income is the classic example. Take nine people earning £25,000 and one earning £1,000,000. The mean is £122,500, a figure nobody in the room earns. The median is £25,000, which describes almost everyone.
This is why income and house price statistics are almost always reported as medians, and why a mean quoted for skewed data should prompt the question of what the distribution looks like. Any dataset with a long tail, salaries, property, waiting times, website session lengths, has the same problem.
Standard deviation, and which one to use
The average tells you where the middle is; the standard deviation tells you how far things typically sit from it. Two datasets with the same mean can be completely different, one tightly clustered, one wildly spread, and only the deviation reveals that.
The two figures differ in what they assume about your data. Use the population figure when your numbers are the entire set you care about: every test score in the class, every transaction last month. Use the sample figure when they are a subset drawn from something larger and you want to estimate the wider spread. The sample version divides by one fewer, which makes it slightly larger and corrects a known bias.
Reading the range
- A range close to zero means the values barely vary.
- A range far larger than the standard deviation suggests one or two outliers rather than general spread.
- A mean and median that differ noticeably indicates skew, check which direction.
Those three checks take seconds and catch most of the situations where a single average would mislead.
Practical use
Paste a column straight from a spreadsheet, the parser ignores whatever separator arrives. Non-numeric entries are skipped rather than treated as zero, which matters because counting a blank as zero silently pulls the mean down. The count figure is the check: if it does not match how many values you expected, something was dropped or something was not a number. For percentages of a total the percentage calculator is the right tool, and everything here runs locally.