What the mode is
The mode is the value that appears most frequently in a data set. To find it you simply tally how many times each distinct value occurs and pick the one with the highest count. In the list 4, 7, 4, 2, 9, 4, 7, 1, 7, 4 the value 4 appears four times — more than any other — so the mode is 4.
The mode is one of the three classic measures of central tendency, alongside the mean (arithmetic average) and the median (middle value of the sorted data). It has two properties the other two lack: it is always an actual value that appears in the data, and it is the only one of the three that works for categorical data such as colors, brands, or blood types, where "average" and "middle" have no meaning.
How to calculate the mode by hand
- List every distinct value that appears in the data set.
- Count how many times each one occurs (its frequency).
- Find the highest frequency.
- The mode is every value that shares that highest frequency.
One mode, several modes, or none
- Unimodal: exactly one value has the top frequency (e.g. 2, 3, 3, 5 → mode 3).
- Bimodal: two values tie for the top frequency (e.g. 1, 1, 4, 4, 9 → modes 1 and 4).
- Multimodal: three or more values tie for the top frequency.
- No mode: every distinct value occurs the same number of times (e.g. 2, 5, 8, 11 → each appears once), so no value is more common than the others.
When the mode is the right measure
Reach for the mode when you care about the most typical or most popular outcome rather than an average. It is the natural summary for shoe sizes a store should stock, the most common survey response, the peak of a sales-by-price-point chart, or the most frequent defect on a production line. Because it ignores the magnitude of values and only counts frequency, the mode is completely unaffected by outliers — a single huge value cannot shift it.