Section 5.1 Introduction to Relations
A relation from set to set is any subset of the Cartesian product indicating that We can ask Sage to decide if is a relation from to First, construct the Cartesian product Then, build the set of all subsets of Finally, ask if is a subset of
Recall the Cartesian product consists of all possible ordered pairs where and Each pair combines an element from set with an element from set
In this example, an element in the set relates to an element in if the element from is twice the element in
xxxxxxxxxx
A = Set([1, 2, 3, 4, 5, 6])
B = Set([1, 2, 7])
β
CP = Set(cartesian_product([A, B]))
S = Subsets(CP)
β
R = Set([(a, b) for a in A for b in B if a==2*b])
β
print("R =", R)
print("Is R a relation from set A to set B?", R in S)
Subsection 5.1.1 Relation Composition
If we have two relations with a set in common, such as from to and from to we can compose them to create a relation between the two non repeated sets, such as from to where the relation is defined as all where there exists an element such that and exist.
We can also use Sage to compose relations.
xxxxxxxxxx
A = Set([1, 2, 3, 4, 5, 6])
B = Set([1, 2, 7])
R = Set([(a, b) for a in A for b in B if a==2*b])
β
C = Set([7,8,9,10])
S = Set([(a,c) for a in A for c in C if a + c == 10])
β
SoR = Set([(r[0], s[1]) for r in R for s in S if r[1] == s[0]])
show(SoR)
Subsection 5.1.2 Relations On a Set
Consider the set Letβs define a relation on such that iff ( divides ). The relation can be represented by the set of ordered pairs where the first element divides the second:
xxxxxxxxxx
A = Set([2, 3, 4, 6, 8])
β
# Define the relation R on A: aRb iff a divides b
R = Set([(a, b) for a in A for b in A if a.divides(b)])
β
show(R)