![]() |
VOOZH | about |
Prerequisite:
Finite Automata IntroductionIn this article, we will see some designing of Non-Deterministic Finite Automata (NFA).
Problem-1:
Construction of a minimal NFA accepting a set of strings over {a, b} in which each string of the language starts with 'a'.
Explanation:
The desired language will be like:
L1 = {ab, abba, abaa, ...........}
Here as we can see that each string of the above language starts with 'a' and end with any alphabet either 'a' or 'b'. But the below language is not accepted by this NFA because none of the string of below language starts with 'a'.
L2 = {ba, ba, babaaa..............}
The state transition diagram of the desired language will be like below:
👁 ImageIn the above NFA, the initial state 'X' on getting 'a' as the input it transits to a final state 'Y'. The final state 'Y' on getting either 'a' or 'b' as the input it remains in the state of itself.
output:
String accepted
Problem-2:
Construction of a minimal NFA accepting a set of strings over {a, b} in which each string of the language is not starting with 'a'.
Explanation:
The desired language will be like:
L1 = {ba, bba, bbaa, ...........}
Here as we can see that each string of the above language is not starting with 'a' but can end with either 'a' or 'b'. But the below language is not accepted by this NFA because some of the string of below language starts with 'a'.
L2 = {ab, aba, ababaab..............}
The state transition diagram of the desired language will be like below:
👁 ImageIn the above NFA, the initial state 'X' on getting 'b' as the input it transits to a final state 'Y'. The final state 'Y' on getting either 'a' or 'b' as the input it remains in the state of itself.