

InterviewSolution
Saved Bookmarks
1. |
Write the set `{1/2,2/3,3/4,4/5,5/6,6/7}`in the setbuilder form. |
Answer» given that `{1/2,2/3,3/4,4/5,5/6,6/7}` `= 1/(1+1), 2/(2+1),3/(3+1), 4/(4+1),5/(5+1), 6/(6+1)` `= { x/(x+1): x in N & x<=6}` answer |
|