Average Calculator
Enter a list of numbers to calculate the mean (average), sum, count, min, max, and range.
Results
Understanding Averages
The average (arithmetic mean) is the most common measure of central tendency. It tells you the "center" of your data by summing all values and dividing by the count. Simple and intuitive, it works best when data is roughly symmetric without extreme outliers.
The Formula
Mean = (x₁ + x₂ + … + xₙ) / n = Σx / n
When to Use Mean vs. Median
Use the mean for symmetric data without outliers (test scores, heights, temperatures). Use the median when data has extreme values — household incomes, home prices, and response times are typically reported as medians because outliers pull the mean away from the typical value.
Weighted Average
When values have different importance (weights), use: Weighted Mean = Σ(wᵢxᵢ) / Σwᵢ. For example, if a final exam is worth 40% and homework is 60%, multiply each by its weight before summing.
Worked Example
A student's test scores: 72, 85, 90, 68, 95. Sum = 72+85+90+68+95 = 410. Count = 5. Mean = 410/5 = 82. To find the weighted average for a course where tests count 70% and a project counts 30%, with test average 82 and project score 91: Weighted mean = (0.70×82) + (0.30×91) = 57.4 + 27.3 = 84.7.
Mean vs. Median vs. Mode: When to Use Each
| Measure | Best Used For | Sensitive to Outliers? |
|---|---|---|
| Mean (Average) | Symmetric data, test scores, temperatures | Yes |
| Median | Skewed data, incomes, home prices | No |
| Mode | Categorical data, most common value | No |
When a dataset has significant outliers — like one extremely high income in a group — the median gives a more representative picture of the "typical" value than the mean. For normally distributed data, all three measures coincide.
Frequently Asked Questions
Average = Sum ÷ Count. Add all the numbers together and divide by how many numbers there are. For [2, 4, 6, 8]: Sum=20, Count=4, Average=20÷4=5.
In common use they mean the same thing — arithmetic mean. But "average" can also refer to median or mode. "Mean" specifically means sum divided by count.
Outliers pull the mean toward them. If nine people earn $50,000 and one earns $1,000,000, the mean is $145,000 — much higher than what nine out of ten people actually earn. The median ($50,000) is more representative here.
Yes, often. The average of [1, 2] is 1.5, which isn't in the set. The average of [1, 2, 3] is 2, which happens to be. The mean is just a mathematical center, not necessarily an observed value.
A running average (moving average) is the mean of the most recent n values in a time series. For example, a 3-day moving average on daily temperatures smooths out day-to-day noise. To update it, add the new value and drop the oldest: new average = previous average + (new value − dropped value)/n. Running averages are widely used in stock charts, weather forecasting, and sports analytics.
The population mean (μ) is the true average of every value in the entire group of interest. The sample mean (x̄) is calculated from a subset. Because we rarely have access to every data point, we use x̄ as an estimate of μ. Sample means vary from sample to sample — this variability is quantified by the standard error = s/√n, where s is the sample standard deviation.