Lesson 1
Practice Problem Set 1 - Solutions

1. A B={ 5,6,7 } { 1,2,3,4,6 } ={ 1,2,3,4,5,6,7 }

2. A C={ 5,6,7 } { 8,9,10 } =
These sets share no elements, so the intersection is empty.

3. ( A C ) B
First, create A C .
A C ={ 5,6,7 } { 8,9,10 } ={ 5,6,7,8,9,10 }
Next, intersect this new set with the set B.
( A C ) B ={ 5,6,7,8,9,10 } { 1,2,3,4,6 } ={ 6 }

4. B D={ 1,2,3,4,6 } { 1,7,9 } ={ 1 }

5. ( A B ) ( C D )
First create ( A B ) , then create ( C D ) .
( A B )={ 5,6,7 } { 1,2,3,4,6 } ={ 6 }
C D={ 8,9,10 } { 1,7,9 } ={ 9 }
Than, union these two sets.
( A B ) ( C D ) ={ 6 } { 9 } ={ 6,9 }