Skip to content
PocketCaliper
Language
Open menu

Runs locally in your browser

Average Calculator

Paste a list of numbers and get the mean, median, sum, count, min, and max. Stats compute in your browser from the values you type.

Mean
15.0000
Median
15.0000
Sum
75
Count
5
Min
9
Max
21

Drop scores, measurements, or prices separated by spaces, commas, or line breaks. This page is a list average, not a ratio of two terms.

Parsing and stats run in this tab. The list is not uploaded to a sheet service.

How to use

  1. Paste numbers separated by spaces, commas, or new lines.
  2. Read count, sum, mean, and median.
  3. Check min and max for outliers.

How it works

Mean is the sum divided by how many finite numbers parsed. Median is the middle of the sorted list, or the average of the two middles when the count is even.

Tokens that are not finite numbers are skipped. An empty list returns an error instead of a fake zero mean.

Examples

  • Class scores

    8, 9, 10, 7 yields a mean of 8.5 and a median of 8.5 on four tests.

  • Sensor log

    A noisy series shows min and max beside the mean so a spike is obvious.

FAQ

Are commas decimal marks?

Separators can be commas between numbers. Decimal dots parse as JavaScript numbers. Use dots for fractions.

Is this a weighted average?

No. Every finite number has equal weight. Repeat a value if it should count twice.

How is this different from a ratio?

Averages summarize a list. Ratios compare two terms or solve a proportion.

Is the list uploaded?

No. Stats stay in this browser tab.

Related tools