Recent questions tagged pushdown-automata

0 votes
2 answers
181
DPDA for $L = \left \{ a^nb^n:n\geq 1 \right \} \cup\left \{ a \right \}$
0 votes
2 answers
182
DPDA for $L = \left \{ a^nb^m|m\geq n+2 \right \}$
0 votes
0 answers
184
2 votes
1 answer
185
1 votes
2 answers
186
Is the following language context freeL = {$0^{i}1^{j}, i=2j+1$}How can PDA be designed for this language?
0 votes
1 answer
187
4 votes
2 answers
188
1 votes
1 answer
189
IS one state sufficient for an empty stack PDA?Needs explanation !
1 votes
0 answers
191
Non-deterministic pushdown automaton that accepts the language generated by the grammar: $S \rightarrow aSS \mid ab$ is$\delta (q_0, \lambda , z)= \{ (q_1, z) \}; \delta...
2 votes
1 answer
192
How much memory does npda takes or has? As when we are taking npda for let's say ww^r.. Then we will be considering two pda at the same time.. Is it practical or theoret...
1 votes
1 answer
194
For every pushdown automata,there exists an equivalentA)Regular LanguageB)Context sensitive languageC)Context free languageD)Recursively Enumerable language.
0 votes
1 answer
196
A language L is accepted by a pushdown automation if and only if it isA) Context SensitiveB)RecursiveC)Context FreeD)Right Linear
0 votes
1 answer
198
THE SET OF ALL STRINGS OF a's and b's THAT ARE NOT OF THE FORM ww, i.e., NOT EQUAL TO ANY STRING REPEATED
0 votes
1 answer
199
What does this Language Represents ? And what is the machine which is able to represent this Language.L = { a^i b^j c^k d^l } where i = k or j = lHow it is different fro...
1 votes
2 answers
200
1 votes
2 answers
206
Which solution is correct one?I wish I solved it correctly (sol1)
1 votes
0 answers
207
5 votes
4 answers
208
Consider the following push down automata.The language accepted by above PDA is_______.Regular but infinite.DCFL but not regular.CFL but not DCFLFinite language.
1 votes
1 answer
209
0 votes
2 answers
210
how to construct pda for a^i b^j where j!=2i+1, i>=0 ?i have constructed for j=2i+1 but by complementing the states do we get actual n pda of our requirement?whether it i...