Nondeterministic Finite Automata: Nondeterminism Subset Construction ε-Transitions
Nondeterministic Finite Automata: Nondeterminism Subset Construction ε-Transitions
Nondeterministic Finite Automata: Nondeterminism Subset Construction ε-Transitions
Nondeterminism
A nondeterministic finite automaton has the ability to be in several states at once. Transitions from a state on an input symbol can be to any set of states.
Nondeterminism (2)
Start in one start state. Accept if any sequence of choices leads to a final state. Intuitively: the NFA always guesses right.
Formal NFA
A finite set of states, typically Q. An input alphabet, typically . A transition function, typically . A start state in Q, typically q0. A set of final states F Q.
Language of an NFA
A string w is accepted by an NFA if (q0, w) contains at least one final state. The language of the NFA is the set of strings it accepts.
1 4 7
2 5 8
3 6 9
For our chessboard NFA we saw that rbb is accepted. If the input consists of only bs, the set of accessible states alternates between {5} and {1,3,7,9}, so only even-length, nonempty strings of bs are accepted. What about strings with at least one r?
9
Equivalence (2)
Surprisingly, for any NFA there is a DFA that accepts the same language. Proof is the subset construction. The number of states of the DFA can be exponential in the number of states of the NFA. Thus, NFAs accept exactly the regular languages.
11
Subset Construction
Given an NFA with states Q, inputs , transition function N, state state q0, and final states F, construct equivalent DFA with:
States 2Q (Set of subsets of Q). Inputs . Start state {q0}. Final states = all those with a member of F.
12
Critical Point
The DFA states have names that are sets of NFA states. But as a DFA state, an expression like {p,q} must be understood to be a single symbol, not as a set. Analogy: a class of objects whose values are sets of objects of another class.
13
14
Alert: What were doing here is the lazy form of DFA construction, where we only construct a state 15 if we are forced to.
16
17
18
19
20
21
22
Induction
Assume IH for strings shorter than w. Let w = xa; IH holds for x. Let N(q0, x) = D({q0}, x) = S. Let T = the union over all states p in S of N(p, a). Then N(q0, w) = D({q0}, w) = T.
23
Example: -NFA
25
Closure of States
CL(q) = set of states you can reach from state q following only arcs labeled . Example: CL(A) = {A}; CL(E) = {B, C, D, E}.
1 A 0 B 1 C 1 E D
Extended Delta
Intuition: (q, w) is the set of states you can reach from q following a path labeled w. Basis: (q, ) = CL(q).
1. Start with (q, x) = S.
1 A 0
B 1 C 1
(A, 0) = CL({E}) = {B, C, D, E}. (A, 01) = CL({C, D}) = {C, D}. Language of an -NFA is the set of strings w such that (q0, w) contains a final state.
28
Converse requires us to take an -NFA and construct an NFA that accepts the same language. We do so by combining transitions with the next transition on a real input.
29
Transitions on
a Transitions on
30
Equivalence (2)
Start with an -NFA with states Q, inputs , start state q0, final states F, and transition function E. Construct an ordinary NFA with states Q, inputs , start state q0, final states F, and transition function N.
31
Equivalence (3)
Compute N(q, a) as follows:
1. Let S = CL(q). 2. N(q, a) is the union over all p in S of E(p, a).
32
Equivalence (4)
Prove by induction on |w| that CL(N(q0, w)) = E(q0, w). Thus, the -NFA accepts w if and only if the ordinary NFA does.
33
Interesting closures: CL(B) = {B,D}; CL(E) = {B,C,D,E} A B C * D E F 0 1 {E} {B} {C} {D} {D} {F} {B, C} {D}
Example: -NFAto-NFA
A * B C * D * E F Doesnt change, 0 1 {E} {B} since B, C, D {C} have no trans {D} itions on 0. {F} {C, D} {D} Since closure of E includes B and C; which have transitions on 1 34 to C and D.
-NFA
Summary
DFAs, NFAs, and NFAs all accept exactly the same set of languages: the regular languages. The NFA types are easier to design and may have exponentially fewer states than a DFA. But only a DFA can be implemented!
35