Copyright © 2006 Gradiance Corporation.

 

 

     

Finite Automata

 

 



 

DFA's, NFA's, automata with epsilon-rules.

 


1.  

Here is a nondeterministic finite automaton with epsilon-transitions:

Suppose we use the subset construction of Algorithm 3.2 (p. 118) to convert this epsilon-NFA to a deterministic finite automaton with a dead state, with all transitions defined, and with no state that is inaccessible from the start state. Which of the following would be a transition of the DFA?

Note: we use S-x->T to say that the DFA has a transition on input x from state S to state T.

 

 

 

 a) 

{A,B}-2->{B,C,D}

 

 b) 

{A,B}-3->{C,D}

 

 c) 

{A,B}-4->{D}

 

 d) 

{C,D}-4->{C,D}

 

 

 

 

 

2.  

Examine the following DFA:

Identify in the list below the string that this automaton accepts.

 

 

 

 a) 

010011

 

 b) 

01011

 

 c) 

10000

 

 d) 

1011

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

3.  

Here is an epsilon-NFA:

Suppose we construct an equivalent DFA by the construction of Algorithm 3.20 (p. 153). That is, start with the epsilon-closure of the start state A. For each set of states S we construct (which becomes one state of the DFA), look at the transitions from this set of states on input symbol 0. See where those transitions lead, and take the union of the epsilon-closures of all the states reached on 0. This set of states becomes a state of the DFA. Do the same for the transitions out of S on input 1. When we have found all the sets of epsilon-NFA states that are constructed in this way, we have the DFA and its transitions.

Carry out this construction of a DFA, and identify one of the states of this DFA (as a subset of the epsilon-NFA's states) from the list below.

 

 

 

 a) 

BCDFGHIJKMN

 

 b) 

BCDEGHIJK

 

 c) 

ABCDEFGHIJKLMN

 

 d) 

BCD

 

 

 

 

 

4.  

The following nondeterministic finite automaton:

accepts which of the following strings?

 

 

 

 a) 

0110011

 

 b) 

10001010

 

 c) 

01010011

 

 d) 

10011010