Hi,
Below are examples:
-5 -1 1 2 3 4 7 median is 2 adding a number lower than 2 (for example 0)
-5 -1 0 1 2 3 4 7 median is (1+2)/2 = 1.5
Thus adding a number lower than the median decreased the median in this case
-5 -1 1 2 2 3 4 7 median is 2 adding a number lower than 2 (for example 0)
-5 -1 0 1 2 2 3 4 7 median is 2
Thus adding a number lower than the median didn't alter the median in this case
-5 -1 1 2 3 4 7 median is 2 adding a number greater than 2 (for example 5)
-5 -1 1 2 3 4 5 7 median is (2+3)/2 = 2.5
Thus adding a number greater than the median increased the median in this case
-5 -1 1 2 2 3 4 7 median is 2 adding a number greater than 2 (for example 5)
-5 -1 1 2 2 3 4 5 7 median is 2
Thus adding a number greater than the median didn't alter the median in this case
Hope this is helpful to you.
regards,
Jack