SlideShare a Scribd company logo
Formal Language, chapter 5, slide 1 Copyright © 2007 by Adam Webber
Chapter Five:
Nondeterministic Finite Automata
AL-ofairi Adel Ahmed
Formal Language, chapter 5, slide 2 Copyright © 2007 by Adam Webber
A DFA has exactly one transition from every state on every
symbol in the alphabet. By relaxing this requirement we get
a related but more flexible kind of automaton: the
nondeterministic finite automaton or NFA.
NFAs are a bit harder to think about than DFAs, because
they do not appear to define simple computational processes.
They may seem at first to be unnatural, like puzzles invented
by professors for the torment of students. But have patience!
NFAs and other kinds of nondeterministic automata arise
naturally in many ways, as you will see later in this book,
and they too have a variety of practical applications.
Formal Language, chapter 5, slide 3 Copyright © 2007 by Adam Webber
Outline
• 5.1 Relaxing a Requirement
• 5.2 Spontaneous Transitions
• 5.3 Nondeterminism
• 5.4 The 5-Tuple for an NFA
• 5.5 The Language Accepted by an NFA
Formal Language, chapter 5, slide 4 Copyright © 2007 by Adam Webber
Not A DFA
• Does not have exactly one transition from
every state on every symbol:
– Two transitions from q0 on a
– No transition from q0 (on either a or b)
• Though not a DFA, this can be taken as
defining a language, in a slightly different way
q1
a,b
q0
a
Formal Language, chapter 5, slide 5 Copyright © 2007 by Adam Webber
Possible Sequences of Moves
• We'll consider all possible sequences of moves the machine
might make for a given string
• For example, on the string aa there are three:
– From q0 to q0 to q0, rejecting
– From q0 to q0 to q1, accepting
– From q0 to q1, getting stuck on the last a
• Our convention for this new kind of machine: a string is in L(M) if
there is at least one accepting sequence
q1
a,b
q0
a
Formal Language, chapter 5, slide 6 Copyright © 2007 by Adam Webber
Nondeterministic Finite
Automaton (NFA)
• L(M) = the set of strings that have at least one accepting
sequence
• In the example above, L(M) = {xa | x ∈ {a,b}*}
• A DFA is a special case of an NFA:
– An NFA that happens to be deterministic: there is exactly one
transition from every state on every symbol
– So there is exactly one possible sequence for every string
• NFA is not necessarily deterministic
q1
a,b
q0
a
Formal Language, chapter 5, slide 7 Copyright © 2007 by Adam Webber
NFA Advantage
• An NFA for a language can be smaller and easier to construct
than a DFA
• Strings whose next-to-last symbol is 1:
DFA:
NFA:
0
0
0
1
1
1
1
0
0,1
0,1
1
Formal Language, chapter 5, slide 8 Copyright © 2007 by Adam Webber
Outline
• 5.1 Relaxing a Requirement
• 5.2 Spontaneous Transitions
• 5.3 Nondeterminism
• 5.4 The 5-Tuple for an NFA
• 5.5 The Language Accepted by an NFA
Formal Language, chapter 5, slide 9 Copyright © 2007 by Adam Webber
Spontaneous Transitions
• An NFA can make a state transition
spontaneously, without consuming an input
symbol
• Shown as an arrow labeled with ε
• For example, {a}* ∪ {b}*:
q0
aq1
q2 b
Formal Language, chapter 5, slide 10 Copyright © 2007 by Adam Webber
ε-Transitions To Accepting States
• An ε-transition can be made at any time
• For example, there are three sequences on the empty string
– No moves, ending in q0, rejecting
– From q0 to q1, accepting
– From q0 to q2, accepting
• Any state with an ε-transition to an accepting state ends up
working like an accepting state too
q0
aq1
q2 b
Formal Language, chapter 5, slide 11 Copyright © 2007 by Adam Webber
ε-transitions For NFA Combining
∀ ε-transitions are useful for combining smaller
automata into larger ones
• This machine is combines a machine for {a}*
and a machine for {b}*
• It uses an ε-transition at the start to achieve
the union of the two languages
q0
aq1
q2 b
Formal Language, chapter 5, slide 12 Copyright © 2007 by Adam Webber
Incorrect Union
A = {an
| n is odd}
B = {bn
| n is odd}
A ∪ B ?
No: this NFA accepts aab
a
a
b
b
a
a
b
b
Formal Language, chapter 5, slide 13 Copyright © 2007 by Adam Webber
Correct Union
A = {an
| n is odd}
B = {bn
| n is odd}
A ∪ B
a
a
b
b
a
a
b
b
Formal Language, chapter 5, slide 14 Copyright © 2007 by Adam Webber
Incorrect Concatenation
A = {an
| n is odd}
B = {bn
| n is odd}
{xy | x ∈ A and y ∈ B} ?
No: this NFA accepts abbaab
a
a
b
b
a
a
b
b
Formal Language, chapter 5, slide 15 Copyright © 2007 by Adam Webber
Correct Concatenation
A = {an
| n is odd}
B = {bn
| n is odd}
{xy | x ∈ A and y ∈ B}
a
a
b
b
a
a
b
b
Formal Language, chapter 5, slide 16 Copyright © 2007 by Adam Webber
Outline
• 5.1 Relaxing a Requirement
• 5.2 Spontaneous Transitions
• 5.3 Nondeterminism
• 5.4 The 5-Tuple for an NFA
• 5.5 The Language Accepted by an NFA
Formal Language, chapter 5, slide 17 Copyright © 2007 by Adam Webber
DFAs and NFAs
• DFAs and NFAs both define languages
• DFAs do it by giving a simple computational procedure for
deciding language membership:
– Start in the start state
– Make one transition on each symbol in the string
– See if the final state is accepting
• NFAs do it without such a clear-cut procedure:
– Search all legal sequences of transitions on the input string?
– How? In what order?
Formal Language, chapter 5, slide 18 Copyright © 2007 by Adam Webber
Nondeterminism
• The essence of nondeterminism:
– For a given input there can be more than one legal
sequence of steps
– The input is in the language if at least one of the legal
sequences says so
• We can achieve the same result by deterministically
searching the legal sequences, but…
• ...this nondeterminism does not directly correspond to
anything in physical computer systems
• In spite of that, NFAs have many practical
applications
Formal Language, chapter 5, slide 19 Copyright © 2007 by Adam Webber
Outline
• 5.1 Relaxing a Requirement
• 5.2 Spontaneous Transitions
• 5.3 Nondeterminism
• 5.4 The 5-Tuple for an NFA
• 5.5 The Language Accepted by an NFA
Formal Language, chapter 5, slide 20 Copyright © 2007 by Adam Webber
Powerset
• If S is a set, the powerset of S is the set of all subsets of S:
P(S) = {R | R ⊆ S}
• This always includes the empty set and S itself
• For example,
P({1,2,3}) = {{}, {1}, {2}, {3}, {1,2}, {1,3}, {2,3}, {1,2,3}}
Formal Language, chapter 5, slide 21 Copyright © 2007 by Adam Webber
The 5-Tuple
• The only change from a DFA is the transition function δ
∀ δ takes two inputs:
– A state from Q (the current state)
– A symbol from Σ∪{ε} (the next input, or ε for an ε-transition)
∀ δ produces one output:
– A subset of Q (the set of possible next states)
An NFA M is a 5-tuple M = (Q, Σ, δ, q0, F), where:
Q is the finite set of states
Σ is the alphabet (that is, a finite set of symbols)
δ ∈ (Q × (Σ∪{ε}) → P(Q)) is the transition function
q0 ∈ Q is the start state
F ⊆ Q is the set of accepting states
Formal Language, chapter 5, slide 22 Copyright © 2007 by Adam Webber
Example:
• Formally, M = (Q, Σ, δ, q0, F), where
– Q = {q0,q1,q2}
Σ = {a,b} (we assume: it must contain at least a and b)
– F = {q2}
δ(q0,a) = {q0,q1}, δ(q0,b) = {q0}, δ(q0,ε) = {q2},
δ(q1,a) = {}, δ(q1,b) = {q2}, δ(q1,ε) = {}
δ(q2,a) = {}, δ(q2,b) = {}, δ(q2,ε) = {}
• The language defined is {a,b}*
q0 q1
a
q2
b
a,b
Formal Language, chapter 5, slide 23 Copyright © 2007 by Adam Webber
Outline
• 5.1 Relaxing a Requirement
• 5.2 Spontaneous Transitions
• 5.3 Nondeterminism
• 5.4 The 5-Tuple for an NFA
• 5.5 The Language Accepted by an NFA
Formal Language, chapter 5, slide 24 Copyright © 2007 by Adam Webber
The δ* Function
• The δ function gives 1-symbol moves
• We'll define δ* so it gives whole-string results
(by applying zero or more δ moves)
• For DFAs, we used this recursive definition
δ*(q,ε) = q
δ*(q,xa) = δ(δ*(q,x),a)
• The intuition is the similar for NFAs, but the
ε-transitions add some technical hair
Formal Language, chapter 5, slide 25 Copyright © 2007 by Adam Webber
NFA IDs
• An instantaneous description (ID) is a
description of a point in an NFA's execution
• It is a pair (q,x) where
– q ∈ Q is the current state
– x ∈ Σ* is the unread part of the input
• Initially, an NFA processing a string x has the
ID (q0,x)
• An accepting sequence of moves ends in an
ID (f,ε) for some accepting state f ∈ F
Formal Language, chapter 5, slide 26 Copyright © 2007 by Adam Webber
The One-Move Relation On IDs
• We write
if I is an ID and J is an ID that could follow
from I after one move of the NFA
• That is, for any string x ∈ Σ* and any ω ∈ Σ
or ω = ε,
I a J
q,ωx( )a r ,x()if and only if r ∈δq,w( )
Formal Language, chapter 5, slide 27 Copyright © 2007 by Adam Webber
The Zero-Or-More-Move Relation
• We write
if there is a sequence of zero or more moves
that starts with I and ends with J:
• Because it allows zero moves, it is a reflexive
relation: for all IDs I,
I a∗
J
I a L a J
I a∗
I
Formal Language, chapter 5, slide 28 Copyright © 2007 by Adam Webber
The δ* Function
• Now we can define the δ* function for NFAs:
• Intuitively, δ*(q,x) is the set of all states the
NFA might be in after starting in state q and
reading x
• Our definition allows ε-transitions, including
those made before the first symbol of x is
read, and those made after the last
δ∗
q,x( )=r q,x( )a∗
r,ε( ){ }
Formal Language, chapter 5, slide 29 Copyright © 2007 by Adam Webber
M Accepts x
• Now δ*(q,x) is the set of states M may end in,
starting from state q and reading all of string x
• So δ*(q0,x) tells us whether M accepts x:
A string x ∈ Σ* is accepted by an NFA M = (Q, Σ, δ, q0, F)
if and only if δ*(q0, x) contains at least one element of F.
Formal Language, chapter 5, slide 30 Copyright © 2007 by Adam Webber
For any NFA M = (Q, Σ, δ, q0, F), L(M) denotes
the language accepted by M, which is
L(M) = {x ∈ Σ* | δ*(q0, x) ∩ F ≠ {}}.
The Language An NFA Defines

