Okay, assuming that there is a typo where you specified, would the following be an acceptable bijection for A U B → C U D:
The set A contains the even numbers less than 10 (0, 2, 4, 6, 8)
The set B contains the odd numbers less than 10 (1, 3, 5, 7, 9)
The set C contains the even numbers greater than or equal to 10 but less than 20 (10, 12, 14, 16, 18)
The set D contains the odd numbers greater than or equal to 10 but less than 20 (11, 13, 15, 17, 19)
So far, the card(A) = card(C) and the card(B) = card(D), and the intersection of A and B is the empty set and the intersection of C and D is the empty set. A U B = {(0, 1), (0, 3), (0, 5), (0, 7), (0, 9), (2, 1), (2, 3), (2, 5), (2, 7), (2, 9), (4, 1), (4, 3), (4, 5), (4, 7), (4, 9), (6, 1), (6, 3), (6, 5), (6, 7), (6, 9), (8, 1), (8, 3), (8, 5), (8, 7), (8, 9)}. C U D = {(10, 11), (10, 13), (10, 15), (10, 17), (10, 19), (12, 11), (12, 13), (12, 15), (12, 17), (12, 19), (14, 11), (14, 13), (14, 15), (14, 17), (14, 19), (16, 11), (16, 13), (16, 15), (16, 17), (16, 19), (18, 11), (18, 13), (18, 15), (18, 17), (18, 19)}. The function would be f(x, y) = (x + 10, y + 10). Thus the mapping would be the following:
(0, 1) → (10, 11)
(0, 3) → (10, 13)
(0, 5) → (10, 15)
(0, 7) → (10, 17)
(0, 9) → (10, 19)
(2, 1) → (12, 11)
(2, 3) → (12, 13)
(2, 5) → (12, 15)
(2, 7) → (12, 17)
(2, 9) → (12, 19)
(4, 1) → (14, 11)
(4, 3) → (14, 13)
(4, 5) → (14, 15)
(4, 7) → (14, 17)
(4, 9) → (14, 19)
(6, 1) → (16, 11)
(6, 3) → (16, 13)
(6, 5) → (16, 15)
(6, 7) → (16, 17)
(6, 9) → (16, 19)
(8, 1) → (18, 11)
(8, 3) → (18, 13)
(8, 5) → (18, 15)
(8, 7) → (18, 17)
(8, 9) → (18, 19)
It is one-to-one because each element of A U B is mapped to, at most, one element of C U D. It is onto because the range includes every value of C U D.
Would this be an acceptable bijection?