Write the data set in numerical order (smallest to largest)
If the number of data points is odd, the median is the middle value
If the number of data points is even, the median is the average of the two middle values
Identify the middle position(s):
Odd count: position ((n+1)/2)
Even count: positions (n/2) and ((n/2)+1)
Compute the median accordingly
