In the theory of formal languages, the Myhill–Nerode theorem provides a necessary and sufficient condition for a language to be regular. The theorem is named for John Myhill and Anil Nerode, who proved it at the University of Chicago in 1957 (Nerode & Sauer 1957, p. ii).
Given a language L {\displaystyle L} , and a pair of strings x {\displaystyle x} and y {\displaystyle y} , define a distinguishing extension to be a string z {\displaystyle z} such that exactly one of the two strings x z {\displaystyle xz} and y z {\displaystyle yz} belongs to L {\displaystyle L} . Define a relation ∼ L {\displaystyle \sim _{L}} on strings as x ∼ L y {\displaystyle x\;\sim _{L}\ y} if there is no distinguishing extension for x {\displaystyle x} and y {\displaystyle y} . It is easy to show that ∼ L {\displaystyle \sim _{L}} is an equivalence relation on strings, and thus it divides the set of all strings into equivalence classes.
The Myhill–Nerode theorem states that a language L {\displaystyle L} is regular if and only if ∼ L {\displaystyle \sim _{L}} has a finite number of equivalence classes, and moreover, that this number is equal to the number of states in the minimal deterministic finite automaton (DFA) accepting L {\displaystyle L} . Furthermore, every minimal DFA for the language is isomorphic to the canonical one (Hopcroft & Ullman 1979).
Myhill, Nerode (1957)—(1) L {\displaystyle L} is regular if and only if ∼ L {\displaystyle \sim _{L}} has a finite number of equivalence classes.
(2) This number is equal to the number of states in the minimal deterministic finite automaton (DFA) accepting L {\displaystyle L} .
(3) The minimal DFA is unique up to unique isomorphism. That is, for any minimal DFA acceptor, there exists exactly one isomorphism from it to the following one:
Generally, for any language, the constructed automaton is a state automaton acceptor. However, it does not necessarily have finitely many states. The Myhill–Nerode theorem shows that finiteness is necessary and sufficient for language regularity.
Some authors refer to the ∼ L {\displaystyle \sim _{L}} relation as Nerode congruence,[1][2] in honor of Anil Nerode.
(1) If L {\displaystyle L} is regular, construct a minimal DFA to accept it. Clearly, if x , y {\displaystyle x,y} end up in the same state after running through the DFA, then x ∼ L y {\displaystyle x\sim _{L}y} , thus the number of equivalence classes of ∼ L {\displaystyle \sim _{L}} is at most the number of DFA states, which must be finite.
Conversely, if ∼ L {\displaystyle \sim _{L}} has a finite number of equivalence classes, then the state automaton constructed in the theorem is a DFA acceptor, thus the language is regular.
(2) By the construction in (1).
(3) Given a minimal DFA acceptor A {\displaystyle A} , we construct an isomorphism to the canonical one.
Construct the following equivalence relation: x ∼ A y {\displaystyle x\sim _{A}y} if and only if x , y {\displaystyle x,y} end up on the same state when running through A {\displaystyle A} .
Since A {\displaystyle A} is an acceptor, if x ∼ A y {\displaystyle x\sim _{A}y} then x ∼ L y {\displaystyle x\sim _{L}y} . Thus each ∼ L {\displaystyle \sim _{L}} equivalence class is a union of one or more equivalence classes of ∼ A {\displaystyle \sim _{A}} . Further, since A {\displaystyle A} is minimal, the number of states of A {\displaystyle A} is equal to the number of equivalence classes of ∼ L {\displaystyle \sim _{L}} by part (2). Thus ∼ A = ∼ L {\displaystyle \sim _{A}=\sim _{L}} .
Now this gives us a bijection between states of A {\displaystyle A} and the states of the canonical acceptor. It is clear that this bijection also preserves the transition rules, thus it is an isomorphism of DFA. The isomorphism is unique, since for both DFA, any state is reachable from the starting state for some word x {\displaystyle x} .
The Myhill–Nerode theorem may be used to show that a language L {\displaystyle L} is regular by proving that the number of equivalence classes of ∼ L {\displaystyle \sim _{L}} is finite. This may be done by an exhaustive case analysis in which, beginning from the empty string, distinguishing extensions are used to find additional equivalence classes until no more can be found.
For example, the language consisting of binary representations of numbers that can be divided by 3 is regular. Given two binary strings x , y {\displaystyle x,y} , extending them by one digit gives 2 x + b , 2 y + b {\displaystyle 2x+b,2y+b} , so 2 x + b ≡ 2 y + b mod 3 {\displaystyle 2x+b\equiv 2y+b\mod 3} iff x ≡ y mod 3 {\displaystyle x\equiv y\mod 3} . Thus, 00 {\displaystyle 00} (or 11 {\displaystyle 11} ), 01 {\displaystyle 01} , and 10 {\displaystyle 10} are the only distinguishing extensions, resulting in the 3 classes. The minimal automaton accepting our language would have three states corresponding to these three equivalence classes.
Another immediate corollary of the theorem is that if for a language L {\displaystyle L} the relation ∼ L {\displaystyle \sim _{L}} has infinitely many equivalence classes, it is not regular. It is this corollary that is frequently used to prove that a language is not regular.
The Myhill–Nerode theorem can be generalized to tree automata.[3]