Show that language is accepted by a pushdown automaton

  • MHB
  • Thread starter evinda
  • Start date
  • Tags
    Language
In summary: Let's see...\begin{array}{}S&\to& axyb \\x &\to& \varnothing \\y &\to& \varnothing \end{array}So $ab$ is accepted. Is that allowed?Btw, perhaps you should use different casing (like $a$ and $X$) to visually distinguish terminals from...
  • #36
evinda said:
Because I am not really familiar with the construction of pushdown automata!
Deterministic pushdown automata! That's not quite the same thing as regular (nondeterministic) pushdown automata.

Let's say that I am 80% sure the idea of this exercise is to construct an automaton, and I wouldn't be able to help you do this any other way because this would require me to do some reviewing.
 
Technology news on Phys.org
  • #37
Evgeny.Makarov said:
Deterministic pushdown automata! That's not quite the same thing as regular (nondeterministic) pushdown automata.

Let's say that I am 80% sure the idea of this exercise is to construct an automaton, and I wouldn't be able to help you do this any other way because this would require me to do some reviewing.

Could you give me an example of a Deterministic pushdown automaton?

- - - Updated - - -

I like Serena said:
Oh wait! :eek:
The PDA correctly accepts $a^nb^nb^+$ in the upper branch.
However, in the lower branch it accepts $b^na^na^+$... that is not right. :eek:
It should accept $a^+a^nb^n$.

Is the the pushdown automaton we talked about deterministic?
 
  • #38
I like Serena said:
Oh wait! :eek:
The PDA correctly accepts $a^nb^nb^+$ in the upper branch.
However, in the lower branch it accepts $b^na^na^+$... that is not right. :eek:
It should accept $a^+a^nb^n$.

I think it is deterministic,or am I wrong?I will try to change that what you said me and I will tell you what I have tried.. :)
 
  • #39
evinda said:
Could you give me an example of a Deterministic pushdown automaton?

The example from wiki I gave earlier in this thread is actually a deterministic pushdown automaton.
That is because whenever the automaton reads a symbol from the input, the state changes are uniquely determined. There is never a choice between 2 different paths.
- - - Updated - - -
Is the the pushdown automaton we talked about deterministic?
I think it is deterministic,or am I wrong?I will try to change that what you said me and I will tell you what I have tried.. :)

Your last pushdown automaton is not deterministic.
Right at the beginning there already is a choice between 2 paths that both accept an $a$.

I would suggest to first try to make a deterministic pushdown automaton for $a^{n+m}b^n$ with $m>0$.
 
  • #40
evinda said:
Could you give me an example of a Deterministic pushdown automaton?
Besides the responses given above, I would if you convince me that this (that is, posting information that is readily available online, let alone in textbooks and lecture notes) is the optimal way to proceed. Why should we type and post information that has been already composed and verified by people who are more competent, like book authors? And why do you keep asking questions as if you have no access to educational materials? If indeed you have no textbook and no access to lecture notes, then it's not a way to learn something. If you have access but are unwilling to dig in and prefer to rely on common sense, then how can you discover subtler issues, like the fact that at least one book has slightly different definitions of accepted languages for regular pushdown and deterministic pushdown automata?
 
  • #41
I like Serena said:
The example from wiki I gave earlier in this thread is actually a deterministic pushdown automaton.
That is because whenever the automaton reads a symbol from the input, the state changes are uniquely determined. There is never a choice between 2 different paths.Your last pushdown automaton is not deterministic.
Right at the beginning there already is a choice between 2 paths that both accept an $a$.

I would suggest to first try to make a deterministic pushdown automaton for $a^{n+m}b^n$ with $m>0$.

I tried to make a deterministic pushdown automaton for $a^{n+m}b^n$ with $m>0$ .Could you tell me if it is right? :eek:

View attachment 1841
 

Attachments

  • 1506036_592661294122537_1341924722_n.jpg
    1506036_592661294122537_1341924722_n.jpg
    22.8 KB · Views: 51
  • #42
evinda said:
I tried to make a deterministic pushdown automaton for $a^{n+m}b^n$ with $m>0$ .Could you tell me if it is right? :eek:

