Open In App

NPDA for accepting the language L = {a<sup>i</sup>b<sup>j</sup>c<sup>k</sup>d<sup>l</sup> | i==k or j==l,i>=1,j>=1}

Prerequisite – Pushdown automata, Pushdown automata acceptance by final stateProblem – Design a non deterministic PDA for accepting the language L = { : i==k or j==l, i>=1, j>=1}, i.e.,
L = {abcd, aabccd, aaabcccd, abbcdd, aabbccdd, aabbbccddd, ......} 
In each string, the number of a’s are followed by any number of b’s and b’s are followed by the number of c’s equal to the number of a’s and c’s are followed by number of d’s equal number of b’s. Explanation – Here, we need to maintain the order of a’s, b’s, c’s and d’s.That is, all the a’s are coming first then all the b’s are coming and then all the c’s are coming then all the d’s are coming . Thus, we need a stack along with the state diagram. The count of a’s and b’s is maintained by the stack.We will take 2 stack alphabets:
 = { a, b, c, d, z } 
Where, = set of all the stack alphabet z = stack start symbol Approach used in the construction of PDA – In designing a NPDA, for every a’, ‘b’, ‘c’ and ‘d’ will comes in proper order. So that the stack becomes empty.If stack is empty then we can say that the string is accepted by the PDA. Stack transition functions –
(q0, a, z)  (q1, az)
(q0, a, z)  (q3, z)
(q1, a, a)  (q1, aa)
(q1, b, a)  (q1, a)
(q1, c, a)  (q2, ) 
(q2, c, a)  (q2, ) 
(q2, d,  )  (q2, ) 
(q2, , z)  (qf1, z)   
(q3 a, z)  (q3, z)
(q3 b, z)  (q3, bz)
(q3 b, b)  (q3, bb)
(q3 c, b)  (q3, b)
(q3, d, b)  (q4, ) 
(q4, d, b)  (q4, ) 
(q4, , z)  (qf2, z)   
Where, q0 = Initial state qf1, qf2 = Final state = indicates pop operation
So, this is our required non deterministic PDA for accepting the language L ={ : i==k or j==l, i>=1, j>=1}.
Article Tags :