Presentation is loading. Please wait.

Presentation is loading. Please wait.

Sets 1.

Similar presentations


Presentation on theme: "Sets 1."— Presentation transcript:

1 Sets 1

2 Sets Informally: A set is a collection of (mathematical) objects,
with the collection treated as a single mathematical object. Examples: real numbers,  complex numbers, C integers,  All students in our class

3 Defining Sets Sets can be defined directly: e.g. {1,2,4,8,16,32,…},
{CSC1130,CSC2110,…} Order, number of occurence are not important. e.g. {A,B,C} = {C,B,A} = {A,A,B,C,B} A set can be an element of another set. {1,{2},{3,{4}}}

4 Defining Sets by Predicates
The set of elements, x, in A such that P(x) is true. The set of prime numbers:

5 Commonly Used Sets N = {0, 1, 2, 3, …}, the set of natural numbers
Z = {…, -2, -1, 0, 1, 2, …}, the set of integers Z+ = {1, 2, 3, …}, the set of positive integers Q = {p/q | p Z, q Z, and q ≠ 0}, the set of rational numbers R, the set of real numbers

6 Special Sets Empty Set (null set): a set that has no elements, denoted by ф or {}. Example: The set of all positive integers that are greater than their squares is an empty set. Singleton set: a set with one element Compare: ф and {ф} Ф: an empty set. Think of this as an empty folder {ф}: a set with one element. The element is an empty set. Think of this as an folder with an empty folder in it.

7 Venn Diagrams Represent sets graphically
The universal set U, which contains all the objects under consideration, is represented by a rectangle. The set varies depending on which objects are of interest. Inside the rectangle, circles or other geometrical figures are used to represent sets. Sometimes points are used to represent the particular elements of the set. U a u V e o i 7

8 Membership {7, “Albert”, /2, T} x is an element of A x is in A
Examples: /2  {7, “Albert”,/2, T} /3  {7, “Albert”,/2, T} 14/2  {7, “Albert”,/2, T} 7  2/3  

9 Containment A is a subset of B A is contained in B
Every element of A is also an element of B. Examples: R, {3}{5,7,3}   every set, A  A A is a proper subset of B

10 Set Equivalence Example: Are sets {1, 3, 5} and {3, 5,1} equal?
Two sets are equal if and only if they have the same elements. That is, if A and B are sets, then A and B are equal if and only if We write A = B if A and B are equal sets. Example: Are sets {1, 3, 5} and {3, 5,1} equal? Are sets {1, 3, 3, 3, 5, 5, 5, 5} and {1, 3, 5} equal?

11 Basic Operations on Sets
union:

12 Basic Operations on Sets
intersection:

13 Basic Operations on Sets
difference:

14 Basic Operations on Sets
complement:

15 Cardinality Let S be a set. If there are exactly n distinct elements in S where n is a nonnegative integer, we say that S is a finite set and that n is the cardinality of S. The cardinality of S is denoted by |S|. Example: Let A be the set of odd positive integers less than 10. Then |A| = 5. Let S be the set of letters in the English alphabet. Then |A| = 26. Null set has no elements, | ф | = 0. 15

16 Example: The set of positive integers is infinite.
Infinite Sets A set is said to be infinite if it is not finite. Example: The set of positive integers is infinite. 16

17 Cardinality Finding the cardinality of |A U B|:
|A U B| = |A| + |B| - |A ∩ B | Example: A = {1,3,5,7,9}, B = {5,7,9,11} = – 3 = 6 17

18 Partitions of Sets Two sets are disjoint if their intersection is empty. A collection of nonempty sets {A1, A2, …, An} is a partition of a set A if and only if A1, A2, …, An are mutually disjoint.

19 Power Sets power set:

20 Cartesian Products Sets are unordered, a different structure is needed to represent an ordered collections – ordered n-tuples. Two ordered n-tuples are equal if and only if each corresponding pair of their elements is equal. (a1, a2,…, an) = (b1, b2,…, bn) if and only if ai = bi for i = 1, 2, …, n The ordered n-tuple (a1, a2,…, an) is the ordered collection that has a1 as its first element, a2 as its second element, …, and an as its nth element. 20

21 Cartesian Products Let A and B be sets. The Cartesian product of A and B, denoted by A × B, is the set of all ordered pairs (a, b), where a A and b B. Hence, A × B = {(a,b)| a A Λ b B}. Example: What is the Cartesian product of A = {1,2} and B = {a,b,c}? Solution: A × B = {(1,a), (1,b), (1,c), (2,a), (2,b), (2,c)} Cartesian product of A × B and B × A are not equal, unless A = ф or B = ф (so that A × B = ф ) or A = B. B × A = {(a,1),(a,2),(b,1),(b,2),(c,1),(c,2)} 21

22 Cartesian products The Cartesian product of sets A1, A2, …, An, denoted by A1 × A2 × … × An is the set of ordered n-tuples (a1, a2, …, an), where ai belongs to Ai for i = 1,2, …, n. In other words, A1 × A2 × … × An = {(a1, a2, …, an) | ai Ai for i = 1,2, …, n}. Example: What is the Cartesian product of A × B × C where A= {0,1}, B = {1,2}, and C = {0,1,2}? Solution: A × B × C= {(0,1,0), (0,1,1), (0,1,2), (0,2,0), (0,2,1), (0,2,2), (1,1,0), (1,1,1), (1,1,2), (1,2,0), (1,2,1), (1,2,2)} 22

23 Set Identities Distributive Law:

24 Set Identities De Morgan’s Law:

25 Proving Set Identities

26 Proving Set Identities

27 Computer Representation of Sets
Represent a subset A of U with the bit string of length n, where the ith bit in the string is 1 if ai belongs to A and is 0 if ai does not belong to A. Example: Let U = {1,2,3,4,5,6,7,8,9,10}, and the ordering of elements of U has the elements in increasing order; that is ai = i. What bit string represents the subset of all odd integers in U? Solution: What bit string represents the subset of all even integers in U? Solution: What bit string represents the subset of all integers not exceeding 5 in U? Solution: What bit string represents the complement of the set {1,3,5,7,9}? Solution: 27

28 Logic and Bit Operations
Computers represent information using bits. A bit is a symbol with two possible values, 0 and 1. By convention, 1 represents T (true) and 0 represents F (false). A variable is called a Boolean variable if its value is either true or false. Bit operation – replace true by 1 and false by 0 in logical operations. Table for the Bit Operators OR, AND, and XOR. x y x ν y x Λ y x y 1 28

29 Logic and Bit Operations
DEFINITION 7 A bit string is a sequence of zero or more bits. The length of this string is the number of bits in the string. Example: Find the bitwise OR, bitwise AND, and bitwise XOR of the bit string and Solution: bitwise OR bitwise AND bitwise XOR 29

30 Set Operations The bit string for the union is the bitwise OR of the bit string for the two sets. The bit string for the intersection is the bitwise AND of the bit strings for the two sets. Example: The bit strings for the sets {1,2,3,4,5} and {1,3,5,7,9} are and , respectively. Use bit strings to find the union and intersection of these sets. Solution: Union: V = , {1,2,3,4,5,7,9} Intersection: Λ = , {1,3,5} 30

31 Russell’s Paradox so There is a male barber who shaves all those men, and only those men, who do not shave themselves. Does the barber shave himself?


Download ppt "Sets 1."

Similar presentations


Ads by Google