I'm encountering questions where I'm required to find a transitive closure (and the questions seem to suggest that there is only one), but I probably don't understand something in the definition, because I don't see why is it required that there be only one minimal transitive relation which is a superset of the one I'm asked to find a closure for. Consider this example: $A=\{1, 2, 3, 4\}$. $M$ is the set of all relations over $A$, then, for example, let some particular relation in $M$ be $R=\{(1,1)\}$. I can complete it to a transitive relation by either $R^{+}=\{(1, 1), (2, 3), (4, 3)\}$ or it could be $R^{+}=\{(1, 1), (2, 3), (4, 2)\}$. In other words, I could complete $R$ in such a way that there is never a situation when there are enough members to build a triple needed for transitivity.
Am I wrong thinking that $R^{+}$ will be a transitive closure? All examples I found so far assume that $R$ already connects all elements of its domain. Is it a requirement?
The transitive closure of a binary relation $R$ is the intersection of all transitive binary relations that extend $R$.
To say that $S$ extends $R$ means that for all $x,y$ in the domain, if $aRb$ and $aSb$.
The intersection $T$ of a set of binary relations is defined by saying that for all $x,y$ in the domain, $xTy$ if and only if for every binary relation $S$ in the given set of binary relations we have $xSy$.
So here's an exercise:
That tells you that it's the unique minimal one.