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:

enter image description here

enter image description here

heres my solution (note, im aware I forgot to draw the other circle around my accept state)

link|improve this question

74% accept rate
feedback

1 Answer

Doesn't that language simply recognize any string in {0,1}* that has at least 3 1's in it?

If so, you just need a regular finite deterministic automaton with 3 states to identify it

       1       1      1
start --> one --> two --> (three)
| ^       | ^     | ^       | ^
\-/       \-/     \-/       \-/
 0         0       0        0,1

This is because I'm not on the mood to do a direct translation of that grammar, if that is what you really wanted to check :P

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.