Given two NFAs, is there a way to figure out if there exists a language that works for both of them?

58 Views Asked by At

Given two non-deterministic finite automaton, is there a way to determine if there exists a single language that satisfies them both?

1

There are 1 best solutions below

0
On BEST ANSWER

There is an algorithm to convert them to deterministic finite-state automata. Then you can use any of the algorithms mentioned in this question and the answers to it.