

InterviewSolution
Saved Bookmarks
1. |
Write roster and builder form of “The set of all natural numbers which divide 42”. |
Answer» Factors of 42 = 1, 2, 3, 6, 7, 14, 21, 42 So roster form = {1, 2, 3, 6, 7, 14, 21, 42} The builder form = {x/x ∈ N, x is a factor of 42} |
|