Given to us :
S={-27,-3,-2,2,3,15,17,n} (in sorted order and lets for a second assume n is the largest)
S= has all unique integers
total elements in the set = 8
median for this set = ( V5+V4 )/2
V4 is the fourth value and V5 is the fifth.
My approach,
I picked the every answer choice from a-d
Case of a(1), says median can be 1
then
v4+v5 = 2
the smallest middle values from the given set could be 2,3,n
so
2+n =2 , possible for n =0
lets put in the set and the set S is {-27,-3,-2,0,2,3,15,17}
you can consider the case of n+3 = 2, n = -1
then set becomes s ={-27,-3,-2,-1,2,3,15,17}
does not work
Case b (9)
S={-27,-3,-2,2,3,15,17,n}
v4+v5 = 18
smallest possible middle values from the set 2,3 (there can be other cases , I am considering these for simplicity) from the given set as it is
in any case of the smallest value the values of n (16 or 15) dont give the median = 9
{-27,-3,-2,2,3,15,15,17}
{-27,-3,-2,2,3,15,16,17}
The same can be done for other choices c, d.
Please do feel free to correct me if I am doing anything wrong.