2 Sets and functions

2.1 Introduction to set theory

2.1.1 Definition of a set

A set is a collection of (mathematical) objects. There is an entire field of mathematics called set theory dedicated to the study of sets and to their use as a foundation for mathematics, but in MATH0005 we are going to give only an informal introduction to sets and their properties. If you want to know more, see the further reading section at the end of this chapter.

2.1.2 Set builder notation

We specify sets using logical notation: if P(x) is a property that is true or false for each thing x, then

{x:P(x)}

is the collection of all x such that P(x) is true. 11 1 You have to be slightly careful with this kind of unrestricted comprehension because it can lead to contradictions. You can ignore this for the purposes of MATH0005, but if you want to know more then check out the Further Reading section at the end. For example, if P(x) is the property that x is an even integer then {x:P(x)} is the set consisting of all the even integers ,4,2,0,2,4,

Sometimes we already have a set X and a property P(x) that is true or false for each x in X. For example, X might be the set of all real numbers, and P(x) the property x>0. We write

{xX:P(x)} (2.1)

for the set of all things x in X such that P(x) is true. In the example, this set would be the set of all strictly positive real numbers, sometimes written (0,) in interval notation. The symbol means ‘is an element of.’

These two ways of specifying a set are called set builder notation.

2.1.3 Listing the elements of a set

Sometimes we want to specify a set simply by listing its elements one by one. For example, the set whose elements are 1, 2, and 3 is written {1,2,3}, which is a short way of writing for the set builder notation

{x:(x=1)(x=2)(x=3)}.

2.1.4 Elements of a set

The things in a set are called its elements or members. We write aX to mean that a is an element or member of the set X, and aX to mean that a is not an element or member of X.

There is a unique set with no elements, called the empty set and written . No matter what a is, a.

We allow any kind of mathematical object, including sets themselves, as elements of sets. Sets can contain functions, matrices, vectors, numbers, and sets themselves.

Example 2.1.1.
{,1,{2},{{3}}}

is a set whose four elements are the empty set, the number 1, the set containing the number 2, and the set containing the set containing 3.

Example 2.1.2.

Let X={1,2,{3}}. Then 1X, 0X, 3X, {3}X.

2.1.5 Set equality

Two sets X and Y are defined to be equal if for all things a we have aX if and only if aY — that is, if and only if they have the same elements. It’s helpful to write this in terms of logical equivalence: the two sets

X={x:P(x)},Y={x:Q(x)}

are equal if and only if P(x) and Q(x) have the same truth value for every x. This definition of set equality has some important consequences. First, if

X={1,2},Y={2,1}

then X=Y because these are shorthand for

X={x:(x=1)(x=2)},Y={x:(x=2)(x=1)}

and for any propositional variables p and q, the WFFs pq and qp are logically equivalent. The order in which we list the elements of a set doesn’t matter. Similarly, if

X={1,1},Y={1}

then X=Y, because the two definitions above are shorthand for

X={x:(x=1)(x=1)},Y={x:x=1}

and the two formulas pp and p are logically equivalent. Repetition doesn’t matter.

2.1.6 Subsets

We need vocabulary for talking about one set being contained in another.

Definition 2.1.1.
  • X is a subset of Y, written XY, if and only if every element of X is also an element of Y.

  • If X is not a subset of Y we write XY.

  • X is a proper subset of Y, written XY, if and only if XY but XY.

Thus X being a proper subset of Y means that X is a subset of Y and Y contains something that X does not contain.

There is an important way to rephrase the definition of two sets being equal: X=Y if and only if XY and YX. This is sometimes useful as a proof technique, as you can split a proof of X=Y into first checking XY and then checking YX.

Example 2.1.3.
  • {0}{0,1}

  • {0}{0,1}

  • {0,1}{1,2}

  • {1,2,1}={2,1}

Why is the last equality true? The only things which are elements of {1,2,1} are 1 and 2. The only things which are elements of {1,2} are 1 and 2. So the two sets are equal according to our definition. There’s no concept of something being an element of a set “more than once.”

This is the way in which our definition of set equality captures the idea of sets being unordered collections of objects which disregard repetition.

The definition of subset means that the empty set is a subset of any set. X for any set X, because x:xxX is vacuously true: there’s nothing in which could fail to be in the set X in order to make X false.