

InterviewSolution
Saved Bookmarks
1. |
If A = {1, 3, 5} and B = {2, 4}, list the elements of R, if R = {(x, y) : x, y A × B and x > y}. |
Answer» Here, A = { 1,3,5} and B = {2,4} Also, R = { (x,y) : x,y ϵ A×B and x>y} = {(3,2) ,(5,2),(5,4)} |
|