

InterviewSolution
Saved Bookmarks
1. |
Let R = {(a, b): b = |a – 1|, a ∈ Z and |a| < 3}. Find the domain and range of R. |
Answer» We know that a is an integer where – 3 < a < 3 So we get R = {(-2, 3), (-1, 2), (0, 1), (1, 0), (2, 1)} dom (R) = {-2, -1, 0, 1, 2} range (R) = {3, 2, 1, 0} |
|