Lab 1 - Sets

Lab Session #1 #

Introductory notes #

Welcome to our laboratory exercises! Each week, you’ll have the opportunity to work on hands-on projects and experiments that will help you better understand the material covered in class.

Important information

To make sure you’re getting the most out of the lab sessions, we’ll be assessing your performance in a few different ways and the final grade will be calculated as follows:

  • Mid-term Exam (20%)
  • Final Exam (30%)
  • 2 Assignments (30%)
  • 6 Quizzes (25%)

We understand that sometimes you may want to switch lab groups to work with different classmates. That’s why we allow group switching under the following conditions:

  • The group size limit is 30 students. You’ll need to get approval from the TA.

We’re excited for you to dive into the lab sessions and gain a deeper understanding of the material. If you have any questions or concerns, please don’t hesitate to reach out to the TA or instructor.

Policy and Procedures on Cheating and Plagiarism

Tests and Exams policy: If two or more students are caught communicating for any reason during exams (including mid-terms) they will be asked to leave the room and their exam will be failed. Same will happen for unauthorized use of devices.

Report policy

If a submitted report contains work other than student’s one it is necessary to explicitly acknowledge the source. It is encouraged to refer and quote other works, but it has to be made clear which words and ideas are property and creation of the student, and which ones have come from others (which must not correspond to more than 30% of the work). If two or more reports show evidence of being produced by unauthorized cooperative work, i.e. copied from fellow students, they will be all failed without further investigation on who produced the results and who actually copied.


Agenda #

  • Introduction to sets and set notation
  • Overview of formal languages and their properties
  • Operations on formal languages, including union, intersection, and complement
  • Discussion of some common types of formal languages, such as regular languages and context-free languages
  • Examples and exercises to reinforce understanding of the material.

Introduction to sets and set notation #

A set is a collection of distinct objects, called elements or members of the set. Sets are usually denoted by enclosing their elements in curly braces {}. For example, the set of natural numbers less than 5 can be written as {1, 2, 3, 4}. Sets can also be defined using set-builder notation, where a rule or property that the elements must satisfy is given. For example, the set of all even natural numbers can be written as {x | x is an even natural number}. Sets can also be represented using Venn diagrams, which are diagrams that show all possible logical relations between a finite collection of sets.

Finite set #

A finite set is a set that has a finite number of elements. For example, the set of integers from 1 to 10 is a finite set because it has 10 elements. In contrast, the set of all integers is an infinite set because it has an infinite number of elements.

A finite set can be described, at least in principle, by listing its elements: A={1,2,4,8} A = \{1, 2, 4, 8\} says that A A is the set whose elements are 1,2,4,8. 1, 2, 4, 8.


Infinite set #

For infinite (even for finite sets if they have more than just a few elements) sets ellipses ()(\dots) are sometimes used to describe how the elements might be listed. An ellipsis is a set of three periods ()(\dots) indicating an omission: B={0,3,6,9,} B = \{0, 3, 6, 9, \ldots\}

A more reliable way is to give the property that characterises their elements (also called set comprehension). Set B={0,3,6,9,} B = \{0, 3, 6, 9, \ldots\} can be described as: B={xx is a non-negative integer multiple of 3} B = \{x \mid x \text{ is a non-negative integer multiple of 3}\} It reads: B B is the set of all x x such that xx is a non-negative integer multiple of 3.3.


Notation #

  • For any set AA the statement that xx is an element of AA is written: xAx \in A .
  • ABA \subseteq B means that AA is a subset of BB : every element of AA is an element of BB .
  • \emptyset denotes the empty set: the set with no elements.

To show that two sets AA and BB are the same, we must show that AA and BB have exactly the same elements, i.e. ABA \subseteq B and BAB \subseteq A .


Operations #

