If a, b, c, d, e and f are integers, is their median greater than their average (arithmetic mean)?
This tests extreme scenarios and somewhat weighted average concept.
(1) a < b < c < d < e < f
A. If integers are equidistant then NO.
Eg. 1,2,3,4,5,6
Median = (3+4)/2 = 3.5
Average = 21/6 = 3.5
(From weighted average pov the average is exactly between the integers because of uniformity in distance between integers)
B. If integers are not equidistant then YES.
Eg. 2,4,6,7,8,9
Median = (6+7)/2 = 6.5
Average = 36/6 = 6
(From weighted average pov the average shifts slightly towards left hand side even after some form of uniformity in distance between first 3 integers which is not same as that of last 3)
Best would have been to put first one or the last one at extreme ends which would have cause weighted average towards the big value.
INSUFFICIENT.
(2) b - a = d - c = f - e
A. If all are equidistant like we have a case in Statement 1 then NO
Eg. 1,2,3,4,5,6 where 2 - 1 = 4 - 3 = 6 - 5 = 1
Median = (3+4)/2 = 3.5
Average = 21/6 = 3.5
(From weighted average pov the average is exactly between the integers because of uniformity in distance between integers)
B. Another case could be 1,2,7,8,31,32 then NO
2 - 1 = 8 - 7 = 32 - 31
Median = (7+8)/2 = 7.5
Average = 81/6 = 13.5
OR
C. a, b, c, d, e, f are as follows
-2, -3, 1, 0, 2, 1 where
-3-(-2) = 0 - 1 = 1 - 2 = -1 then YES
Median = (0+1)/2 = 0.5
Average = (-1)/6 = -0.166..
INSUFFICIENT.
Together 1 and 2
A. St.1 A satisfies with NO
B. Taking exact opposite of St.1 A but with extreme situation then YES
-26,-25,-4,-3,-2,-1
Median = -3.5
Median = -10.5
Answer E.