More Related Content

What's hot

Finite automata
Finite automataFinite automata
Finite automata
Sutee Sudprasert
 
Formal Languages and Automata Theory Unit 1
Formal Languages and Automata Theory Unit 1Formal Languages and Automata Theory Unit 1
Formal Languages and Automata Theory Unit 1
Srimatre K
 
Dfa h11
Dfa h11Dfa h11
Dfa h11
Rajendran
 
Finite Automata: Deterministic And Non-deterministic Finite Automaton (DFA)
Finite Automata: Deterministic And Non-deterministic Finite Automaton (DFA)Finite Automata: Deterministic And Non-deterministic Finite Automaton (DFA)
Finite Automata: Deterministic And Non-deterministic Finite Automaton (DFA)
Mohammad Ilyas Malik
 
Finite automata(For college Seminars)
Finite automata(For college Seminars)Finite automata(For college Seminars)
Finite automata(For college Seminars)
Naman Joshi
 
simple problem to convert NFA with epsilon to without epsilon
simple problem to convert NFA with epsilon to without epsilonsimple problem to convert NFA with epsilon to without epsilon
simple problem to convert NFA with epsilon to without epsilon
kanikkk
 
Nfa vs dfa
Nfa vs dfaNfa vs dfa
Nfa vs dfa
raosir123
 
