Find the union of each pair: (i) X={1,3,5},Y={1,2,3} (ii) A={a,e,i,o,u},B={a,b,c} (iii) A={naturals that are multiples of 3},B={naturals less than 6} (iv) A={naturals,1<x<=6},B={naturals,6<x<10} (v) A={1,2,3},B=phi.
Hint. The union collects every element that appears in at least one of the two sets, listed once each.
Combine each pair's elements, dropping duplicates: (i) merges to five numbers. (ii) merges to seven letters. (iii) combines {1,2,3,4,5} with all multiples of 3. (iv) the two ranges join into one continuous block, 2 through 9. (v) union with the empty set changes nothing.
✦ Working through each part gives: (i) {1,2,3,5} (ii) {a,b,c,e,i,o,u} (iii) {1,2,3,4,5} union {multiples of 3} (iv) {2,3,4,5,6,7,8,9} (v) {1,2,3}.
