set operations and facts about sets
play

Set operations and facts about sets Slides to accompany Sections - PowerPoint PPT Presentation

Set operations and facts about sets Slides to accompany Sections 1.(4 & 5) of Discrete Mathematics and Functional Programming Thomas VanDrunen Operations from arithmetic These operations on numbers produce new numbers. Grammatically, they


  1. Set operations and facts about sets Slides to accompany Sections 1.(4 & 5) of Discrete Mathematics and Functional Programming Thomas VanDrunen

  2. Operations from arithmetic These operations on numbers produce new numbers. Grammatically, they are equivalent to nouns. 5 + 3 12 − 7 (18 · 13) ÷ 21 These operations produce a true or false value. Grammatically, they are equivalent to declarative sentences. 17 > 18 ÷ 6 (15 + 4) · 21 ≤ 3 − 2 5 + 3 = 8

  3. Operations on sets We have two main sentence-making operations for sets: A = B , meaning A and B have exactly the same elements. B ⊆ A meaning every element in B is an element in A ; B is a subset of A . B ⊆ A A B Also we have proper subset B ⊂ A , meaning B ⊆ A but B � = A , or at least one element of A isn’t in B . Similarly we have superset B ⊇ A and proper superset B ⊃ A . These aren’t used very often, but ⊆ , ⊂ , ⊇ , ⊃ are analogous to ≤ , <, ≥ , > .

  4. Set-making operations: Union We have three operations on sets that result in new sets. The union of two sets is the set of elements that are in either set. { 1 , 2 , 3 } ∪ { 2 , 3 , 4 } { 1 , 2 , 3 , 4 } = A ∪ B = { x | x ∈ A or x ∈ B } { 1 , 2 } ∪ { 3 , 4 } { 1 , 2 , 3 , 4 } = { 1 , 2 } ∪ { 1 , 2 , 3 } = { 1 , 2 , 3 } A B

  5. Set-making operations: Intersection The intersection of two sets is the set of elements that are in both sets. { 1 , 2 , 3 } ∩ { 2 , 3 , 4 } { 2 , 3 } = A ∩ B = { x | x ∈ A and x ∈ B } { 1 , 2 } ∩ { 3 , 4 } ∅ = { 1 , 2 } ∩ { 1 , 2 , 3 } = { 1 , 2 } A B

  6. Set-making operations: Difference The difference of two sets is the set of elements that are in the first set but not in the second . { 1 , 2 , 3 } − { 2 , 3 , 4 } { 1 } = A − B = { x | x ∈ A and x / ∈ B } { 1 , 2 } − { 3 , 4 } { 1 , 2 } = { 1 , 2 } − { 1 , 2 , 3 } = ∅ A B

  7. Set-making operations: All together Union { 1 , 2 , 3 } ∪ { 2 , 3 , 4 } = { 1 , 2 , 3 , 4 } The set of elements that A ∪ B = { x | x ∈ A or x ∈ B } { 1 , 2 } ∪ { 3 , 4 } = { 1 , 2 , 3 , 4 } are in either set. { 1 , 2 } ∪ { 1 , 2 , 3 } = { 1 , 2 , 3 } A B Intersection { 1 , 2 , 3 } ∩ { 2 , 3 , 4 } = { 2 , 3 } The set of elements that A ∩ B = { x | x ∈ A and x ∈ B } { 1 , 2 } ∩ { 3 , 4 } = ∅ are in both sets. { 1 , 2 } ∩ { 1 , 2 , 3 } = { 1 , 2 } A B Difference { 1 , 2 , 3 } − { 2 , 3 , 4 } = { 1 } The set of elements that A − B = { x | x ∈ A and x / ∈ B } { 1 , 2 } − { 3 , 4 } = { 1 , 2 } are in the first set but { 1 , 2 } − { 1 , 2 , 3 } = ∅ not in the second . A B

  8. Set complement The universal set , U , is the set of all elements under discussion. This allows us to define the complement of a set, the set of everything not in given set: X = { x ∈ U | x / ∈ X } U X X Complement is the analogue of negation (that is, the negative sign) in arithmetic. They are both unary operators, which means they take only one parameter.

  9. Combining set operations Set operations can be arbitrarily combined. U Y X Z X − ( Y ∪ Z ).

  10. Observations about set operations Let A = { 1 , 2 , 3 } , B = { 3 , 4 , 5 } , and C = { 5 , 6 , 7 } . A ∪ ( B ∩ C ) { 1 , 2 , 3 } ∪ ( { 3 , 4 , 5 } ∩ { 5 , 6 , 7 } ) = = { 1 , 2 , 3 } ∪ { 5 } { 1 , 2 , 3 , 5 } = and ( A ∪ B ) ∩ ( A ∪ C ) ( { 1 , 2 , 3 } ∪ { 3 , 4 , 5 } ) ∩ ( { 1 , 2 , 3 } ∪ { 5 , 6 , 7 } ) = = { 1 , 2 , 3 , 4 , 5 } ∩ { 1 , 2 , 3 , 5 , 6 , 7 } = { 1 , 2 , 3 , 5 } In other words, for these sets A , B , and C , A ∪ ( B ∩ C ) = ( A ∪ B ) ∩ ( A ∪ C )

  11. Hypotheses about set operations We suspect that for any three sets A , B , and C , A ∪ ( B ∩ C ) = ( A ∪ B ) ∩ ( A ∪ C ) This would be a distributive law , analogous to the distributive law of arithmetic you learned in grade school: x · ( y + z ) = x · y + x · z A ∩ ( B ∪ C ) = ( A ∩ B ) ∪ ( A ∩ C ) is also true. . . see Exercise 1.5.4.

  12. Facts about set operations A large part of this course is about proving facts about sets formally. Before we get to writing proofs, we can verify facts like this informally using Venn diagrams. Start with a blank template. B A C

  13. Verifying facts about sets and B ∩ C with . The overlap A ∩ ( B ∩ C ) Shade A with has the darkest tint , B A C

  14. Verifying facts about sets Separately, superimpose A ∪ B shaded and A ∪ C shaded . B B A A C C To get B � � � � A C The overlap ( A ∩ B ) ∪ ( A ∩ C ) is shaded

  15. Verifying facts about sets Put together, we see that anything shaded on the left matches the darkly (or double ) shaded on the right. B B � � � � C A A C A ∩ ( B ∪ C ) ( A ∩ B ) ∪ ( A ∩ C ) (Any shade) (Double shade)

  16. Verifying facts about sets Another example: A ∪ B = A − B Intuition: Alvin, Beverley, Camus, Daisy, Eddie, and Gladys are cattle. Let A be the set of cows. A = { Beverley , Daisy , Gladys } . Let B = { Alvin , Beverley , Camus , Gladys } be the spotted ones. Bulls or spotted: A ∪ B = { Beverley , Daisy , Gladys } ∪ { Alvin , Beverley , Camus , Gladys } = { Alvin , Camus , Eddie } ∪ { Alvin , Beverley , Camus , Gladys } = { Alvin , Beverley , Camus , Eddie , Gladys } = { Daisy } { Beverley , Daisy , Gladys } − { Alvin , Beverley , Camus , Gladys } = = A − B : All but spotted cows

  17. Verifying facts about sets Visually: U A B Original U U A B A B A A − B U A B B U U A B A B A ∪ B any shade A − B

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend