Navigation
Calculators Pricing Blog About Contact
Get Started
Get Started Login
๐Ÿ“Š

Mean, Median, Mode Calculator

Calculate the mean, median, mode, range, and standard deviation of any data set instantly.

Type or paste numbers separated by commas, spaces, or new lines

What Are Mean, Median, and Mode?

Mean, median, and mode are the three primary measures of central tendency in statistics. They each describe the center or typical value of a data set, but they do so in fundamentally different ways. Understanding all three is essential whether you are analyzing test scores, household incomes, survey responses, or scientific measurements.

The mean (commonly called the average) is calculated by adding all values together and dividing by the number of values. The median is the middle value when data points are arranged in ascending or descending order. The mode is the value that appears most frequently in the data set. Together, these three measures give you a comprehensive view of where the "center" of your data lies.

Each measure has unique strengths and weaknesses. The mean takes every data point into account but can be skewed by outliers. The median is resistant to extreme values and gives you the true midpoint. The mode reveals the most common observation, which is especially useful for categorical data. A skilled data analyst chooses the right measure โ€” or combination of measures โ€” based on the nature of the data and the question being asked.

Quick Definitions: If you have the data set {3, 7, 7, 12, 15}, the mean is 8.8, the median is 7, and the mode is 7. Each measure tells you something slightly different about the center of this data.

How to Calculate the Mean (Average)

The arithmetic mean is the most widely used measure of central tendency. You encounter it in report cards, financial summaries, sports statistics, and virtually every domain that involves numerical data. Calculating it is straightforward: sum all the values and divide by the total count.

Mean = (xโ‚ + xโ‚‚ + ... + xโ‚™) / n
Sum of all values divided by the number of values

Step-by-Step Example

Suppose a student earned the following scores on five exams: 82, 90, 76, 95, 88.

  • Step 1: Add the values: 82 + 90 + 76 + 95 + 88 = 431
  • Step 2: Count the values: n = 5
  • Step 3: Divide: 431 / 5 = 86.2

The mean exam score is 86.2. This tells you the student's typical performance across all five tests, weighting each test equally.

Weighted Mean

Sometimes values carry different levels of importance. A weighted mean multiplies each value by a weight before summing, then divides by the total weight. For instance, if a course weights the final exam at 40% and homework at 60%, you would multiply each score by its weight before averaging.

Watch out for outliers: The mean is sensitive to extreme values. If one student in a class scores 10 on a test while everyone else scores between 80 and 100, the class mean will drop significantly. In such cases, the median often provides a better representation of the typical score.

How to Find the Median

The median is the middle value in an ordered data set. It splits your data into two equal halves โ€” exactly 50% of the values fall below the median and 50% fall above it. Because the median depends only on position, not magnitude, it is robust against outliers and skewed distributions.

Odd count: Median = value at position (n + 1) / 2
For even count: Median = average of values at positions n/2 and (n/2) + 1

Odd Number of Values

Consider the data set: 3, 8, 12, 17, 22. There are 5 values, so the median is the value at position (5 + 1) / 2 = 3rd position. Counting from the left, the 3rd value is 12. That is the median.

Even Number of Values

Now consider: 4, 9, 15, 21. There are 4 values. The two middle values are at positions 2 and 3, which are 9 and 15. The median is (9 + 15) / 2 = 12.

The median is the preferred measure when dealing with income data, home prices, or any distribution where a few very large or very small values could distort the average. For example, when the U.S. Census Bureau reports household income, it typically uses the median household income rather than the mean, because a small number of extremely high earners would inflate the average and misrepresent what a typical household actually earns.

How to Find the Mode

The mode is the value that occurs most frequently in a data set. Unlike the mean and median, the mode can be used with both numerical and categorical (non-numerical) data. It is also possible for a data set to have no mode, one mode, or multiple modes.

