0% found this document useful (0 votes)
64 views4 pages

Introduction To Set Theory: 1. Basic Concepts

The document introduces basic concepts of set theory including sets, elements, subsets, intersections, unions, complements, and power sets. It provides examples of sets and uses them to list the members of various combined sets using set operations. The document also covers ordered pairs, Cartesian products, relations, functions, characteristic functions, and Schönfinkelization (a process to convert n-ary functions to unary functions). It includes examples of relations and their complements and inverse, as well as an exercise to define a characteristic function and Schönfinkelize it.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
64 views4 pages

Introduction To Set Theory: 1. Basic Concepts

The document introduces basic concepts of set theory including sets, elements, subsets, intersections, unions, complements, and power sets. It provides examples of sets and uses them to list the members of various combined sets using set operations. The document also covers ordered pairs, Cartesian products, relations, functions, characteristic functions, and Schönfinkelization (a process to convert n-ary functions to unary functions). It includes examples of relations and their complements and inverse, as well as an exercise to define a characteristic function and Schönfinkelize it.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Ling 255: Sem & CogSci Maribel Romero

Jan 18, 2005

Introduction to Set Theory


1. Basic concepts.

(1) A SET is a collection of objects.

(2) An object is an ELEMENT OF a set A if that object is a member of the collection A.


Notation: “∈” reads as “is an element of” or “belongs to”.

(3) A set A is a SUBSET OF a set B if all the elements of A are also in B.


Notation: “⊆” reads as “is a subset of”.

(4) The INTERSECTION of two sets A and B (A∩B) is the set containing all and only the
objects that are elements of both A and B.

(5) The UNION of two sets A and B (A∪B) is the set containing all and only the objects that
are elements of A, of B, or of both A and B.

(6) The COMPLEMENT of a set A ( A, or A’ ) is the set containing all the individuals in the
discourse except for the elements of A.

(7) The POWER SET of a set A ( ℘(A) ) is the set whose members are all the subsets of A.

QUESTION 1: Given the sets under (8) and assuming that the universe of the discourse is ∪{A,
B, C, D, E, F, G}, list the members of the following sets:

(8) A= {1, 2, 3, 4} E = { {1}, 2, {a, 1} }


B = {a, b, c, d, e, f} F = {1, c, d}
C = {1, 2} G = {d, e, 2, 3}
D = {1, 3, 4, a, b}

(9) a. C-D =
b. A∩F =
c. A∩B=
d. C’∩F’ =
e. E∩C =
f. (C∪D) – (C∩D) =
g. F∪C =
h. G’∩C =
i. A∩E =
j. (E∪B)∪D =

9
2. Relations.

 Ordered Pairs and Cartesian Product:


(10) Ordered pair/n-tuple: a set with n-elements where order matters.
<a,b> =def {{a},{a,b}}
(11) Cartesian Product:
A×B = def {<x,y>| x∈A and y∈B}

 Relations: a relation is a set of pairs (or, more generally, of n-tuples). E.g., "mother of", "to
be sitting to the right of". Relation in A. E.g. "advisor of". Relation from A to B.

(12) A relation from A to B is a subset of A×B.


A relation in A is a subset of A×A.

(13) a. Domain of R: {a | there is some b such that <a,b> ∈ R}


b. Range of R: {b | there is some a such that <a,b> ∈ R}
(14) Complement of a relation R from A to B (a relation R⊆ A×B): R'
R' =def (A×B) − R
QUESTION 2: Take A={a,b,c}, B={1,2,3} and C={a,b}. R={<a,1>, <b,2>, <b,3>}.
What is the complement of the relation R from A to B?
What is the complement of the relation R from C to B?
(15) Inverse of a relation: R−1
R−1 =def {<b,a> | <a,b> ∈ R}

3. Funtions.
 Functions:
(16) A relation R from A to B is a function from A to B (F:A→B) iff:
a. The domain of R is A. (except for partial "functions")
⇒ Every member of A appears at least once as first member of a pair.
b. Each element in the domain is paired just with one element in the range
⇒ Every member of A appears at most once as first member of a pair.

(17) Argument and value: F(a) = b


(18) a. Functions from A to B are called functions into B.
b. Functions from A to B such that the range of the function equals B are called onto B.
(19) a. Functions from A to B where every member of B is assigned at most once to a
member of A are called one-to-one.
b. Otherwise, we'll call them many-to-one.
(20) Functions that are at the same time onto and one-to-one are called one-to-one
correspondences.

10
 The characteristic function of a set:

(21) a. Let A be a set. The, charA, the characteristic function of A, is the function F such that,
for any x∈A, F(x)=1, and
for any x∉A, F(x)=0.
b. Let F be a function with range {0,1}. Then, charF, the set characterized by F, is
{x∈D | F(x)=1}

 Schönfinkelization:

(22) U = {a,b,c}

(23) The relation "fond of":


Rfond-of = {<a,b>, <b,c>, <c,c>}

(24) The characteristic function of Rfond-of:

<a,a> → 0
<a,b> → 1
<a,c> → 0
<b,a> → 0
CharRfond-of = <b,b> → 0
<b,c> → 1
<c,a> → 0
<c,b> → 0
<c,c> → 1

(25) Turning n-ary functions into multiple embedded 1-ary functions: Schönfinkelization.
a. Left-to-right: b. Right-to-left:(inverse + left-to-r. shonf.)

a → 0 a → 0
a → b → 1 a → b → 0
c → 0 c → 0

a → 0 a → 1
b → b → 0 b → b → 0
c → 1 c → 0

a → 0 a → 0
c → b → 0 c → b → 1
c → 1 c → 1

11
EXERCISE 1: Given the following Universe, spell out the characteristic function of the set in
(27) and schönfinkelize it right-to-left.

(26) U = {d, e}
(27) R = { <d,d,d>, <d,e,d>, <e,d,d>, <e,e,e>, <e,e,d> }

12

You might also like