Complement (set theory)

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

In set theory, a complement of a set A refers to things not in (that is, things outside of) A. The relative complement of A with respect to a set B is the set of elements in B but not in A. When all sets under consideration are considered to be subsets of a given set U, the absolute complement of A is the set of all elements in U but not in A.

Relative complement

If A and B are sets, then the relative complement of A in B,[1] also termed the set-theoretic difference of B and A,[2] is the set of elements in B, but not in A.

The relative complement of A (left circle) in B (right circle): B \cap A^c~~~~=~~~~B \setminus A

The relative complement of A in B is denoted BA according to the ISO 31-11 standard (sometimes written BA, but this notation is ambiguous, as in some contexts it can be interpreted as the set of all ba, where b is taken from B and a from A).

Formally

B \setminus A = \{ x\in B \mid x \notin A \}.

Examples:

The following lists some notable properties of relative complements in relation to the set-theoretic operations of union and intersection.

If A, B, and C are sets, then the following identities hold:

  • C ∖ (A ∩ B)  =  (C ∖ A) ∪ (C ∖ B)
  • C ∖ (A ∪ B)  =  (C ∖ A) ∩ (C ∖ B)
  • C ∖ (B ∖ A)  =  (C ∩ A) ∪ (C ∖ B),
    with the important special case C ∖ (C ∖ A)  =  C ∩ A demonstrating that intersection can be expressed using only the relative complement operation.
  • (B ∖ A) ∩ C  =  (B ∩ C) ∖ A  =  B∩(C ∖ A)
  • (B ∖ A) ∪ C  =  (B ∪ C) ∖ (A ∖ C)
  • A ∖ A  =  ∅
  • ∅ ∖ A  =  ∅
  • A ∖ ∅  =  A

Absolute complement

The absolute complement of A in U: Ac = U \ A

If a universe U is defined, then the relative complement of A in U is called the absolute complement (or simply complement) of A, and is denoted by Ac or sometimes A. The same set often[3] is denoted by \complement_U A or \complement A if U is fixed, that is:

Ac  = U ∖ A.

For example, if the universe is the set of integers, then the complement of the set of odd numbers is the set of even numbers.

The following lists some important properties of absolute complements in relation to the set-theoretic operations of union and intersection.

If A and B are subsets of a universe U, then the following identities hold:

De Morgan's laws:[1]
  • \left(A \cup B \right)^{c}=A^{c} \cap B^{c} .
  • \left(A \cap B \right)^{c}=A^{c} \cup B^{c} .
Complement laws:[1]
  • A \cup A^{c} =U .
  • A \cap A^{c} =\empty .
  • \empty ^{c} =U.
  •  U^{c} =\empty.
  • \text{If }A\subset B\text{, then }B^{c}\subset A^{c}.
    (this follows from the equivalence of a conditional with its contrapositive)
Involution or double complement law:
  • \left(A^{c}\right)^{c}=A.
Relationships between relative and absolute complements:
  • A \setminus B = A \cap B^c.
  • (A \setminus B)^c = A^c \cup B.
Relationship with set difference:
  •  A^c \setminus B^c = B \setminus A.

The first two complement laws above shows that if A is a non-empty, proper subset of U, then {A, Ac} is a partition of U.

Notation

In the LaTeX typesetting language, the command \setminus[4] is usually used for rendering a set difference symbol, which is similar to a backslash symbol. When rendered the \setminus command looks identical to \backslash except that it has a little more space in front and behind the slash, akin to the LaTeX sequence \mathbin{\backslash}. A variant \smallsetminus is available in the amssymb package.

Complements in various programming languages

Some programming languages allow for manipulation of sets as data structures, using these operators or functions to construct the difference of sets a and b:

.NET Framework
a.Except(b);
C++
set_difference(a.begin(), a.end(), b.begin(), b.end(), result.begin());
Clojure
(clojure.set/difference a b)[5]
Common Lisp
set-difference, nset-difference[6]
F#
Set.difference a b[7]

or

a - b[8]
Falcon
diff = a - b[9]
Haskell
difference a b
a \\ b[10]
Java
diff = a.clone();
diff.removeAll(b);[11]
Julia
setdiff[12]
Mathematica
Complement[13]
MATLAB
setdiff[14]
OCaml
Set.S.diff[15]
Octave
setdiff[16]
PARI/GP
setminus[17]
Pascal
SetDifference := a - b;
Perl 5
#for perl version >= 5.10
@a = grep {not $_ ~~ @b} @a;
Perl 6
$A ∖ $B
$A (-) $B # texas version
PHP
array_diff($a, $b);[18]
Prolog
a(X),\+ b(X).
Python
diff = a.difference(b)[19]
diff = a - b[19]
R
setdiff[20]
Racket
(set-subtract a b)[21]
Ruby
diff = a - b[22]
Scala
a.diff(b)[23]

or

a -- b[23]
Smalltalk (Pharo)
a difference: b
SQL
SELECT * FROM A

EXCEPT SELECT * FROM B

Unix shell
comm -23 a b[24]
grep -vf b a # less efficient, but works with small unsorted sets

See also

References

  1. 1.0 1.1 1.2 Halmos (1960) p.17
  2. Devlin (1979) p.6
  3. Bourbaki p. E II.6
  4. [1] The Comprehensive LaTeX Symbol List
  5. [2] clojure.set API reference
  6. Common Lisp HyperSpec, Function set-difference, nset-difference. Accessed on September 8, 2009.
  7. Set.difference<'T> Function (F#). Accessed on July 12, 2015.
  8. Set.( - )<'T> Method (F#). Accessed on July 12, 2015.
  9. Array subtraction, data structures. Accessed on July 28, 2014.
  10. Data.Set (Haskell)
  11. Set (Java 2 Platform SE 5.0). JavaTM 2 Platform Standard Edition 5.0 API Specification, updated in 2004. Accessed on February 13, 2008.
  12. [3]. The Standard Library--Julia Language documentation. Accessed on September 24, 2014
  13. Complement. Mathematica Documentation Center for version 6.0, updated in 2008. Accessed on March 7, 2008.
  14. Setdiff. MATLAB Function Reference for version 7.6, updated in 2008. Accessed on May 19, 2008.
  15. Set.S (OCaml).
  16. [4]. GNU Octave Reference Manual
  17. PARI/GP User's Manual
  18. PHP: array_diff, PHP Manual
  19. 19.0 19.1 [5]. Python v2.7.3 documentation. Accessed on January 17, 2013.
  20. R Reference manual p. 410.
  21. [6]. The Racket Reference. Accessed on May 19, 2015.
  22. Class: Array Ruby Documentation
  23. 23.0 23.1 scala.collection.Set. Scala Standard Library 2.11.7, Accessed on July 12, 2015.
  24. comm(1), Unix Seventh Edition Manual, 1979.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.

External links