-1

As I've already asked my Question about the solving Context Free Grammar $L = \{a^n b^m c^p \mid n = m + p + 2\}$

Can this language be defined by a Context Free Grammar?

Now i have just changed n = m + p - 2 and still can't figure out, Here is my attempt:

S -> Cc
B -> aBb | ^
C -> aCc | Bb

(In this Grammer i can't handle string like bb , cc , abbc , abcc etc)

How to make such type of grammars where n = m + p - x .Can anyone explain how to solve such kind of grammars:

$K = \{a^n b^m c^p \mid n = m + p - 2\}$

  • 2
    We have to switch between 2 pages to read the language definition..Don't be lazy, rewrite it here please. – François Jul 01 '15 at 06:13
  • 3
  • Please make your question self-contained. People should be able to understand your question by reading just this post here; they shouldn't have to click on a link to read necessary information. 2. We want to help you learn concepts, but we're not here to solve your exercise for you. We frown on "problem dumps". Please try to either ask a more general question that's more likely to be useful to others in the future and is not so specific to this one specific exercise; or show what you've tried and try to identify a narrower, more focused question about some specific aspect of your approach.
  • – D.W. Jul 01 '15 at 06:58
  • @FrançoisGodi and D.W thanks you very much for answering my question and appreciation , well if I've just copied from that question, it may be considered copy according to stackexchange rules. – Zulqurnain Jutt Jul 01 '15 at 14:52