in Theory of Computation
383 views
1 vote
1 vote
IF a language L(M) over a Σ={a,b} accepts strings ending with b. Language L(N) over a Σ={a,b} accepts strings ending with a.

Then what is minimal DFA for L(M) Ո L(N) ?
in Theory of Computation
383 views

1 Answer

3 votes
3 votes
The minimal DFA will be one in which there is only one start state and no final state as the language generated by the L(M) $\bigcap$ L(N) will be $\phi$.

L(M) = {b, bb, ab.......}

L(N) = {a, ba, aa,......}

L(M) $\bigcap$ L(N) = $\phi$

Related questions