[Home]Formal grammar

HomePage | Recent Changes | Preferences

Showing revision 7
In computer science a formal grammar is a way to describe a formal language, i.e., a subset of strings over a certain finite alphabet. The basic idea behind these grammars is that we generate strings by beginning with a special start symbol and then apply rules that indicate how certain combinations of symbols may be replaced with other combinations of symbols. This is repeated until the result contains only symbols from the alphabet. The language of the grammar then consists of all the strings that can be generated that way.

Something about Noam Chomsky and [transformational grammar]?s and [generative grammar]?s should be written here.

A formal grammar G consists of the following components:

(Σ U N)* -> (Σ U N)* where * is the Kleene star

with the restriction that the left-hand side of a rule, i.e., the part left of the ->, must contain at least one nonterminal symbol.
Usually such a formal grammar G is simply summarized as (N, Σ, P, S).

The language of a formal grammar G = (N, Σ, P, S), denoted as L(G), is defined as all those strings over Σ that can be generated by starting with the start symbol S and then applying the production rules in P until no more no more nonterminal symbols are present.

Consider, for example, the grammar G with N = {S, B}, Σ = {a, b, c}, P consisting of the following production rules

1. S -> aBSc
2. S -> abc
3. S -> ε
4. Ba -> aB
5. Bb -> bb
and the nonterminal symbol S as the start symbol. Some examples of the derivation of strings in L(G) are: (The used production rules are indicated in brackets.)

See also: [transformational grammar]? -- [generative grammar]? -- Chomsky hierarchy -- regular grammar -- context-sensitive grammar -- context-free grammar -- regular grammar


HomePage | Recent Changes | Preferences
This page is read-only | View other revisions | View current revision
Edited August 26, 2001 11:48 pm by Jan Hidders (diff)
Search: