 
                 
                InterviewSolution
 Saved Bookmarks
    				| 1. | If A = {1, 2, 3,4}, B = {a,b,c,d}, then define four bijection from A to B and also find their inverse functions. | 
| Answer» Given A = {1, 2, 3, 4), B = {a, b, c, d} (a) f1 = {(1, a),(2, b), (3, c), (4, d)} f1-1 = {(a, 1), (1, 2), (c, 3), (d, 4)} (b) f2 = {(1, a), (2, c), (3, b), (4, d)} f2-1 = {(a, 1), (C, 2), (6, 3), (d, 4)} (c) f3 = {(1, b), (2, a), (3, d), (4, b)} f3-1 = {(b, 1), (a, 2), (d, 3), (6,4)} (d) f4 = {(1, c), (2, d), (3, a),(4, b)} f4-1 = {(c, 1), (d, 2), (a, 3), (b, 4)} | |