This symbol is a boolean function of two arguments, S and R.
The first argument should be a set. When applied to S and R, the function
returns true if and only if the second argument is a subset of the Cartesian
product of S with itself.
Commented Mathematical property (CMP):
R a subset of S x S if and only if is_relation (S,R).
This symbol represents a binary function whose first argument is a set S,
whose second argument is a relation R on S.
When applied to S and R, it represents the smallest equivalence relation
(with respect to inclusion) on S containing R.
This symbol represents a binary function whose first argument is a set S,
whose second argument is a relation R on S.
When applied to S and R, it represents the smallest transitive relation
(with respect to inclusion) on S containing R.
This symbol represents a binary function whose first argument is a set S,
whose second argument is a relation R on S.
When applied to S and R, it represents the smallest reflexive relation
(with respect to inclusion) on S containing R.
This symbol represents a binary function whose first argument is a set S,
whose second argument is a relation R on S.
When applied to S and R, it represents the smallest symmetric relation
(with respect to inclusion) on S containing R.
logic1.equivalent(relation3.is_symmetric($S, $R), relation3.is_relation($S, $R) and relation3.is_symmetric($S, $R) and relation3.is_reflexive($S, $R) and relation3.is_transitive($S, $R))
This symbol represents a ternary function whose first argument is a set S,
whose second argument is a relation R on S, and whose third argument is an
element a of S.
When applied to S, R, and a, it represents the set of all elements in S
related to a by R, that is, the set {b in S | (a,b) in R}.
This symbol represents a binary function whose first argument is a set S,
whose second argument is a relation R on S.
When applied to S and R, it represents the set of all elements in S
of the form class(S,R,a) for a in S.
Commented Mathematical property (CMP):
The classes of an equivalence relation R on S partition S.