156k views
3 votes
Given A = {1, 3, 5}, B = {2, 4, 6} and C={1, 2, 3, 4, 5, 6}, then A ∪ (B ∩ C)

2 Answers

0 votes
The answer is C Hope that helps you
User Foster Bass
by
8.2k points
4 votes
B ∩ C is an intersection, which means only values that are present in both B and C are picked. So...
B ∩ C = {2, 4, 6}
A ∪ (B ∩ C) is a union, which means you combine all values, but discard duplicates. So...
A ∪ (B ∩ C) = {1, 2, 3, 4, 5, 6}
User Agyakwalf
by
7.4k points