Strings of DFA
- 2 Accepted strings of length 1={a}
- 2 Accepted strings of length 2={No Strings}
- 2 Accepted strings of length 5={ abaab, No more strings}
- 2 Accepted strings of length 8={aaaaaaab, abbbbaab, many more strings}
- 2 Accepted strings of length 10={aaaaaaaaab, abbbbbbaab, many more strings}
- 2 Accepted strings of length 15={aaaaaaaaaaabaab,abbbbbbbbbbbaab, many more strings}
- 2 Accepted strings of length 20={aaaaaaaaaaaaaaaaaaab,abbbbbbbbbbbbbbbbaab, More strings}
- 2 Accepted strings of length 25={aaaaaaabaaaaaaaaaaaaaaaab,abbbbbbbbbbbbbbbbbbbbbaab, many more strings}
How to read strings from FA?
How to read a?
0 to 4
How to read abaab?
0 to 4 | 4 to 1 | 1 to 2 | 2 to 3 | 3 to 4
How to read aaaaaaab?
0 to 4 | 4 to 2 | 2 to 3 Ā | 3 to 2 | 2 to 3 | 3 to 2 | 2 to 3 | 3 to 4
How to read abbbbaab?
0 to 4 | 4 to 1 | 1 to 1 | 1 to 1 | 1 to 1 | 1 to 2 | 2 to 3 | 3 to 4
How to read aaaaaaaaab?
0 to 4 | 4 to 2 | 2 to 3 | 3 to 2 | 2 to 3 | 3 to 2 | 2 to 3 | 3 to 2 | 2 to 3 | 3 to 4
How to read aaaaaaaaaaabaab?
0 to 4 | 4 to 2 | 2 to 3 | 3 to 2 | 2 to 3 | 3 to 2 | 2 to 3 | 3 to 2 | 2 to 3 | 3 to 2 | 2 to 3 | 3 to 4
| 4 to 2 | 2 to 3 | 3 to 4
How to read abbbbbbbbbbbaab?
0 to 4 | 4 to 1 | 1 to 1 | 1 to 1 | 1 to 1 | 1 to 1 | 1 to 1 | 1 to 1 | 1 to 1 | 1 to 1 | 1 to 1 | 1 to 1 | 1 to 2 | 2 to 3 | 3 to 4
How to read aaaaaaaaaaaaaaaaaaab?
0 to 4 | 4 to 2 | 2 to 3 | 3 to 2 | 2 to 3 | 3 to 2 | 2 to 3 | 3 to 2 | 2 to 3 | 3 to 2 | 2 to 3 | 3 to 2 | 2 to 3 |3 to 2 | 2 to 3 |3 to 2 | 2 to 3 |3 to 2 | 2 to 3 |3 to 4
How to read aaaaaaabaaaaaaaaaaaaaaaab?
0 to 4 | 4 to 2 | 2 to 3 | 3 to 2 | 2 to 3 | 3 to 2 | 2 to 3 | 3 to 4 | 4 to 2 | 2 to 3 | 3 to 2 |2 to 3 | 3 to 2 |2 to 3 | 3 to 2 |2 to 3 | 3 to 2 |2 to 3 | 3 to 2 |2 to 3 | 3 to 2 |2 to 3 | 3 to 2 |2 to 3 |3 to 4
List of 100+ Important Deterministic Finite Automata
Finite Automata Exercise Solution
Here I am showing you a list of some more important Deterministic Finite Automata used in the theory of automata and theory of computation.
- DFA forĀ Ā (a+b)* (a+b)aĀ .
- DFA forĀ (bb)*(aa)*Ā .
- DFA forĀ Ā b+a(a+b)*+a.
- DFA forĀ (a+b)*b+(bb)*a.
- DFA forĀ bb+a(a+b)*+aa.
- DFA forĀ Ā a(a+b)*+bb(a)*Ā .
- DFA forĀ Ā a(a+b)b*+bb(a)*.
- DFA forĀ Ā b(aa)*a+a(bb)*b.
- DFA forĀ a+a(aa+b)*(aa)b.
- DFA forĀ a+a(aa+b)*+(aa)b.
- DFA forĀ (a+b)b(a+b)*+(aa)*b.
- FA for stringsĀ starting with a and ending with a.
- FA for the language of all those stringsĀ starting with a.
- FA for the language of all those strings containingĀ aa as a substring.
- DFA for the language of all those stringsĀ starting and ending with the same letters.
- DFA for the language of all those stringsĀ starting and ending with different letters.
- DFA for the language of all those stringsĀ having double 0 or double 1.
- DFA for the language of all those stringsĀ starting and ending with b.
- DFA forĀ ending with b.
- DFA for the string ofĀ even Aās and even bās.
- DFA for the regular expression ofĀ Ā a(a+b)*+(bb)+a(ba)*+aba+bb*(a+b)*.
- RegExp and DFA for strings havingĀ triple aās or triple bās.