11,158 views

3 Answers

Best answer
28 votes
28 votes

4 states are needed...

selected by
3 votes
3 votes

This a complex type question if we directly try to create a dfa.The best method is create an nfa then convert it to dfa using subset construction method :(check video )

0 votes
0 votes

Minimum number of states required construct DFA where Nth bit from last is fixed is, pow(2,n);

in above example n = 2, so pow(2,2) = 4 states required

Related questions

0 votes
0 votes
2 answers
2
Manuj_og asked May 2, 2023
223 views
on seeing a dfa how can we predict the number of states in it?
3 votes
3 votes
1 answer
3
abhinowKatore asked Jan 14, 2023
552 views
Please explain what is difference between $\overline{L(N)}$ and $L(\overline{N}$) ?
0 votes
0 votes
1 answer
4
Dknights asked Nov 19, 2022
326 views
can we solve it with a minimum of 4 states?