Median / Mode Calculator

Calculate median and mode for a list of numbers.

How to Do It Manually

The median is the middle value of a sorted dataset. The mode is the value(s) that appear most often.

  1. Sort all numbers in ascending order.
  2. Median: If the count is odd, the median is the middle number. If even, average the two middle numbers.
  3. Mode: Find the value(s) that appear more than once and most frequently. There can be multiple modes or none.

Frequently Asked Questions

What if there is no mode?

If all values appear exactly once, the dataset has no mode.

What if there are two medians?

With an even count of numbers, add the two middle numbers and divide by 2.