926 views

1 Answer

2 2 votes

there are totally 'n' states, 'm' alphabets.

  • Each state can be final or non-final state (2 choices). So, there are 2^n variations.
  • for each state, there is 'm' out edges (alphabets) having 'n' destination nodes to choose from. So, each state will add 'n * m' variations which gives us n^n*m variations.

In total, we will have 2^n * n^n*m DFA's.

Position:
Show:

Related questions

0 0 votes
1 answers 1 answer
1.6k
1.6k views
kumar.dilip asked Jan 19, 2019
1,613 views
Find the minimum number of states in the DFA which accept the language of all strings that begin or end with 00or 11.
0 0 votes
1 1 answer
335
335 views
Umesh Shelke asked Sep 30, 2025
335 views
DFA
For the minimum number of states in a DFA, we $count$ the dead state or Not ?
0 0 votes
1 1 answer
817
817 views
dutta18 asked Sep 21, 2022
817 views
What is the Finite Automata( NFA, epsilon-NFA or DFA) for the regular expression (a*ba)* ?