Remember that mathematical notation is about communicating mathematical information. Since a set is defined by its member objects, to communicate the details of a set of objects one needs to provide a means to decide whether any given object is or is not an element of the set.
One way to communicate the details of a set definition is to explicitly list or describe all elements of the set. Such a list should be enclosed in braces to indicate that the objects in the list are being collected into a set.
\begin{equation*}
A = \{ \text{chicken, tennis ball, the number } 2 \} \text{,}
\end{equation*}
then we intend for the letter \(A \) to become a label representing the set consisting of some specific chicken, some specific tennis ball, and the number \(2 \text{.}\)
Here are some sets containing familiar collections of numbers. Notice how in the first two examples we βlistβ the elements by providing a pattern and then using β¦ to imply that the pattern continues as expected, and in the second two examples we merely describe what the elements are in words.
Another way to define a set is candidate-condition notation:
\begin{equation*}
\text{set} = \setdef{\text{candidate domain}}{\text{condition(s) on candidates}} \text{.}
\end{equation*}
This notation provides a means to decide whether an object is a member of the set by first using an already-defined set as a pool of βmember candidatesβ as well a condition or a list of conditions each candidate must satisfy in order to actually be a member.
If we write \(S \) for the set being defined, \(C \) for the set of candidates, and \(T \) for the test those candidates must satisfy to be included in \(S \) (that is, \(T \) is a predicate with domain \(C \)), then the candidate-condition notation takes the form
\begin{equation*}
S = \setdef{x \in C}{T(x)} \text{,}
\end{equation*}
We could define this set in a more precise manner, without resorting to using dots, as follows.
\begin{equation*}
A = \setdef{ n \in \N }{ n \text{ divisible by } 3 }
\end{equation*}
The β\(n\in\N \)β part to the left of the divider tells us that the pool of βmember candidatesβ for \(A \) is the set of natural numbers, and the test to the right of the divider tells us how to decide when a given candidate natural number \(n \) is actually a member of \(A \text{.}\) In words, you should think of the above definition as saying the following.
This notation describes the members of a set by providing a βformβ to which the members must conform. Usually the βformβ is based on parameter variables that can range over a set of possibilities.
\begin{equation*}
A = \setdef{3n}{n\in \N} \text{.}
\end{equation*}
Here, the form of the elements of \(A \) is given to the left of the divider as β\(3 \) times a numberβ, where the number is represented by the parameter \(n \text{.}\) Then the allowed range of the number parameter \(n \) is given to the right of the divider. In words, you should think of the above definition as saying the following.
This says that the set \(\Q \) consists of all symbols of the form βnumber over numberβ, where the numbers can be any integers, as long as the bottom number is not zero. However, we need to be a little bit careful here, since we allow different symbols of this form to represent the same element. For example,
We really should make this element form duplication explicit in the definition of the set, but to do this would be really cumbersome and would be expressing something that is learned in grade school, so it is usually omitted.
Be careful not to inadvertently try to prove some property of members of the empty set! You will be proving a vacuously true statement. (See SectionΒ 4.3.)