Open In App

NPDA for accepting the language L = {anb2n| n>=1} U {anbn| n>=1}

Last Updated : 11 Apr, 2025
Comments
Improve
Suggest changes
5 Likes
Like
Report

To understand this question, you should first be familiar with pushdown automata and their final state acceptance mechanism.

Problem

Design a non deterministic PDA for accepting the language L = {an b2n : n>=1} U {an bn : n>=1}, i.e.,

L = {abb, aabbbb, aaabbbbbb, aaaabbbbbbbb, ......} U {ab, aabb, aaabbb, aaaabbbb, ......}

In each string, the number of a's are followed by double number of b's or the number of a’s are followed by equal number of b’s. 

Explanation

Here, we need to maintain the order of a’s and b’s. That is, all the a's are  coming first and then all the b'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

In designing a NPDA, for every 'a' comes before 'b'.

  • For a^n  b^{n}  : Whenever ‘a’ comes, push it in stack and if ‘a’ comes again then also push it in the stack. Then for every b pop a.
  • For a^n  b^{2n}  : Whenever ‘a’ comes, push 'a' two time in stack and if ‘a’ comes again then do the same. When ‘b’ comes (remember b comes after 'a') then pop one ‘a’ from the stack each time.

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

\delta(q0, a, z) \vdash (q1, az)
\delta(q0, a, z) \vdash (q3, aaz)
\delta(q1, a, a) \vdash (q1, aa)
\delta(q1, b, a) \vdash (q2, \epsilon)
\delta(q2, b, a) \vdash (q2, \epsilon)
\delta(q2, \epsilon, z) \vdash (qf1, z)
\delta(q3 a, a) \vdash (q3, aaa)
\delta(q3, b, a) \vdash (q4, \epsilon)
\delta(q4, b, a) \vdash (q4, \epsilon)
\delta(q4, \epsilon, z) \vdash (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 = {an b2n : n>=1} U {an bn : n>=1}.


Explore