Find the mean, median and mode of
Add the values and divide by how many there are. The mean is the total shared equally among all data points:
There are values, so
Keeping as a fraction avoids rounding error if the mean feeds into a later calculation.
Sort the data before touching the median. The median is defined by position, so the list must be in order first:
Average the two middle values. With an even count of , there is no single middle entry; the median is the mean of the rd and th values, which are and :
Notice the median need not be a member of the data set.
Count repetitions for the mode. Each of appears exactly once, so no value occurs more often than any other. The set therefore has no mode - reporting "all of them" or "" would both be wrong.
Sanity-check the three summaries. The mean and median both sit inside the range and close to each other, which is what you expect when the data has no strong skew: and differ by only .
Need to solve a different problem like this? Open the solver →