Presentation is loading. Please wait.

Presentation is loading. Please wait.

BCS2143 – Theory of Computer Science

Similar presentations


Presentation on theme: "BCS2143 – Theory of Computer Science"— Presentation transcript:

1 BCS2143 – Theory of Computer Science
Introduction

2 Why do we talk about Theory of Computation?
Techniques of Computer theory are necessary in the teaching of courses on computer design, artificial intelligence, the analysis of algorithms, and so forth. They can be applied in compiler design, natural language processing as well.

3 What we will talk about ? Divide into 2 parts Automata Theory
Computability Theory

4 Contents Automata and Languages Regular Languages Nondeterminism
Regular Expressions Nonregular Expressions Context-free Grammars Pushdown Automata Non-context-free Languages

5 Contents Computability Theory The Church-Turing Thesis Decidability
Reducibility

6 Desirable Prerequisites
Some mathematical maturity (what constitutes a correct proof, etc.) which would be evidenced by successful completion of linear algebra and discrete math. Familiarity with programming constructs such as recursion and looping and basic algorithm analysis.

7 Warning You are required to attend at least 80% of the course. Otherwise, you will be barred from sitting the final examination corresponding to the rules of the university college. Copy Assignment is strongly prohibited.

8 Textbooks main : Introduction to the Theory of Computation, Michael Sipser, Massachusetts Institute of Technology, Cengage Learning, 2013. addition: Introduction to Automata Theory, Languages and Computation J.E Hopcroft, Rajeev Motwani, J.D. Ullman (Pearson New International edition), Pearson Education, 2014.

9 Introduction What are the fundamental capabilities and limitations of computers ? Time has increased our ability to compute and have brought this question out. What are the answers in Computability Theory and Automata Theory ?

10 Computability Theory There are some problems which can’t be solved by computers, e.g., determining whether a mathematical statement is true or false. The objective of the Computability Theory is to classify the problems whether they are solvable by computers or not.

11 Automata Theory deals with the definitions and properties of mathematical models of computation. Finite Automata (FA) used in text processing, compilers and hardware design. Context-free Grammar (CFG) used in programming languages and artificial intelligence.

12 Mathematical Notions and Terminology
Sets Functions and Relations Sequences and Tuples Graphs Trees Strings and Languages Boolean Logic Proof techniques

13 Sets Importance: languages are sets
A set is a collection of "things," called the elements or members of the set. It is essential to have a criterion for determining, for any given thing, whether it is or is not a member of the given set. This criterion is called the membership criterion of the set.

14 Sets There are two common ways of indicating the members of a set:
List all the elements, e.g. {a, e, i, o, u} Provide some sort of an algorithm or rule, such as a grammar

15 Sets Notation: To indicate that x is a member of set S, we write x  S
We denote the empty set (the set with no members) as {} or  If every element of set A is also an element of set B, we say that A is a subset of B, and write A  B If every element of set A is also an element of set B, but B also has some elements not contained in A, we say that A is a proper subset of B, and write A  B

16 Operations on Sets The union of sets A and B, written A  B, is a set that contains everything that is in A, or in B, or in both. The intersection of sets A and B, written A  B, is a set that contains exactly those elements that are in both A and B.

17 Operations on Sets The set difference of set A and set B, written A - B, is a set that contains everything that is in A but not in B. The complement of a set A, written as -A or (better) A with a bar drawn over it, is the set containing everything that is not in A. This is almost always used in the context of some universal set U that contains "everything" (meaning "everything we are interested in at the moment"). Then -A is shorthand for U - A.

18 Additional terminology
The cardinality of a set A, written |A|, is the number of elements in a set A. The powerset of a set Q, written 2Q, is the set of all subsets of Q. The notation suggests the fact that a set containing n elements has a powerset containing 2n elements, including empty set. Two sets are disjoint if they have no elements in common, that is, if AB = .

19 Sequences and Tuples A sequence of objects is a list of those objects in some order. Usually designate by writing the list within parenthesis, e.g. (3,2,5). may be finite or infinite. finite sequences called tuples. sequence with k elements is a k-tuple, e.g., (3,2,5) is a 3-tuple.

20 Cartesian product (Cross product)
If A and B are two sets, the Cartesian product of A and B, written A x B, is the set of all pairs wherein the first element is a member of A and the second element is a member of B.

21 Relations and Functions
Importance: need basic familiarity with the terminology A relation on sets S and T is a set of ordered pairs (s, t), where s  S (s is a member of S), t  T, S and T need not be different, The set of all first elements (s) is the domain of the relation, and The set of all second elements is the range of the relation.

22 Relations and Functions
A relation is a function iff every element of S occurs once and only once as a first element of the relation. A relation is a partial function iff every element of S occurs at most once as an element of the relation.

23 Graphs Importance: Automata are graphs. A graph consists of two sets
A set V of vertices (or nodes), and A set E of edges (or arcs). An edge consists of a pair of vertices in V. If the edges are ordered, the graph is a digraph (a contraction of "directed graph").

24 Graphs A walk is a sequence of edges, where the finish vertex of each edge is the start vertex of the next edge. Example: (a, e), (e, i), (i, o), (o, u). A path is a walk with no repeated edges. A simple path is a path with no repeated vertices.

25 Trees Importance: Trees are used in some algorithms.
A tree is a kind of digraph: It has one distinguished vertex called the root; There is exactly one path from the root to each vertex; and The level of a vertex is the length of the path to it from the root.

26 Trees Terminology: if there is an edge from A to B, then A is the parent of B, and B is the child of A. A leaf is a node with no children. The height of a tree is the largest level number of any vertex.

27 Strings and Languages Important :
Strings of characters are fundamental building blocks in computer science. Alphabet over which the strings are defined, may vary with the application however, it is a finite set. Notations: use Greek letters  and  to designate alphabets.

28 Strings and Languages String over an alphabet is a finite sequence of symbols from that alphabet, written next to one another and not separated by commas. If  = {0,1}, then is a string over . If w is a string over , the length of w, written |w| is the number of symbols that it contains. string of length zero is called empty string, .

29 Strings and Languages The reverse of w, written wR, is the string obtained by writing w in the opposite order. String z is a substring of w if z appears consecutively within w. If we have string x of length m and string y of length n, the concatenation of x and y written xy is x1…xmy1…yn. xk = xx…x : self-concatenated string k Language is a set of strings.

30 Boolean Logic AND (conjunction)  OR (disjunction)  NOT (negation) 
XOR (exclusive or)  Equality  : 1 if both of its operands have the same value. Implication  : 0 if its first operand is 1 and the second operand is 0; otherwise 1.

31 Definitions, Theorems and Proofs
Theorems and proofs are the heart and soul of mathematics and definitions are its spirit. Definitions describe the objects and notations that we use. Definition may be simple or complex, precision is essential. When defining some objects, we must make clear what constitutes that object and what does not A proof is a convincing logical argument that a statement is true. Proofs must be convincing in an absolute sense. A theorem is a mathematical statement proved true. Lemmas – statements that assist other proofs Corollaries – related statements that are easily proved.


Download ppt "BCS2143 – Theory of Computer Science"

Similar presentations


Ads by Google