1,289 views
3 votes
3 votes

Given the directed graphs representing two relations, how can the directed graph of the union, intersection, symmetric difference, difference, and composition of these relations be found?

As, we can easily find, union, intersection, difference and symmetric difference. But how we can find composition of directed graph.

There is a ref:- https://math.stackexchange.com/questions/239897/draw-the-composition-of-directed-graphs

But not explained clearly.

1 Answer

Best answer
1 votes
1 votes

Given R and S relations , the composition R o S is defined as :

R o S  =   { (x,z)  |  (x,y)  ∈  S  and  (y,z)  ∈  R }

 So for the two directed graphs , we can write equivalent R and S relations whose pairs are the edges in R and S respectively..Having written the R and S relations , we can do the composition R o S as mentioned above and obtain the resultant graph.

This way composition of graphs is done.

selected by

Related questions

2 votes
2 votes
0 answers
1
charul asked Aug 17, 2017
471 views
how to calculate number of directed graphs possible having n vertices?
19 votes
19 votes
2 answers
3
shree asked Oct 24, 2014
26,579 views
On a set of n elements, how many relations are there that are both irreflexive and antisymmetric?Please explain how to calculate .
0 votes
0 votes
0 answers
4
Markzuck asked Jan 10, 2019
3,287 views
How to take composition of a Relation? here used concept of function but when to go with the transitivity rule concept as mentioned below?Please clarify in general when t...