Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
904 views

How should Chomsky's Hierarchy and Turing Machines influence language design?

I'm currently studying for a discrete mathematics test in which we are learning Chomsky's hierarchy and the type of automatas that recognize each level of the hierarchy. I'm being taught that most ...
4
votes
4answers
511 views

Is there a standard C++ grammar?

Does the standard specify the official C++ grammar? I searched, but did not find it anywhere. Also, I wish to read a bit about C++ grammar in detail, like which category of grammars it falls in, ...
2
votes
1answer
30 views

Making context free grammars simpler(prettier)

I'm working with CFG and every time I write up rules to a particular language, my CFG ends up disgusting. It ends up as one line: S->tooooooo much stuff I know that putting things into chomsky ...
2
votes
3answers
245 views

Recursive languages vs context-sensitive languages

In Chomsky's hierarchy, the set of recursive languages is not defined. I know that recursive languages are a subset of recursively enumerable languages and that all recursive languages are decidable. ...
1
vote
1answer
249 views

Chomsky Normal Form- Theory of computation

I want to change the grammar in to Chomsky Normal Form(CNF). This is example S--> AB | ɛ A--> aASb | a B--> bS I try to solve this S --> [A] [B] [A] --> [aA] [Sb] | [a] [aA] ...
1
vote
3answers
303 views

chomsky hierarchy and programming languages

I'm trying to learn some aspects of the Chomsky Hierarchy which are related to programming languages, and i still have to read the Dragon Book. I've read that most programming languages can be ...
1
vote
4answers
2k views

Context free grammar conversion

can anyone let me know if there is any software to convert Chomsky normal form to Backus–Naur Form and vice versa?
0
votes
3answers
184 views

Need help with converting to Chomsky Normal Form?

Convert the grammar below into Chomsky Normal Form. Give all the intermediate steps. S -> AB | aB A -> aab|lambda B -> bbA Ok so the first thing I did was add a new start variable S0 so ...
0
votes
1answer
100 views

Chomsky Normal Form correctness

I have these productions: S->aSb S-> eps (eps=empty string) I should apply the Chomsky Normal Form My reasoning: 1) eliminate the eps rules Given: S->aSb S-> eps I get: ...
0
votes
1answer
286 views

Translating a right recursive grammar into Chomsky Normal Form

I am trying to do an exercise where I translate a grammar into Chomsky normal form. I understand how to do this in normal circumstances but this time the grammar I am working with is right recursive. ...