Open In App

NPDA for accepting the language L = {amb(m+n)cn| m,n ≥ 1}

Last Updated : 10 Apr, 2025
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report

A solid understanding of pushdown automata and their input acceptance via final states is essential before proceeding with this topic.

Problem

Design a non deterministic PDA for accepting the language L = {am b(m+n) cn | m,n ≥ 1}.

The strings of given language will be: 

L = {abbc, abbbcc, abbbcc, aabbbbcc, ......}

In each of the string, the total sum of the number of 'a’ and 'c' is equal to the number of 'b’s. And all c's are come after 'a' and 'b'. 

Explanation 

Here, we need to maintain the order of a’s, b's and c’s. That is, all the a’s  are coming first and then all the b’s are coming after that all the c's. Thus, we need a stack along with the state diagram. The count of a’s, b's and c’s is maintained by the stack. We will take 3 stack alphabets: 

𝚪 = { a, b, z }

Where, 𝚪 = set of all the stack alphabet 
z = stack start symbol 

Approach Used in the Construction of PDA 

As we want to design a NPDA, thus every time 'a' comes before 'b' and 'b' comes before 'c'. First we have to count number of a's and that number should be equal to number of b's. When all a's are finished by b's, then count number of b's and that should be equal to number of c's. 

For all the 'a' we will push 'a' into the stack each time and then start popping them when 'b's are coming. After finishing all the popping of all the 'a's we will start pushing 'b' for the rest 'b's. And when 'c's are coming we will pop these 'b' from the stack each time. So, at the end if the stack becomes empty then we can say that the string is accepted by the PDA. 

Stack Transition Functions

\delta(q0, a, z) \vdash (q0, az) [push a]
\delta(q0, a, a) \vdash(q0, aa) [push a for every a]
\delta(q0, b, a) \vdash (q1, \epsilon) [ change state and for every b pop a]
\delta(q1, b, a) \vdash(q1, \epsilon) [for every b pop a]
\delta(q1, b, z) \vdash(q1, bz) [reached end push b]
\delta(q1, b, b) \vdash (q1, bb) [for every b push b]
\delta(q1, c, b) \vdash (q2, \epsilon) [ change state and pop b for c ]
\delta(q2, c, b) \vdash (q2, \epsilon) [pop b for every c]
\delta(q2, \epsilon, z) \vdash (qf , z) [reached final state and stack is empty]


Where, q0 = Initial state  qf = Final state 
\epsilon   = indicates pop operation 

NPDA for L = {a^m b^(m+n) c^n | m,n ≥ 1}
NPDA for L = {a^m b^(m+n) c^n | m,n ≥ 1}

Next Article
Practice Tags :

Similar Reads