601 views
1 votes
1 votes
What is the minimum number of states it takes a Finite Automata to accept a string whose nth bit from RHS is 1 over {0, 1}*?

1 Answer

2 votes
2 votes

This is a standard FA design..

When we say FA , it is taken to be as an NFA..

So for nth bit from the right to be '1' , no of states in minimal NFA = n + 1

As far as number of states in minimal DFA is concerned , it is 2n..

One question came on the same topic this yr and I did a mistake ; wrote the number of states considering NFA while the question asked about minimal DFA..

Related questions