To find the union of two sets X and Y, we combine all the unique elements from both sets. The union of sets X and Y will include every element that is in X, in Y, or in both.
We have two sets defined as follows:
X={1,6,2,3,14}
Y={2,9,13,1}
To find the union of sets X and Y, we combine all unique elements from both sets. The union is represented as:
X∪Y={1,2,3,6,9,13,14}
The resulting set from the union of X and Y is:
{1,2,3,6,9,13,14}
The answer is {1,2,3,6,9,13,14}.