IncludesABRS
RelationABR
RelationABS
ā(xāA:ā(yāB:R.x.y:S.x.y))
Notation.
IncludesABRS can be abbreviated by IncludesRSwhen A and B are clear from the context.
IncludesRS can be written RāS.
pred Includes(A,B: set univ, R,S: univ->univ) {
Relation[A,B,R]
Relation[A,B,S]
R in S
}
WithinABRS
IncludesABSR
Notation.
WithinABRS can be abbreviated by WithinRSwhen A and B are clear from the context.
WithinRS can be written RāS.
pred Within(A,B: set univ, R,S: univ->univ) {
Includes[A,B,S,R]
}