Question 9
Recall the Stable Matching problem:
Stable Matching
Input: Two sets given by
- (the men) and
- (the women);
and two collections of rankings
- (the ranking of the men over the women) and
- (the ranking of the women over the men),
where for all , is a strict ranking over and is a strict ranking over .
Question: Find a permutation over such that is a stable matching.
For completeness, we recall the definition of a stable matching.
Consider the matching given by a permutation of . A pair is said to be a blocking pair with respect to if:
- ,
- is ranked higher than in ,
- is ranked higher than in , where ;
in other words, and are not matched by , and they rank each other higher than their respective matched partners in .
If is a matching for which there are no blocking pairs with respect to , then is said to be a stable matching.
Consider the following instance of the stable matching problem for 4 men (PQRS) and 4 women (WXYZ).
P: W > X > Y > Z
Q: X > Y > Z > W
R: W > X > Z > Y
S: X > Y > W > Z
and
W: S > Q > R > P
X: P > S > Q > R
Y: R > P > Q > S
Z: R > P > S > Q
Consider the following matching: M = {(P, W), (Q, X), (R, Z), (S, Y)}.
Which of the following is a blocking pair in the matching above?
(P-X)
(Q-Y)
(R-W)
(S-X)