📐 Math CalculatorsFree · No signup

Average Calculator

Calculate the average (arithmetic mean) of any set of numbers. Enter a list of numbers separated by commas for instant average.

About the Average Calculator

An average calculator computes the arithmetic mean — the most widely used summary statistic in everyday life — from any list of numbers you enter. Grade point averages, batting averages, average rainfall, average transaction value, average test score, and average customer rating are all calculated using the same simple formula: sum all values and divide by the count. Despite its simplicity, the arithmetic mean has important limitations — it is sensitive to outliers and can mislead when data is skewed — which is why our calculator also computes the median, mode, range, minimum, and maximum alongside the mean, giving you the context needed to interpret the average correctly. Whether you are a student computing a course average, a business analyst calculating average sales, a teacher finding the class mean on an exam, or simply averaging a list of numbers from any context, our free average calculator handles lists of any size instantly.

Formula

Mean = Sum(x) / n | Check: min <= mean <= max | Weighted mean = Sum(x_i x w_i) / Sum(w_i)

How It Works

Arithmetic mean = sum of all values / count of values. For the dataset [4, 7, 13, 2, 8, 5]: sum = 39, count = 6, mean = 39/6 = 6.5. The mean must fall between the minimum (2) and maximum (13) values — a useful sanity check. The mean is pulled toward outliers: if we change 13 to 130, the mean jumps from 6.5 to 26.0 while the median barely changes from 6.0 to 6.5. This is why median income is reported rather than mean income — high earners pull the mean above the typical person's experience. Weighted average (for grading and GPA): instead of equal contribution from each value, assign different weights. Weighted mean = sum(value x weight) / sum(weights).

Tips & Best Practices

  • The mean is most representative for symmetric, bell-shaped distributions without outliers. For skewed data (income, house prices, stock returns), the median is a better measure of the "typical" value.
  • Running average: if you receive new data one value at a time, update the running mean without recalculating from scratch: new mean = old mean + (new value - old mean) / new count.
  • Averaging percentages: you cannot simply average percentage values unless all groups have equal size. Average the underlying counts/values, then compute the combined percentage.
  • Geometric mean for rates of return: for multiplicative data like investment returns or growth rates, use geometric mean = (product of all values)^(1/n). A fund returning +50%, -33%, +50% has geometric mean of (1.5 x 0.67 x 1.5)^(1/3) - 1 = 0%, not the arithmetic mean of 22.3%.
  • Outlier effect: a single extreme value can dominate the mean. Adding one $10 million salary to a dataset of 99 $50,000 salaries raises the mean to approximately $149,500 while the median remains $50,000.
  • Trimmed mean: remove the top and bottom 5-10% of values before computing the mean to reduce outlier sensitivity while using more data than the median. Used in Olympic scoring and economic measurement.
  • US household income example: mean ≈ $102,000 but median ≈ $78,000 (2024). The mean is pulled up by very high earners at the top of the distribution. The median better represents the typical American household.
  • Population vs. sample mean: for a sample, the mean is used to estimate the unknown population mean. Sample mean is an unbiased estimator of population mean, but standard error quantifies the uncertainty.

Who Uses This Calculator

Students computing course grade averages across assignments, tests, and homework. Teachers calculating class averages and distribution statistics for exams. Business analysts computing average order value, average customer lifetime value, and average session duration. Sports analysts calculating player batting averages, shooting percentages, and performance metrics. Weather stations computing average daily temperature from hourly readings. Researchers computing sample means as a foundation for inferential statistics. Quality managers tracking average defect rates and process measurements.

Optimised for: USA · Canada · UK · Australia · Calculations run in your browser · No data stored

Frequently Asked Questions

How do you calculate an average?

Add all numbers and divide by count. Average of 5, 10, 15 = (5+10+15)/3 = 30/3 = 10.