IF T=[1,2,3,4,5] AND M=[3,4,7,8] THEN T U M= ?
Answers
Answered by
18
Answer:
Here's your answer....
T = [1,2,3,4,5]
M = [3,4,7,8]
T U M = [1,2,3,4,5,7,8]
Answered by
4
{ 1,2,3,4,5,7,8 }
Explanation:
Given, T = { 1,2,3,4,5 } and M = { 3,4,7,8 }
Therefore T U M = { 1,2,3,4,5,7,8 }
Note:
For union repetition of elements is not possible.
Similar questions