Sets and Functions: Review
Numbers, sets, and functions form the basis of all the mathematical concepts and techniques we'll require in our study of computer science this year. In this section, we'll review some of the basic terminology and concepts associated with sets and functions that we'll make frequent use of this year. This section is adapted from the Course Notes for CSC165, Mathematical Expression and Reasoning for Computer Science.
Learning Objectives
In this section, you will learn to:
- Define the terms set, function, domain, and codomain
- Recognize common numeric sets: natural numbers, integers, rational numbers, and real numbers
- Apply common operations on sets
- Define properties of functions
- Identify which properties apply to a set of common functions
Reviewing Sets
Definition (set, element, size, empty set). A set is a collection of distinct objects, which we call elements of the set. A set can have a finite number of elements, or infinitely many elements. The size of a finite set A is the number of elements in the set, and is denoted by
|A|. The empty set (the set consisting of zero elements) is denoted by
∅.
Before moving on, let us see some concrete examples of sets. These examples illustrate not just the versatility of what sets can represent, but also illustrate various ways of defining sets.
Example 1. A finite set can be described by explicitly listing all its elements between curly brackets, such as {a,b,c,d} or
{2,4,−10,3000}.
Example 2. A set of records of all people that work for a small company. Each record contains the person’s name, salary, and age. For example:
{(Ava Doe,$70000,53),(Donald Dunn,$67000,30),(Mary Smith,$65000,25),(John Monet,$70000,40)}.
Example 3. Here are some familiar infinite sets of numbers. Note that we use the ellipsis to indicate the continuation of a pattern of numbers.
- The set of natural numbers,
N={0,1,2,…}. By convention in computer science, 0 is a natural number.
- The set of integers,
Z={…,−2,−1,0,1,2,…}.
- The set of positive integers,
Z+={1,2,…}.
- The set of rational numbers,
Q.
- The set of real numbers,
R.
- The set of non-negative real numbers,
R≥0.
Example 4. The set of all finite strings over {0,1}. A finite string over
{0,1}is a finite sequence
b0b1b2…bk−1, where
k is a natural number (called the length of the string) and each of
b0,
b1, etc. is either 0 or 1. For example, the length of the string 10100101 is eight. The string of length 0 is called the empty string, and is typically denoted by the symbol
ϵ.
Note that we have defined this set without explicitly listing all of its elements, but instead by describing exactly what properties its elements have. For example, using our definition, we can say that this set contains the element 01101000, but does not contain the element 012345.
Example 5. A set can also be described as in this example:{x∣x∈N and x≥5}. This is the set of all natural numbers which are greater than or equal to 5. The left part (before the vertical bar
∣) describes the elements in the set in terms of a variable
x, and right part states the condition(s) on this variable that must be satisfied. (Tip: The
∣ can be read as "where".)
As a more complex example, we can define the set of rational numbers as: Q={pq|p,q∈Z and q≠0}.
Operations on sets
We have already seen one set operation: the size operator, |A|. In this subsection, we'll list other common set operations that we will see next year.
The following boolean set operations return either True or False. We only describe when these operations return True; they return False in all other cases.
-
x∈A: returns True when
x is an element of
A;
y∉A returns True when
y is not an element of
A.
-
A⊆B: returns True when every element of
A is also in
B. We say in this case that
A is a subset of
B.
Every set is a subset of itself, and the empty set is a subset of every set:A⊆A and
∅⊆A are always True.
-
A=B: returns True when
A and
B contain the exact same elements.
The following operations return sets:
-
A∪B, the union of
A and
B. Returns the set consisting of all elements that occur in
A, in
B, or in both.
- Using set notation:
A∪B={x∣x∈A or x∈B}.
- Using set notation:
-
A∩B, the intersection of
A and
B. Returns the set consisting of all elements that occur in both
A and
B.
- Using set notation:
A∩B={x∣x∈A and x∈B}.
- Using set notation:
-
A∖B, the difference of
A and
B. Returns the set consisting of all elements that are in
A but that are not in
B.
- Using set notation:
A∖B={x∣x∈A and x∉B}.
- Using set notation:
-
A×B, the (Cartesian) product of
A and
B. Returns the set consisting of all pairs
(a,b) where
a is an element of
A and b is an element of
B.
- Using set notation:
A×B={(x,y)∣x∈A and y∈B}.
- Using set notation:
-
P(A), the power set of
A, returns the set consisting of all subsets of
A. (Food for thought: what is the relationship between
|A| and
|P(A)|?) For example, if
A={1,2,3}, then
P(A)={∅,{1},{2},{3},{1,2},{1,3},{2,3},{1,2,3}}.
- Using set notation:
P(A)={S∣S⊆A}.
- Using set notation:
Check Your Understanding
To review these concepts, please check out this self-test quiz: Sets: Self-Test.
Reviewing Functions
Definition (function, domain, codomain). Let A and
B be sets. A function
f:A→B is a mapping from elements in
A to elements in
B.
A is called the domain of the function, and
B is called the codomain of the function.
For example, if A and
B are both the set of integers, then the (predecessor) function
Pred:Z→Z, defined by
Pred(x)=x−1, is the function that maps each integer
x to the integer before it. Given this definition, we know that
Pred(10)=9 and
Pred(−3)=−4.
A more formal definition of the term "mapping" above is a subset of the Cartesian product A×B, where every element of
A appears exactly once. For example, we can define the
Pred function as the following set:
{…,(−2,−3),(−1,−2),(0,−1),(1,0),(2,1),…}.
One important distinction between the domain and codomain of a function is in what they require of that function. For a function f:A→B, its domain
A is the set of possible inputs for the function, and
f must have a valid value for every single one of those inputs. So for example, the function
g(x)=1x cannot have domain
R, since
g(0) is not defined. (We could choose
R∖{0} for
g's domain.) However, the codomain
B only has to contain the possible outputs of
f—not every element of
B needs to be a possible output. Continuing our example, the function
g(x)=1x can have codomain
R, since
1x is always a real number, even though
g(x) never outputs 0.
Sometimes it is useful to discuss the exact of possible outputs of a function. For this, we have one more definition.
Definition (range). Let f:A→B be a function. We define the range of
f to be the set consisting of its possible outputs. Formally, this is the set
{f(x)∣x∈A}. Note that the range of
f is always a subset of its codomain
B, but does not necessarily equal
B.
You might wonder: why bother having separate definitions for codomain and range, why not just always define functions with their exact range? There are two reasons why this isn't always feasible:
- Functions don't always have a range that is easy to describe or compute. For example, the function
f(x)=(1+sin(x))cos(x) over the domain
R always outputs a non-negative real number, so we can pick its codomain to be
R≥0, but finding its precise range requires more work.
- Later on, we'll be analysing properties of arbitrary functions with a given domain and codomain, for example, an arbitrary function
f:R→R. In these cases, we'll want to include functions whose range is potentially much smaller than
R in our analysis.
For these reasons, we'll generally define function codomains using standard numeric sets like N and
R, and leave the range of a function unstated unless it is required by the particular problem at hand.
Check Your Understanding
To review these concepts, please check out this self-test quiz: Functions: Self-Test.