returns the intersection of two sets
set3 = intersection(set1,set2)
set
set
set
The function intersection
returns the set
set3
obtained by forming the intersection of the sets
set1
and set2
. If the sets are disjoint,
the empty set {}
is returned.