Basic Operations on Sets
We know that arithmetics has operations of addition, subtraction, multiplication and division of numbers.
Similarly in sets, we define the operation of union, intersection and difference of sets.
If A and B are two sets, then their union,denoted as A∪B,is the set of all elements that belong to either A or B.
Example : A = {1,2,3,4}, B = {3,4,5,6}
Then A∪B = {
Visual Represenatation:

If A and B are two sets, then their intersection,denoted as A∩B , is the set of all elements that belong to both A and B.
Example : A = {1,2,3,4} B = {3,4,5,6}
Then A ∩ B = {
Visual Represenatation:

The difference of two sets includes elements that belong to one set but not the other.
Example : A = {1,2,3,4} , B = {3,4,5,6}
A - B = {
B - A = {
Visual Represenatation:
