For the data set
find the mean, median, mode, range, and the sample variance and standard deviation.
Total the values and divide by n. There are readings and they add to
so
Add the column twice — a single misread digit here (for instance totalling ) shifts the mean and every squared deviation that follows.
Sort the data once; median, mode and range all read off the sorted list.
Median and range. With values (odd) the median is the single middle entry, position :
and
Mode: check for ties before answering. Counting frequencies, , and each occur three times and nothing occurs more often, so the set is trimodal:
A data set can legitimately have several modes; picking just one would be wrong here.
Sum the squared deviations from the exact mean. Using rather than a rounded :
Divide and take the square root. Treating the readings as a sample ():
As a population () instead: and . Either way the spread is about , roughly a quarter of the range, which is typical for a tightly clustered set.
Need to solve a different problem like this? Open the solver →