

InterviewSolution
1. |
Which of the following functions from A to B are one-one and onto?(i) f1 = {(1, 3), (2, 5), (3, 7)}; A = {1, 2, 3}, B = {3, 5, 7}(ii) f2 = {(2, a), (3, b), (4, c)}; A = {2, 3, 4}, B = {a, b, c}(iii) f3 = {(a, x), (b, x), (c, z), (d, z)}; A = {a, b, c, d,}, B = {x, y, z}. |
Answer» (i) Given f1 = {(1, 3), (2, 5), (3, 7)}; A = {1, 2, 3}, B = {3, 5, 7} Injectivity: ⇒ Every element of A has different images in B. Surjectivity: ⇒ Co-domain = range (ii) Given f2 = {(2, a), (3, b), (4, c)}; A = {2, 3, 4}, B = {a, b, c} f2 = {(2, a), (3, b), (4, c)}; A = {2, 3, 4}, B = {a, b, c} Injectivity: ⇒ Every element of A has different images in B. Surjectivity: Range of f2 = set of images = {a, b, c} ⇒ Co-domain = range So, f2 is onto. (iii) Given f3 = {(a, x), (b, x), (c, z), (d, z)} ; A = {a, b, c, d,}, B = {x, y, z} Injectivity: ⇒ a and b have the same image x. Also c and d have the same image z Surjectivity: |
|