Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

NPDA for the language L ={w∈ {a,b}*| w contains equal no. of a’s and b’s}

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Prerequisite – Pushdown automata, Pushdown automata acceptance by final state
Problem – Design a non deterministic PDA for accepting the language L ={w?{a,b}* | w contains equal no. of a’s and b’s}, i.e.,

L = {ab, aabb, abba, aababb, bbabaa, baaababb, .......}

The number of a’s and b’s are same in all the strings.

Explanation –
Here, we need not to maintain any order of a’s and b’s. Thus our state diagram will contain only an initial state and a final state. The count of a’s and b’s is maintained by stack. We will take 3 stack alphabets:

\Gamma = {a, b, z}

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

Approach used in the construction of PDA –
If ‘a’ comes first then push it in stack and if again ‘a’ comes then also push it. Similarly, if ‘b’ comes first (‘a’ did not comes yet) then push it into the stack and if again ‘b’ comes then also push it.

Now, if ‘a’ is present in the top of the stack and ‘b’ comes then pop the ‘a’ from the stack. And if ‘b’ present in the top of the stack and ‘a’ comes then pop the ‘b’ from the stack.

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)
\delta(q0, a, a)  \vdash  (q0, aa)
\delta(q0, b, z)  \vdash  (q0, bz)
\delta(q0, b, b)  \vdash  (q0, bb)
\delta(q0, a, b)  \vdash  (q0, \epsilon)
\delta(q0, b, a)  \vdash  (q0, \epsilon)
\delta(q0, \epsilon, z)  \vdash  (qf, z)

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


So, this is our required non deterministic PDA for accepting the strings which contain equal no. of a’s and b’s.
Example:We will take one input string: “aabbba” PDA accept or not?.
solution:
1.Scan string from left to right.
2.on input ‘a’ and STACK alphabet Z, push the ‘a’s into STACK as : (a,Z/aZ) and state will be q0.
3.second input ‘a’ and STACK alphabet ‘a’, push the ‘a’s into STACK as : (a,a/aa) and state will be q0.
4.Third input ‘b’ and STACK alphabet ‘a’, pop from STACK as : (b,a/∈) and state will be q0.
5.on input ‘b’ and STACK alphabet ‘a’, pop from STACK as : (b,a/∈) and state will be q0.
6.on input ‘b’and STACK alphabet Z, push the ‘b’s into STACK as : (b,Z/bZ) and state will be q0.
7.on input ‘a’ and STACK alphabet ‘b’, pop from STACK as : (a,b/∈) and state will be q0.
8.on input ∈ and STACK alphabet Z, go to final state(qf) as : (∈, Z/Z).

So, at the end the stack becomes empty then we can say that the string is accepted by the PDA.

My Personal Notes arrow_drop_up
Last Updated : 01 Apr, 2019
Like Article
Save Article
Similar Reads