Education
 

Chomsky hierarchy

From Psychology Wiki

Community portal · Tasks to do · News · Help

Clinical · Educational · Ind&Org · Other fields · Professional · Transpersonal · World

Assessment | Biopsychology | Comparative | Cognitive | Developmental | Language
Personality | Philosophy | Research Methods | Social | Statistics

Language: Linguistics · Semiotics · Speech


Within the field of computer science, specifically in the area of programming languages, the Chomsky hierarchy (occasionally referred to as Chomsky–Schützenberger hierarchy) is a containment hierarchy of classes of formal grammars that generate formal languages.

This hierarchy of these grammars (also called phrase structure grammars) was described by Noam Chomsky in 1956 (see [1]). It is also named after Marcel Schützenberger who played a crucial role in the development of the theory of formal languages.

Contents

[edit] Formal grammars

A formal grammar consists of a finite set of terminal symbols, a finite set of nonterminal symbols, a finite set of production rules with a left- and a right-hand side consisting of a word of these symbols, and a start symbol. A rule may be applied to a word by replacing the left-hand side by the right-hand side. A derivation is a sequence of rule applications. Such a grammar defines the formal language of all words consisting solely of terminal symbols that can be reached by a derivation from the start symbol.

Nonterminals are usually represented by uppercase letters, terminals by lowercase letters, and the start symbol by math. For example, the grammar with terminals math, nonterminals math, production rules

math math math
math math ε (where ε is the empty string)
math math math
math math math
math math math
math math math
math math math

and start symbol math, defines the language of all words of the form math (i.e. math copies of math followed by math copies of math). The following is a simpler grammar that defines a similar language: Terminals math, Nonterminals math, Start symbol math, Production rules

math math math
math math ε

See formal grammar for a more elaborate explanation.

[edit] The hierarchy

The Chomsky hierarchy consists of the following levels:

  • Type-0 grammars (unrestricted 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 languages. Note that this is different from the recursive languages which can be decided by an always-halting Turing machine.
  • Type-1 grammars (context-sensitive grammars) generate the context-sensitive languages. These grammars have rules of the form math with math a nonterminal and math, math and math strings of terminals and nonterminals. The strings math and math may be empty, but math must be nonempty. The rule math is allowed if math 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 (context-free grammars) generate the context-free languages. These are defined by rules of the form math with math a nonterminal and math a string of terminals and nonterminals. These languages are exactly all languages that can be recognized by a non-deterministic pushdown automaton. Context free languages are the theoretical basis for the syntax of most programming languages.
  • Type-3 grammars (regular 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 (or preceded, but not both in the same grammar) by a single nonterminal. The rule math is also here allowed if math 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.

Note that the set of grammars corresponding to recursive languages is not a member of this hierarchy.

Every regular language is context-free, every context-free language is context-sensitive and 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 which are not recursive, recursive languages that are not context-sensitive, context-sensitive languages which are not context-free and context-free languages which are not regular.

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

Grammar Languages Automaton Production rules
Type-0 Recursively enumerable Turing machine math (no restrictions)
Type-1 Context-sensitive Linear-bounded non-deterministic Turing machine math
Type-2 Context-free Non-deterministic pushdown automaton math
Type-3 Regular Finite state automaton math and
math

[edit] References

  • Chomsky, Noam (1956). Three models for the description of language. IRE Transactions on Information Theory (2): 113-124.
  • Chomsky, Noam (1959). On certain formal properties of grammars. Information and Control (2): 137-167.
  • Chomsky, Noam; Schützenberger, Marcel P. (1963). "The algebraic theory of context free languages" Braffort, P.; Hirschberg, D. Computer Programming and Formal Languages, 118-161, Amsterdam: North Holland.

[edit] External links

Automata theory: formal languages and formal grammars
Chomsky
hierarchy
Grammars Languages Minimal
automaton
Type-0 Unrestricted Recursively enumerable Turing machine
n/a (no common name) Recursive Decider
Type-1 Context-sensitive Context-sensitive Linear-bounded
Type-2 Context-free Context-free Pushdown
Type-3 Regular Regular Finite
Each category of languages or grammars is a proper superset of the category directly beneath it.
af:Chomsky-hiërargie

bg:Йерархия на Чомски cs:Chomského hierarchie de:Chomsky-Hierarchie es:Jerarquía de Chomsky fr:Hiérarchie de Chomsky ko:촘스키 위계nn:Chomskyhierarkietpt:Hierarquia de Chomsky ro:Ierarhia Chomsky sk:Chomského hierarchia fi:Chomskyn hierarkia zh:乔姆斯基谱系

Template:Noam Chomsky

Smallwikipedialogo.png This page uses content from the English-language version of Wikipedia. The original article was at Chomsky hierarchy. The list of authors can be seen in the page history. As with Psychology Wiki, the text of Wikipedia is available under the GNU Free Documentation License.