Which is the best or easiest method for determining equivalence between two automata?

I.e., if given two finite automata A and B, how can I determine whether both recognize the same language?

They are both deterministic or both nondeterministic.

link|improve this question

2  
You should flag your homework with [homework]. That makes it easier for us to provide appropriate help. You should provide your best answer so we can comment on it. Please don't ask us to do your homework for you. What do you learn then? – S.Lott Aug 1 '11 at 22:05
this should be at cstheory.stackexchange.com – Gabriel Ščerbák Aug 1 '11 at 22:07
What do you mean "equivalent"? You say they generate the same language. Do you mean the graphs are isomorphic? – Patrick87 Aug 1 '11 at 22:09
1  
DFA = AFD, NFA = AFN, NFA-lambda = AFN-lambda – Melkhiah66 Aug 1 '11 at 22:20
3  
@patrick The automatons don't generate languages, automatons recognize languages – Melkhiah66 Aug 1 '11 at 22:23
show 10 more comments
feedback

1 Answer

up vote 4 down vote accepted

Two nondeterministic finite automota (NFA's) are equivalent if they accept the same language.

To determine whether they accept the same language, we look at the fact that every NFA has a minimal DFA, where no two states are identical. A minimal DFA is also unique. Thus, given two NFA's, if you find that their corresponding minimal DFA's are equivalent, then the two NFA's must also be equivalent.

To reduce an NFA/DFA to a minimal DFA, follow the procedures outlined here (skip the first section and go to "Converting NFA to DFA"). As this sounds like homework, I assume that you are very familiar with these techniques.

For an in-depth study on this topic, I highly recommend that you read An Introduction to Formal Language and Automata.

link|improve this answer
excellent answer is exactly what I wanted. – Melkhiah66 Aug 1 '11 at 22:30
An alternative would be to generate any DFAs for the NFAs (e.g. by the subset construction), compute the complement of one of the two DFAs (e.g. by making accepting states rejecting and vice versa), building the Cartesian product machine and testing the intersection to see whether it accepts the empty language (e.g., by testing strings of length up to n). I wouldn't call this efficient, but you'd still need to test graph isomorphism on the output of Stargazer712's answer. – Patrick87 Aug 1 '11 at 22:32
@Patrick87 determining the sufficient n might not be easy, or is there some algorithm for computing it? And what do you mean by need to test the graph isomorphism? – Gabriel Ščerbák Aug 1 '11 at 22:37
After you generate two minimal DFAs for the original FAs, how do you algorithmically determine they are the same? Sounds like a graph isomorphism problem to me. By the pumping lemma, you only need to choose n = the number of states in your final (minimal, if desired) FA. Alternatively, you can minimize the CP machine and check a very easy instance of graph isomorphism (only the start state, no accepting states). – Patrick87 Aug 1 '11 at 22:41
1  
@Patrick: I think determining the equivalence of two minimal DFA's should be easy, simply do a BFS through both in the same order. As the corresponding edges should be labeled by the same characters, simply sort the outgoing edges from each state by those. – Paŭlo Ebermann Aug 1 '11 at 22:48
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.