To get the median of an even number of values, you must calculate the mean of the middle two values. Therefore the definition of the median relies on the mean already being defined when working with a discrete number of values, which isn't really explained in the post.<p>In fact, there's a whole spectrum of averages defined with mean and median on each end, depending on how many outliers you eliminate. For example, if you have eight numbers, you can define a spectrum of four averages:<p><pre><code> 2,3,5,7,11,13,17,19 // mean, here 9.6250
3,5,7,11,13,17 // mean with outlier on each side stripped, here 9.3333
5,7,11,13 // mean of central two quartiles, here 9.0000
7,11 // median (i.e. mean of center two numbers), here 9.0000
</code></pre>
You could then repeat the process on that spectrum of averages to get a shorter spectrum, here [9.2396 (mean), 9.1667 (median)], recursively until you have one "mean-median" left, here 9.2031.<p>I wonder how this fits in with the explanation in the post.