NFA Converted to DFA , Minimization of DFA , Transition Diagram
NFA Converted to DFA , Minimization of DFA , Transition DiagramNFA Converted to DFA , Minimization of DFA , Transition Diagram
NFA Converted to DFA , Minimization of DFA , Transition Diagram
Abdullah Jan
 
Finite automata-for-lexical-analysis
Finite automata-for-lexical-analysisFinite automata-for-lexical-analysis
Finite automata-for-lexical-analysis
Dattatray Gandhmal
 
Finite Automata
Finite AutomataFinite Automata
Finite Automata
parmeet834
 
Minimization of DFA
Minimization of DFAMinimization of DFA
Minimization of DFA
kunj desai
 
Automata
AutomataAutomata
Automata
Gaditek
 
1.3.1 deterministic finite automaton
1.3.1 deterministic finite automaton1.3.1 deterministic finite automaton
1.3.1 deterministic finite automaton
Sampath Kumar S
 
Finite automata examples
Finite automata examplesFinite automata examples
Finite automata examples
ankitamakin
 
Nfa egs
Nfa egsNfa egs
Nfa egs
ankitamakin
 
Formal Languages and Automata Theory unit 5
Formal Languages and Automata Theory unit 5Formal Languages and Automata Theory unit 5
Formal Languages and Automata Theory unit 5
Srimatre K
 
Ch2 finite automaton
Ch2 finite automatonCh2 finite automaton
Ch2 finite automaton
meresie tesfay
 
Automata
AutomataAutomata
Theory of Computation Unit 4
Theory of Computation Unit 4Theory of Computation Unit 4
Theory of Computation Unit 4
Jena Catherine Bel D
 
Lexicalanalyzer
LexicalanalyzerLexicalanalyzer
Lexicalanalyzer
Royalzig Luxury Furniture
 

What's hot (20)

Finite automata
Finite automataFinite automata
Finite automata
 
Formal Languages and Automata Theory Unit 1
Formal Languages and Automata Theory Unit 1Formal Languages and Automata Theory Unit 1
Formal Languages and Automata Theory Unit 1
 
Dfa h11
Dfa h11Dfa h11
Dfa h11
 
Finite Automata: Deterministic And Non-deterministic Finite Automaton (DFA)
Finite Automata: Deterministic And Non-deterministic Finite Automaton (DFA)Finite Automata: Deterministic And Non-deterministic Finite Automaton (DFA)
Finite Automata: Deterministic And Non-deterministic Finite Automaton (DFA)
 
Finite automata(For college Seminars)
Finite automata(For college Seminars)Finite automata(For college Seminars)
Finite automata(For college Seminars)
 
simple problem to convert NFA with epsilon to without epsilon
simple problem to convert NFA with epsilon to without epsilonsimple problem to convert NFA with epsilon to without epsilon
simple problem to convert NFA with epsilon to without epsilon
 
Nfa vs dfa
Nfa vs dfaNfa vs dfa
Nfa vs dfa
 
NFA Converted to DFA , Minimization of DFA , Transition Diagram
NFA Converted to DFA , Minimization of DFA , Transition DiagramNFA Converted to DFA , Minimization of DFA , Transition Diagram
NFA Converted to DFA , Minimization of DFA , Transition Diagram
 
Finite automata-for-lexical-analysis
Finite automata-for-lexical-analysisFinite automata-for-lexical-analysis
Finite automata-for-lexical-analysis
 
Finite Automata
Finite AutomataFinite Automata
Finite Automata
 
Minimization of DFA
Minimization of DFAMinimization of DFA
Minimization of DFA
 
Automata
AutomataAutomata
Automata
 
1.3.1 deterministic finite automaton
1.3.1 deterministic finite automaton1.3.1 deterministic finite automaton
1.3.1 deterministic finite automaton
 
Finite automata examples
Finite automata examplesFinite automata examples
Finite automata examples
 
Nfa egs
Nfa egsNfa egs
Nfa egs
 
Formal Languages and Automata Theory unit 5
Formal Languages and Automata Theory unit 5Formal Languages and Automata Theory unit 5
Formal Languages and Automata Theory unit 5
 
Ch2 finite automaton
Ch2 finite automatonCh2 finite automaton
Ch2 finite automaton
 
Automata
AutomataAutomata
Automata
 
