Calculate the mean, median, mode, and range of any data set instantly.
Mean, median, and mode each describe the "center" of a distribution from a different angle. The mean (arithmetic average) adds all values and divides by count. The median is the middle value when data is sorted. The mode is the most frequently occurring value. Each has strengths and weaknesses that make it more or less appropriate depending on the data's shape and what question you're trying to answer.
For symmetric, normally distributed data without outliers, all three measures are approximately equal, and the mean is usually preferred because it uses all the data and has the best mathematical properties for further analysis. For skewed data or data with extreme outliers, the median is a more representative measure of typical value.
The mean is highly sensitive to extreme values. A classic example: in a room of 10 people with annual incomes of $40,000 to $80,000, the mean income might be $55,000 — a reasonable representation. Add one billionaire with a $1 billion income, and the mean jumps to about $91 million, making it useless as a description of typical income in the room.
This is why median household income is the preferred measure in economic reporting. The distribution of income is heavily right-skewed — a small number of very high earners pull the mean up substantially while leaving most people's experience unchanged. The median correctly describes what the "typical" household actually earns.
Mode is most useful for categorical data where "average" is meaningless, and for understanding the most common value in a dataset. What is the most common shoe size sold? What color car sells most frequently? What age is most common among a company's customers? These are modal questions.
In continuous numerical data, mode is less useful because individual values rarely repeat exactly. Kernel density estimation is often used instead to find the "peak" of a continuous distribution — the mode's analog in continuous contexts.
The relative positions of mean, median, and mode reveal the shape of a distribution. In a right-skewed distribution (long tail to the right), the mean is pulled rightward by extreme high values: mode ≤ median ≤ mean. In a left-skewed distribution, mode ≥ median ≥ mean. In a symmetric distribution, they're all equal (or nearly so).
This relationship provides a quick diagnostic: if the mean and median differ substantially for your dataset, your data is likely skewed and outliers may be present. Further investigation — checking for data entry errors, considering whether outliers are legitimate data points, and deciding which measure to report — becomes important.