0

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

Brian M. Scott
  • 616,228
Takkun
  • 433

1 Answers1

2

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.

Brian M. Scott
  • 616,228