Processing math: 100%
Close
Close Window

CS4114 Formal Languages Spring 2021

Chapter 2 Mathematical Background

Show Source |    | About   «  1.4. Grammar Exercises   ::   Contents   ::   2.2. Relations  »

2.1. Set Notation

2.1.1. Introduction to Sets

The concept of a set in the mathematical sense is widely usde in computer science. The notations and techniques of set theory are commonly used when describing and implementing algorithms because the abstractions associated with sets often help to clarify and simplify algorithm design. So, knowing this notation helps you to communicate with other computer scientists.

1 / 7 Settings
<<<>

A set is a collection of distinguishable members or elements. There is no concept of duplication in a set. There is no concept of order.

Proficient Saving... Error Saving
Server Error
Resubmit

2.1.2. Set Common Notation

The following table shows the symbols commonly used to express sets and their relationships.

Table 2.1.1

{1,4}A set composed of the members 1 and 4{x|x is a positive integer}A set definition using a set formerExample: the set of all positive integersxPx is a member of set PxPx is not a member of set PThe null or empty set|P|Cardinality: size of set Por number of members for set PPQ,QPSet P is included in set Q,set P is a subset of set Q,set Q is a superset of set PPQSet Union: all elements appearing in P OR QPQSet Intersection: all elements appearing in P AND QPQSet difference: all elements of set P NOT in set QP×QSet (Cartesian) Product: yields a set of ordered pairs
1 / 22 Settings
<<<>

Let's review some of this notation.

Proficient Saving... Error Saving
Server Error
Resubmit

   «  1.4. Grammar Exercises   ::   Contents   ::   2.2. Relations  »

nsf
Close Window