|
In this section on induction, the idea
of a set is often used to speak of the space of
inductive hypotheses. The table above describes some of the algebraic
properties of the operations of union and intersection
that are defined over sets. (In the figure above union is represented
by the U-shaped symbol and intersection by a upside down U-shaped
symbol.)
Recall
that a set is simply a collection of things. For example, the
letters a, b, s could be grouped together as a set which would
be expressed as {a,b,s} where the curly braces are used to enclose
the items that constitute a set. In addition to the set {a,b,s}
we define the sets {b,a} and {c,t,q}. The union operation
can then be illustrated as:
{a,b,s} U {b,a} = {a,b,s}
{a,b,s} U {c,t,q} = {a,b,s,c,t,q}
and the intersection operation
as:
{a,b,s} I {b,a} = {a,b}
{a,b,s} I {c,t,q} = {}
where {} is the empty set. The
empty set is referred to as ø
in the above figure.
Finally,
we can define a relation between two sets in order to make this
all a bit more interesting. The relation is referred to as 'subset
of' and is
often represented as a 'U'
on its side with a line underneath and the open portion of the
'U' to the right. In the example above the set {b,a} is a subset
of the set {a,b,s} since every element of the set {b,a} is in
the set {a,b,s}. It is also true that the set {b,a} is a subset
of the set {b,a}; that is, it is a subset of itself.
Sometimes
the inverse of 'subset of' is also sometimes used and is read
as 'contains'. Again this relation is represented as a
'U' on its side with a line underneath ( )
but in this case the open
portion of the 'U' is to the left. In the example above the set
{a,b,s} contains the set {b,a} since every element of the set
{b,a} is in the set {a,b,s}.
The subset (or the contains)
relation can be used to partially order a set of sets.
If some set A is a subset of a set B then these sets are partially
ordered with respect to each other. If a set A is not
a subset of another set B and B is not a subset of A then these
two sets are not ordered with respect to each other. Thus, this
relation can be used to partially order a set of sets. Partial
orders are so popular with computer scientists and mathematicians
that they have given them a nickname - POsets.
|