Theory of Computation Unit 4
Theory of Computation Unit 4Theory of Computation Unit 4
Theory of Computation Unit 4
 
Lexicalanalyzer
LexicalanalyzerLexicalanalyzer
Lexicalanalyzer
 

Viewers also liked

World Future Society Arizona Chapter September 2014 Meeting
World Future Society Arizona Chapter September 2014 MeetingWorld Future Society Arizona Chapter September 2014 Meeting
World Future Society Arizona Chapter September 2014 Meeting
Eric Kingsbury, MBA
 
Nuclear Energy
Nuclear EnergyNuclear Energy
Nuclear Energy
Asif Lemon
 
Legal Law on Bangladeshi Perspective
Legal Law on Bangladeshi PerspectiveLegal Law on Bangladeshi Perspective
Legal Law on Bangladeshi Perspective
Shakhawatul Islam SaaGooR
 
Investment opportunities in bangladesh
Investment opportunities in bangladeshInvestment opportunities in bangladesh
Investment opportunities in bangladesh
ardilabid
 
Redesigning the future of education in Knowmad Society: Our next steps
Redesigning the future of education in Knowmad Society: Our next stepsRedesigning the future of education in Knowmad Society: Our next steps
Redesigning the future of education in Knowmad Society: Our next steps
John Moravec
 
Drones: The Future of Society
Drones: The Future of SocietyDrones: The Future of Society
Drones: The Future of Society
Xavier Imperial
 
SME in Bangladesh
SME in BangladeshSME in Bangladesh
SME in Bangladesh
Maliha Jahan
 
Report On SME Development in Bangladesh
Report On SME Development in BangladeshReport On SME Development in Bangladesh
Report On SME Development in Bangladesh
Fahad Aziz
 
Entrepreneurship development in bangladesh
Entrepreneurship development in bangladeshEntrepreneurship development in bangladesh
Entrepreneurship development in bangladesh
limz69
 
The digital transformation of society and business: 2020. Futurist keynote sp...
The digital transformation of society and business: 2020. Futurist keynote sp...The digital transformation of society and business: 2020. Futurist keynote sp...
The digital transformation of society and business: 2020. Futurist keynote sp...
Gerd Leonhard
 
SME ( Small and Medium Enterprises)
SME ( Small and Medium Enterprises)SME ( Small and Medium Enterprises)
SME ( Small and Medium Enterprises)
Mohammad Alam
 
history of bangladesh
history of bangladeshhistory of bangladesh
history of bangladesh
Ashraf Rahman
 
Bangladesh Presentation
Bangladesh PresentationBangladesh Presentation
Bangladesh Presentation
dyernathan
 
Part 5: Putting it all together
Part 5: Putting it all togetherPart 5: Putting it all together
Part 5: Putting it all together
NAPWA
 
TTN Sports Pingpong Training 1
TTN Sports Pingpong Training 1TTN Sports Pingpong Training 1
TTN Sports Pingpong Training 1
Duong Thinh
 
Roses
RosesRoses
asdfghjkl;\'
asdfghjkl;\'asdfghjkl;\'
asdfghjkl;\'
guest075159
 
ABTCP-Tappi Presentation 2010
ABTCP-Tappi Presentation 2010ABTCP-Tappi Presentation 2010
ABTCP-Tappi Presentation 2010
SteveScheibe
 
失落的一角
失落的一角失落的一角
失落的一角
chen bowei
 
Classical Series
Classical SeriesClassical Series
Classical Series
Catherine Crowe
 

Viewers also liked (20)

World Future Society Arizona Chapter September 2014 Meeting
World Future Society Arizona Chapter September 2014 MeetingWorld Future Society Arizona Chapter September 2014 Meeting
World Future Society Arizona Chapter September 2014 Meeting
 
Nuclear Energy
Nuclear EnergyNuclear Energy
Nuclear Energy
 
Legal Law on Bangladeshi Perspective
Legal Law on Bangladeshi PerspectiveLegal Law on Bangladeshi Perspective
Legal Law on Bangladeshi Perspective
 
Investment opportunities in bangladesh
Investment opportunities in bangladeshInvestment opportunities in bangladesh
Investment opportunities in bangladesh
 
Redesigning the future of education in Knowmad Society: Our next steps
Redesigning the future of education in Knowmad Society: Our next stepsRedesigning the future of education in Knowmad Society: Our next steps
Redesigning the future of education in Knowmad Society: Our next steps
 
Drones: The Future of Society
Drones: The Future of SocietyDrones: The Future of Society
Drones: The Future of Society
 
SME in Bangladesh
SME in BangladeshSME in Bangladesh
SME in Bangladesh
 
Report On SME Development in Bangladesh
Report On SME Development in BangladeshReport On SME Development in Bangladesh
Report On SME Development in Bangladesh
 
Entrepreneurship development in bangladesh
Entrepreneurship development in bangladeshEntrepreneurship development in bangladesh
Entrepreneurship development in bangladesh
 
The digital transformation of society and business: 2020. Futurist keynote sp...
The digital transformation of society and business: 2020. Futurist keynote sp...The digital transformation of society and business: 2020. Futurist keynote sp...
The digital transformation of society and business: 2020. Futurist keynote sp...
 
SME ( Small and Medium Enterprises)
SME ( Small and Medium Enterprises)SME ( Small and Medium Enterprises)
SME ( Small and Medium Enterprises)
 
history of bangladesh
history of bangladeshhistory of bangladesh
history of bangladesh
 
Bangladesh Presentation
Bangladesh PresentationBangladesh Presentation
Bangladesh Presentation
 
Part 5: Putting it all together
Part 5: Putting it all togetherPart 5: Putting it all together
Part 5: Putting it all together
 
TTN Sports Pingpong Training 1
TTN Sports Pingpong Training 1TTN Sports Pingpong Training 1
TTN Sports Pingpong Training 1
 
Roses
RosesRoses
Roses
 
asdfghjkl;\'
asdfghjkl;\'asdfghjkl;\'
asdfghjkl;\'
 
ABTCP-Tappi Presentation 2010
ABTCP-Tappi Presentation 2010ABTCP-Tappi Presentation 2010
ABTCP-Tappi Presentation 2010
 
失落的一角
失落的一角失落的一角
失落的一角
 
Classical Series
Classical SeriesClassical Series
Classical Series
 

Similar to Alofairi Adel

Theory of Computation - Lectures 6 & 7
Theory of Computation - Lectures 6 & 7Theory of Computation - Lectures 6 & 7
Theory of Computation - Lectures 6 & 7
Dr. Maamoun Ahmed
 
MidtermI-review.pptx
MidtermI-review.pptxMidtermI-review.pptx
MidtermI-review.pptx
amara jyothi
 
CS911-Lecture-13_34826.pptx
CS911-Lecture-13_34826.pptxCS911-Lecture-13_34826.pptx
CS911-Lecture-13_34826.pptx
ALIZAIB KHAN
 
Introduction to the theory of computation
Introduction to the theory of computationIntroduction to the theory of computation
Introduction to the theory of computation
prasadmvreddy
 
Unit2 Toc.pptx
Unit2 Toc.pptxUnit2 Toc.pptx
Unit2 Toc.pptx
viswanath kani
 
2. context free langauages
2. context free langauages2. context free langauages
2. context free langauages
danhumble
 
Implementation of lexical analyser
Implementation of lexical analyserImplementation of lexical analyser
Implementation of lexical analyser
Archana Gopinath
 
Nondeterministic Finite Automata AFN.pdf
Nondeterministic Finite Automata AFN.pdfNondeterministic Finite Automata AFN.pdf
Nondeterministic Finite Automata AFN.pdf
SergioUlisesRojasAla
 
Theory of Computation Regular Expressions, Minimisation & Pumping Lemma
Theory of Computation Regular Expressions, Minimisation & Pumping LemmaTheory of Computation Regular Expressions, Minimisation & Pumping Lemma
Theory of Computation Regular Expressions, Minimisation & Pumping Lemma
Rushabh2428
 
SS UI Lecture 6
SS UI Lecture 6SS UI Lecture 6
SS UI Lecture 6
Avinash Kapse
 
Lec1.pptx
Lec1.pptxLec1.pptx
Lec1.pptx
ziadk6872
 
Chapter 2 limits of DFA NDFA.ppt
Chapter 2  limits of DFA  NDFA.pptChapter 2  limits of DFA  NDFA.ppt
Chapter 2 limits of DFA NDFA.ppt
ArwaKhallouf
 
Resumen material MIT
Resumen material MITResumen material MIT
Resumen material MIT
Rawel Luciano
 
Final fa part1
Final fa part1Final fa part1
Final fa part1
Megha Khanna
 
deterministicfiniteautomatondfa-181008145215 (1).pdf
deterministicfiniteautomatondfa-181008145215 (1).pdfdeterministicfiniteautomatondfa-181008145215 (1).pdf
deterministicfiniteautomatondfa-181008145215 (1).pdf
AmayJaiswal4
 
Theory of Computation FSM Conversions and Problems
Theory of Computation FSM Conversions and ProblemsTheory of Computation FSM Conversions and Problems
Theory of Computation FSM Conversions and Problems
Rushabh2428
 
5. NFA & DFA.pdf
5. NFA & DFA.pdf5. NFA & DFA.pdf
5. NFA & DFA.pdf
TANZINTANZINA
 
Regular Expression to Finite Automata
Regular Expression to Finite AutomataRegular Expression to Finite Automata
Regular Expression to Finite Automata
Archana Gopinath
 
FiniteAutomata_anim.pptx
FiniteAutomata_anim.pptxFiniteAutomata_anim.pptx
FiniteAutomata_anim.pptx
ranjan317165
 
FiniteAutomata_anim.pptx
FiniteAutomata_anim.pptxFiniteAutomata_anim.pptx
FiniteAutomata_anim.pptx
amara jyothi
 

Similar to Alofairi Adel (20)

Theory of Computation - Lectures 6 & 7
Theory of Computation - Lectures 6 & 7Theory of Computation - Lectures 6 & 7
Theory of Computation - Lectures 6 & 7
 
MidtermI-review.pptx
MidtermI-review.pptxMidtermI-review.pptx
MidtermI-review.pptx
 
CS911-Lecture-13_34826.pptx
CS911-Lecture-13_34826.pptxCS911-Lecture-13_34826.pptx
CS911-Lecture-13_34826.pptx
 
Introduction to the theory of computation
Introduction to the theory of computationIntroduction to the theory of computation
Introduction to the theory of computation
 
Unit2 Toc.pptx
Unit2 Toc.pptxUnit2 Toc.pptx
Unit2 Toc.pptx
 
2. context free langauages
2. context free langauages2. context free langauages
2. context free langauages
 
Implementation of lexical analyser
Implementation of lexical analyserImplementation of lexical analyser
Implementation of lexical analyser
 
Nondeterministic Finite Automata AFN.pdf
Nondeterministic Finite Automata AFN.pdfNondeterministic Finite Automata AFN.pdf
Nondeterministic Finite Automata AFN.pdf
 
