Formal grammar

Formal grammar

In formal semantics, computer science and linguistics, a formal grammar (also called formation rules) is a precise description of a formal language – that is, of a set of strings over some alphabet. In other words, a grammar describes which of the possible sequences of symbols (strings) in a language constitute valid words or statements in that language, but it does not describe their semantics (i.e. what they mean).The branch of mathematics that is concerned with the properties of formal grammars and languages is called formal language theory.

A grammar is usually regarded as a means to generate all the valid strings of a language; it can also be used as the basis for a recognizer that determines for any given string whether it is grammatical (i.e. belongs to the language). To describe such recognizers, formal language theory uses separate formalisms, known as automata.

A grammar can also be used to analyze the strings of a language – i.e. to describe their internal structure. In computer science, this process is known as parsing. Most languages have very compositional semantics, i.e. the meaning of their utterances is structured according to their syntax; therefore, the first step to describing the meaning of an utterance in language is to analyze it and look at its analyzed form (known as its parse tree in computer science, and as its deep structure in generative grammar).

Formal grammars

A grammar mainly consists of a set of rules for transforming strings. (If it "only" consisted of these rules, it would be a semi-Thue system.) To generate a string in the language, one begins with a string consisting of only a single "start symbol", and then successively applies the rules (any number of times, in any order) to rewrite this string. The language consists of all the strings that can be generated in this manner. Any particular sequence of legal choices taken during this rewriting process yields one particular string in the language. If there are multiple ways of generating the same single string, then the grammar is said to be ambiguous.

For example, assume the alphabet consists of a and b, the start symbol is S and we have the following rules:

: 1. S ightarrow aSb: 2. S ightarrow ba

then we start with S, and can choose a rule to apply to it. If we choose rule 1, we obtain the string aSb. If we choose rule 1 again, we replace S with aSb and obtain the string aaSbb. This process can be repeated at will until all occurrences of "S" are removed, and only symbols from the alphabet remain (i.e., a and b). For example, if we now choose rule 2, we replace S with ba and obtain the string aababb, and are done. We can write this series of choices more briefly, using symbols: S Rightarrow aSb Rightarrow aaSbb Rightarrow aababb. The language of the grammar is the set of all the strings that can be generated using this process: left {ba, abab, aababb, aaababbb, ... ight }.

Formal definition

In the classic formalization of generative grammars first proposed by Noam Chomsky in the 1950s,Cite journal
author = Chomsky, Noam
title = Three Models for the Description of Language
journal = IRE Transactions on Information Theory
volume = 2
issue = 2
pages = 113–123
year = 1956
doi = 10.1109/TIT.1956.1056813
] Cite book
author = Chomsky, Noam
title = Syntactic Structures
publisher = Mouton
location = The Hague
year = 1957
] a grammar "G" consists of the following components:
* A finite set N of "nonterminal symbols".
* A finite set Sigma of "terminal symbols" that is disjoint from N.
* A finite set P of "production rules", each rule of the form:: (Sigma cup N)^{*} N (Sigma cup N)^{*} ightarrow (Sigma cup N)^{*} :where {}^{*} is the Kleene star operator and cup denotes set union. That is, each production rule maps from one string of symbols to another, where the first string contains at least one nonterminal symbol. In the case that the second string is the empty string – that is, that it contains no symbols at all – in order to avoid confusion, the empty string is often denoted with a special notation, often (lambda, e or epsilon).
* A distinguished symbol S in N that is the "start symbol". A grammar is formally defined as the ordered quad-tuple (N, Sigma, P, S). Such a formal grammar is often called a rewriting system or a phrase structure grammar in the literature. [cite book|first=Seymour|last=Ginsburg|authorlink=Seymour Ginsburg|title=Algebraic and automata theoretic properties of formal languages|publisher=North-Holland|pages=8-9|date=1975|isbn=0720425069] [cite book|last=Harrison|first=Michael A.|authorlink=Michael A. Harrison|title=Introduction to Formal Language Theory|publisherAddison-Wesley Publishing Company|date=1978|pages=13|isbn=0201029553]

