up vote 2 down vote favorite
2
share [g+] share [fb]

I'm studying for a finite automata & grammars test and I'm stuck with this question:

Construct a grammar that generates L:
L = {a^n b^m c^m+n|n>=0, m>=0}

I believe my productions should go along this lines:

    S->aA | aB
    B->bB | bC
    C->cC | c Here's where I have doubts

How can my production for C remember the numbers of m and n? I'm guessing this must rather be a context-free grammar, if so, how should it be?

link|improve this question

Sounds like homework :P – Aiden Bell Jun 20 '09 at 15:56
If it had been homework I would have marked it, like I said, I'm studying for a test. I'm taking away the homework tag. Man, Homework != Test – omgzor Jun 20 '09 at 16:05
3  
Why so defensive on the homework tag? Studying for a test sounds like homework or at least "schoolwork" & the tag helps people looking for such questions find this one. – Dennis Palmer Jun 20 '09 at 16:27
Actually it's the "finite automata & grammars" part that sounds like homework. Doesn't matter if it's for a test or not. – Dennis Palmer Jun 20 '09 at 16:39
people looking for this question would look for "automata", "language" or "grammar" not "homework". Since I'm not asking you to do my homework it would be both a misplaced and meaningless tag. – omgzor Jun 20 '09 at 16:45
feedback

3 Answers

up vote 4 down vote accepted

Seems like it should be like:

A->aAc | aBc | ac | epsilon
B->bBc | bc | epsilon

You need to force C'c to be counted during construction process. In order to show it's context-free, I would consider to use Pump Lemma.

link|improve this answer
I may be confusing some definition, but since the production rules all have only a single nonterminal on the left side, isn't this trivially a context-free grammar? – Svante Jun 20 '09 at 19:02
Actually, since m and n just need to be >= 0, your grammar is slightly incorrect. Here's one that works: A->aAc | B B->bBc | (epsilon) – rofrankel Aug 24 '09 at 8:17
thanks for correction – Artem Barger Aug 24 '09 at 20:44
I guess the ac and bc parts are redundant. ac can be constructed by aAc -> a epsilon c -> ac and the same goes for bc. – lasseespeholt Apr 25 '11 at 8:16
feedback

Yes, this does sound like homework, but a hint:

Every time you match an 'a', you must match a 'c'. Same for matching a 'b'.

link|improve this answer
Thanks. That 'hint' is actually the answer. And no, it's not homework. – omgzor Jun 20 '09 at 16:06
feedback
S -> X
X -> aXc | Y
Y -> bYc | e

where e == epsilon and X is unnecessary but added for clarity

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.