Use bit strings to find the union, intersection, A and B compliments of these sets. The bit strings for the sets {2, 3, 6, 7 and 8} and {1, 3, 5, 7, 9} are 0110011100 and 1010101010, respectively.
The bit strings for two sets are given as:-
Union of two set is-
which corrrosponds to { }
Intersection of two set is -
which corrosponds to { }
Compliments of A and B i.e.
which corrosponds to the set { }
Comments