Theory of Computation Regular Expressions, Minimisation & Pumping Lemma
Theory of Computation Regular Expressions, Minimisation & Pumping LemmaTheory of Computation Regular Expressions, Minimisation & Pumping Lemma
Theory of Computation Regular Expressions, Minimisation & Pumping Lemma
 
SS UI Lecture 6
SS UI Lecture 6SS UI Lecture 6
SS UI Lecture 6
 
Lec1.pptx
Lec1.pptxLec1.pptx
Lec1.pptx
 
Chapter 2 limits of DFA NDFA.ppt
Chapter 2  limits of DFA  NDFA.pptChapter 2  limits of DFA  NDFA.ppt
Chapter 2 limits of DFA NDFA.ppt
 
Resumen material MIT
Resumen material MITResumen material MIT
Resumen material MIT
 
Final fa part1
Final fa part1Final fa part1
Final fa part1
 
deterministicfiniteautomatondfa-181008145215 (1).pdf
deterministicfiniteautomatondfa-181008145215 (1).pdfdeterministicfiniteautomatondfa-181008145215 (1).pdf
deterministicfiniteautomatondfa-181008145215 (1).pdf
 
Theory of Computation FSM Conversions and Problems
Theory of Computation FSM Conversions and ProblemsTheory of Computation FSM Conversions and Problems
Theory of Computation FSM Conversions and Problems
 
5. NFA & DFA.pdf
5. NFA & DFA.pdf5. NFA & DFA.pdf
5. NFA & DFA.pdf
 
Regular Expression to Finite Automata
Regular Expression to Finite AutomataRegular Expression to Finite Automata
Regular Expression to Finite Automata
 
FiniteAutomata_anim.pptx
FiniteAutomata_anim.pptxFiniteAutomata_anim.pptx
FiniteAutomata_anim.pptx
 
FiniteAutomata_anim.pptx
FiniteAutomata_anim.pptxFiniteAutomata_anim.pptx
FiniteAutomata_anim.pptx
 

Recently uploaded

Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Safe Software
 
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge GraphGraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
Neo4j
 
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid ResearchHarnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
Neo4j
 
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
Alex Pruden
 
Apps Break Data
Apps Break DataApps Break Data
Apps Break Data
Ivo Velitchkov
 
AppSec PNW: Android and iOS Application Security with MobSF
AppSec PNW: Android and iOS Application Security with MobSFAppSec PNW: Android and iOS Application Security with MobSF
AppSec PNW: Android and iOS Application Security with MobSF
Ajin Abraham
 
Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024
Jason Packer
 
Principle of conventional tomography-Bibash Shahi ppt..pptx
Principle of conventional tomography-Bibash Shahi ppt..pptxPrinciple of conventional tomography-Bibash Shahi ppt..pptx
Principle of conventional tomography-Bibash Shahi ppt..pptx
BibashShahi
 
What is an RPA CoE? Session 1 – CoE Vision
What is an RPA CoE?  Session 1 – CoE VisionWhat is an RPA CoE?  Session 1 – CoE Vision
What is an RPA CoE? Session 1 – CoE Vision
DianaGray10
 
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-EfficiencyFreshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
ScyllaDB
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
DanBrown980551
 
Dandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity serverDandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity server
Antonios Katsarakis
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
Zilliz
 
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their MainframeDigital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Precisely
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
panagenda
 
Connector Corner: Seamlessly power UiPath Apps, GenAI with prebuilt connectors
Connector Corner: Seamlessly power UiPath Apps, GenAI with prebuilt connectorsConnector Corner: Seamlessly power UiPath Apps, GenAI with prebuilt connectors
Connector Corner: Seamlessly power UiPath Apps, GenAI with prebuilt connectors
DianaGray10
 
Northern Engraving | Nameplate Manufacturing Process - 2024
Northern Engraving | Nameplate Manufacturing Process - 2024Northern Engraving | Nameplate Manufacturing Process - 2024
Northern Engraving | Nameplate Manufacturing Process - 2024
Northern Engraving
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
Ivanti
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
Jakub Marek
 

Recently uploaded (20)

Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
 
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge GraphGraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
 
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid ResearchHarnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
 
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
 
Apps Break Data
Apps Break DataApps Break Data
Apps Break Data
 
AppSec PNW: Android and iOS Application Security with MobSF
AppSec PNW: Android and iOS Application Security with MobSFAppSec PNW: Android and iOS Application Security with MobSF
AppSec PNW: Android and iOS Application Security with MobSF
 
Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024
 
Artificial Intelligence and Electronic Warfare
Artificial Intelligence and Electronic WarfareArtificial Intelligence and Electronic Warfare
Artificial Intelligence and Electronic Warfare
 
Principle of conventional tomography-Bibash Shahi ppt..pptx
Principle of conventional tomography-Bibash Shahi ppt..pptxPrinciple of conventional tomography-Bibash Shahi ppt..pptx
Principle of conventional tomography-Bibash Shahi ppt..pptx
 
What is an RPA CoE? Session 1 – CoE Vision
What is an RPA CoE?  Session 1 – CoE VisionWhat is an RPA CoE?  Session 1 – CoE Vision
What is an RPA CoE? Session 1 – CoE Vision
 
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-EfficiencyFreshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
 
Dandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity serverDandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity server
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
 
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their MainframeDigital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
 
Connector Corner: Seamlessly power UiPath Apps, GenAI with prebuilt connectors
Connector Corner: Seamlessly power UiPath Apps, GenAI with prebuilt connectorsConnector Corner: Seamlessly power UiPath Apps, GenAI with prebuilt connectors
Connector Corner: Seamlessly power UiPath Apps, GenAI with prebuilt connectors
 
