🎯 Learning Objectives

πŸ“– Essential Notes

Union (A βˆͺ B)
Combine all elements
Intersection (A ∩ B)
Only common elements

1. Difference (A - B): Elements in A that are NOT in B.

2. Complement (A'): Everything in the Universal set (U) except A.
Formula: A' = U - A

3. De Morgan's Laws:
β€’ (A βˆͺ B)' = A' ∩ B'
β€’ (A ∩ B)' = A' βˆͺ B'

✍️ Practice Exercises (20 Questions)

1. If A = {1, 2} and B = {2, 3}, find A βˆͺ B.
Answer: {1, 2, 3}. Union combines all elements from both sets.
2. If A = {1, 2} and B = {2, 3}, find A ∩ B.
Answer: {2}. Intersection identifies only the elements present in both sets.
3. What is A ∩ A' equal to?
Answer: βˆ… (Empty set). A set and its complement never share any elements.
4. If U = {1, 2, 3, 4, 5} and A = {1, 2}, find A'.
Answer: {3, 4, 5}. The complement consists of everything in U that is NOT in A.
5. What are sets called if A ∩ B = βˆ…?
Answer: Disjoint Sets. They have no overlap.
6. Find A - B if A = {a, b, c} and B = {c, d}.
Answer: {a, b}. Start with A and remove anything that also appears in B.
7. Simplify (A')'.
Answer: A. The double complement brings you back to the original set.
8. According to De Morgan, (A βˆͺ B)' is equal to...
Answer: A' ∩ B'. The union flips to intersection when the complement moves inside.
9. If A βŠ† B, what is A βˆͺ B?
Answer: B. Since A is already inside B, combining them results in B.
10. What is A βˆͺ A' always equal to?
Answer: U (Universal Set). Together they cover every element in the universe.
11. Find B - A if A = {1, 2} and B = {2, 3}.
Answer: {3}. Elements in B that are not in A.
12. True or False: A - B is the same as B - A.
Answer: False. Order matters in set difference.
13. What is A ∩ U?
Answer: A. The common elements between a set and the universe is the set itself.
14. What is A βˆͺ βˆ…?
Answer: A. Adding nothing to A keeps it as A.
15. Simplify (A ∩ B)'.
Answer: A' βˆͺ B' (De Morgan’s second law).
16. If n(A)=5, n(B)=3, and A ∩ B = βˆ…, find n(A βˆͺ B).
Answer: 8. Since they are disjoint, simply add the counts (5 + 3).
17. Is A ∩ B a subset of A?
Answer: Yes. Every element in the intersection must be in A.
18. What is U'?
Answer: βˆ…. The "opposite" of everything is nothing.
19. If A βŠ† B, what is A - B?
Answer: βˆ…. If you take A and remove everything in B, nothing is left because A was completely inside B.
20. What is βˆ…'?
Answer: U. The complement of nothing is everything.
Back to Unit 1 Menu