retagged by
297 views

2 Answers

1 votes
1 votes

The given NFA is itself DFA. So, Just apply DFA minimization algorithm on the given DFA.

Various DFA minimization algorithms could be used But let me use the most convenient one that I feel :

DFA Minimization using Equivalence Theorem :

0-equivalent : $\left \{ q_\lambda,q_0,q_1,q_{00},q_{01},q_{10} \right \} \left \{ q_{11} \right \}$

1- equivalent : $\left \{ q_\lambda,q_0,q_{00},q_{10} \right \} \left \{ q_1,q_{01} \right \} \left \{ q_{11} \right \}$

2-equivalent : $\left \{ q_\lambda,q_0,q_{00},q_{10} \right \} \left \{ q_1,q_{01} \right \} \left \{ q_{11} \right \}$

Hence, We get Three distingushable states in the given DFA. 

So, Answer = $3$

Related questions

3 votes
3 votes
1 answer
1
2 votes
2 votes
2 answers
2
anonymous asked Sep 9, 2015
1,788 views
If NFA has n states, then its DFA can have______states in worst case.
0 votes
0 votes
1 answer
3
Lakshman Bhaiya asked Dec 27, 2018
576 views
Construct a minimal DFA which accepts set of all strings over {a,b}, such that$1)$Second symbol from $RHS$ should be $‘a’$$2)$Third symbol from $RHS$ should be $‘a�...