Northern Engraving | Nameplate Manufacturing Process - 2024
Northern Engraving | Nameplate Manufacturing Process - 2024Northern Engraving | Nameplate Manufacturing Process - 2024
Northern Engraving | Nameplate Manufacturing Process - 2024
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
 

Alofairi Adel

  • 1. Formal Language, chapter 5, slide 1 Copyright © 2007 by Adam Webber Chapter Five: Nondeterministic Finite Automata AL-ofairi Adel Ahmed
  • 2. Formal Language, chapter 5, slide 2 Copyright © 2007 by Adam Webber A DFA has exactly one transition from every state on every symbol in the alphabet. By relaxing this requirement we get a related but more flexible kind of automaton: the nondeterministic finite automaton or NFA. NFAs are a bit harder to think about than DFAs, because they do not appear to define simple computational processes. They may seem at first to be unnatural, like puzzles invented by professors for the torment of students. But have patience! NFAs and other kinds of nondeterministic automata arise naturally in many ways, as you will see later in this book, and they too have a variety of practical applications.
  • 3. Formal Language, chapter 5, slide 3 Copyright © 2007 by Adam Webber Outline • 5.1 Relaxing a Requirement • 5.2 Spontaneous Transitions • 5.3 Nondeterminism • 5.4 The 5-Tuple for an NFA • 5.5 The Language Accepted by an NFA
  • 4. Formal Language, chapter 5, slide 4 Copyright © 2007 by Adam Webber Not A DFA • Does not have exactly one transition from every state on every symbol: – Two transitions from q0 on a – No transition from q0 (on either a or b) • Though not a DFA, this can be taken as defining a language, in a slightly different way q1 a,b q0 a
  • 5. Formal Language, chapter 5, slide 5 Copyright © 2007 by Adam Webber Possible Sequences of Moves • We'll consider all possible sequences of moves the machine might make for a given string • For example, on the string aa there are three: – From q0 to q0 to q0, rejecting – From q0 to q0 to q1, accepting – From q0 to q1, getting stuck on the last a • Our convention for this new kind of machine: a string is in L(M) if there is at least one accepting sequence q1 a,b q0 a
  • 6. Formal Language, chapter 5, slide 6 Copyright © 2007 by Adam Webber Nondeterministic Finite Automaton (NFA) • L(M) = the set of strings that have at least one accepting sequence • In the example above, L(M) = {xa | x ∈ {a,b}*} • A DFA is a special case of an NFA: – An NFA that happens to be deterministic: there is exactly one transition from every state on every symbol – So there is exactly one possible sequence for every string • NFA is not necessarily deterministic q1 a,b q0 a
  • 7. Formal Language, chapter 5, slide 7 Copyright © 2007 by Adam Webber NFA Advantage • An NFA for a language can be smaller and easier to construct than a DFA • Strings whose next-to-last symbol is 1: DFA: NFA: 0 0 0 1 1 1 1 0 0,1 0,1 1
  • 8. Formal Language, chapter 5, slide 8 Copyright © 2007 by Adam Webber Outline • 5.1 Relaxing a Requirement • 5.2 Spontaneous Transitions • 5.3 Nondeterminism • 5.4 The 5-Tuple for an NFA • 5.5 The Language Accepted by an NFA
  • 9. Formal Language, chapter 5, slide 9 Copyright © 2007 by Adam Webber Spontaneous Transitions • An NFA can make a state transition spontaneously, without consuming an input symbol • Shown as an arrow labeled with ε • For example, {a}* ∪ {b}*: q0 aq1 q2 b
  • 10. Formal Language, chapter 5, slide 10 Copyright © 2007 by Adam Webber ε-Transitions To Accepting States • An ε-transition can be made at any time • For example, there are three sequences on the empty string – No moves, ending in q0, rejecting – From q0 to q1, accepting – From q0 to q2, accepting • Any state with an ε-transition to an accepting state ends up working like an accepting state too q0 aq1 q2 b
  • 11. Formal Language, chapter 5, slide 11 Copyright © 2007 by Adam Webber ε-transitions For NFA Combining ∀ ε-transitions are useful for combining smaller automata into larger ones • This machine is combines a machine for {a}* and a machine for {b}* • It uses an ε-transition at the start to achieve the union of the two languages q0 aq1 q2 b
  • 12. Formal Language, chapter 5, slide 12 Copyright © 2007 by Adam Webber Incorrect Union A = {an | n is odd} B = {bn | n is odd} A ∪ B ? No: this NFA accepts aab a a b b a a b b
  • 13. Formal Language, chapter 5, slide 13 Copyright © 2007 by Adam Webber Correct Union A = {an | n is odd} B = {bn | n is odd} A ∪ B a a b b a a b b
  • 14. Formal Language, chapter 5, slide 14 Copyright © 2007 by Adam Webber Incorrect Concatenation A = {an | n is odd} B = {bn | n is odd} {xy | x ∈ A and y ∈ B} ? No: this NFA accepts abbaab a a b b a a b b
  • 15. Formal Language, chapter 5, slide 15 Copyright © 2007 by Adam Webber Correct Concatenation A = {an | n is odd} B = {bn | n is odd} {xy | x ∈ A and y ∈ B} a a b b a a b b
  • 16. Formal Language, chapter 5, slide 16 Copyright © 2007 by Adam Webber Outline • 5.1 Relaxing a Requirement • 5.2 Spontaneous Transitions • 5.3 Nondeterminism • 5.4 The 5-Tuple for an NFA • 5.5 The Language Accepted by an NFA
  • 17. Formal Language, chapter 5, slide 17 Copyright © 2007 by Adam Webber DFAs and NFAs • DFAs and NFAs both define languages • DFAs do it by giving a simple computational procedure for deciding language membership: – Start in the start state – Make one transition on each symbol in the string – See if the final state is accepting • NFAs do it without such a clear-cut procedure: – Search all legal sequences of transitions on the input string? – How? In what order?
  • 18. Formal Language, chapter 5, slide 18 Copyright © 2007 by Adam Webber Nondeterminism • The essence of nondeterminism: – For a given input there can be more than one legal sequence of steps – The input is in the language if at least one of the legal sequences says so • We can achieve the same result by deterministically searching the legal sequences, but… • ...this nondeterminism does not directly correspond to anything in physical computer systems • In spite of that, NFAs have many practical applications
  • 19. Formal Language, chapter 5, slide 19 Copyright © 2007 by Adam Webber Outline • 5.1 Relaxing a Requirement • 5.2 Spontaneous Transitions • 5.3 Nondeterminism • 5.4 The 5-Tuple for an NFA • 5.5 The Language Accepted by an NFA
  • 20. Formal Language, chapter 5, slide 20 Copyright © 2007 by Adam Webber Powerset • If S is a set, the powerset of S is the set of all subsets of S: P(S) = {R | R ⊆ S} • This always includes the empty set and S itself • For example, P({1,2,3}) = {{}, {1}, {2}, {3}, {1,2}, {1,3}, {2,3}, {1,2,3}}
  • 21. Formal Language, chapter 5, slide 21 Copyright © 2007 by Adam Webber The 5-Tuple • The only change from a DFA is the transition function δ ∀ δ takes two inputs: – A state from Q (the current state) – A symbol from Σ∪{ε} (the next input, or ε for an ε-transition) ∀ δ produces one output: – A subset of Q (the set of possible next states) An NFA M is a 5-tuple M = (Q, Σ, δ, q0, F), where: Q is the finite set of states Σ is the alphabet (that is, a finite set of symbols) δ ∈ (Q × (Σ∪{ε}) → P(Q)) is the transition function q0 ∈ Q is the start state F ⊆ Q is the set of accepting states
  • 22. Formal Language, chapter 5, slide 22 Copyright © 2007 by Adam Webber Example: • Formally, M = (Q, Σ, δ, q0, F), where – Q = {q0,q1,q2} Σ = {a,b} (we assume: it must contain at least a and b) – F = {q2} δ(q0,a) = {q0,q1}, δ(q0,b) = {q0}, δ(q0,ε) = {q2}, δ(q1,a) = {}, δ(q1,b) = {q2}, δ(q1,ε) = {} δ(q2,a) = {}, δ(q2,b) = {}, δ(q2,ε) = {} • The language defined is {a,b}* q0 q1 a q2 b a,b
  • 23. Formal Language, chapter 5, slide 23 Copyright © 2007 by Adam Webber Outline • 5.1 Relaxing a Requirement • 5.2 Spontaneous Transitions • 5.3 Nondeterminism • 5.4 The 5-Tuple for an NFA • 5.5 The Language Accepted by an NFA
  • 24. Formal Language, chapter 5, slide 24 Copyright © 2007 by Adam Webber The δ* Function • The δ function gives 1-symbol moves • We'll define δ* so it gives whole-string results (by applying zero or more δ moves) • For DFAs, we used this recursive definition δ*(q,ε) = q δ*(q,xa) = δ(δ*(q,x),a) • The intuition is the similar for NFAs, but the ε-transitions add some technical hair
  • 25. Formal Language, chapter 5, slide 25 Copyright © 2007 by Adam Webber NFA IDs • An instantaneous description (ID) is a description of a point in an NFA's execution • It is a pair (q,x) where – q ∈ Q is the current state – x ∈ Σ* is the unread part of the input • Initially, an NFA processing a string x has the ID (q0,x) • An accepting sequence of moves ends in an ID (f,ε) for some accepting state f ∈ F
  • 26. Formal Language, chapter 5, slide 26 Copyright © 2007 by Adam Webber The One-Move Relation On IDs • We write if I is an ID and J is an ID that could follow from I after one move of the NFA • That is, for any string x ∈ Σ* and any ω ∈ Σ or ω = ε, I a J q,ωx( )a r ,x()if and only if r ∈δq,w( )
  • 27. Formal Language, chapter 5, slide 27 Copyright © 2007 by Adam Webber The Zero-Or-More-Move Relation • We write if there is a sequence of zero or more moves that starts with I and ends with J: • Because it allows zero moves, it is a reflexive relation: for all IDs I, I a∗ J I a L a J I a∗ I
  • 28. Formal Language, chapter 5, slide 28 Copyright © 2007 by Adam Webber The δ* Function • Now we can define the δ* function for NFAs: • Intuitively, δ*(q,x) is the set of all states the NFA might be in after starting in state q and reading x • Our definition allows ε-transitions, including those made before the first symbol of x is read, and those made after the last δ∗ q,x( )=r q,x( )a∗ r,ε( ){ }
  • 29. Formal Language, chapter 5, slide 29 Copyright © 2007 by Adam Webber M Accepts x • Now δ*(q,x) is the set of states M may end in, starting from state q and reading all of string x • So δ*(q0,x) tells us whether M accepts x: A string x ∈ Σ* is accepted by an NFA M = (Q, Σ, δ, q0, F) if and only if δ*(q0, x) contains at least one element of F.
  • 30. Formal Language, chapter 5, slide 30 Copyright © 2007 by Adam Webber For any NFA M = (Q, Σ, δ, q0, F), L(M) denotes the language accepted by M, which is L(M) = {x ∈ Σ* | δ*(q0, x) ∩ F ≠ {}}. The Language An NFA Defines