TheChomsky hierarchy in the fields offormal language theory,computer science, andlinguistics, is acontainment hierarchy of classes offormal grammars. A formal grammar describes how to form strings from a formal language'salphabet that are valid according to the language's syntax. The linguistNoam Chomsky theorized that four different classes of formal grammars existed that could generate increasingly complex languages. Each class can also completely generate the language of all inferior classes (set inclusive).
The general idea of a hierarchy of grammars was first described by Noam Chomsky in "Three models for the description of language" during the formalization oftransformational-generative grammar (TGG).[1]Marcel-Paul Schützenberger also played a role in the development of the theory offormal languages; the paper "The algebraic theory of context free languages"[2] describes the modern hierarchy, including context-free grammars.[3]
Independently, alongside linguists, mathematicians were developing models of computation (viaautomata). Parsing a sentence in a language is similar to computation, and the grammars described by Chomsky proved to both resemble and be equivalent in computational power to various machine models.[4]
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. The classes are defined by the constraints on theproductions rules.
Note that the set of grammars corresponding torecursive 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.[7]
Type-3 grammars generate theregular 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, in which case the grammar isright regular. Alternatively, all the rules can have their right-hand sides consist of a single terminal, possiblypreceded 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 is also allowed here if does not appear on the right side of any rule. These languages are exactly all languages that can be decided by afinite-state automaton. Additionally, this family of formal languages can be obtained byregular expressions. Regular languages are commonly used to define search patterns and the lexical structure of programming languages.
For example, the regular language is generated by the Type-3 grammar with the productions being the following.
Type-2 grammars generate thecontext-free languages. These are defined by rules of the form with being a nonterminal and being a string of terminals and/or nonterminals. These languages are exactly all languages that can be recognized by a non-deterministicpushdown automaton. Context-free languages—or rather its subset ofdeterministic context-free languages—are the theoretical basis for the phrase structure of mostprogramming languages, though their syntax also includes context-sensitivename resolution due to declarations andscope. Often a subset of grammars is used to make parsing easier, such as by anLL parser.
For example, the context-free language is generated by the Type-2 grammar with the productions being the following.
Type-1 grammars generatecontext-sensitive languages. These grammars have rules of the form with a nonterminal and, and strings of terminals and/or nonterminals. The strings and may be empty, but must be nonempty. The rule is allowed if 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 alinear bounded automaton (a nondeterministic Turing machine whose tape is bounded by a constant times the length of the input.)
For example, the context-sensitive language is generated by the Type-1 grammar with the productions being the following.
Type-0 grammars include all formal grammars. There are no constraints on the productions rules. They generate exactly all languages that can be recognized by aTuring machine, thus any language that is possible to be generated can be generated by a Type-0 grammar.[8] These languages are also known as therecursively enumerable orTuring-recognizable languages.[8] Note that this is different from therecursive languages, which can bedecided by analways-halting Turing machine.
^Sudkamp, Thomas A. (1997) [1988].Languages and machines: An Introduction to the Theory of Computer Science. Reading, Massachusetts, USA: Addison Wesley Longman. p. 310.ISBN978-0-201-82136-9.
^Chomsky, Noam (1963). "Chapter 12: Formal Properties of Grammars". In Luce, R. Duncan; Bush, Robert R.; Galanter, Eugene (eds.).Handbook of Mathematical Psychology. Vol. II. John Wiley and Sons, Inc. pp. 323–418.
Chomsky, Noam; Schützenberger, Marcel P. (1963). "The algebraic theory of context free languages". In Braffort, P.; Hirschberg, D. (eds.).Computer Programming and Formal Systems(PDF). Amsterdam: North Holland. pp. 118–161.Archived(PDF) from the original on 2011-06-13.
Each category of languages, except those marked by a*, is aproper subset of the category directly above it.Any language in each category is generated by a grammar and by an automaton in the category in the same line.