The operation of a grammar can be defined in terms of relations on strings:
* Given a grammar G = (N, Sigma, P, S), the binary relation Rightarrow_G (pronounced as "G derives in one step") on strings in (Sigma cup N)^{*} is defined by:x Rightarrow_G y mbox{ iff } exists u, v, w in Sigma^*, X in N: x = uXv wedge y = uwv wedge X ightarrow w in P
* the relation {Rightarrow_G}^* (pronounced as "G derives in zero or more steps") is defined as the transitive closure of (Sigma cup N)^{*}
* the "language" of G, denoted as oldsymbol{L}(G), is defined as all those strings over Sigma that can be generated by starting with the start symbol S and then applying the production rules in P until no more nonterminal symbols are present; that is, the set { w in Sigma^* mid S {Rightarrow_G}^* w }.

Note that the grammar G = (N, Sigma, P, S) is effectively the semi-Thue system (N cup Sigma, P), rewriting strings in exactly the same way; the only difference is in that we distinguish specific "nonterminal" symbols which must be rewritten in rewrite rules, and are only interested in rewritings from the designated start symbol S to strings without nonterminal symbols.

Example

"For these examples, formal languages are specified using set-builder notation."

Consider the grammar G where N = left {S, B ight }, Sigma = left {a, b, c ight }, S is the start symbol, and P consists of the following production rules:

: 1. S ightarrow aBSc: 2. S ightarrow abc: 3. Ba ightarrow aB: 4. Bb ightarrow bb

Some examples of the derivation of strings in oldsymbol{L}(G) are:

* oldsymbol{S} Rightarrow_2 oldsymbol{abc}
* oldsymbol{S} Rightarrow_1 oldsymbol{aBSc} Rightarrow_2 aBoldsymbol{abc}c Rightarrow_3 aoldsymbol{aB}bcc Rightarrow_4 aaoldsymbol{bb}cc
* oldsymbol{S} Rightarrow_1 oldsymbol{aBSc} Rightarrow_1 aBoldsymbol{aBSc}c Rightarrow_2 aBaBoldsymbol{abc}cc Rightarrow_3 aoldsymbol{aB}Babccc Rightarrow_3 aaBoldsymbol{aB}bccc Rightarrow_3 aaoldsymbol{aB}Bbccc Rightarrow_4 aaaBoldsymbol{bb}ccc Rightarrow_4 aaaoldsymbol{bb}bccc

:(Note on notation: L Rightarrow_i R reads "L" generates "R" by means of production "i" and the generated part is each time indicated in bold.)

This grammar defines the language L = left { a^{n}b^{n}c^{n} | n ge 1 ight } where a^{n} denotes a string of "n" consecutive a's. Thus, the language is the set of strings that consist of 1 or more a's, followed by the same number of b's, followed by the same number of c's.

The Chomsky hierarchy

When Noam Chomsky first formalized generative grammars in 1956, he classified them into types now known as the Chomsky hierarchy. The difference between these types is that they have increasingly strict production rules and can express fewer formal languages. Two important types are "context-free grammars" (Type 2) and "regular grammars" (Type 3). The languages that can be described with such a grammar are called "context-free languages" and "regular languages", respectively. Although much less powerful than unrestricted grammars (Type 0), which can in fact express any language that can be accepted by a Turing machine, these two restricted types of grammars are most often used because parsers for them can be efficiently implemented.Grune, Dick & Jacobs, Ceriel H., "Parsing Techniques – A Practical Guide", Ellis Horwood, England, 1990.] For example, all regular languages can be recognized by a finite state machine, and for useful subsets of context-free grammars there are well-known algorithms to generate efficient LL parsers and LR parsers to recognize the corresponding languages those grammars generate.

Context-free grammars

A "context-free grammar" is a grammar in which the left-hand side of each production rule consists of only a single nonterminal symbol. This restriction is non-trivial; not all languages can be generated by context-free grammars. Those that can are called "context-free languages".

