relations
play

Relations Definition Given sets A and B , R A B is a binary - PowerPoint PPT Presentation

Relations 1 Myrto Arapinis School of Informatics University of Edinburgh September 25, 2014 1 Slides mainly borrowed from Richard Mayr 1 / 18 Relations Definition Given sets A and B , R A B is a binary relation from A to B , denoted R


  1. Relations 1 Myrto Arapinis School of Informatics University of Edinburgh September 25, 2014 1 Slides mainly borrowed from Richard Mayr 1 / 18

  2. Relations Definition Given sets A and B , R ⊆ A × B is a binary relation from A to B , denoted R : A → B • R is a set of ordered pairs, i.e. R ∈ P ( A × B ) • A is called the domain of R • B is called the codomain of R • We write aRb whenever ( a , b ) ∈ R • If B = A , R is called a relation on A 2 / 18

  3. Relations Definition Given sets A and B , R ⊆ A × B is a binary relation from A to B , denoted R : A → B • R is a set of ordered pairs, i.e. R ∈ P ( A × B ) • A is called the domain of R • B is called the codomain of R • We write aRb whenever ( a , b ) ∈ R • If B = A , R is called a relation on A Definition Given sets A 1 , . . . , A n ,a subset R ⊆ A 1 × · · · × A n is an n -ary relation 2 / 18

  4. Informal examples • Computation • Typing • Program equivalence • Networks • Databases 3 / 18

  5. Examples Empty relation - • ∅ : A → B • ∀ a ∈ A . ∀ b ∈ B . ¬ ( a ∅ b ) 4 / 18

  6. Examples Empty relation - • ∅ : A → B • ∀ a ∈ A . ∀ b ∈ B . ¬ ( a ∅ b ) Full relation - • A × B : A → B • ∀ a ∈ A . ∀ b ∈ B . a ( A × B ) b 4 / 18

  7. Examples Empty relation - • ∅ : A → B • ∀ a ∈ A . ∀ b ∈ B . ¬ ( a ∅ b ) Full relation - • A × B : A → B • ∀ a ∈ A . ∀ b ∈ B . a ( A × B ) b Identity relation - • I A : A → A • I A = { ( a , a ) | a ∈ A } • ∀ a 1 , a 2 ∈ A . (( a 1 I A a 2 ) ↔ ( a 1 = a 2 )) 4 / 18

  8. Examples Empty relation - • ∅ : A → B • ∀ a ∈ A . ∀ b ∈ B . ¬ ( a ∅ b ) Full relation - • A × B : A → B • ∀ a ∈ A . ∀ b ∈ B . a ( A × B ) b Identity relation - • I A : A → A • I A = { ( a , a ) | a ∈ A } • ∀ a 1 , a 2 ∈ A . (( a 1 I A a 2 ) ↔ ( a 1 = a 2 )) Divides relation - • | : Z + → Z + • | = { ( n , m ) | ∃ k ∈ Z + . m = kn } • ∀ n , m ∈ Z + . (( n | m ) ↔ ( ∃ k ∈ Z + . m = kn )) 4 / 18

  9. Properties of binary relations A binary relation R : A → A is called • reflexive iff ∀ x ∈ A . ( x , x ) ∈ R Examples ≤ , =, and | are reflexive, but < is not 5 / 18

  10. Properties of binary relations A binary relation R : A → A is called • reflexive iff ∀ x ∈ A . ( x , x ) ∈ R Examples ≤ , =, and | are reflexive, but < is not • symmetric iff ∀ x , y ∈ A . (( x , y ) ∈ R → ( y , x ) ∈ R ) Examples = is symmetric, but ≤ , < , and | are not 5 / 18

  11. Properties of binary relations A binary relation R : A → A is called • reflexive iff ∀ x ∈ A . ( x , x ) ∈ R Examples ≤ , =, and | are reflexive, but < is not • symmetric iff ∀ x , y ∈ A . (( x , y ) ∈ R → ( y , x ) ∈ R ) Examples = is symmetric, but ≤ , < , and | are not • antisymmetric iff ∀ x , y ∈ A . ((( x , y ) ∈ R ∧ ( y , x ) ∈ R ) → x = y ) Examples ≤ , =, < , and | are antisymmetric 5 / 18

  12. Properties of binary relations A binary relation R : A → A is called • reflexive iff ∀ x ∈ A . ( x , x ) ∈ R Examples ≤ , =, and | are reflexive, but < is not • symmetric iff ∀ x , y ∈ A . (( x , y ) ∈ R → ( y , x ) ∈ R ) Examples = is symmetric, but ≤ , < , and | are not • antisymmetric iff ∀ x , y ∈ A . ((( x , y ) ∈ R ∧ ( y , x ) ∈ R ) → x = y ) Examples ≤ , =, < , and | are antisymmetric • transitive iff ∀ x , y , z ∈ A . ((( x , y ) ∈ R ∧ ( y , z ) ∈ R ) → ( x , z ) ∈ R ) Examples ≤ , =, < , and | are transitive 5 / 18

  13. Combining relations Since relations are sets, they can be combined with normal set operations, e.g. < ∪ = is equal to ≤ , and ≤ ∩ ≥ is equal to =. Moreover, relations can be composed. Definition Let R 1 : A → B and R 2 : B → C .Then R 1 is composable with R 2 . The composition is defined by def R 1 ◦ R 2 = { ( x , z ) ∈ A × C | ∃ y ∈ B . (( x , y ) ∈ R 1 ∧ ( y , z ) ∈ R 2 ) } 6 / 18

  14. Combining relations Since relations are sets, they can be combined with normal set operations, e.g. < ∪ = is equal to ≤ , and ≤ ∩ ≥ is equal to =. Moreover, relations can be composed. Definition Let R 1 : A → B and R 2 : B → C .Then R 1 is composable with R 2 . The composition is defined by def R 1 ◦ R 2 = { ( x , z ) ∈ A × C | ∃ y ∈ B . (( x , y ) ∈ R 1 ∧ ( y , z ) ∈ R 2 ) } Example If A = B = C = Z , then > ◦ > = 6 / 18

  15. Combining relations Since relations are sets, they can be combined with normal set operations, e.g. < ∪ = is equal to ≤ , and ≤ ∩ ≥ is equal to =. Moreover, relations can be composed. Definition Let R 1 : A → B and R 2 : B → C .Then R 1 is composable with R 2 . The composition is defined by def R 1 ◦ R 2 = { ( x , z ) ∈ A × C | ∃ y ∈ B . (( x , y ) ∈ R 1 ∧ ( y , z ) ∈ R 2 ) } Example If A = B = C = Z , then > ◦ > = { ( x , y ) ∈ Z × Z | x ≥ y + 2 } 6 / 18

  16. Combining relations Since relations are sets, they can be combined with normal set operations, e.g. < ∪ = is equal to ≤ , and ≤ ∩ ≥ is equal to =. Moreover, relations can be composed. Definition Let R 1 : A → B and R 2 : B → C .Then R 1 is composable with R 2 . The composition is defined by def R 1 ◦ R 2 = { ( x , z ) ∈ A × C | ∃ y ∈ B . (( x , y ) ∈ R 1 ∧ ( y , z ) ∈ R 2 ) } Example If A = B = C = Z , then > ◦ > = { ( x , y ) ∈ Z × Z | x ≥ y + 2 } Example If A = B = C = R , then > ◦ > = 6 / 18

  17. Combining relations Since relations are sets, they can be combined with normal set operations, e.g. < ∪ = is equal to ≤ , and ≤ ∩ ≥ is equal to =. Moreover, relations can be composed. Definition Let R 1 : A → B and R 2 : B → C .Then R 1 is composable with R 2 . The composition is defined by def R 1 ◦ R 2 = { ( x , z ) ∈ A × C | ∃ y ∈ B . (( x , y ) ∈ R 1 ∧ ( y , z ) ∈ R 2 ) } Example If A = B = C = Z , then > ◦ > = { ( x , y ) ∈ Z × Z | x ≥ y + 2 } Example If A = B = C = R , then > ◦ > = > 6 / 18

  18. Theorem Relational composition is associative and has the identity relation as neutral element • Associativity - (proof on the board) ∀ R : A → B , S : B → C , T : C → D , ( T ◦ S ) ◦ R = T ◦ ( S ◦ R ) • Neutral element - (proof on the board) ∀ R : A → B , R ◦ I A = R = I B ◦ R 7 / 18

  19. Theorem Relational composition is associative and has the identity relation as neutral element • Associativity - (proof on the board) ∀ R : A → B , S : B → C , T : C → D , ( T ◦ S ) ◦ R = T ◦ ( S ◦ R ) • Neutral element - (proof on the board) ∀ R : A → B , R ◦ I A = R = I B ◦ R Corollary For every set A , the structure ( P ( A × A ) , I A , ◦ ) is a monoid 7 / 18

  20. Powers of a relation Definition Given a relation R ⊆ A × A on A , its powers are defined inductively by Base step: R 0 = I A Induction step: R n +1 = R n ◦ R 8 / 18

  21. Powers of a relation Definition Given a relation R ⊆ A × A on A , its powers are defined inductively by Base step: R 0 = I A Induction step: R n +1 = R n ◦ R If R is a transitive relation, then its powers are contained in R itself. Moreover, the reverse implication also holds. Theorem A relation R on a set A is transitive iff R n ⊆ R for all n = 1 , 2 , . . . 8 / 18

  22. Equivalence relations Definition A relation R on a set A is called an equivalence relation iff it is reflexive, symmetric and transitive 9 / 18

  23. Equivalence relations Definition A relation R on a set A is called an equivalence relation iff it is reflexive, symmetric and transitive Example Let Σ ∗ be the set of strings over alphabet Σ. Let R ⊆ Σ ∗ × Σ ∗ be a relation on strings defined as follows R = { ( s , t ) ∈ Σ ∗ × Σ ∗ | | s | = | t |} . R is an equivalence relation (proof on the board) 9 / 18

  24. Equivalence relations Definition A relation R on a set A is called an equivalence relation iff it is reflexive, symmetric and transitive Example Let Σ ∗ be the set of strings over alphabet Σ. Let R ⊆ Σ ∗ × Σ ∗ be a relation on strings defined as follows R = { ( s , t ) ∈ Σ ∗ × Σ ∗ | | s | = | t |} . R is an equivalence relation (proof on the board) Example Let R = { ( n , m ) ∈ Z + × Z + | n | m } . R is not an equivalence relation (proof on the board) 9 / 18

  25. Congruence modulo m Let m > 1 be an integer, and R = { ( a , b ) | a = b (mod m ) } . R is an equivalence on the set of integers 10 / 18

  26. Equivalence classes Definition Let R be an equivalence relation on a set A and a ∈ A . Let [ a ] R = { s | ( a , s ) ∈ R } be the equivalence class of a w.r.t. R , i.e. all elements of A that are R -equivalent to a If b ∈ [ a ] R then b is called a representative of the equivalence class. Every member of the class can be a representative 11 / 18

  27. Theorem Theorem Let R be an equivalence on A and a , b ∈ A . The following three statements are equivalent 1. aRb 2. [ a ] R = [ b ] R 3. [ a ] R ∩ [ b ] R � = ∅ (proof on the board) 12 / 18

  28. Partitions of a set Definition A partition of a set A is a collection of disjoint, nonempty subsets that have A as their union. In other words, the collection of subsets A i ⊆ A with i ∈ I (where I is an index set) forms a partition of A iff 1. A i � = ∅ for all i ∈ I 2. A i ∩ A j = ∅ for all i � = j ∈ I 3. � i ∈ I A i = A 13 / 18

Recommend


More recommend