vote up 1 vote down star
1

Given an alphabet of 1s I want to parse addition of the form

1^k + 1^j = 1^k+j

This is pretty easy to represent with a pushdown automaton simply by pushing a 1 on to the stack on each of the first two 1s, and then popping on the last set of 1s. However, I can't seem to figure out how to represent this as a context free grammar, which is obviously possible since PDA == CFG.

flag

45% accept rate
Addition is a binary operation isn't it. Or am I just not getting something? Also what's an alphabet of 1s and a "pushdown automaton"? Do you mean recursive descendent parser? – Ollie Saunders Oct 15 at 2:15
You might want to start by writing BNF. Start with an expression, then move down to exponents, then terms, etc. – Michael Aaron Safyan Oct 15 at 2:16
2  
Ollie: This is a question concerning formal definitions of models of computation. The Turing Machine is the most well known, and here is a wiki for a PDA: en.wikipedia.org/wiki/Pushdown_automaton . Parsing and language design research is linked to such automata, but they are often used as ways of researching computability. – Agor Oct 15 at 2:18

4 Answers

vote up 0 vote down check

My advice is to make a simple starting point: 1+1=11 And now try to figure out how you can "grow" that with legal CFG expressions.

Alternatively, I solved this just now by trying to extend it with "matching parenthesis", which is a common introduction problem to CFGs. Its obviously harder, but you may find a fruitful path that way.

Hope this helps! Happy hunting.

Agor

link|flag
vote up 1 vote down

If you rewrite the RHS as 1^j1^k, then you should see it's just two nested sets of balanced 1s. Combined with a "base case" of 1 + 1 = 11, you should be able to grow the "j"s on the inside and the "k"s on the outside.

link|flag
vote up 0 vote down

Yeah, this one has been bothering me for the past hour.

Also, cdiggins, 1 + 1 = 111 would pass that

link|flag
Thanks for correcting me! – cdiggins Oct 19 at 3:07
vote up 0 vote down

i have been workin on this forever also and cant get it to work. this is what makes most sense to me:

A -> B + B = BB B -> BB B -> 1

but yea, this accepts strings like 1 + 111 = 11 and 11 + 1 = 111111 and other nonsense. seems like people here know but don't feel like sharing. this isnt exactly something we can google and get meaningful help. think you could be slightly more helpful?

link|flag

Your Answer

Get an OpenID
or

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