Method and source check
Last checked:
Source and implementation check; this is not professional review or advice.
Method
The calculator validates a list of finite numbers, then computes the arithmetic mean, median, mode, range, sum, and count. The median and mode are computed from the sorted values.
x̄ = Σxᵢ / n
range = maximum − minimum
Variables and units
- xᵢ
- each value in the data set
- n
- number of values
- x̄
- arithmetic mean
Worked example
For 2, 4, 4, and 10: the sum is 20, n is 4, the mean is 5, the median is 4, the mode is 4, and the range is 8.
Limitations
- The mean can be strongly affected by outliers. For skewed data, compare the mean with the median instead of treating either value as automatically representative.