Compute the arithmetic mean, median, min and max of a list of numbers.
| Input | Result |
|---|---|
| 12, 18, 25, 31, 44 | mean 26 |
| 5, 5, 5 | mean 5 |
| 1, 2, 3, 10 | mean 4 · median 2.5 |
The mean is the sum divided by count; the median is the middle value when sorted. Outliers affect the mean more.
As many as you like — paste a whole list separated by commas or spaces.
Yes, negative and decimal numbers are fully supported.