Average Calculator: Mean, Median, Mode

Enter comma-separated numbers, e.g. 5, 10, 15, 20

Formula
Mean = Σx / n | Median = middle value | Mode = most frequent value

Mean: sum all values and divide by count. Median: sort values and find the middle one (or average the two middle ones). Mode: the value that appears most often.

Loading calculator…
TL;DR

Paste a list of numbers to instantly get mean, median, mode, min, max, sum, and count.

Paste or type a list of numbers to get mean, median, mode, min, max, sum, and count in one step. Accepts comma-separated or line-separated input. Useful for grades, sales figures, survey responses, or any data set where you need a quick statistical overview.

Mean, median, and mode are the three main measures of central tendency. They describe the center of a data set in different ways. The mean is the arithmetic average. The median is the middle value. The mode is what appears most often. Each tells a different story, particularly when the data is skewed.

You came here because

Common situations

  • Student grade analysis: Find the class average, identify the median score, and see if any grade appears more than others.
  • Sports statistics: Compute average points per game, median playing time, or most common score.
  • Business reporting: Analyze sales figures to find average transaction size, median order value, and outliers.
  • Data exploration: Quick summary stats before running more detailed analysis.

Under the hood

How the calculation works

  1. 1Type or paste your numbers separated by commas.
  2. 2The calculator parses the list, handles spaces, and validates all entries are numeric.
  3. 3It computes mean (sum divided by count), median (middle of sorted values), and mode (most frequent).
  4. 4Min, max, sum, count, and range are also shown.

Show me

A real example

Example: 4, 7, 7, 9, 11, 13

  1. 1Count = 6, Sum = 51
  2. 2Mean = 51 / 6 = 8.5
  3. 3Sorted: 4, 7, 7, 9, 11, 13 → Median = (7 + 9) / 2 = 8
  4. 4Mode = 7 (appears twice)
  5. 5Min = 4, Max = 13, Range = 9
Result: Mean: 8.5 | Median: 8 | Mode: 7

Watch out for

What can go wrong

  • Using mean when median is more appropriate: Mean is pulled by extreme values. A $50,000 average salary in a company where the CEO earns $500,000 and everyone else earns $30,000 is technically correct but misleading. Use median for skewed distributions.
  • Forgetting to check for outliers: An outlier does not mean an error, but it should always be investigated. A typo (100 instead of 10) can shift the mean dramatically. Review the min and max values before using the result.
  • Expecting mode to be unique: If no value repeats, there is no mode. If multiple values tie for most frequent, they are all modes. The calculator handles both cases, but understand what "no mode" means before acting on the result.
  • Averaging percentages directly: The average of 50% and 100% is not always 75%. If the base sizes differ (50% of 10 vs 100% of 1000), the correct average is the weighted mean. Use weighted average for percentages with different denominators.

Glossary

Related concepts

TermDefinition
MeanThe sum of all values divided by the count. Sensitive to extreme values (outliers).
MedianThe middle value when data is sorted. Not affected by outliers, making it better for skewed distributions.
ModeThe value that appears most often. A set can have no mode, one mode, or multiple modes.
RangeMax minus min. Measures the spread of data. A large range suggests high variability.

Make it better

Pro tips

  • Use mean, median, and mode together: Mean and median close together suggests a symmetric distribution. Mean higher than median suggests right-skew (a few large values pulling the mean up). This context helps you choose which to report.
  • Separate the list by comma or newline: Paste directly from a spreadsheet column (line-separated) or type comma-separated values. Both work. No need to reformat before using the calculator.
  • Use it as a quick data quality check: Checking min and max first catches data entry errors before calculating statistics. If the min is negative and it should not be, or the max is 10x the next highest value, investigate before proceeding.
  • Track mean and median over time: For business metrics (order value, response time, session length), charting both mean and median weekly shows whether the distribution is shifting. A widening gap between the two often signals a segment behaving differently.

Common questions

Frequently asked questions

For related calculations, try the Percentage Calculator, Fraction Calculator, or GCD Calculator. Browse all Calculator Online calculators for the full catalog.

Methodology

This calculator uses the standard average calculator formula. Results match those from established financial, scientific, and health references.

Reviewed by

Calculator Online Editorial Team. All formulas verified against authoritative sources before publication.

Last updated

2026-01-15