The Average Calculator computes the arithmetic mean of up to five numbers instantly. Also shows the sum, count, minimum, maximum, and range — the basic descriptive statistics alongside the mean. Used in school, finance, sports, science, and everyday situations requiring a quick average.
30
150
5
30
150
5
The arithmetic mean is the most universally used statistical measure — the one number that represents an entire dataset when you need a single summary. The calculator for average computes the mean of any set of numbers along with the supporting descriptive statistics that provide context: sum, count, minimum, maximum, and range.
The arithmetic mean (average) of n values x₁, x₂, ..., xₙ is:
x̄ = (x₁ + x₂ + ... + xₙ) / n = Σxᵢ / n
The mean is the value that, if every data point were replaced with it, would produce the same total sum. Five test scores of 72, 85, 91, 68, 79: sum = 395; mean = 395/5 = 79.0. Use this online calculator for any set of values. For weighted averages (where some values contribute more than others), the ratio calculator provides proportional weighting.
The arithmetic mean is not always the best measure of central tendency:
The classic example: a company of 10 employees where 9 earn USD 50,000 and the CEO earns USD 1,000,000. Mean salary = USD 145,000 — a number that does not represent anyone's actual salary. Median salary = USD 50,000 — a much more meaningful representation of "typical" pay.
Averages appear in virtually every quantitative domain:
The average percentage calculator handles the specialized case of averaging percentages, which requires careful treatment to avoid Simpson's paradox.
The mean is mathematically elegant but physically misleading when data is skewed or contains outliers. The 2008 financial crisis produced many risk models that relied on historical average returns that were heavily influenced by a few exceptional years — the mean was accurate as a historical fact but misleading as a forward-looking predictor. In statistics, robustness to outliers is a formal property: the mean is not robust (its breakdown point is 0%), while the median is highly robust. For data quality assessment, comparing mean and median simultaneously reveals skewness — if mean significantly exceeds median, data is right-skewed (most values low, a few very high); if median exceeds mean, it is left-skewed.
The arithmetic mean formula for $$n$$ values is:
$$\bar{x} = \frac{x_1 + x_2 + x_3 + \cdots + x_n}{n} = \frac{\sum_{i=1}^{n} x_i}{n}$$
For five values (10, 20, 30, 40, 50):
$$\bar{x} = \frac{10 + 20 + 30 + 40 + 50}{5} = \frac{150}{5} = 30$$
The mean has several important algebraic properties: (1) The sum of deviations from the mean is always zero: $$\sum(x_i - \bar{x}) = 0$$. (2) The mean minimizes the sum of squared deviations — it is the value $$m$$ that minimizes $$\sum(x_i - m)^2$$. This second property makes it the foundation of least squares regression and many statistical methods.
The mean tells you the expected value of a randomly selected item from the dataset. If the mean is 30, it means the values are centered around 30 in a balanced sense. Check whether the mean is close to most of the individual values — if it is far from the majority, outliers may be distorting it. Compare the mean to the sum: the sum tells you the total quantity (useful for budgets, distances, etc.), while the mean gives the per-item expected value. Use the count to verify all expected values were included.
Inputs
Results
Five test scores averaging 87.8 — a solid B+ performance, with the sum of 439 points total across all tests.
Inputs
Results
Average monthly expense is $1,226 over 5 months, with a total of $6,130 spent during the period.
The mean is the sum divided by count. The median is the middle value when sorted. The mode is the most frequent value. They measure central tendency differently and can differ significantly when data is skewed or has outliers. For income data, median is often preferred because a few very high earners pull the mean upward.
In a weighted average, some values count more than others. If a final exam counts twice as much as a quiz: weighted mean = (quiz × 1 + exam × 2) / (1 + 2). Standard GPA calculations use credit hours as weights. This calculator computes unweighted averages (all values equally weighted).
The mean is misleading when data has strong outliers or skew. For example, if four people earn $30,000 and one earns $1,000,000, the mean is $228,000 — far above what most people earn. The median ($30,000) is more representative. Similarly, means of categorical data are meaningless.
The geometric mean of $$n$$ values is the n-th root of their product: $$(x_1 \times x_2 \times \cdots \times x_n)^{1/n}$$. It is used for averaging ratios, rates, and growth factors. For example, if an investment grows by 10%, 20%, and 30% in three years, the average annual growth rate is the geometric mean: $$(1.1 \times 1.2 \times 1.3)^{1/3} - 1 \approx 19.7\%$$.
For a normal (bell-curve) distribution, the mean equals the median and mode — they all fall at the center peak. The mean is also the distribution's "expected value." The Central Limit Theorem states that the mean of large random samples follows a normal distribution regardless of the original distribution's shape, which is why the mean is so central to statistical inference.
A running average (or moving average) is recalculated as new data points are added. It is widely used in finance (stock price moving averages), sports (season statistics), and signal processing (smoothing noisy data). An efficient formula updates the running average without re-summing everything: $$\bar{x}_n = \bar{x}_{n-1} + (x_n - \bar{x}_{n-1})/n$$.
How helpful was this calculator?
5.0/5 (1 rating)