Tagged Questions
2
votes
3answers
209 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
776 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
35 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
57 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
52 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
275 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
335 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
720 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)