The language defined above is not a context-free language, and this can be strictly proven using the pumping lemma for context-free languages, but for example the language left { a^{n}b^{n} | n ge 1 ight } (at least 1 a followed by the same number of b's) is context-free, as it can be defined by the grammar G_2 with N=left {S ight }, Sigma=left {a,b ight }, S the start symbol, and the following production rules:

: 1. S ightarrow aSb: 2. S ightarrow ab

A context-free language can be recognized in O(n^3) time ("see" Big O notation) by an algorithm such as Earley's algorithm. That is, for every context-free language, a machine can be built that takes a string as input and determines in O(n^3) time whether the string is a member of the language, where n is the length of the string.Earley, Jay, "An Efficient Context-Free Parsing Algorithm," "Communications of the ACM", Vol. 13 No. 2, pp. 94-102, February 1970.] Further, some important subsets of the context-free languages can be recognized in linear time using other algorithms.

Regular grammars

In regular grammars, the left hand side is again only a single nonterminal symbol, but now the right-hand side is also restricted. The right side may be the empty string, or a single terminal symbol, or a single terminal symbol followed by a nonterminal symbol, but nothing else. (Sometimes a broader definition is used: one can allow longer strings of terminals or single nonterminals without anything else, making languages easier to denote while still defining the same class of languages.)

The language defined above is not regular, but the language left { a^{n}b^{m} ,| , m,n ge 1 ight } (at least 1 a followed by at least 1 b, where the numbers may be different) is, as it can be defined by the grammar G_3 with N=left {S, A,B ight }, Sigma=left {a,b ight }, S the start symbol, and the following production rules:

:# S ightarrow aA:# A ightarrow aA:# A ightarrow bB:# B ightarrow bB:# B ightarrow epsilon

All languages generated by a regular grammar can be recognized in linear time by a finite state machine. Although, in practice, regular grammars are commonly expressed using regular expressions, some forms of regular expression used in practice do not strictly generate the regular languages and do not show linear recognitional performance due to those deviations.

Other forms of generative grammars

Many extensions and variations on Chomsky's original hierarchy of formal grammars have been developed more recently, both by linguists and by computer scientists, usually either in order to increase their expressive power or in order to make them easier to analyze or parse. Some forms of grammars developed include:

* Tree-adjoining grammars increase the expressiveness of conventional generative grammars by allowing rewrite rules to operate on parse trees instead of just strings.Joshi, Aravind K., "et al.", "Tree Adjunct Grammars," "Journal of Computer Systems Science", Vol. 10 No. 1, pp. 136-163, 1975.]
* Affix grammarsKoster , Cornelis H. A., "Affix Grammars," in "ALGOL 68 Implementation", North Holland Publishing Company, Amsterdam, p. 95-109, 1971.] and attribute grammarsKnuth, Donald E., "Semantics of Context-Free Languages," "Mathematical Systems Theory", Vol. 2 No. 2, pp. 127-145, 1968.] Knuth, Donald E., "Semantics of Context-Free Languages (correction)," "Mathematical Systems Theory", Vol. 5 No. 1, pp 95-96, 1971.] allow rewrite rules to be augmented with semantic attributes and operations, useful both for increasing grammar expressiveness and for constructing practical language translation tools.

Analytic grammars

Though there is a tremendous body of literature on parsing algorithms, most of these algorithms assume that the language to be parsed is initially "described" by means of a "generative" formal grammar, and that the goal is to transform this generative grammar into a working parser. Strictly speaking, a generative grammar does not in any way correspond to the algorithm used to parse a language, and various algorithms have different restrictions on the form of production rules that are considered well-formed.

An alternative approach is to formalize the language in terms of an analytic grammar in the first place, which more directly corresponds to the structure and semantics of a parser for the language. Examples of analytic grammar formalisms include the following:

