I am working on a question to find the transitive closure of $$R = \{(2,1), (2,2),(2,3),(3,1),(4,5),(5,4)\}$$
I began with the first ordered pair of $R$ to see if there are any element that needed to be added to make $R$ transitive. I worked my way through and came up with the answer.
$$R^*={(2,1), (2,2),(2,3),(3,1),(4,5),(5,4),(4,4)}$$
I only added one ordered pair and somehow feel I have come up with the wrong answer. Could someone possibly shed some light on this for me and tell me whether or not I am right?
Transitive means $$(a,b)\text { and } (b,c)\implies (a,c) $$
you have $(5,4) $ and $(4,5) $ so, you must add $(5,5) $ .