

InterviewSolution
Saved Bookmarks
1. |
Write the following sets m the setbuilder form:(i) `(3, 6, 9, 12}` (ii) `{2, 4, 8, 16 , 32}` (iii) `{5, 25 , 125 , 625}`(iv) `{2, 4, 6,...}` (v) `{1, 4, 9,..., 100}` |
Answer» `(i) - {3,6,9,12}` can be written as `{x:x=3n and 1<=n<=4}` `(ii) - {2,4,8,16,32}` can be written as `{x:x=2^n and 1<=n<=5}` `(iii) - {5,25,125,625}` can be written as `{x:x=5^n and 1<=n<=4}` `(iv) - {2,4,6,...}` can be written as `{x:x` is an even number`}` `(v) - {1,4,9,16,...100}` can be written as `{x:x=n^2 and 1<=n<=10}` , |
|