Local browser workflow

Summarize an Unweighted List of Numbers

Calculate the list summary

Abstract number blocks organized around a central summary line

average calculator

Enter a value. The result updates while you type.

Inputs remain in the current browser page and are not sent or stored. No sign-in or ads.

Result

Start entering values to see the result.

Reviewed concrete example

“Average” is clearer when the other summaries sit beside it

An average calculator commonly reports the arithmetic mean: add every value and divide by the number of values. That single result can be distorted by a large or small extreme. This page therefore shows count, sum, mean, median, minimum, maximum, and range for one unweighted list.

The tool does not decide which statistic represents the list best. It gives enough structure to notice when mean and median tell different stories. There is no upload, spreadsheet import, missing-value imputation, weight column, chart, or statistical inference in this interaction.

Strict list parsing

Enter up to 500 finite real numbers separated by commas, spaces, semicolons, or new lines. A strict parser reports an invalid token and its position instead of silently dropping it. If 12, n/a, 14 became a two-value list without warning, every summary would describe different data than the visitor entered.

Blank separators at the edges can be ignored, but an empty list is an error. Infinity and not-a-number are rejected. Decimal points use a dot; commas act as delimiters rather than decimal separators.

The optional sorted-list view creates a numeric copy and leaves the input order untouched. That distinction lets the result show how the median was selected without rewriting the visitor’s source text.

Arithmetic mean and sum

For values x1 through xn:

mean = (x1 + x2 + … + xn) ÷ n

Consider 2, 4, 4, and 10. The sum is 20 and the count is 4, so the mean is 5. Every value receives equal weight. If observations represent different numbers of cases or different credit weights, use the weighted-average page instead.

The calculator uses a compensated summation approach where feasible to reduce, though not eliminate, floating-point loss when values differ greatly in magnitude. The site does not claim arbitrary precision. A list containing extremely large and tiny decimal values may need specialist numeric software.

Median, minimum, maximum, and range

Sort the example to 2, 4, 4, 10. With four values, the median is the mean of the two central positions: (4 + 4) ÷ 2 = 4. With an odd count, the median is the single central value.

Minimum is 2, maximum is 10, and range is 10 − 2 = 8. Range describes the span between extremes. It does not show how values are distributed inside that span and is sensitive to one outlier.

In the example, mean 5 exceeds median 4 because the value 10 pulls the mean upward. Neither number is wrong. They answer different summaries of the same four entries.

Worked outlier comparison

Start with 10, 10, 11, 11, 12. The sum is 54, mean is 10.8, median is 11, and range is 2. Change the final 12 to 100. The new sum is 142, mean is 28.4, median remains 11, and range becomes 90.

This scenario shows why reporting only the mean can conceal the structure of a list. It does not establish that 100 is an error. An extreme value may be genuine, incorrectly entered, or drawn from a different process. The calculator has no authority to delete it.

Negative values and repeated entries

Negative values are valid mathematical inputs. The mean of −5, 0, and 5 is zero, the median is zero, and the range is 10. Repeated entries remain separate observations; the parser does not deduplicate them. Removing duplicates would change the question.

If the values have units, every item should use the same compatible unit before calculation. An average of 3 meters and 50 centimeters requires conversion, not the raw list 3, 50. Units should accompany the copied result even though the input field contains only numbers.

Limits of descriptive summaries

The page does not compute mode, variance, standard deviation, confidence intervals, probability, trend, correlation, or a weighted mean. It does not determine sampling quality, independence, measurement error, or whether averaging is meaningful. Categories coded as arbitrary numbers should not be averaged merely because the browser accepts them.

Grades, medical measurements, finance, research, and operational metrics can have domain-specific methods and consequences. This tool performs an unweighted descriptive summary and offers no professional interpretation.

Display places format the result after calculation. Rounding a mean and then multiplying by count may not reproduce the displayed sum. Read the unrounded or higher-precision view when checking.

Frequently asked questions

Is the mean always one of the entered values?

No. It is a quotient of the sum and count. The mean of 2 and 3 is 2.5.

Why does the median require sorting?

The median is the central position of an ordered list. Input order does not determine it.

Does the calculator ignore bad tokens?

No. It identifies the invalid position so the list can be corrected rather than silently changed.

Are lists uploaded or saved?

No. Parsing and summaries occur in the current browser page, with no file upload or server-side history.

Enter one unweighted list, calculate the summaries, and compare mean with median and range before deciding which value to report.

Continue on this site