<h3>
Answer: Median = 1.5</h3>
=======================================================
Explanation:
Original List = {2,14,1,2,0,1,0,2}
Sorted List = {0, 0, 1, 1, 2, 2, 2, 14}
The main cluster of values is from 0 to 2. The 14 is far from this cluster and is considered an outlier. The large outlier pulls on the mean to make the mean larger than it should be. Think of it like the gravitational pull of a distant planet.
If we were to compute the mean with the outlier, then:
mean = (0+0+1+1+2+2+2+14)/8 = 22/8 = 2.75
Now let's compute the mean without the outlier
mean = (0+0+1+1+2+2+2)/7 = 8/7 = 1.14 approximately
The true center is closer to 1.14 than it is to 2.75; mainly because most if not nearly all of the values are clumped around 0 to 2. Having a mean larger than 2 makes no sense if we were to ignore that 14.
----------------
Because the mean is sensitive to any outliers, it's much better to go for the median. The median stays the same no matter how distant the outlier may be.
Refer back to the sorted list
{0, 0, 1, 1, 2, 2, 2, 14}
There are 8 items in this list. Circle the two middle-most items which are the "1, 2". They are tied for the middle. The midpoint is (1+2)/2 = 3/2 = 1.5
The median of the given list is 1.5 which is the most appropriate center.