InterviewSolution
Saved Bookmarks
| 1. |
Let A = { a,b,c }, absB = {1,2} Determine all the relations from A to B and determine the domain range and inverse of each relation. |
|
Answer» Solution :A = {a,B,c} , B = {1,2] `THEREFORE A xx B` = {(a,1), (a,2), (b,1),(b,2),(c,1),(c,2)} `therefore ABS(A xx B)` = 6 `therefore ABSP(A xx B ) = 2^6 = 64
|
|