Average Calculator

Paste a list of numbers — comma, space, or newline separated — to get the mean, median, mode, range, geometric mean, and population/sample standard deviation in one panel, each with its working shown. For 2, 4, 6, 8, 10 the mean is 6 and the median is also 6; switch to weighted average mode for grades or scores where some values count more than others (an exam at 90 worth 30% and homework at 80 worth 70% averages to 83, not the plain 85).

6

Mean (average) of 5 values

Count (n): 5

Show your work
n = 5 valid value(s) entered.

Sum: 30

Show your work
Sum: 2 + 4 + 6 + 8 + 10 = 30

Mean (average): 6

Show your work
Sum: 2 + 4 + 6 + 8 + 10 = 30
Count: n = 5
Mean = 30 ÷ 5 = 6

Median: 6

Show your work
Sorted: 2, 4, 6, 8, 10
Odd count (n=5): middle value is at position 3 → median = 6.

Mode: No mode (all values unique)

Show your work
Frequency of each value: {2: 1×, 4: 1×, 6: 1×, 8: 1×, 10: 1×}
Every value occurs exactly once — no mode exists.

Range: 8 (min 2, max 10)

Show your work
Min = 2, Max = 10
Range = 10 − 2 = 8

Geometric mean: 5.2103

Show your work
Product: 2 × 4 × 6 × 8 × 10 = 3,840
Geometric mean = 3,840^(1/5) = 5.2103

Standard deviation (population): 2.8284

Show your work
Mean = 6
Squared differences from the mean: 16, 4, 0, 4, 16 (sum = 40)
Population variance = 40 ÷ (n = 5) = 8
Population SD = √8 = 2.8284

Standard deviation (sample): 3.1623

Show your work
Mean = 6
Squared differences from the mean: 16, 4, 0, 4, 16 (sum = 40)
Sample variance = 40 ÷ (n − 1 = 5 − 1 = 4) = 10
Sample SD = √10 = 3.1623

Every statistic shows its working for the exact numbers you enter. How we calculate →

Mean vs. median vs. mode — which one should you use?

The mean (what most people call "the average") adds every value and divides by how many there are: for 2, 4, 6, 8, 10 that's (2+4+6+8+10) ÷ 5 = 6. It uses every number, which also makes it sensitive to outliers — one huge or tiny value can drag it far from where most of the data actually sits.

The median is the middle value once the data is sorted: for 1, 2, 3, 4 (an even count), it's the average of the two middle values, (2+3) ÷ 2 = 2.5. Because it ignores the actual size of extreme values, the median is the better "typical value" for skewed data — home prices or salaries, for example, where a few very high figures would pull the mean upward.

The mode is simply the value that shows up most often — useful for categorical or repeated data (the most common shoe size sold, the most frequent test score) rather than continuous measurements. A data set can have one mode, several tied modes (multimodal), or no mode at all if every value is unique.

Rule of thumb: use the mean for evenly-spread numeric data, the median when outliers or skew are a concern, and the mode when you care about the single most frequent value rather than a typical size.

Weighted average: when not every value counts the same

A plain mean treats every number equally. A weighted average lets some values count for more than others — the standard example is a course grade where an exam is worth more than a homework set: sum(value × weight) ÷ sum(weight). If an exam scored 90 is worth 30% of the grade and homework scored 80 is worth 70%, the weighted average is (90×0.3 + 80×0.7) ÷ (0.3+0.7) = (27+56) ÷ 1.0 = 83 — not the plain average of 90 and 80, which would be 85.

The weights don't need to add up to 1 or 100%: the division by the sum of the weights normalizes the result automatically, whatever scale you use. A weight of zero on an item still counts toward the total weight sum but contributes nothing to the numerator, so it's effectively excluded without needing to delete the row. If every weight is zero, the result is undefined (division by zero) — the calculator flags this explicitly instead of showing 0 or an error-free blank.

Geometric mean: for growth rates, not sums

The geometric mean multiplies all the values together and takes the n-th root, instead of adding and dividing: for 2, 4, 6, 8, 10 that's (2×4×6×8×10)^(1/5) ≈ 5.21. It's the right tool for rates that compound — average annual investment return, population growth rate, or any series where values multiply rather than add.

Geometric mean is only defined for strictly positive numbers. A single zero collapses the whole product to zero, and negative values make the root undefined or ambiguous — so a data set containing any value ≤ 0 shows an explicit "undefined" flag rather than a misleading number.

Population vs. sample standard deviation

Standard deviation measures how spread out the values are around the mean. There are two conventions, and mixing them up is one of the most common statistics mistakes: population standard deviation divides the sum of squared differences by n (the full count), while sample standard deviation divides by n − 1 (Bessel's correction), which corrects for the fact that a sample tends to understate the true spread of the population it's drawn from.

Use population SD when your numbers ARE the entire group you care about (every student in a class, every transaction in a closed period). Use sample SD when your numbers are a sample meant to estimate a larger, unmeasured population (a survey, a subset of measurements). With only one value entered, population SD is 0 (no spread) but sample SD is undefined, since dividing by n − 1 = 0 is impossible.

A note on averaging averages

It's tempting to average several already-computed averages together, but that only gives the correct overall average if every group being averaged has the same number of underlying values. If group sizes differ, averaging the averages silently over- or under-weights the smaller and larger groups — this is a version of Simpson's paradox. The safe approach is to go back to the raw totals: sum every original value, divide by the total count, rather than averaging the group means directly.

Frequently asked questions

What are the 4 types of average?

The four most common measures of "average" are the mean (sum ÷ count), the median (the middle value when sorted), the mode (the most frequent value), and the midrange (the average of just the minimum and maximum). "Average" without qualification almost always means the mean.

What is the difference between average and mean?

In everyday use, "average" and "mean" refer to the same calculation: sum of the values divided by how many there are. In statistics, "average" is sometimes used loosely to cover mean, median or mode, so it's worth checking which one a specific context actually wants.

How do I calculate a weighted average?

Multiply each value by its weight, add those products together, then divide by the sum of the weights: sum(value × weight) ÷ sum(weight). For an exam worth 30% scored 90 and homework worth 70% scored 80: (90×0.3 + 80×0.7) ÷ 1.0 = 83. Use the weighted average mode above to compute this for your own numbers.

Why is my average sometimes misleading?

The mean is pulled toward outliers — a handful of very large or very small values can shift it away from where most of the data actually sits. If your data set has extreme values (or is skewed, like income or home prices), the median is usually a more representative "typical value" than the mean.

What does it mean when a data set has no mode?

A data set has no mode when every value occurs exactly once — there's no single value (or tied set of values) that appears more often than the rest. Enter your numbers above and the calculator will report "no mode" rather than defaulting to the first or lowest value, which some tools do incorrectly.

Can a data set have more than one mode?

Yes — this is called multimodal. If two or more values are tied for the highest frequency, all of them are reported as modes. For example, in 1, 1, 2, 2, 3, both 1 and 2 occur twice (the most of any value), so the data set has two modes: 1 and 2.

Is population standard deviation the same as sample standard deviation?

No. Population standard deviation divides by n (the full count); sample standard deviation divides by n − 1, a correction that accounts for a sample tending to underestimate the true spread of the population it came from. The two values are close for large data sets but can differ noticeably for small ones — always check which one a source is reporting.

Can you average averages?

Only safely if every group being averaged has the same number of underlying values — otherwise averaging averages over- or under-weights groups of different sizes and gives a distorted result. To get the true overall average, go back to the individual values, sum them all, and divide by the total count.

Researched & verified by the Calcuris Data & Research Team. How we build and check our tools →