NFAε - NFA - DFA equivalence

Slides:



Advertisements
Similar presentations
NFAε - NFA - DFA equivalence
Advertisements

Deterministic Turing Machines
CSE 311 Foundations of Computing I
Complexity and Computability Theory I Lecture #4 Rina Zviel-Girshin Leah Epstein Winter
Nondeterministic Finite Automata CS 130: Theory of Computation HMU textbook, Chapter 2 (Sec 2.3 & 2.5)
Regular Expressions and DFAs COP 3402 (Summer 2014)
Introduction to Computability Theory
Introduction to Computability Theory
CS5371 Theory of Computation
Courtesy Costas Busch - RPI1 Non Deterministic Automata.
1 The scanning process Goal: automate the process Idea: –Start with an RE –Build a DFA How? –We can build a non-deterministic finite automaton (Thompson's.
Lecture 3 Goals: Formal definition of NFA, acceptance of a string by an NFA, computation tree associated with a string. Algorithm to convert an NFA to.
1 Single Final State for NFAs and DFAs. 2 Observation Any Finite Automaton (NFA or DFA) can be converted to an equivalent NFA with a single final state.
CS5371 Theory of Computation Lecture 6: Automata Theory IV (Regular Expression = NFA = DFA)
Lecture 3 Goals: Formal definition of NFA, acceptance of a string by an NFA, computation tree associated with a string. Algorithm to convert an NFA to.
Fall 2006Costas Busch - RPI1 Non-Deterministic Finite Automata.
1 Non-Deterministic Automata Regular Expressions.
1.Defs. a)Finite Automaton: A Finite Automaton ( FA ) has finite set of ‘states’ ( Q={q 0, q 1, q 2, ….. ) and its ‘control’ moves from state to state.
Fall 2004COMP 3351 Another NFA Example. Fall 2004COMP 3352 Language accepted (redundant state)
Costas Busch - LSU1 Non-Deterministic Finite Automata.
CSE 311: Foundations of Computing Fall 2014 Lecture 23: State Minimization, NFAs.
NFA ε - NFA - DFA equivalence. What is an NFA An NFA is an automaton that its states might have none, one or more outgoing arrows under a specific symbol.
Nondeterministic Finite Automata CS 130: Theory of Computation HMU textbook, Chapter 2 (Sec 2.3 & 2.5)
1Computer Sciences Department. Book: INTRODUCTION TO THE THEORY OF COMPUTATION, SECOND EDITION, by: MICHAEL SIPSER Reference 3Computer Sciences Department.
REGULAR LANGUAGES.
Theory of Computation, Feodor F. Dragan, Kent State University 1 Regular expressions: definition An algebraic equivalent to finite automata. We can build.
Prof. Busch - LSU1 NFAs accept the Regular Languages.
1 CD5560 FABER Formal Languages, Automata and Models of Computation Lecture 3 Mälardalen University 2010.
CHAPTER 1 Regular Languages
INHERENT LIMITATIONS OF COMPUTER PROGAMS CSci 4011.
Lecture Notes 
Theory of Computation Automata Theory Dr. Ayman Srour.
Theory of Computation Automata Theory Dr. Ayman Srour.
Recap: Nondeterministic Finite Automaton (NFA) A deterministic finite automaton (NFA) is a 5-tuple (Q, , ,s,F) where: Q is a finite set of elements called.
Nondeterminism The Chinese University of Hong Kong Fall 2011
Lexical analysis Finite Automata
Lecture2 Regular Language
Non Deterministic Automata
CSE 311 Foundations of Computing I
Nondeterministic Finite Automata
Chapter 2 FINITE AUTOMATA.
CSC 4170 Theory of Computation Nondeterminism Section 1.2.
CSE 311 Foundations of Computing I
Non-Deterministic Finite Automata
Properties of Regular Languages
Principles of Computing – UFCFA3-30-1
Non-Deterministic Finite Automata
Nondeterministic Finite Automata
Non Deterministic Automata
CSE 311: Foundations of Computing
NFAs and Transition Graphs
Finite Automata Reading: Chapter 2.
Finite Automata.
4b Lexical analysis Finite Automata
CSCI 2670 Introduction to Theory of Computing
CS21 Decidability and Tractability
4b Lexical analysis Finite Automata
CS21 Decidability and Tractability
Principles of Computing – UFCFA3-30-1
CSC 4170 Theory of Computation Nondeterminism Section 1.2.
CSE 311 Foundations of Computing I
CSC312 Automata Theory Transition Graphs Lecture # 9
Chapter 1 Regular Language
Teori Bahasa dan Automata Lecture 6: Regular Expression
CHAPTER 1 Regular Languages
Non Deterministic Automata
CSCI 2670 Introduction to Theory of Computing
Nondeterminism The Chinese University of Hong Kong Fall 2010
Part Two : Nondeterministic Finite Automata
CSCI 2670 Introduction to Theory of Computing
Presentation transcript:

NFAε - NFA - DFA equivalence

What is an NFA An NFA is an automaton that its states might have none, one or more outgoing arrows under a specific symbol. A DFA is by definition an NFA (each state has exactly one outgoing arrow under each symbol). q0 q1 1 0,1

What is an NFAε An NFAε is an NFA that might have ε-moves. In an ε-move we can transport from one state to the other without having any symbols. An NFA is by definition an NFAε (but with no ε-moves). q0 q1 1 ε,1

NFA computation An NFA illustrates a machine that can have choices (just like our brains). If there are two arrows under a specific symbol it can choose either of them and follow it. So it works more or less like you. Suppose that you want to do something and that you can think of several methods to do it. Some of them can possibly fail but it suffices to find one that succeeds. An NFA accepts a string if there exists a path following arrows under the symbols of the string consecutively that takes us to an accept state.

Example q0 q1 1 0,1 This automaton accepts the string 1110 because there is a path under 1110 that takes us to an accept state (the path q0 , q0 , q0 , q1), beside the fact that there are paths under 1110 that fail (for example the path q0 , q0 , q1, q0). However it doesn’t accept the string 00 because there are no paths under 00 that can take us to q1.

NFA – DFA equivalence The language that an NFA recognizes is the set of strings which the NFA accepts. To see if a string is accepted it suffices to find the set of the possible states in which I can be with this string as input and see if a final state is contained in this set.

NFA – DFA eqivalence Whenever an arrow is followed, there is a set of possible following states that the NFA can be. This set of states is a subset of Q. For example with 0010 I have the following sequence of set of states: q0 q1 1 0,1 q2

NFA – DFA equivalence So I only want to keep information about these subsets of states that can be reached from the initial state after following arrows. Since all the subsets of Q are 2|Q| in total, this should be a finite (<= 2|Q|) number of subsets. I consider each subset of states of the NFA as a state of the DFA and every subset of states containing a final state as a final state of the DFA.

NFA – DFA equivalence Suppose that you want to find an equivalent DFA for an NFA . The algorithm is the following: Start from the start state and see where 0 or 1 takes you. For every new subset you find, see where 0 or 1 takes you. Repeat until no new subsets are found.

NFA – DFA equivalence (example) To find an equivalent DFA with the NFA of the figure I should complete the following table: 1 q0 {q1} {q0, q1} {q0, q2} {q0, q1, q2} q0 q1 1 0,1 q2

NFA – DFA equivalence (example) 1 0,1 So the DFA is: 1 q0 {q1} {q0, q1} {q0, q2} {q0, q1, q2}

NFAε – NFA equivalence An NFAε is an NFA in which I can have ε-moves. I want to get rid of ε-moves.

NFAε – NFA equivalence Suppose that I have an ε-move like in the figure. Since an ε-move is like teleporting from q1 to q2 I can remove the arrow with the ε and add several arrows from q1 to every neighbor of q2. q3 q3 q1 q4 q2 q1 ε q2 q4 q5 q5 1 1 1

NFAε – NFA equivalence If from q1 an ε-move takes me to q2 which is accept state then, when I remove the ε-move I should convert q1 to accept state. q1 q2 q4 q1 ε q2 q4