Median Calculator

Last Updated: June 17, 2026

Calculate the median from a set of numbers.

Median Calculator

Median Formula

The median is the middle value of a data set after the values are sorted from smallest to largest. The formula you use depends on whether the count of values (n) is odd or even.

When n is odd, the median is the single middle value:

Median = x[(n + 1) / 2]

When n is even, the median is the average of the two middle values:

Median = (x[n / 2] + x[n / 2 + 1]) / 2
  • Median = the middle value of the sorted data set
  • n = the number of values in the data set
  • x[k] = the value in position k after the data is sorted from smallest to largest

The calculator first sorts your numbers in order. It then counts how many values you entered. If that count is odd, it returns the value sitting in the exact middle position. If the count is even, it finds the two values closest to the middle and returns their average. Sorting is the key step, because the median depends on order and not on where you typed each number.

Reading and Comparing the Median

The table below shows how the median is located for small data sets so you can check the position the calculator uses.

Count of values (n)TypeMiddle position(s)Median is
5Odd3rdThe 3rd value
6Even3rd and 4thAverage of the 3rd and 4th values
9Odd5thThe 5th value
10Even5th and 6thAverage of the 5th and 6th values

The next table shows how the median compares to the mean for different data shapes, which helps you interpret a result.

Data shapeMedian vs meanWhat it tells you
SymmetricMedian is about equal to the meanValues are balanced around the center
Skewed right (high outliers)Median is less than the meanA few large values pull the mean up
Skewed left (low outliers)Median is greater than the meanA few small values pull the mean down

Example Problems

Example 1: Find the median of 7, 2, 9, 4, 5. First sort the values: 2, 4, 5, 7, 9. There are 5 values, which is odd, so the median is the 3rd value. The median is 5.

Example 2: Find the median of 10, 3, 8, 1, 6, 12. First sort the values: 1, 3, 6, 8, 10, 12. There are 6 values, which is even, so the median is the average of the 3rd and 4th values, 6 and 8. The median is (6 + 8) / 2 = 7.

Frequently Asked Questions

Do I need to sort the numbers before I enter them?
No. The calculator sorts the values for you before finding the middle. You can enter the numbers in any order and still get the correct median.

What is the difference between the median and the mean?
The mean is the sum of all values divided by how many there are. The median is the middle value once the data is sorted. The median is less affected by very large or very small values, so it often gives a better sense of a typical value when the data has outliers.

Can the median be a value that is not in my data set?
Yes. When you have an even number of values, the median is the average of the two middle values, and that average may not appear in your original list. For example, the median of 2, 4, 6, 8 is (4 + 6) / 2 = 5, even though 5 is not in the data.

Median Calculator