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.
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.
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}
says that A
is the set whose elements are 1,2,4,8.
For infinite (even for finite sets if they have more than just a few elements) sets ellipses (…)
are
sometimes used to describe how the elements might be listed. An ellipsis is a set of three periods (…)
indicating an omission:
B={0,3,6,9,…}
A more reliable way is to give the property that characterises their elements (also called set comprehension).
Set B={0,3,6,9,…}
can be described as:
B={x∣x is a non-negative integer multiple of 3}
It reads: B
is the set of all x
such that x
is a non-negative integer multiple of 3.
For two sets A
and B
, we can define their union A∪B
, their intersection A∩B
, and their difference A\B
(sometimes denoted as A−B
), as follows (∨,∧
denote the logical ‘or’ and logical ‘and’ respectively).
A∪B={x∣x∈A∨x∈B}
A∩B={x∣x∈A∧x∈B}
A\B={x∣x∈A∧x∈B}
Below, is a python code that shows simple operations on sets:
# Define two setsA = {1, 2, 3, 4, 5}
B = {4, 5, 6, 7, 8}
# Use the union operator to combine the setsprint("A union B:", A | B)
# Use the intersection operator to find common elementsprint("A intersection B:", A & B)
# Use the difference operator to find elements in A that are not in Bprint("A - B:", A - B)
# Use the symmetric difference operator to find elements# that are in either A or B but not bothprint("A symmetric difference B:", A ^ B)
# Check if A is a subset of Bprint("Is A a subset of B:", A.issubset(B))
# Check if A is a proper subset of Bprint("Is A a proper subset of B:", A.issubset(B) and A != B)
# Check if A is a superset of Bprint("Is A a superset of B:", A.issuperset(B))
For a set A
, the set of all subsets of A
is called the power set. Can be denoted as P(A)
or as 2A
Power set of set {a,b,c}
is
{∅,{a},{b},{c},{a,b},{a,c},{b,c},{a,b,c}}
For a set A
, the set P(A)
has exactly 2n
elements, where n
is the cardinality of A
(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.
Alphabet: a finite set of symbols, e.g. {a,b}
, or {0,1}
. Normally denoted by Σ String: a string over an alphabet (Σ
) is a finite sequence of symbols in Σ
. Length: for a string x
, ∣x∣
is the number of symbols of x
. Empty string: is the null string over Σ
. It is denoted as ϵ
. By definition, ∣ϵ∣=0 Set of all strings: the set of all strings over Σ
is denoted by Σ∗
, e.g. for the alphabet A={a,b}
\
A∗={ϵ,a,b,aa,ab,ba,bb,aaa,aab,…}
Operations on languages are ways of constructing new languages: for two languages L1
and L2
over the alphabet Σ
, L1∪L2
, L1∩L2
, and L1\L2
are also languages over Σ
.
String operation of concatenation is also used to construct new languages: if L1
and L2
are both languages over Σ
, the concatenation of L1
and L2
is the language