I have a list of two-element lists
{{a,b},{c,d},{x,y}}
I can use MemberQ to test if one of these lists is present, for example
In[54]:= MemberQ[{{a, b}, {c, d}, {x, y}}, {c, d}]
Out[54]= True
I would like to test if at least two of the lists belong to this bigger list, for example if {a,b} and {c,d} belong to the bigger list. I cannot find a find a way to do this, and MemberQ doesn't work.
Any suggestions?