Header Ads Widget

Myhill nerode theorem

The Myhill Nerode theorem is a fundamental result coming down to the theory of languages. This theory was proven by John Myhill and Anil Nerode in 1958. It is used to prove whether or not a language L is regular and it is also used  for minimization of states in DFA( Deterministic Finite Automata). 

To understand this theorem, first we need to understand what Indistinguishability is :

Given a language L and x,y are string over ∑*, if for every string z ∈ ∑*, xz, yz ∈ L or xz, yz ∉ L then x and y are said to be indistinguishable over language L. Formally, we denote that x and y are indistinguishable over L by the following notation : x ≡y. 

 ≡is an equivalence relation as it is :

1) Reflexive : For all string x, xz ∈ L iff  xz ∈ L therefore x ≡L x.

2) Symmetric : Suppose  x ≡L y. This means either xz, yz ∈ L or xz, yz ∉ L for all z ∈ ∑*. Equivalently this means yz,xz  ∈ L or yz, xz ∉ L for all z ∈ ∑* which implies y ≡L x 

3) Transitive : Suppose  x ≡L y and y ≡w. Then suppose for the sake of contradiction that x and w are not indistinguishable. This means there must exist some z such that exactly one of xz and wz is a member of L. Assume xz is a member of L and wz is not a member of L. xz ∈ L implies yz ∈ L. wz ∉ L implies that yz ∉ L. This is a contradiction since yz cannot both a member and not be a member of L. Therefore x ≡L y and y ≡L w ⇒ x ≡L w.

Since ≡L is an equivalence relation over ∑*, ≡L partitions ∑* into disjoint sets called equivalence classes.


A language is regular if and only if ≡L partitions ∑* into finitely many equivalence classes. If ≡partitions ∑* into n equivalence classes, then a minimal DFA recognizing L has exactly states. 

  • The Myhill-Nerode theorem is an important characterization of regular languages, and it also has many practical implications.
  • One consequence of the theorem is an algorithm for minimizing DFAs which is a vital step in automata theory.

Myhill Nerode Theorem :
The MyhillNerode Theorem states that for a language L such that L C Σ*, the following statements hold good :-
  • There is a DFA that accepts L(L is regular)
  • There is a right invariant equivalence relation ~ of finite index such L is a union of some of the equivalence classes of ~.
  • ~L is of finite index.

    Example:

    enter image description here

    Step 1: Consider every final-nonfinal state pair and tick it working only on the lower triangular part of the table

    enter image description here

    Step 2: Consider all the un-ticked areas of step1

    For an input(either a or b) for each un-ticked state, see the intermediate state For the area (r,t):

    (r,a) => {r} and (t,a) =>s

    So, here the intermediate state is ‘s’

    Now check if {r,s} is ticked in step1.

    If yes, tick {r,t} as well.

    Similarly, {q,u} and {r,q} are also ticked

    Step3: Continue step2 until all states have been processed. Once no more can be ticked, algorithm terminates.

    Hence, here {s,u} is also ticked.

    Final table now becomes

    enter image description here

    Step 4: Check the spaces which are still un-ticked and such states can be merged together.

    In the final minimized DFA, q-s are the new states and p-t are the new states


    To prove that L = {anbn | n ≥ 0} is not regular.

    We can show that L has infinitely many equivalence classes by showing that ak and ai are distinguishable by L whenever k ≠ i. Thus, for x = ak and y = ai we let z = bk. Then xz = akbk  is in the language but yz = aibk is not. Thus, each equivalence class of L can contain at most one string of the form ai so there must be infinitely many equivalence classes. That means L is not regular by the Myhill Nerode theorem.

    Note : To prove whether or not a language L is regular is also done using Pumping Lemma, the distinction between this and Myhill Nerode theorem is that, there are some non-regular language satisfying the Pumping Lemma but no such non regular language is there which satisfies Myhill Nerode theorem.

    Post a Comment

    0 Comments