Hello I am having difficulties with this question: Use connectivity relation to find the transitive closure of relation $R = \{(a, e),(b, a),(b, d),(c, d),(d, a),(d, c),(e, a),(e, b),(e, c),(e, e)\}$ on $\{a, b, c, d, e\}$.
If how you do this question is finding $R^2$ and $R^3$, I know how to do that. But i'm not sure if that is what this question is asking. If anyone can help that would be great! Thank you
I suspect that "Using the connectivity relation" to find the transitive closure is the following algorithm. Start with $T=\emptyset$ as a beggining of the transitive closure
Note that after we have done up to step 5. for $a$ T will consist of $\{(a,a),(a,b),(a,c),(a,d),(a,e)\}$
This method is essentially to write the graph which R forms, and see which elements you may reach from each node, and add these edges to the graph, why you may call it the connectivity relation.