Sorry not too sure where this should go but I am having trouble with some uni level maths and its on union and intersection so here I go;
(A [union] B [union] C)
the key is;
A = {1,2}
B = {3,4,2}
C = {5,2,3}
Any help is greatly appriecated, thanks.
Sorry not too sure where this should go but I am having trouble with some uni level maths and its on union and intersection so here I go;
(A [union] B [union] C)
the key is;
A = {1,2}
B = {3,4,2}
C = {5,2,3}
Any help is greatly appriecated, thanks.
When you take the union of the sets, you take all the terms and put them in one set (however, if there are more than one of the same term, you should only list it once.
In your case,.
When you consider intersections, you look for terms that each set have in common.
Even though you didn't ask this, what set do you thinkwould generate?
No. The union takes all the elements in the sets and puts them all together.
In the intersection case, you're looking for common elements between the sets.
For example, ifand
, then
.
However, there are some cases when they don't share anything at all: Ifand
, then
. (where
means the empty set)
From your question, note that
So what wouldbe?
Well not really as I am looking at my previous questions and now they are not making any sense at all, the questions are ..... using the same key which is;
A = {1,2}
B = {3,4,2}
C = {5,2,3}
workout (my answers are in the {});
A u B = {1,2,3,4}
A u B u C = {2}
B n C = {3,2}