* The Language Machine [http://languagemachine.sourceforge.net the language machine ] ] directly implements unrestricted analytic grammars. Substitution rules are used to transform an input to produce outputs and behaviour. The system can also produce [http://languagemachine.sourceforge.net/picturebook.html the lm-diagram] which shows what happens when the rules of an unrestricted analytic grammar are being applied.
* Top-down parsing language (TDPL): a highly minimalist analytic grammar formalism developed in the early 1970s to study the behavior of top-down parsers.Birman, Alexander, "The TMG Recognition Schema", Doctoral thesis, Princeton University, Dept. of Electrical Engineering, February 1970.]
* Link grammars: a form of analytic grammar designed for linguistics, which derives syntactic structure by examining the positional relationships between pairs of words.Sleator, Daniel D. & Temperly, Davy, "Parsing English with a Link Grammar," Technical Report CMU-CS-91-196, Carnegie Mellon University Computer Science, 1991.] Sleator, Daniel D. & Temperly, Davy, "Parsing English with a Link Grammar," "Third International Workshop on Parsing Technologies", 1993. (Revised version of above report.)]
* Parsing expression grammars (PEGs): a more recent generalization of TDPL designed around the practical expressiveness needs of programming language and compiler writers. [Ford, Bryan, "Packrat Parsing: a Practical Linear-Time Algorithm with Backtracking", Master’s thesis, Massachusetts Institute of Technology, Sept. 2002.]

ee also


* Abstract syntax tree
* Adaptive grammar
* Ambiguous grammar
* Backus–Naur form (BNF)
* Concrete syntax tree
* Extended Backus–Naur form (EBNF)
* Grammar framework
* L-system
* Lojban
* Post canonical system

References

External links

* [http://cs.haifa.ac.il/~shuly/fg/ Yearly Formal Grammar conference]


Wikimedia Foundation. 2010.

Игры ⚽ Нужно решить контрольную?

Look at other dictionaries:

  • formal grammar — noun A precise mathematical description of a formal language, consisting of terminal symbols, nonterminal symbols, a nonterminal symbol serving as start symbol, and a set of production rules that control the expansion of nonterminal symbols into… …   Wiktionary

  • Formal system — In formal logic, a formal system (also called a logical system,Audi, Robert (Editor). The Cambridge Dictionary of Philosophy . Second edition, Cambridge University Press, 1999. ISBN 978 0521631365 (hardcover) and ISBN 978 0521637220 (paperback).] …   Wikipedia

  • Formal language — A formal language is a set of words , i.e. finite strings of letters , or symbols . The inventory from which these letters are taken is called the alphabet over which the language is defined. A formal language is often defined by means of a… …   Wikipedia

  • Formal proof — See also: mathematical proof, proof theory, and axiomatic system A formal proof or derivation is a finite sequence of sentences (called well formed formulas in the case of a formal language) each of which is an axiom or follows from the… …   Wikipedia

  • Grammar induction — Grammatical induction, also known as grammatical inference or syntactic pattern recognition, refers to the process in machine learning of inducing a formal grammar (usually in the form of re write rules or productions ) from a set of observations …   Wikipedia

  • Grammar checker — In computing terms, a grammar checker is a program, or part of a program, that attempts to verify written text for grammatical correctness. Grammar checkers are most often implemented as a feature of a larger application, such as a word processor …   Wikipedia

  • Formal — The term formal has a number of uses, including:General*relating to formality *opposite of informalocial* Formal occasion ** Formal attire worn on such occasions ** Formals are particular meals at some British universities ** In Australian or… …   Wikipedia

  • Grammar school — A grammar school is one of several different types of school in the history of education in the United Kingdom and other English speaking countries.In the modern United States, the term is synonymous with elementary school.The original purpose of …   Wikipedia

  • Grammar framework — In theoretical linguistics, the following fundamental approaches towards constructing grammar frameworks for natural languages are distinguished:*Generative grammar: algorithmic (phrase structure grammars) **Transformational grammar (1960s)… …   Wikipedia

  • Formal interpretation — A formal interpretation [http://books.google.com/books?id=weKqT3ka5g0C pg=PA74 lpg=PA74 dq=%22Formal+interpretation%22+%22formal+language%22 source=web ots=pLN ms7Wi2 sig=P JqwdzOqLcX4nMpP64qmacnkDU hl=en#PPA74,M1 Cann Ronnie, Formal Semantics:… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”