Types of Modal Data Sets

  • No mode: {2, 4, 6, 8, 10} โ€” every value appears exactly once.
  • Unimodal: {3, 5, 5, 7, 9} โ€” the mode is 5 (appears twice).
  • Bimodal: {1, 2, 2, 3, 4, 4, 5} โ€” the modes are 2 and 4 (each appears twice).
  • Multimodal: {10, 10, 20, 20, 30, 30} โ€” the modes are 10, 20, and 30.

When Is the Mode Most Useful?

The mode is particularly valuable in retail and manufacturing. A shoe company, for example, needs to know the most commonly purchased shoe size โ€” the mode โ€” so it can stock the right inventory. Similarly, a restaurant analyzing customer orders benefits more from knowing the most popular dish (mode) than the average price ordered (mean).

The mode is also the only measure of central tendency that works for purely categorical data. If you survey people's favorite colors and the results are {Blue, Red, Blue, Green, Blue, Red}, the mode is Blue โ€” you cannot compute a mean or median for color names.

Understanding Range and Standard Deviation

While the mean, median, and mode tell you about the center of your data, range and standard deviation describe how spread out the data is. Together, measures of center and measures of spread give you a comprehensive statistical summary.

Range = Maximum Value โˆ’ Minimum Value
The simplest measure of data spread

The range is easy to compute but has a significant limitation: it only uses two data points (the largest and smallest), so a single outlier can make the range very large even if most values are tightly clustered.

Standard Deviation and Variance

Variance measures the average squared distance of each data point from the mean. Standard deviation is simply the square root of variance, bringing the measure back into the same units as the original data.

ฯƒ = โˆš[ ฮฃ(xแตข โˆ’ ฮผ)ยฒ / N ]
Population standard deviation โ€” ฯƒ is the standard deviation, ฮผ is the mean, N is the population size

A small standard deviation means the data points are clustered close to the mean โ€” the data is consistent. A large standard deviation means the data points are spread far from the mean โ€” there is high variability. For example, test scores of {88, 90, 92, 91, 89} have a very small standard deviation (about 1.4), indicating consistent performance. Scores of {55, 70, 98, 42, 100} have a much larger standard deviation (about 22.6), indicating wildly varied performance.

Population vs. Sample: This calculator uses population standard deviation (dividing by N). If your data is a sample from a larger population, the sample standard deviation divides by N โˆ’ 1 instead. For large data sets, the difference is negligible.

When to Use Mean vs. Median vs. Mode

Choosing the right measure of central tendency depends on the type of data you have and the distribution of your values. Here is a practical guide:

Use the Mean When:

  • Your data is symmetrically distributed with no significant outliers.
  • You are working with interval or ratio data (continuous numerical data like temperature, weight, or test scores).
  • You need to perform further statistical calculations (many formulas depend on the mean).
  • Every data point matters equally and you want a measure that accounts for all values.

Use the Median When:

  • Your data is skewed or contains outliers (e.g., income, home prices, response times).
  • You are working with ordinal data (rankings, Likert scales) where exact distances between values are not uniform.
  • You want a measure of what is "typical" that is not distorted by extreme values.
  • Your data set has an open-ended category (e.g., "65 or older").

Use the Mode When:

  • Your data is categorical or nominal (e.g., colors, brands, yes/no responses).
  • You want to identify the most common category or value.
  • You are interested in demand or popularity (e.g., most popular product size or flavor).
  • Your data has a meaningful peak that the mean or median would miss.

Pro Tip: When the mean, median, and mode are all approximately equal, your data is likely normally distributed (bell-shaped). When they diverge significantly, your data is probably skewed, and you should report multiple measures to give a complete picture.

Real-World Examples of Central Tendency

Understanding mean, median, and mode is not just an academic exercise โ€” these measures drive decisions in business, healthcare, education, government policy, and everyday life. Here are concrete examples that illustrate when and why each measure matters.

Example 1: Household Income

Imagine a neighborhood where nine households earn between $40,000 and $70,000 per year, but one household earns $2,000,000. The mean income would be approximately $243,000, which does not represent any real household in the neighborhood. The median โ€” around $55,000 โ€” is far more representative. This is exactly why government agencies report median household income.

