Average Calculator
Calculate the mean, median, mode, range and standard deviation of a list of numbers, with an exact sum and invalid entries reported.
How it works
- Type or paste your numbers, separated by commas, spaces, tabs or new lines.
- The mean, median, mode, range and spread update live as you type — nothing leaves your browser.
- Copy the plain-text summary or read the note below to pick the average that fits your data.
Frequently Asked Questions
How do I enter the numbers?
Any way you have them. Newlines, commas, semicolons, tabs and spaces all separate values, so pasting a spreadsheet column or a comma-separated list both work.
What happens to entries that are not numbers?
They are listed with their position, and excluded from the calculation. They are never treated as zero or silently dropped — either would shift the mean without telling you.
Why is the sum exact?
Decimals are summed as exact rational numbers rather than floating point, so 0.1 + 0.2 + 0.3 reports 0.6 and not 0.6000000000000001. The mean is also available as an exact fraction.
Why is there sometimes no mode?
Because a mode only exists when a value actually repeats. If every number is unique the tool reports no mode, rather than naming the first value as though it meant something. When several values tie for most frequent, all of them are shown.