In formal language theory, an unrestricted grammar is a formal grammar on which no restrictions are made on the left and right sides of the grammar's productions. This is the most general class of grammars in the Chomsky–Schützenberger hierarchy and can generate arbitrary recursively enumerable languages.
Contents
Formal definition
An unrestricted grammar is a formal grammar
Unrestricted grammars and Turing machines
It may be shown that unrestricted grammars characterize the recursively enumerable languages. This is the same as saying that for every unrestricted grammar
- Start at the left of the second tape and repeatedly choose to move right or select the current position on the tape.
- Nondeterministically choose a production
β → γ from the productions inG . - If
β appears at some position on the second tape, replaceβ byγ at that point, possibly shifting the symbols on the tape left or right depending on the relative lengths ofβ andγ (e.g. ifβ is longer thanγ , shift the tape symbols left). - Compare the resulting sentential form on tape 2 to the word on tape 1. If they match, then the Turing machine accepts the word. If they don't, the Turing machine will go back to step 1.
It is easy to see that this Turing machine will generate all and only the sentential forms of
The reverse construction is also possible. Given some Turing machine, it is possible to create an equivalent unrestricted grammar which even uses only productions with one or more non-terminal symbols on their left-hand sides. Therefore, an arbitrary unrestricted grammar can always be equivalently converted to obey the latter form, by converting it to a Turing machine and back again. Some authors use the latter form as definition of unrestricted grammar.
Computational properties
The decision problem of whether a given string
Recursively enumerable languages are closed under Kleene star, concatenation, union, and intersection, but not under set difference; see Recursively enumerable language#Closure properties.
The equivalence of unrestricted grammars to Turing machines implies the existence of a universal unrestricted grammar, a grammar capable of accepting any other unrestricted grammar's language given a description of the language. For this reason, it is theoretically possible to build a programming language based on unrestricted grammars (e.g. Thue).