I'm afraid it's not.
- It is not deterministic, since reading an $a$ can both lead to a state shift from $p$ to $p$, as well as a shift from $p$ to $q$.
- It allows to read exactly as many $b$ as it has read $a$, meaning it does not fit the language.
 
  • #43
I like Serena said:
You could also formally specify a pushdown automaton (PDA).

Here's an example from wiki:

The following is the formal description of the PDA which recognizes the language \(\displaystyle \{0^n1^n \mid n \ge 0 \}\) by final state:

\(\displaystyle M=(Q,\ \Sigma,\ \Gamma,\ \delta, \ p,\ Z, \ F)\), where
\(\displaystyle Q = \{ p,q,r \}\)
\(\displaystyle \Sigma = \{0, 1\}\)
\(\displaystyle \Gamma = \{A, Z\}\)
\(\displaystyle q_{0} = p\)
\(\displaystyle F = \{r\}\)

\(\displaystyle \delta\) consists of the following six instructions:

\(\displaystyle (p,0,Z,p,AZ)\),
\(\displaystyle (p,0,A,p,AA)\),
\(\displaystyle (p,\epsilon,Z,q,Z)\),
\(\displaystyle (p,\epsilon,A,q,A)\),
\(\displaystyle (q,1,A,q,\epsilon)\), and
\(\displaystyle (q,\epsilon,Z,r,Z)\).​
Such a specification is much harder to read or to verify. :eek:
Note that the example on wiki also contains a picture that contains everything that is needed.

I have tried to describe the deterministic pushdown automaton,using the grammar of the Post 14:
[tex] (p, \varepsilon , \varepsilon ), (q, S) [/tex]
[tex] (q, \varepsilon , S), (q, AB) [/tex]
[tex] (q, \varepsilon , S), (q, XY) [/tex]
[tex] (q, \varepsilon , A), (q, aAb) [/tex]
[tex] (q, \varepsilon , A), (q, \varepsilon ) [/tex]
[tex] (q, \varepsilon , B), (q, bB) [/tex]
[tex] (q, \varepsilon , B), (q, b) [/tex]
[tex] (q, \varepsilon , X), (q, aX) [/tex]
[tex] (q, \varepsilon , X), (q, a) [/tex]
[tex] (q, \varepsilon , Y), (q, aYb) [/tex]
[tex] (q, \varepsilon , Y), (q, \varepsilon ) [/tex]
[tex] (q, a, a), (q, \varepsilon ) [/tex]
[tex] (q, b, b), (q, \varepsilon ) [/tex]

Could you tell me if it's right? :confused:
 
  • #44
evinda said:
I have tried to describe the deterministic pushdown automaton,using the grammar of the Post 14:
[tex] (p, \varepsilon , \varepsilon ), (q, S) [/tex]
[tex] (q, \varepsilon , S), (q, AB) [/tex]
[tex] (q, \varepsilon , S), (q, XY) [/tex]
[tex] (q, \varepsilon , A), (q, aAb) [/tex]
[tex] (q, \varepsilon , A), (q, \varepsilon ) [/tex]
[tex] (q, \varepsilon , B), (q, bB) [/tex]
[tex] (q, \varepsilon , B), (q, b) [/tex]
[tex] (q, \varepsilon , X), (q, aX) [/tex]
[tex] (q, \varepsilon , X), (q, a) [/tex]
[tex] (q, \varepsilon , Y), (q, aYb) [/tex]
[tex] (q, \varepsilon , Y), (q, \varepsilon ) [/tex]
[tex] (q, a, a), (q, \varepsilon ) [/tex]
[tex] (q, b, b), (q, \varepsilon ) [/tex]

Could you tell me if it's right? :confused:

You have multiple transitions in state q on the same input and the same symbol on the top of the stack.
That means it is not deterministic.

Or did you want to know if it matches a non-deterministic pushdown automaton?

In that case, in the initial state (presumably p), there should already be a symbol on the stack, which would be S (making the state p redundant).

Your automaton seems fine otherwise, although you should also specify at the very least the initial state, the initial stack symbol, and the set of final states.
 
  • #45
I like Serena said:
You have multiple transitions in state q on the same input and the same symbol on the top of the stack.
That means it is not deterministic.

