Neha Patil (Editor)

Chomsky hierarchy

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Chomsky hierarchy

In the formal languages of computer science and linguistics, the Chomsky hierarchy (occasionally referred to as Chomsky–Schützenberger hierarchy) is a containment hierarchy of classes of formal grammars. This hierarchy of grammars was described by Noam Chomsky in 1956. It is also named after Marcel-Paul Schützenberger, who played a crucial role in the development of the theory of formal languages.

Contents

Formal grammars

A formal grammar of this type consists of a finite set of production rules (left-hand sideright-hand side), where each side consists of a finite sequence of the following symbols:

  • a finite set of nonterminal symbols (indicating that some production rule can yet be applied)
  • a finite set of terminal symbols (indicating that no production rule can be applied)
  • a start symbol (a distinguished nonterminal symbol)
  • A formal grammar provides an axiom schema for (or generates) a formal language, which is a (usually infinite) set of finite-length sequences of symbols that may be constructed by applying production rules to another sequence of symbols (which initially contains just the start symbol). A rule may be applied by replacing an occurrence of the symbols on its left-hand side with those that appear on its right-hand side. A sequence of rule applications is called a derivation. Such a grammar defines the formal language: all words consisting solely of terminal symbols which can be reached by a derivation from the start symbol.

    Nonterminals are often represented by uppercase letters, terminals by lowercase letters, and the start symbol by S. For example, the grammar with terminals {a, b}, nonterminals {S, A, B}, production rules

    SABS → ε (where ε is the empty string)AaSBb

    and start symbol S, defines the language of all words of the form a n b n (i.e. n copies of a followed by n copies of b).

    The following is a simpler grammar that defines the same language: Terminals {a, b}, Nonterminals {S}, Start symbol S, Production rules

    SaSbS → ε

    As another example, a grammar for a toy subset of English language is given by:

    terminals
    {generate, hate, great, green, ideas, linguists}
    nonterminals
    {SENTENCE, NOUNPHRASE, VERBPHRASE, NOUN, VERB, ADJ}
    production rules
    SENTENCENOUNPHRASE VERBPHRASENOUNPHRASEADJ NOUNPHRASENOUNPHRASENOUNVERBPHRASEVERB NOUNPHRASEVERBPHRASEVERBNOUNideasNOUNlinguistsVERBgenerateVERBhateADJgreatADJgreen

    and start symbol SENTENCE. An example derivation is

    SENTENCENOUNPHRASE VERBPHRASEADJ NOUNPHRASE VERBPHRASEADJ NOUN VERBPHRASEADJ NOUN VERB NOUNPHRASEADJ NOUN VERB ADJ NOUNPHRASEADJ NOUN VERB ADJ ADJ NOUNPHRASEADJ NOUN VERB ADJ ADJ NOUNgreat NOUN VERB ADJ ADJ NOUNgreat linguists VERB ADJ ADJ NOUNgreat linguists generate ADJ ADJ NOUNgreat linguists generate great ADJ NOUNgreat linguists generate great green NOUNgreat linguists generate great green ideas.

    Other sequences that can be derived from this grammar are: "ideas hate great linguists", and "ideas generate". While these sentences are nonsensical, they are syntactically correct. A syntactically incorrect sentence ( e.g. "ideas ideas great hate") cannot be derived from this grammar. See "Colorless green ideas sleep furiously" for a similar example given by Chomsky in 1957; see Phrase structure grammar and Phrase structure rules for more natural language examples and the problems of formal grammar in that area.

    The hierarchy

    The following table summarizes each of Chomsky's four types of grammars, the class of language it generates, the type of automaton that recognizes it, and the form its rules must have.

    Note that the set of grammars corresponding to recursive languages is not a member of this hierarchy; these would be properly between Type-0 and Type-1.

    Every regular language is context-free, every context-free language is context-sensitive, every context-sensitive language is recursive and every recursive language is recursively enumerable. These are all proper inclusions, meaning that there exist recursively enumerable languages that are not context-sensitive, context-sensitive languages that are not context-free and context-free languages that are not regular.

    Type-0 grammars

    Type-0 grammars include all formal grammars. They generate exactly all languages that can be recognized by a Turing machine. These languages are also known as the recursively enumerable or Turing-recognizable languages. Note that this is different from the recursive languages, which can be decided by an always-halting Turing machine.

    Type-1 grammars

    Type-1 grammars generate the context-sensitive languages. These grammars have rules of the form α A β α γ β with A a nonterminal and α , β and γ strings of terminals and/or nonterminals. The strings α and β may be empty, but γ must be nonempty. The rule S ϵ is allowed if S does not appear on the right side of any rule. The languages described by these grammars are exactly all languages that can be recognized by a linear bounded automaton (a nondeterministic Turing machine whose tape is bounded by a constant times the length of the input.)

    Type-2 grammars

    Type-2 grammars generate the context-free languages. These are defined by rules of the form A γ with A a nonterminal and γ a string of terminals and/or nonterminals. These languages are exactly all languages that can be recognized by a non-deterministic pushdown automaton. Context-free languages—or rather its subset of deterministic context-free language—are the theoretical basis for the phrase structure of most programming languages, though their syntax also includes context-sensitive name resolution due to declarations and scope. Often a subset of grammars are used to make parsing easier, such as by an LL parser.

    Type-3 grammars

    Type-3 grammars generate the regular languages. Such a grammar restricts its rules to a single nonterminal on the left-hand side and a right-hand side consisting of a single terminal, possibly followed by a single nonterminal (right regular). Alternatively, the right-hand side of the grammar can consist of a single terminal, possibly preceded by a single nonterminal (left regular). These generate the same languages. However, if left-regular rules and right-regular rules are combined, the language need no longer be regular. The rule S ϵ is also allowed here if S does not appear on the right side of any rule. These languages are exactly all languages that can be decided by a finite state automaton. Additionally, this family of formal languages can be obtained by regular expressions. Regular languages are commonly used to define search patterns and the lexical structure of programming languages.

    References

    Chomsky hierarchy Wikipedia