Prerequisite: Basic Knowledge of Pushdown Automata.
Problem
Design a non deterministic PDA for accepting the language L = {anbncm | m, n>=1}, i.e.,
L = { abc, abcc, abccc, aabbc, aaabbbcc, aaaabbbbccccc, ...... }
In each of the string, the number of a's is equal to number of b's and the number of c's is independent of the number of a's and b's.
Explanation
This problem is quite similar to the NPDA for accepting the language L = {anbn | n>=1 }. The only difference is that here we add cm.
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 and then c'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, 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'. When βaβ comes then push it in stack and if again βaβ comes then also push it. After that, when βbβ comes then pop one 'a' from the stack each time . Then for 'c', we will do nothing. So, at the end if the stack becomes empty then we can say that the string is accepted by the PDA.
Stack transition functions
π³ (q0, a, z) β (q0, az) π³ (q0, a, a) β (q0, aa) π³ (q0, b, a) β (q1, π ) π³ (q1, b, a) β (q1, π) π³ (q1, c, z) β (qf, z ) π³ (qf, c, z) β (qf, z )
Where,
- q0 = Initial state
- qf = Final state
- π indicates pop operation

So, this is our required non deterministic PDA for accepting the language L = {anbncm | m, n>=1}.