Average Calculator
Calculate the arithmetic mean (commonly just called "the average") of up to five numbers — the simplest and most widely used measure of central tendency. Enter two to five values and the calculator returns their sum divided by the count of numbers entered. Missing or blank fields are excluded, so you can average just two or three values without having to fill all five. Useful for quickly averaging test scores, monthly expenses, sensor readings, or any small set of numbers where you want a single summary value that represents the group.
About this calculator
The arithmetic mean is calculated as: mean = (x₁ + x₂ + ... + xₙ) ÷ n, where n is the count of valid (non-blank, numeric) inputs. This calculator validates each field, drops anything that is missing or non-numeric, and computes the mean over what remains — so entering 80, 90, 100 in the first three fields and leaving the last two blank produces (80 + 90 + 100) ÷ 3 = 90. The arithmetic mean is the unique value that minimises the sum of squared distances from each data point, which is why it appears everywhere in statistics, science, and machine learning. But it is not the only "average" — there is also the median (the middle value when sorted, robust to outliers), the mode (the most frequent value, useful for categorical data), and the geometric mean (the nth root of the product of n values, used for growth rates and ratios). The arithmetic mean is the right choice when your data is roughly symmetrically distributed without extreme outliers; when a few extreme values dominate (incomes, house prices, response times, file sizes), the median is usually a better summary because the mean gets pulled toward the outliers. Edge cases: if all entered numbers are zero, the mean is zero; if no valid numbers are entered, the formula returns 0 (treat this as "no data"); negative numbers are handled correctly and reduce the mean. The arithmetic mean assumes equal weighting — if some values should count more than others (such as exam grades weighted by credit hours), use a weighted-average formula instead.
How to use
Example 1 — Test scores. A student earned 78, 92, 85, 90, and 88 on five exams. Enter all five into the Number 1 through Number 5 fields. Result: 86.6. Verify: 78 + 92 + 85 + 90 + 88 = 433, divided by 5 = 86.6. ✓ Anchor for interpretation: the average is between the highest (92) and the lowest (78), as it always must be for a meaningful mean. Example 2 — Partial input with blank fields. You want to average three monthly electric bills: $112, $98, and $134. Enter 112, 98, and 134 in the first three fields, and leave Number 4 and Number 5 blank. Result: 114.67. Verify: 112 + 98 + 134 = 344, divided by 3 (only three valid numbers) = 114.666... ≈ 114.67. ✓ The calculator correctly ignores the blank fields and divides by 3, not 5 — averaging the same three numbers as a sum-divided-by-5 would have produced 68.8, an obviously wrong result.
Frequently asked questions
What is the difference between mean, median, and mode?
The mean is the sum of all values divided by the count — the "arithmetic average" most people learn in school. The median is the middle value when the data is sorted in order; if there is an even number of values, it is the average of the two middle ones. The mode is the value that appears most often (a dataset can have one mode, multiple modes, or no mode if every value is unique). For a symmetric distribution without outliers, all three are roughly equal — but for skewed data (like income or house prices) they diverge sharply, with the mean pulled toward the tail. A classic illustration: the "average" American household income is much higher than the "median" because a small number of very high earners pull the mean upward, while the median better represents what a typical household actually makes. Picking the right summary statistic for your data is a more important decision than people realise.
When is the median a better summary than the mean?
Use the median when your data contains outliers, is heavily skewed, or includes values that range across multiple orders of magnitude. Classic cases: house prices in a neighbourhood (a few mansions pull the mean up), web page response times (a few slow queries dominate), income within any population, file sizes on a server, and time-to-complete for human tasks. In all of these, the mean tells you something about the long tail more than about the typical observation, while the median tells you what is happening in the middle of the distribution. A useful rule of thumb: if the mean and median are noticeably different, the median is usually the more honest summary for describing typical experience. Both numbers together (along with a percentile or two) give a much richer picture than either alone.
How do I calculate a weighted average instead?
A weighted average assigns importance (a "weight") to each value, computed as Σ(value × weight) ÷ Σ(weight). For a GPA, each grade is weighted by the credit hours of the class: a 4-credit A counts more than a 1-credit A. For a portfolio return, each asset return is weighted by its dollar allocation. The arithmetic mean is just the special case where every weight equals 1, making the formula collapse to sum ÷ count. To compute a weighted average by hand: multiply each value by its weight, sum those products, then divide by the sum of all the weights. This calculator computes the unweighted (equal-weight) arithmetic mean only — for weighted averages, use a dedicated weighted-average or GPA calculator.
What are the most common mistakes people make when averaging?
The single most common mistake is averaging averages without re-weighting — if Class A averaged 85 across 30 students and Class B averaged 75 across 10 students, the combined average is not 80, it is (85×30 + 75×10) ÷ 40 = 82.5. The second is using the mean when the data is so skewed that the result misrepresents typical experience — quoting "average response time" when 99% of requests are fast and 1% are extremely slow gives a useless number. The third is including outliers that should be flagged as data errors rather than averaged in. The fourth is forgetting that the mean has the same units as the data — averaging 70 °F with 80 °C produces nothing meaningful unless you convert first. Finally, people often present the mean of a small sample as if it were the population mean; with only 5 data points, the uncertainty around that mean is large, and a single additional data point can shift it noticeably.
When should I not use this calculator?
Skip this calculator if you need to average more than five numbers — it only has five input fields. For larger datasets, use a spreadsheet (Excel's AVERAGE function, Google Sheets, etc.) or a dedicated statistics calculator that supports arbitrary-length input. Do not use the arithmetic mean for percentages, ratios, or growth rates — for those, the geometric mean is mathematically correct (e.g., averaging annual returns of +10%, −5%, +15% over three years requires geometric, not arithmetic, mean). Skip it for categorical data (favourite colours, product categories) — the mode is the only meaningful average. Do not rely on it when your data has heavy outliers; report a median or a trimmed mean instead. And for any rigorous statistical work that requires confidence intervals, standard deviation, or hypothesis testing, use proper statistical software rather than a quick-mean tool.