Example 2: Student Test Scores

A teacher gives a quiz and the scores are: 72, 75, 78, 80, 82, 83, 85, 88, 90, 92. There are no extreme outliers, and the distribution is fairly symmetric. The mean (82.5) is the best summary here, and it is what schools typically use to calculate grade point averages. The teacher can confidently say the class average was 82.5.

Example 3: Shoe Store Inventory

A shoe retailer tracks which sizes sell most. Over the past month, the most purchased sizes were: 8, 9, 9, 9, 10, 10, 9, 11, 9, 8. The mode is size 9 โ€” this is the most actionable insight for inventory planning. The mean shoe size (9.2) or median (9) are less useful here because the retailer needs to know which specific size to stock most heavily.

Example 4: Website Response Times

A web application logs response times in milliseconds: 120, 135, 128, 142, 131, 139, 5200, 125, 137, 133. One request took 5,200 ms due to a network hiccup. The mean response time (529 ms) is misleading โ€” most requests completed in about 130 ms. The median (134 ms) accurately reflects typical performance, while the outlier flags an issue worth investigating separately.

Example 5: Customer Satisfaction Survey

A hotel asks guests to rate their stay on a 1-5 scale. The ratings are: 4, 5, 4, 5, 3, 5, 4, 5, 4, 5. The mode (5) tells the hotel that the most common experience is the best possible rating. The mean (4.4) provides a useful overall score. Both measures add value here, but the mode highlights that the single most common rating is a perfect score โ€” a powerful marketing insight.

Example 6: Real Estate Prices

Home prices in a city might include a wide range โ€” from modest apartments at $150,000 to luxury estates at $5,000,000. Real estate reports nearly always use the median home price because a handful of multi-million-dollar properties would drag the mean far above what a typical buyer can expect to pay. When you see headlines about "median home prices rising," this is why the median is chosen over the mean.

Best Practice: Whenever possible, report all three measures of central tendency along with the standard deviation. This gives your audience the fullest understanding of the data. If you can only report one, choose the measure that best resists the biases present in your specific data set.

Frequently Asked Questions

The mean is the arithmetic average found by dividing the sum of all values by the count. The median is the middle value when data is sorted in order. The mode is the value that appears most frequently. Each measures the "center" of a data set differently and is useful in different situations.
Add all the numbers together, then divide by how many numbers there are. For example, for the data set {4, 8, 15, 16, 23}, the sum is 66 and there are 5 values, so the mean is 66 / 5 = 13.2.
If every value in a data set appears the same number of times (each value is unique), then there is no mode. A data set can also be bimodal (two modes) or multimodal (three or more modes) if multiple values share the highest frequency.
Use the median when your data contains outliers or is skewed. For example, income data often has a few very high earners that inflate the mean. The median gives a better picture of what a "typical" value looks like because it is not affected by extreme values.
Standard deviation measures how spread out your data is from the mean. A small standard deviation means values are clustered near the average, while a large one means values are widely spread. It helps you understand the consistency or variability in your data set.
Population standard deviation divides the sum of squared differences by N (the total number of values). Sample standard deviation divides by N minus 1 to correct for bias when estimating from a subset. This calculator uses population standard deviation by default.
Yes. In a perfectly symmetrical distribution (like a normal or bell-shaped distribution), the mean, median, and mode are all equal. For example, in the data set {2, 4, 4, 4, 6}, the mean is 4, the median is 4, and the mode is 4. When these three measures diverge, it usually indicates the data is skewed.

Embed this Calculator

Copy the code below and paste it into your website's HTML. Your visitors can use this calculator for free.

px × px
<iframe src="https://calculatorteam.com/embed/mean-median-mode-calculator" width="100%" height="600" style="border:none;border-radius:12px;" loading="lazy" title="Mean, Median, Mode Calculator"></iframe>

Report an Issue

Let us know what's wrong with this calculator. We'll review and fix it as soon as possible.