

InterviewSolution
Saved Bookmarks
1. |
Determine the domain and range of the relation R defined by :R = {(x, x3) : x is a prime number less than 10} |
Answer» Given, R = {(x, x3) : x is a prime number less than 10} Prime numbers less than 10 are 2, 3, 5 and 7 ∴ R = {(2,23), (3,33), (5,53), (7,73)} ⇒ R = {(2, 8), (3, 27), (5, 125), (7, 343)} So, Domain of relation R = {2, 3, 5, 7} Range of relation R = {8, 27, 125, 343} |
|