A = [1, 2, 3, 5] and B = [4, 6, 9]
R = {(x, y) : the difference between x and y is odd, x ∈ A, y ∈ B}
For x = 1,
41 = 3 and 61 = 5
y = 4, 6
For x = 2,
92 = 7
y = 9
For x = 3,
43 = 1 and 63 = 3
y = 4, 6
For x = 5,
54 =1 and 65 =1
y = 4, 6
Thus, we have:
R = {(1, 4), (1, 6), (2, 9), (3, 4), (3, 6), (5, 4), (5, 6)}