Processing math: 100%

Sets

A set is an unordered collection of objects.

The objects in a set are called the set's elements or members. They are usually listed inside braces. We write xA if x is an element (member) of a set A.

{1,2,3} is a set with 3 elements. It is the same as the set {1,3,2} (order does not matter) and the set {1,1,2,3,3,3,3} (repetition does not matter). Typically, all objects are the same (for example, numbers), but they do not have to be: {1,3,red,blue,John} is a set.

Ellipses are used when a pattern is clear: {1,2,3,4,,50} is the set of all integers from 1 to 50, inclusive.

Some sets we use a lot:

It is possible to have a set with no elements: {}. This is the empty set and is usually denoted . This is not the same as {}, which is a set with one element (that happens to be a (empty) set).

The number of distinct elements in a set S is called its cardinality and is denoted |S|. If |S| is infinite (for example, Z), we say the set is infinite.

One common way to define a set is set builder notation. Here are two examples:

Set Operations

Several operations can be performed on sets.

Subsets

A set A is a subset of a set B if every element of A is an element of B. We write AB. Another way of saying this is that AB if and only if x(xAxB).

For any set S, we have:

If AB and AB, then we say A is a proper subset of B and write AB.

Power Sets

The power set of a set A is the set of all subsets of A, denoted P(A). For example, if A={1,2,3}, then P(A)={,{1},{2},{3},{1,2},{2,3},{1,3},{1,2,3}}

Notice that |P(A)|=2|A|.

Set Equality

Two sets are equal if they contain the same elements. One way to show that two sets A and B are equal is to show that AB and BA:

ABBAx((xAxB)(xBxA))x(xAxB)A=B

Note: it is not enough to simply check if the sets have the same size! They must have exactly the same elements. Remember, though, that order and repetition do not matter.