Prerequisite: Finite Automata Introduction
In 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:

In 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.
Python Implementation:
def stateX(n):
if ( len (n) = = 0 ):
print ( "string not accepted" )
else :
if (n[ 0 ] = = 'a' ):
stateY(n[ 1 :])
elif (n[ 0 ] = = 'b' ):
print ( "string not accepted" )
def stateY(n):
if ( len (n) = = 0 ):
print ( "string accepted" )
else :
if (n[ 0 ] = = 'a' ):
stateY(n[ 1 :])
elif (n[ 0 ] = = 'b' ):
stateY(n[ 1 :])
n = input ()
stateX(n)
|
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:

In 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.
Python Implementation:
def stateX(n):
if ( len (n) = = 0 ):
print ( "string not accepted" )
else :
if (n[ 0 ] = = 'b' ):
stateY(n[ 1 :])
elif (n[ 0 ] = = 'a' ):
print ( "string not accepted" )
def stateY(n):
if ( len (n) = = 0 ):
print ( "string accepted" )
else :
if (n[ 0 ] = = 'a' ):
stateY(n[ 1 :])
elif (n[ 0 ] = = 'b' ):
stateY(n[ 1 :])
n = input ()
stateX(n)
|
Level Up Your GATE Prep!
Embark on a transformative journey towards GATE success by choosing
Data Science & AI as your second paper choice with our specialized course. If you find yourself lost in the vast landscape of the GATE syllabus, our program is the compass you need.
Last Updated :
03 Jul, 2020
Like Article
Save Article