Please enable JavaScript.
Coggle requires JavaScript to display documents.
Relations - Coggle Diagram
Relations
Operations
Domain: dom(R)
R: S <-> T
The Domain R is the set containing all elements of S that are related (via R) with some element of T
-
-
-
Range: ran(R)
R: S <-> T
The range of R is the set containing all elements of T that are related (via R) eith some element in S
-
Relational Image: R[U]
R: S <-> T
Ex: Owns[{cris, elizabeth}]
It shows all cameras belonging to Cris and Elizabeth
The relational image of R on U is the set containing all elements of T that are related (via R) with some element of U
-
-
Relational Inverse: R~
R: S <-> T
Ex: Owns~
Shows all relations between cameras and photographers, with the cameras being the first element in the relation
The relational inverse of R is the set containing all pairs (y,x) such that (x,y) belongs to R
S * T = {(x,y) | x:S & y:T}
-