For two sets AA and BB , we can define their union ABA \cup B , their intersection ABA \cap B , and their difference A\BA \backslash B (sometimes denoted as ABA - B ), as follows (,(\vee, \wedge denote the logical ‘or’ and logical ‘and’ respectively).

  • AB={xxAxB} A \cup B = \{x \mid x \in A \vee x \in B\}
  • AB={xxAxB} A \cap B = \{x \mid x \in A \wedge x \in B\}
  • A\B={xxAx∉B} A \backslash B = \{x \mid x \in A \wedge x \not \in B\}

Below, is a python code that shows simple operations on sets:

# Define two sets
A = {1, 2, 3, 4, 5}
B = {4, 5, 6, 7, 8}

# Use the union operator to combine the sets
print("A union B:", A | B)

# Use the intersection operator to find common elements
print("A intersection B:", A & B)

# Use the difference operator to find elements in A that are not in B
print("A - B:", A - B)

# Use the symmetric difference operator to find elements
# that are in either A or B but not both
print("A symmetric difference B:", A ^ B)

# Check if A is a subset of B
print("Is A a subset of B:", A.issubset(B))

# Check if A is a proper subset of B
print("Is A a proper subset of B:", A.issubset(B) and A != B)

# Check if A is a superset of B
print("Is A a superset of B:", A.issuperset(B))

Union of any number of sets #

If A0,A1,A2,A_0, A_1, A_2, \ldots are sets, the union of these sets can be denoted as {Aii0}={xxAi for at least one i with i0}\bigcup \{A_i \mid i \ge 0\} = \{x \mid x \in A_i \text{ for at least one $i$ with }i \ge 0\}

i=0Ai\bigcup_{i = 0}^\infty A_i

Power Sets #

For a set AA , the set of all subsets of AA is called the power set. Can be denoted as P(A)\mathcal{P}(A) or as 2A2^{A}

  • Power set of set {a,b,c}\{a, b, c\} is {,{a},{b},{c},{a,b},{a,c},{b,c},{a,b,c}}\{\emptyset, \{a\}, \{b\}, \{c\}, \{a, b\}, \{a, c\}, \{b, c\}, \{a, b, c\}\}

For a set AA , the set P(A)\mathcal{P}(A) has exactly 2n2^{n} elements, where nn is the cardinality of AA (the cardinality of a set is a measure of a set’s size, meaning the number of elements in the set).


Overview of formal languages and their properties #

A formal language is a set of strings (sequences of symbols) that are defined by a set of rules or grammar. These rules specify how the symbols can be combined to form valid strings in the language. Formal languages are used in many fields, such as mathematics, computer science, and linguistics, to precisely define and manipulate abstract concepts. Examples of formal languages include programming languages, mathematical notation, and formal logic.

Notation and Terminology #

Alphabet: a finite set of symbols, e.g. {a,b}\{a, b\} , or {0,1}\{0, 1\} . Normally denoted by Σ\Sigma
String: a string over an alphabet ( Σ\Sigma ) is a finite sequence of symbols in Σ\Sigma .
Length: for a string xx , x\left\vert{x}\right\vert is the number of symbols of xx .
Empty string: is the null string over Σ\Sigma . It is denoted as ϵ\epsilon . By definition, ϵ=0\left\vert{\epsilon}\right\vert = 0
Set of all strings: the set of all strings over Σ\Sigma is denoted by Σ\Sigma^* , e.g. for the alphabet A={a,b}A = \{a, b\} \ A={ϵ,a,b,aa,ab,ba,bb,aaa,aab,}A^* = \{\epsilon, a, b, aa, ab, ba, bb, aaa, aab, \ldots\}


Concatenation of strings #

If xx and yy are two strings over an alphabet, the concatenation xyxy (sometimes denoted as xyx\cdot y ) consists of the symbols of xx followed by those of yy :

x=abx = ab y=baby = bab xy=abbabxy = abbab

Concatenation is an associative operation: (xy)z=x(yz)(xy)z = x(yz) for all possible strings xx , yy , and zz .


Constructing new Languages #

Languages are sets!

  • Operations on languages are ways of constructing new languages: for two languages L1L_1 and L2L_2 over the alphabet Σ\Sigma , L1L2L_1 \cup L_2 , L1L2L_1 \cap L_2 , and L1\L2L_1 \backslash L_2 are also languages over Σ\Sigma .
  • String operation of concatenation is also used to construct new languages: if L1L_1 and L2L_2 are both languages over Σ\Sigma , the concatenation of L1L_1 and L2L_2 is the language
L1L2={xyxL1,yL2}L_1L_2 = \{xy \mid x \in L_1, y \in L_2\}

Example: {a,aa}{ϵ,b,ab}={a,ab,aab,aa,aab,aaab}\{a, aa\}\{\epsilon, b, ab\} = \{a, ab, aab, aa, aab, aaab\}

Is this statement true? L1L2=L2L1L_1L_2 = L_2L_1


Exponential notation #

The concatenation of kk copies of a single symbol aa , a single string ss , or a single language LL is defined as:
If kk = 0,0, then ak={ϵ}a^k = \{\epsilon\}

If kk > 0,0, then ak=aaaa^k = aa \ldots a where there are kk occurrences of aa , similarly for sks^k and LkL^k . In the case where LL is simply the alphabet Σ,\Sigma, Σk={xΣx=k}\Sigma^k = \{x \in \Sigma^* \mid \left\vert{x}\right\vert = k \}

Example: Σ={0,1}Σ2={00,01,10,11}\Sigma = \{0, 1\} \\ \Sigma^2 = \{00, 01, 10, 11\}


Operations on Languages #

  • Union
  • Intersection
  • Set difference
  • Complement: if LL is a language over Σ,\Sigma, L=Σ\L\overline{L}=\Sigma^* \backslash L The complement consists of all strings not in the language!
  • Concatenation: L1L2={xyxL1,yL2}L_1L_2 = \{xy \mid x \in L_1, y \in L_2\}
  • Power of n Ln={x1x2...xnxiL for all 1in} L^n = \{x_1x_2...x_n \mid x_i \in L \text{ for all } 1 \leq i \leq n\} %L_1L_2 = \{xy \mid x \in L_1 \wedge L_2\}
  • Kleen Star L={x1x2...xnnN,x1,x2,...,xnL}=nNLnL^* = \{x_1x_2...x_n \mid n \in \mathbb{N}, x_1,x_2,...,x_n \in L\} = \bigcup\limits_{n \in \mathbb{N}} L^n %L_1L_2 = \{xy \mid x \in L_1 \wedge L_2\}

Exercises on sets and sets notation #

Exercises (0) #

  1. What are the sets DD and EE ?
  • D={{x}x is a non-negative integer such that x4}D = \{\{x\} \mid x \text{ is a non-negative integer such that } x \leq 4 \}
  • E={3i+5ji and j are non-negative integers} E = \{3i + 5j \mid i \text{ and } j \text{ are non-negative integers}\}

  1. Are the following statements true?
  • {0,1}={1,0} \{0, 1\} = \{1, 0\}
  • {0,1,2,1,0}={1,1,1,1,0,2,2}\{0, 1, 2, 1, 0\} = \{1, 1, 1, 1, 0, 2, 2\}

Exercises (1) #

Construct the power set for the following sets:

  • {a,b}\{a, b\}
  • {0,1}{1,2}\{0, 1\} \cup \{1, 2\}
  • {z}\{z\}
  • {0,1,2,3,4}{1,3,5,a}\{0, 1, 2, 3, 4\} \cap \{1, 3, 5, a\}
  • {0,1,2,3}\{1,3,5,a}\{0, 1, 2, 3\} \backslash \{1, 3, 5, a\}
  • \emptyset

Determine the following languages over the alphabet Σ=0,1\Sigma = {0, 1}

  • Σ0\Sigma^0

  • Σ4\Sigma^4

  • P(Σ)\mathcal{P}(\Sigma)

  • P(Σ)\mathcal{P}(\Sigma^*)


Exercises (2) #

Find a possible alphabet for the following languages

  • The language L={oh,ouch,ugh}L = \{oh, ouch, ugh\}

  • The language L={apple,pear,4711}L = \{apple, pear, 4711\}

  • The language of all binary strings

Determine what the Kleene star operation produces over the following alphabets:

  • Σ={0,1}\Sigma = \{0, 1\}

  • Σ={a}\Sigma = \{a\}

  • Σ= \Sigma = \emptyset\ (the empty alphabet)


Exercises (3) #

State the alphabet Σ\Sigma for the following languages:

  • L=Σ={ϵ,0,1,00,01,10,11,000,}L = \Sigma^* = \{\epsilon, 0, 1, 00, 01, 10, 11, 000, \ldots\}

  • L=Σ={ϵ,a,aa,aaa,aaaa,}L = \Sigma^* = \{\epsilon, a, aa, aaa, aaaa, \ldots\}

Assuming that Σ={0,1}\Sigma =\{0, 1\} , construct complement languages for the following:

  • {010,101,11}\overline{\{010, 101, 11\}}

  • Σ\{110}\overline{\Sigma^* \backslash \{110\}}

State the following languages explicitly

  • P({a,b})\P({a,c})\mathcal{P}(\{a, b\}) \backslash \mathcal{P}(\{a, c\})

  • {xx,yNy:y<10(y+2=x)}\{x \mid x,y \in \mathbb{N} \wedge \exists y : y < 10 \wedge (y + 2 = x)\} ( N\mathbb{N} is the set of all non-negative integers)


Exercises on operations on languages #

Exercises (4) #

  • Let L={ai,i0}L=\{a^i, i \geq 0 \} be a language over Σ={a,b}\Sigma=\{a, b\} . Find L\overline{L} and LL^*

  • Let L1L_1 , L2L_2 be languages over Σ={a,b}\Sigma=\{a, b\} . Find L1L2L_1L_2

    • L1={ϵ,a,aa}L_1=\{\epsilon,a,aa\} , L2={aa,aaa}L_2=\{aa,aaa\}

    • L1={a,a2,a4}L_1=\{a,a^2, a^4\} , L2={b0,b2,b3}L_2=\{b^0, b^2, b^3\}

  • Let L={0,01,001}L=\{0,01,001\} . Find L2L^2 .

  • Describe in plain English the following languages over Σ={a,b}\Sigma=\{a, b\} :

    • L={a,b}L = \{a, b\}^*

    • L={a}{b}L = \{a\}^* \cup \{b\}^*

    • L={a}{b}L = \{a\}^* \cap \{b\}^*

    • L={aa}\{aaaa}L = \{aa\}^* \backslash \{aaaa\}^*

  • Write out in full the strings 05,0313,(010)2,(01)30,100^5, 0^31^3, (010)^2, (01)^30, 1^0


Exercises (5) #

Perform operations on the languages over Σ={0,1}\Sigma=\{0, 1\} :

  • L1={0,1,00,11,000,111,...}, L_1 = \{0,1,00,11,000,111,...\},
  • L2={0,1}, L_2 = \{0,1\}^*,
  • L3={wwΣ,w=1}, L_3=\{w \mid w \in \Sigma^*, |w|=1\},
  • L4={wwΣ,w=2}, L_4=\{w \mid w \in \Sigma^*, |w|=2\},
  • L5={wwΣ,w1} L_5=\{w \mid w \in \Sigma^*, |w| \geq 1\}
  1. L1L2,L3L4 L_1 \cup L_2, \quad L_3 \cup L_4

  2. L1L2,L1L3,L1L4,L1L5,L3L4 L_1 \cap L_2, \quad L_1 \cap L_3, \quad L_1 \cap L_4, \quad L_1 \cap L_5, \quad L_3 \cap L_4

  3. L1\L2,L1\L3,L3\L4,L4\L5,L5\L4 L_1 \backslash L_2, \quad L_1 \backslash L_3, \quad L_3 \backslash L_4,\quad L_4 \backslash L_5, \quad L_5 \backslash L_4

  4. L1,L2,L3,L5\L4 \overline{L_1}, \quad \overline{L_2}, \quad \overline{L_3}, \quad \overline{L_5 \backslash L_4}

  5. L1L2,L3L4,L4L3 L_1L_2, \quad L_3L_4, \quad L_4L_3

  6. L2,L3,L4 L_2^*, \quad L_3^*, \quad L_4^*