Given a finite set $S \subset \mathbb{Z}$, we can easily obtain its median $median(S)$. Given a set of sets $T = \{ S_1, S_2, \cdots, S_n \}$. where $S_i \cap S_j = \emptyset, \forall S_i, S_j \in T $
We can define two "median", $M_1 = median(\cup_{S \in T})$ and $M_2 = median(\{ median(S)|S \subset T \})$.
Would $M_1 == M_2$ ?
The answer is No.
for example, $S_1 = (1, 2, 4)$, $S_2 = (3, 10, 11)$.
$M_1 = 3.5$, while $M_2 = 6$