Solution:
Given, U = {1, 2, 3, 4, 5, 6, 7, 8, 9, and 10}.
U has 10 elements, so bit representation will contain 10 digits with 0 and 1.
xi={10 if i∈X for i∈/X
A= {1, 3, 4, 8}, B = {2, 3, 4, 5, 9, 10}, and C = {3, 5, 7, 9, 10}
(a)A∪B={1,2,3,4,5,8,9,10}=1111100111(b)A∩B∩C={3}=0010000000(c)(A∪C)∩B={1,3,4,5,7,8,9,10}∩{2,3,4,5,9,10}={3,4,5,9,10}=0011100011(d)(A−B)∪C={1,8}∪{3,5,7,9,10}={1,3,5,7,8,9,10}=1010101111
(e)A∩(B−(C∩B))={1,3,4,8}∩({2,3,4,5,9,10}−{3,5,9,10})={1,3,4,8}∩{2}=ϕ=0000000000(f)A−(B−C)={1,3,4,8}−{2,4}={1,3,8}=1010000100(g)(A∪B)∪(C−B)={1,2,3,4,5,8,9,10}∪{7}={1,2,3,4,5,7,8,9,10}=1111101111
Comments