Find the mean, the median and the mode of the data set
Mean: add every value, then divide by how many there are. The mean uses the raw order, so no sorting is needed:
Leaving the answer as the exact fraction is better practice than rounding, because is not divisible by and any decimal is an approximation.
Sort the data before touching the median. The median is defined on the ordered list, and this is the step people skip:
Reading the median off the unsorted list would give , which is wrong.
Median: with an even count, average the two middle values. For the middle positions are the 3rd and 4th:
In general the positions are and when is even, and the single position when is odd. Here both middle values happen to be , so the median is exactly with no fractional part.
Mode: tally the frequencies. Counting occurrences: appears once, once, twice, once, once. The highest frequency is , achieved only by , so the mode is
A data set can have no mode (all frequencies equal) or several modes; here there is exactly one.
Sanity-check the three numbers against each other. The mean sits slightly above the median , which is what you expect from a set with one large outlying value () pulling the average up. All three statistics land inside the data range , as they must.
Need to solve a different problem like this? Open the solver →