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 LaTeX: AA is the number of elements in the set, and is denoted by LaTeX: |A||A|. The empty set (the set consisting of zero elements) is denoted by LaTeX: \emptyset.

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 LaTeX: \{a,b,c,d\}{a,b,c,d} or LaTeX: \{2, 4, -10, 3000\}{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:

LaTeX: \big\{(\text{Ava Doe}, \$70 000, 53), (\text{Donald Dunn}, \$67 000, 30), (\text{Mary Smith}, \$65 000, 25), (\text{John Monet}, \$70 000, 40)\big\}.{(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, LaTeX: \mathbb{N} = \{0,1,2,\dots \}N={0,1,2,}. By convention in computer science, 0 is a natural number.
  • The set of integers, LaTeX: \mathbb{Z} = \{\dots, -2,-1,0,1,2,\dots\}Z={,2,1,0,1,2,}.
  • The set of positive integers, LaTeX: \mathbb{Z}^+ = \{1, 2, \dots\}Z+={1,2,}.
  • The set of rational numbers, LaTeX: \mathbb QQ.
  • The set of real numbers, LaTeX: \mathbb RR.
  • The set of non-negative real numbers, LaTeX: \mathbb{R}^{\geq 0}R0.

Example 4. The set of all finite strings over LaTeX: \{0,1\}{0,1}. A finite string over LaTeX: \{0, 1\}{0,1}is a finite sequence LaTeX: b_0 b_1 b_2 \dots b_{k-1}b0b1b2bk1, where LaTeX: kk is a natural number (called the length of the string) and each of LaTeX: b_0b0, LaTeX: b_1b1, 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 LaTeX: \epsilonϵ.

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:LaTeX: \{x \mid x \in \mathbb{N} \text{ and } x \geq 5\}{xxN and x5}. This is the set of all natural numbers which are greater than or equal to 5. The left part (before the vertical bar LaTeX: \mid) describes the elements in the set in terms of a variable LaTeX: xx, and right part states the condition(s) on this variable that must be satisfied. (Tip: The LaTeX: \mid can be read as "where".)

As a more complex example, we can define the set of rational numbers as: LaTeX: \mathbb{Q} = \left\{\frac{p}{q} \,\middle\vert\; p, q \in \mathbb{Z} \text{ and } q \neq 0 \right\}.Q={pq|p,qZ and q0}.

Operations on sets

We have already seen one set operation: the size operator, LaTeX: |A||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.

  • LaTeX: x \in AxA: returns True when LaTeX: xx is an element of LaTeX: AA; LaTeX: y \notin AyA returns True when LaTeX: yy is not an element of LaTeX: AA.
  • LaTeX: A \subseteq BAB: returns True when every element of LaTeX: AA is also in LaTeX: BB. We say in this case that LaTeX: AA is a subset of LaTeX: BB.
    Every set is a subset of itself, and the empty set is a subset of every set: LaTeX: A \subseteq AAA and LaTeX: \emptyset \subseteq AA are always True.
  • LaTeX: A = BA=B: returns True when LaTeX: AA and LaTeX: BB contain the exact same elements.

The following operations return sets:

  • LaTeX: A \cup BAB, the union of LaTeX: AA and LaTeX: BB. Returns the set consisting of all elements that occur in LaTeX: AA, in LaTeX: BB, or in both.
    • Using set notation: LaTeX: A \cup B = \{x \mid x \in A \text{ or } x \in B\}AB={xxA or xB}.
  • LaTeX: A \cap BAB, the intersection of LaTeX: AA and LaTeX: BB. Returns the set consisting of all elements that occur in both LaTeX: AA and LaTeX: BB.
    • Using set notation: LaTeX: A \cap B = \{x \mid x \in A \text{ and } x \in B\}AB={xxA and xB}.
  • LaTeX: A \setminus BAB, the difference of LaTeX: AA and LaTeX: BB. Returns the set consisting of all elements that are in LaTeX: AA but that are not in LaTeX: BB.
    • Using set notation: LaTeX: A \setminus B = \{x \mid x \in A \text{ and } x \notin B\}AB={xxA and xB}.
  • LaTeX: A \times BA×B, the (Cartesian) product of LaTeX: AA and LaTeX: BB. Returns the set consisting of all pairs LaTeX: (a, b)(a,b) where LaTeX: aa is an element of LaTeX: AA and b is an element of LaTeX: BB.
    • Using set notation: LaTeX: A \times B = \{(x, y) \mid x \in A \text{ and } y \in B\}A×B={(x,y)xA and yB}.
  • LaTeX: \mathcal{P}(A)P(A), the power set of LaTeX: AA, returns the set consisting of all subsets of LaTeX: AA. (Food for thought: what is the relationship between LaTeX: |A||A| and LaTeX: |\mathcal{P}(A)||P(A)|?) For example, if LaTeX: A = \{1,2,3\}A={1,2,3}, then LaTeX: \mathcal{P}(A) = \big\{ \emptyset, \{1\},\{2\},\{3\},\{1,2\},\{1,3\},\{2,3\},\{1,2,3\}\big\}P(A)={,{1},{2},{3},{1,2},{1,3},{2,3},{1,2,3}}.
    • Using set notation: LaTeX: \mathcal{P}(A) = \{ S \mid S \subseteq A \}P(A)={SSA}.

Check Your Understanding

To review these concepts, please check out this self-test quiz: Sets: Self-Test.

Reviewing Functions

Definition (function, domain, codomain). Let LaTeX: AA and LaTeX: BB be sets. A function LaTeX: f : A \to Bf:AB is a mapping from elements in LaTeX: AA to elements in LaTeX: BB. LaTeX: AA is called the domain of the function, and LaTeX: BB is called the codomain of the function.

For example, if LaTeX: AA and LaTeX: BB are both the set of integers, then the (predecessor) function LaTeX: \mathit{Pred}: \mathbb{Z} \to \mathbb{Z}Pred:ZZ, defined by LaTeX: \mathit{Pred}(x) = x-1Pred(x)=x1, is the function that maps each integer LaTeX: xx to the integer before it. Given this definition, we know that LaTeX: \mathit{Pred}(10) = 9Pred(10)=9 and LaTeX: \mathit{Pred}(-3) = -4Pred(3)=4.

A more formal definition of the term "mapping" above is a subset of the Cartesian product LaTeX: A \times BA×B, where every element of LaTeX: AA appears exactly once. For example, we can define the LaTeX: \mathit{Pred}Pred function as the following set: LaTeX: \{\dots, (-2, -3), (-1, -2), (0, -1), (1, 0), (2, 1), \dots \}.{,(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 LaTeX: f : A \to Bf:AB, its domain LaTeX: AA is the set of possible inputs for the function, and LaTeX: ff must have a valid value for every single one of those inputs. So for example, the function LaTeX: g(x) = \frac{1}{x}g(x)=1x cannot have domain LaTeX: \mathbb{R}R, since LaTeX: g(0)g(0) is not defined. (We could choose LaTeX: \mathbb{R} \setminus \{0\}R{0} for LaTeX: gg's domain.) However, the codomain LaTeX: BB only has to contain the possible outputs of LaTeX: ff—not every element of LaTeX: BB needs to be a possible output. Continuing our example, the function LaTeX: g(x) = \frac{1}{x}g(x)=1x can have codomain LaTeX: \mathbb{R}R, since LaTeX: \frac{1}{x}1x is always a real number, even though LaTeX: g(x)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 LaTeX: f: A \to Bf:AB be a function. We define the range of LaTeX: ff to be the set consisting of its possible outputs. Formally, this is the set LaTeX: \{ f(x) \mid x \in A \}{f(x)xA}. Note that the range of LaTeX: ff is always a subset of its codomain LaTeX: BB, but does not necessarily equal LaTeX: BB.

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 LaTeX: f(x) = (1 + \sin(x))^{\cos(x)}f(x)=(1+sin(x))cos(x) over the domain LaTeX: \mathbb{R}R always outputs a non-negative real number, so we can pick its codomain to be LaTeX: \mathbb{R}^{\geq 0}R0, 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 LaTeX: f: \mathbb{R} \to \mathbb{R}f:RR. In these cases, we'll want to include functions whose range is potentially much smaller than LaTeX: \mathbb{R}R in our analysis.

For these reasons, we'll generally define function codomains using standard numeric sets like LaTeX: \mathbb{N}N and LaTeX: \mathbb{R}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.