Complement

Complementā€…ā€ŠAā€…ā€ŠBā€…ā€ŠR:=āŠ¤A,Bāˆ’R\textbf{Complement} \; A \; B \; R := \top_{A,B} - R

Relationā€…ā€ŠAā€…ā€ŠBā€…ā€ŠR\textbf{Relation} \; A \; B \; R


Notation.

  1. Complementā€…ā€ŠAā€…ā€ŠBā€…ā€ŠR\textbf{Complement} \; A \; B \; R can be written Complementā€…ā€ŠR\textbf{Complement} \; R when AA and BBare clear from the context.

  2. Complementā€…ā€ŠR\textbf{Complement} \; R can be written symbolically as Ā¬R\neg R or Rā€¾\overline{R}.


fun Co(A,B: set univ, R: A->B) : A->B {
  (A->B) - R
}

Last updated