Relationβ βAβ βBβ βR\textbf{Relation} \; A \; B \; RRelationABR
Relationβ βAβ βBβ βS\textbf{Relation} \; A \; B \; SRelationABS
β(xβA:β(yβB:R.x.y:S.x.y))\forall (x \in A : \forall (y \in B : R.x.y : S.x.y))β(xβA:β(yβB:R.x.y:S.x.y))
Notation.
Includesβ βAβ βBβ βRβ βS\textbf{Includes} \; A \; B \; R \; SIncludesABRS can be abbreviated by Includesβ βRβ βS\textbf{Includes} \; R \; SIncludesRSwhen AAA and BBB are clear from the context.
Includesβ βRβ βS\textbf{Includes} \; R \; SIncludesRS can be written RβSR \subseteq SRβS.
pred Includes(A,B: set univ, R,S: univ->univ) { Relation[A,B,R] Relation[A,B,S] R in S }
Includesβ βAβ βBβ βSβ βR\textbf{Includes} \; A \; B \; S \; RIncludesABSR
Withinβ βAβ βBβ βRβ βS\textbf{Within} \; A \; B \; R \; SWithinABRS can be abbreviated by Withinβ βRβ βS\textbf{Within} \; R \; SWithinRSwhen AAA and BBB are clear from the context.
Withinβ βRβ βS\textbf{Within} \; R \; SWithinRS can be written RβSR \supseteq SRβS.
pred Within(A,B: set univ, R,S: univ->univ) { Includes[A,B,S,R] }
Last updated 1 year ago