Or did you want to know if it matches a non-deterministic pushdown automaton?

In that case, in the initial state (presumably p), there should already be a symbol on the stack, which would be S (making the state p redundant).

Your automaton seems fine otherwise, although you should also specify at the very least the initial state, the initial stack symbol, and the set of final states.

I wanted to write the description of the deterministic PDA,but I haven't really understood what I have to change.Could you explain it further to me? :confused::eek:
 
  • #46
I like Serena said:
$$S \to aSb\ |\ aA\ |\ bB$$
$$A \to aA\ |\ \varnothing$$
$$B \to bB\ |\ \varnothing$$

I could also show that the language is accepted by a deterministic PDA,showing that a deterministic grammar generates it..Right??Is the grammar above deterministic? :confused:
 
  • #47
How can I check if the grammar is deterministic or not? :confused:
 
  • #48
Do your sources cover deterministic context-free grammars?
 
  • #49
Evgeny.Makarov said:
Do your sources cover deterministic context-free grammars?

In my textbook,there is nothing about deterministic context-free grammars..I have also searched at some sites,but I haven't found something,that could help me to understand it.. :confused:
 
  • #50
The textbook by Lewis and Papadimitriou also does not have anything on deterministic context-free grammars, though it has a section on deterministic PDAs. Even Wikipedia, which has a detailed article on regular context-free grammars, does not give the definition of deterministic CFGs, though it has a small article about them. So, do you plan to undertake a little research project to study deterministic CFGs as a part of solving one problem?
 
  • #51
Evgeny.Makarov said:
The textbook by Lewis and Papadimitriou also does not have anything on deterministic context-free grammars, though it has a section on deterministic PDAs. Even Wikipedia, which has a detailed article on regular context-free grammars, does not give the definition of deterministic CFGs, though it has a small article about them. So, do you plan to undertake a little research project to study deterministic CFGs as a part of solving one problem?

I try to describe the function of the PDA:
For each $a$ that is read,we put an $a$ in the stack.
When,the first $b$ is read,we begin to pop an $a$ for each $b$.
But..how can the stack get empty,if we know that the number of $a$ that is read shouldn't be equal to the number of $b$ ??
 
  • #52
evinda said:
I try to describe the function of the PDA:
For each $a$ that is read,we put an $a$ in the stack.
When,the first $b$ is read,we begin to pop an $a$ for each $b$.
But..how can the stack get empty,if we know that the number of $a$ that is read shouldn't be equal to the number of $b$ ??

Is it maybe like that:when the stack gets empty,we will have an accepting state and then it will be allowed that the automaton reads more $b$s??But,if it is like that,isn't it possible that the number of $a$ is equal to the number of $b$ ?? :confused:
 
  • #53
evinda said:
I try to describe the function of the PDA:
For each $a$ that is read,we put an $a$ in the stack.
When,the first $b$ is read,we begin to pop an $a$ for each $b$.
But..how can the stack get empty,if we know that the number of $a$ that is read shouldn't be equal to the number of $b$ ??

evinda said:
Is it maybe like that:when the stack gets empty,we will have an accepting state and then it will be allowed that the automaton reads more $b$s??But,if it is like that,isn't it possible that the number of $a$ is equal to the number of $b$ ?? :confused:

Indeed.
So if the stack gets empty (except for the initial stack symbol), we should make sure we're not in an accepting state.
Either we have to accept the string before that happens, or we have to make sure we read more $b$'s after it happens.
 
  • #54
I like Serena said:
Indeed.
So if the stack gets empty (except for the initial stack symbol), we should make sure we're not in an accepting state.
Either we have to accept the string before that happens, or we have to make sure we read more $b$'s after it happens.

Nice...Thank you very much for your help! :D
 

Similar threads

  • Programming and Computer Science
Replies
11
Views
3K
  • Programming and Computer Science
Replies
13
Views
3K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
1K
  • Calculus and Beyond Homework Help
Replies
1
Views
1K
  • Programming and Computer Science
Replies
14
Views
3K
  • Math Proof Training and Practice
Replies
25
Views
2K
  • General Math
Replies
0
Views
831
Replies
11
Views
1K
  • Advanced Physics Homework Help
Replies
1
Views
953
Back
Top