OUNZOZ

Statistics Calculator

Get the mean, median, mode, and standard deviation of a list of numbers — paste your data, see every result at once.

Separate values with commas or line breaks — at least 2 numbers.

Enter at least 2 numbers to see the statistics

About the Statistics Calculator

Whether you're working through a statistics homework set, summarizing a lab data set, or just trying to make sense of a list of numbers, the same four values usually come up first: the mean (average), the median (middle value), the mode (most common value), and the standard deviation (how spread out the values are). Calculating all four by hand for anything more than a handful of numbers is tedious and easy to get wrong — this tool does it instantly from a pasted list.

Enter your numbers separated by commas, one per line, or with spaces — however you have them already. The mean and median are straightforward; the mode shows every value tied for most-frequent (or "No mode" if nothing repeats), rather than guessing at one. Standard deviation is calculated as the populationstandard deviation, dividing by the full count (n) rather than n − 1 — the right choice when you're treating your entered numbers as the complete data set, not a sample used to estimate a larger population.

This tool works with whatever numbers you give it — it doesn't know or assume anything about what they represent, so double-check that you've entered the right data set before trusting the result for anything graded.

A worked example

Take seven exam scores: 72, 85, 90, 78, 85, 91, 68. The mean is the sum (569) divided by the count (7): 569 ÷ 7 = 81.29. Sorted, the list reads 68, 72, 78, 85, 85, 90, 91; the middle value (4th of 7) is the median, 85. The value 85 also appears twice while every other value appears once, making 85 the mode. For the standard deviation, average the squared distance of every value from the mean (81.29), then take the square root of that average — which works out to about 8.21 for this data set.

A common misconception

Mean and median often get treated as interchangeable, but they respond very differently to outliers. Replace the lowest score above (68) with a single very low outlier, like 10, and the mean drops noticeably — down to 73.0 — while the median barely moves, since it only cares about which value sits in the middle, not how far away the extreme values are. When a data set has extreme outliers or a skewed shape, the median usually describes the “typical” value better than the mean does.

Population vs. sample standard deviation

This calculator computes population standard deviation — dividing the summed squared deviations by n, the full count — which is the correct choice when your numbers are the entire data set you care about, like every quiz score in a specific class. If your numbers are instead a sample meant to estimate a larger population (say, 30 surveyed students standing in for an entire school), the standard convention divides by n − 1 instead of n — a small correction, known as Bessel's correction, that compensates for a sample's tendency to slightly underestimate the true population spread. The two formulas converge as the data set gets larger, but for small samples the difference is meaningful, so it's worth knowing which one your course expects.

How to read your result

Look at mean and standard deviation together, not the mean alone — two data sets can share the same mean while looking completely different, one tightly clustered and one widely scattered, and the standard deviation is what distinguishes them. A small standard deviation relative to the mean means your values sit close together; a large one means they're spread out, which is worth knowing before you treat the mean as representative of the whole set.

Standard deviation vs. range

Range — the highest value minus the lowest — is the simplest possible measure of spread, but it only looks at two data points and ignores everything in between; a single unusually high or low value can make the range look large even if most of the data is tightly clustered. Standard deviation uses every value in the data set, so it gives a more complete picture of how spread out the numbers typically are, at the cost of being more work to compute by hand — exactly the tradeoff this calculator is built to remove.

Standard deviation is calculated as population standard deviation: σ = √(Σ(x − mean)² / n).

Frequently asked questions

It means every number you entered appears exactly once — nothing repeats, so there's no single most-frequent value. If two or more values are tied for appearing most often, this tool lists all of them (a data set can have more than one mode).