The median of a set of data is the value that satisfies when half the values are above and half below. So, to find this out it is enough to sort the elements from smallest to largest and choose the central value.
- Case 1: The number of values is odd.
We have the following
We sort them:
- Case 2: The number of values is even.
The
The median will be the average of both:
Example
Find the median of the following list of numbers of a Russian roulette:
The median is
Calculation of the median using stages
When we have a lot of data it is much more comfortable to use stages for the calculation of the median.
Example
The grades from the biolgy exami of
Calculate the table of absolute and cumulative frequencies:
Mark | Absolute frequency | Cumulative frequency |
Having an even number of elements, there will be two central values,
The