Tagged Questions
2
votes
2answers
30 views
Design of a “Push Down Automata” that recognizes the language: a^i b^2i
I'm studying for my exam automata and formal languages, I have to design a PDA that recognizes the language:
a ^i b ^2i such that i>= 1
I thought the solution would be:
Each "a" read from the ...
2
votes
3answers
238 views
What language does this Pushdown Automata (PDA) accept?
Exam tomorrow and the prof let us know a question that would be on it :).
In the context of this diagram, L is epsilon (The empty string), and Z0 is the stack empty symbol.
I've made some progress ...
2
votes
3answers
786 views
How do I design the transition functions for this pushdown automaton?
I'm studying for a test on PDA, and I want to know how to design a pushdown automaton that recognizes the following language:
L = {a^max(0,n-m)b^n a^m| n,m >=0}
How can I design a transition ...
1
vote
1answer
36 views
how to figure out what language a PDA recognizes
Im trying to figure out how to deduce what language a PDA recognizes, and feel like im close but am still missing out. Take the following PDA for example. I can make a transition chart to figure out ...
0
votes
3answers
62 views
Pushdown Automata
How would I write a pda for 0^m 1^n, where |m| >= |n|; the number of 0's is greater than or equal to the number of 1's?
I was thinking of:
if you see a 1 or 0, push it on to the stack
if you ...
0
votes
1answer
61 views
context free grammar to a PDA, am i correct?
Im reviewing for my midterm and wanted to post this to see if anyone can spot any errors. Im supposed to make a PDA that recognizes this CFG:
heres my solution (note, im aware I forgot to draw ...
0
votes
1answer
297 views
A Push Down Automata that produces the flip and reverse of a string
The alphabet: 0, 1
Consider a flip, to flip each character: 0 -> 1; 1 -> 0
So if w = 0011 then w-flip = 1100
Consider a reverse to be the characters in reversed order
So if w = 01101 then w-reverse ...
0
votes
1answer
346 views
Pushdown automaton for (a^n b^n)^m c^m
I'm stuck building the transition functions for this automaton.
I suppose I should stack a 1 for each a and unstack it for each b
The number of c's equals the number of ab pairs, so I think I should ...
0
votes
3answers
737 views
How do I implement pushdown automaton in C#?
I want to code this for PDA. How would I do that in C#?
a^nbc^n (n>=0)
-3
votes
0answers
56 views
classify the three languages below as 1. not context-free 2. context-free but not regular or 3. regular [closed]
We want to classify the three languages below as 1. not context-free 2. context-free but not regular or 3. regular. We also want to provide proof that the classification is correct:
a) L1 = {a^i b^j ...