Controlled grammar

Controlled grammar

Controlled grammars[1] are a class of grammars that extend, usually, the context-free grammars with additional controls on the derivations of a sentence in the language. A number of different kinds of controlled grammars exist, the four main divisions being Indexed grammars, grammars with prescribed derivation sequences, grammars with contextual conditions on rule application, and grammars with parallelism in rule application. Because indexed grammars are so well established in the field, this article will address only the latter three kinds of controlled grammars.

Contents

Control by prescribed sequences

Grammars with prescribed sequences are grammars in which the sequence of rule application is constrained in some way. There are four different versions of prescribed sequence grammars: language controlled grammars (often called just controlled grammars), matrix grammars, vector grammars, and programmed grammars.

In the standard context-free grammar formalism, a grammar itself is viewed as a 4-tuple, G = (N,T,S,P), where N is a set of non-terminal/phrasal symbols, T is a disjoint set of terminal/word symbols, S is a specially designated start symbol chosen from N, and P is a set of production rules like X \to \alpha, where X is some member of N, and α is some member of (N \cup T)^{*}.

Productions over such a grammar are sequences of rules in P that, when applied in order of the sequence, lead to a terminal string. That is, one can view the set of imaginable derivations in G as the set \{ p_1 p_2 ... p_n : n \geq 0 \}, and the language of G as being the set of terminal strings L(G) = \{ w \in T^{*} : S \Rightarrow_{p_1} ... \Rightarrow_{p_n} w \}. Control grammars take seriously this definition of the language generated by a grammar, concretizing the set-of-derivations as an aspect of the grammar. Thus, a prescribed sequence controlled grammar is at least approximately a 5-tuple G = (N,T,S,P,R) where everything except R is the same as in a CFG, and R is an infinite set of valid derivation sequences p1p2...pn.

The set R, due to its infinitude, is almost always (though not necessarily) described via some more convenient mechanism, such as a grammar (as in language controlled grammars), or a set of matrices or vectors (as in matrix and vector grammars). The different variations of prescribed sequence grammars thus differ by how the sequence of derivations is defined on top of the context-free base. Because matrix grammars and vector grammars are essentially special cases of language controlled grammars, examples of the former two will not be provided below.

Language controlled grammars

Language controlled grammars are grammars in which the production sequences constitute a well-defined language of arbitrary nature, usually though not necessarily regular, over a set of (again usually though not necessarily) context-free production rules. They also often have a sixth set in the grammar tuple, making it G = (N,T,S,P,R,F), where F is a set of productions that are allowed to apply vacuously. This version of language controlled grammars, ones with what is called "appearance checking", is the one henceforth.

Proof-theoretic description

We let a regularly controlled context-free grammar with appearance checking be a 6-tuple G = (N,T,S,P,R,F) where N, T, S, and P are defined as in CFGs, R is a subset of P* constituting a regular language over P, and F is some subset of P. We then define the immediately derives relation \Rightarrow_{p_i} as follows:

Given some strings x and y, both in (N \cup T)^{*}, and some rule p = A \to w \in P,

x \Rightarrow^{ac}_{p} y

holds if either

x = x1Ax2 and y = y1wy2, or
x = y and p \in F

Intuitively, this simply spells out that a rule can apply to a string if the rule's left-hand-side appears in that string, or if the rule is in the set of "vacuously applicable" rules which can "apply" to a string without changing anything. This requirement that the non-vacuously applicable rules must apply is the appearance checking aspect of such a grammar. The language for this kind of grammar is then simply set of terminal strings L(G) = \{ w \in T^{*} : S \Rightarrow^{ac}_{p_1} w_{1} \Rightarrow^{ac}_{p_2} w_{2} \Rightarrow^{ac}_{p_3} ... \Rightarrow^{ac}_{p_n} w,\ for\ some\ p_1 p_2 ... p_n \in R \}.

Example

Let's consider a simple (though not the simplest) context-free grammar that generates the language \{ a^n : n \geq 1 \}:

Let G = ({S,A,X},{a},S,{f,g,h,k,l}), where

f: S \to AA
g: S \to X
h: A \to S
k: A \to X
l: S \to a

In language controlled form, this grammar is simply G^{\prime} = (\{S, A, X\}, \{a\}, S, \{f, g, h, k, l\}, (f|g|h|k|l)^{*}, \{f, g, h, k, l\}) (where (f | g | h | k | l) * is a regular expression denoting the set of all sequences of production rules). A simple modification to this grammar, changing is control sequence set R into the set (f * gh * k) * l * , and changing its vacuous rule set F to {g,k}, yields a grammar which generates the non-CF language \{ a^{2^n} : n \geq 0 \}. To see how, let's consider the general case of some string with n instances of S in it, i.e. Sn (the special case S1 trivially derives the string a which is a^{2^0}, an uninteresting fact).

If we chose some arbitrary production sequence fughvk..., we can consider three possibilities: n = u, n < u, and n > u When n = u we rewrite all n instances of S as AA, by applying rule f to the string u times, and proceed to apply g, which applies vacuously (by virtue of being in F) . When n < u, we rewrite all n instances of S as AA, and then try to perform the n+1 rewrite using rule f, but this fails because there are no more Ss to rewrite, and f is not in F and so cannot apply vacuously, thus when n < u, the derivation fails. Lastly, then n > u, we rewrite u instances of S, leaving at least one instance of S to be rewritten by the subsequent application of g, rewriting S as X. Given that no rule of this grammar ever rewrites X, such a derivation is destined to never produce a terminal string. Thus only derivations with n = u will ever successfully rewrite the string Sn. Similar reasoning holds of the number of As and v. In general, then, we can say that the only valid derivations have the structure S^n \Rightarrow_{f} ... \Rightarrow_{f} A^{2n} \Rightarrow{g} A^{2n} \Rightarrow{h} ... \Rightarrow{h} S^{2n} \Rightarrow{k} S^{2n} will produce terminal strings of the grammar. The X rules, combined with the structure of the control, essentially force all Ss to be rewritten as AAs prior to any As being rewritten as Ss, which again is forced to happen prior to all still later iterations over the S-to-AA cycle. Finally, the Ss are rewritten as as. In this way, the number of Ss doubles each for each instantiation of f8gh * k that appears in a terminal-deriving sequence.

Choosing two random non-terminal deriving sequences, and one terminal-deriving one, we can see this in work:

Let s1 = ffghkll, then we get the failed derivation:

S \Rightarrow^{ac}_{f} AA \Rightarrow^{ac}_{f} \text{failure: f cannot apply, no S to rewrite}

Let s2 = fghhhkll, then we get the failed derivation:

S \Rightarrow^{ac}_{f} AA \Rightarrow^{ac}_{g} AA \Rightarrow^{ac}_{h} SA \Rightarrow^{ac}_{h} SS \Rightarrow^{ac}_{h} \text{failure: h cannot apply, no A to rewrite}

Let s3 = fghhkll, then we get the successful derivation:

S \Rightarrow^{ac}_{f} AA \Rightarrow^{ac}_{g} AA \Rightarrow^{ac}_{h} SA \Rightarrow^{ac}_{h} SS \Rightarrow^{ac}_{k} SS \Rightarrow^{ac}_{l} aS \Rightarrow^{ac}_{l} aa

Similar derivations with a second cycle of f * gh * k produce only SSSS. Showing only the (continued) successful derivation:

... \Rightarrow SS \Rightarrow^{ac}_{f} AAS \Rightarrow^{ac}_{f} AAAA \Rightarrow^{ac}_{g} AAAA
\Rightarrow^{ac}_{h} SAAA \Rightarrow^{ac}_{h} SSAA \Rightarrow^{ac}_{h} SSSA \Rightarrow^{ac}_{h} SSSS \Rightarrow^{ac}_{k} SSSS
\Rightarrow^{ac}_{l} aSSS \Rightarrow^{ac}_{l} aaSS \Rightarrow^{ac}_{l} aaaS \Rightarrow^{ac}_{l} aaaa

Matrix grammars

Matrix grammars (expanded on in their own article) are a special case of regular controlled context-free grammars, in which the production sequence language is of the form (m1 | m2 | ... | mn) * , where each "matrix" mi is a single sequence. For convenience, such a grammar is not represented with a grammar over P, but rather with just a set of the matrices in place of both the language and the production rules. Thus, a matrix grammar is the 5-tuple G = (N,T,M,S,F), where N, T, S, and F are defined essentially as previously done (with F a subset of M this time), and M is a set of matrices m_i = p_{i,1} p_{i,2} ... p_{i,n_i} where each pi,j is a context-free production rule.

The derives relation in a matrix grammar is thus defined simply as:

Given some strings x and y, both in (N \cup T)^{*}, and some matrix m = p_1 p_2 ... p_n \in M,

x \Rightarrow^{ac}_{m} y

holds if either

x = x1Ax2, y = y1wy2, and A \Rightarrow^{ac}_{p_1} w_1 \Rightarrow^{ac}_{p_2} w_2 \Rightarrow^{ac}_{p_3} ... \Rightarrow^{ac}_{p_n} w, or
x = y and m \in F

Informally, a matrix grammar is simply a grammar in which during each rewriting cycle, a particular sequence of rewrite operations must be performed, rather than just a single rewrite operation, i.e. one rule "triggers" a cascade of other rules. Similar phenomena can be performed in the standard context-sensitive idiom, as done in rule-based phonology and earlier Transformational grammar, by what are known as "feeding" rules, which alter a derivation in such a way as to provide the environment for a non-optional rule that immediately follows it.

Vector grammars

Vector grammars are closely related to matrix grammars, and in fact can be seen as a special class of matrix grammars, in which if m \in M, then so are all of its permutations p(m). For convenience, however, we will define vector grammars as follows: a vector grammar is a 5-tuple G = (N,T,M,S,F), where N, T, and F are defined previously (F being a subset of M again), and where M is a set of vectors mi = {p1,p2,...,pn}, each vector being a set of context free rules.

The derives relation in a vector grammar is then:

Given some strings x and y, both in (N \cup T)^{*}, and some matrix m = \{ p_1, p_2, ..., p_n \} \in M,

x \Rightarrow^{ac}_{m} y

holds if either

x = x1Ax2, y = y1wy2, and A \Rightarrow^{ac}_{p_{i_1}} w_1 \Rightarrow^{ac}_{p_{i_2}} w_2 \Rightarrow^{ac}_{p_{i_3}} ... \Rightarrow^{ac}_{p_{i_n}} w, where m = \{p_{i_1}, p_{i_2}, ..., p_{i_n}\}, or
x = y and m \in F

Notice that the number of production rules used in the derivation sequence, n, is the same as the number of production rules in the vector. Informally, then, a vector grammar is one in which a set of productions is applied, each production applied exactly once, in arbitrary order, to derive one string from another. Thus vector grammars are almost identical to matrix grammars, minus the restriction on the order in which the productions must occur during each cycle of rule application.

Programmed grammars

Programmed grammars are relatively simple extensions to context-free grammars with rule-by-rule control of the derivation. A programmed grammar is a 4-tuple G = (N,T,S,P), where N, T, and S are as in a context-free grammar, and P is a set of tuples (p,σ,ϕ), where p is a context-free production rule, σ is a subset of N (called the success field), and ϕ is a subset of N (called the failure field). If the failure field of every rule in P is empty, the grammar is lacks appearance checking, and if at least one failure field is not empty, the grammar has appearance checking. The derivation relation on a programmed grammar is defined as follows:

Given two strings x, y \in (N \cup T)^{*}, and some rule p = (A \to w, \sigma, \phi) \in P,

x \Rightarrow_{p} y and x = x'Ax'',y = x'wx'', or
x = y and A does not appear in x.

The language of a programmed grammar G is defined by constraining the derivation rule-wise, as L(G) = \{ w \in (N \cup T)^{*} : S \Rightarrow_{p_1} w_1 \Rightarrow_{p_2} ... \Rightarrow_{p_n} w \}, where for each p_i = (A_i \to v_i, \sigma_i, \phi_i), either w_{i-1} = x_{i-1} A x'_{i-1}, w_i = x_{i-1} v_i x'_{i-1},\ and\ p_{i+1} \in \sigma_i or w_{i-1} = w_i, p_{i+1} \in \phi_i.

Intuitively, when applying a rule p in a programmed grammar, the rule can either succeed at rewriting a symbol in the string, in which case the subsequent rule must be in ps success field, or the rule can fail to rewrite a symbol (thus applying vacuously), in which case the subsequent rule must be in ps failure field. The choice of which rule to apply to the start string is arbitrary, unlike in a language controlled grammar, but once a choice is made the rules that can be applied after it constrain the sequence of rules from that point on.

Example

As with so many controlled grammars, programmed grammars can generate the language \{ a^{2^n} : n \geq 0 \}:

Let G = ({S,A},{a},S,{r1,r2,r3}), where

r_1 = (S \to AA, \{r_1\}, \{r_2\})
r_2 = (A \to S, \{r_2\}, \{r_1, r_3\})
r_3 = (S \to a, \{r_3\}, \emptyset)

The derivation for the string aaaa is as follows:

S \Rightarrow_{r_1} AA \Rightarrow_{r_1} AA \Rightarrow_{r_2} SA \Rightarrow_{r_2} SS \Rightarrow_{r_2} SS
\Rightarrow_{r_1} AAS \Rightarrow_{r_1} AAAA \Rightarrow_{r_1} AAAA
\Rightarrow_{r_2} SAAA \Rightarrow_{r_2} SSAA \Rightarrow_{r_2} SSSA \Rightarrow_{r_2} SSSS \Rightarrow_{r_2} SSSS
\Rightarrow_{r_3} aSSS \Rightarrow_{r_3} aaSS \Rightarrow_{r_3} aaaS \Rightarrow_{r_3} aaaa \Rightarrow_{r_3} aaaa

As can be seen from the derivation and the rules, each time r1 and r2 succeed, they feed back to themselves, which forces each rule to continue to rewrite the string over and over until it can do so no more. Upon failing, the derivation can switch to a different rule. In the case of r1, that means rewriting all Ss as AAs, then switching to r2. In the case of r2, it means rewriting all As as Ss, then switching either to r1, which will lead to doubling the number of Ss produced, or to r3 which converts the Ss to as then halts the derivation. Each cycle through r1 then r2 therefore either doubles the initial number of Ss, or converts the Ss to as. The trivial case of generating a, in case it is difficult to see, simply involves vacuously applying r1, thus jumping straight to r2 which also vacuously applies, then jumping to r3 which produces a.

Control by context conditions

Unlike grammars controlled by prescribed sequences of production rules, which constrain the space of valid derivations but do not constrain the sorts of sentences that a production rule can apply to, grammars controlled by context conditions have no sequence constraints, but permit constraints of varying complexity on the sentences to which a production rule applies. Similar to grammars controlled by prescribed sequences, there are multiple different kinds of grammars controlled by context conditions: conditional grammars, semi-conditional grammars, random context grammars, and ordered grammars.

Conditional grammars

Conditional grammars are the simplest version of grammars controlled by context conditions. The structure of a conditional grammar is very similar to that of a normal rewrite grammar: G = (N,T,S,P), where N, T, and S are as defined in a context-free grammar, and P is a set of pairs of the form (p,R) where p is a production rule (usually context-free), and R is a language (usually regular) over N \cup T. When R is regular, R can just be expressed as a regular expression.

Proof-theoretic definition

With this definition of a conditional grammar, we can define the derives relation as follows:

Given two strings x, y \in (N \cup T)^{*}, and some production rule p = (A \to w, R) \in P,

x \Rightarrow_{p} y if and only if x = x'Ax'', y = x'wx'', and x \in R

Informally then, the production rule for some pair in P can apply only to strings that are in its context language. Thus, for example, if we had some pair (S \to x, a^{*}Sb^{*}), we can only apply this to strings consisting of any number of as followed by exactly only S followed by any number of bs, i.e. to sentences in \{ a^m A b^n : m, n \geq 0 \}, such as the strings S, aSb, aaaS, aSbbbbbb, etc. It cannot apply to strings like xSy, aaaSxbbb, etc.

Example

Conditional grammars can generate the context-sensitive language \{ a^{2^n} : n \geq 0 \}.

Let G = ({S,S'},{a},{f,g,h},S), where

f = (S \to AA, A^{*}S^{+})
g = (A \to B, B^{*}A^{+})
h = (B \to S, S^{*}B^{+})
k = (S \to a, a^{*}S^{+})

We can then generate the sentence aaaa with the following derivation:

S \Rightarrow_{f} AA \Rightarrow_{g} BA \Rightarrow_{g} BB
\Rightarrow_{h} SB \Rightarrow_{h} SS \Rightarrow_{f} AAS \Rightarrow_{f} AAAA
\Rightarrow_{g} BAAA \Rightarrow_{g} BBAA \Rightarrow_{g} BBBA \Rightarrow_{g} BBBB
\Rightarrow_{h} SBBB \Rightarrow_{h} SSBB \Rightarrow_{h} SSSB \Rightarrow_{h} SSSS
\Rightarrow_{k} aSSS \Rightarrow_{k} aaSS \Rightarrow_{k} aaaS \Rightarrow_{k} aaaa

Semi-conditional grammars

A semi-conditional grammar is very similar to a conditional grammar, and technically the class of semi-conditional grammars are a subset of the conditional grammars. Rather than specifying what the whole of the string must look like for a rule to apply, semi-conditional grammars specify that a string must have as substrings all of some set of strings, and none of another set, in order for a rule to apply. Formally, then, a semi-conditional grammar is a tuple G = (N,T,S,P), where, N, T, and S are defined as in a CFG, and P is a set of rules like (p,R,Q) where p is a (usually context-free) production rule, and R and Q are finite sets of strings. The derives relation can then be defined as follows.

For two strings xAx', xwx' \in (N \cup T)^{*}, and some rule p = (A \to w, R, Q) \in P,

xAx' \Rightarrow_{p} xwx' if and only if every string in R is a substring of xAx', and no string in Q is a substring of xAx'

The language of a semi-conditional grammar is then trivially the set of terminal strings L(G) = \{ w \in T^{*} : S \Rightarrow^{*} w \}.

An example of a semi-conditional grammar is given below also as an example of random context grammars.

Random context grammars

A random context grammar is a semi-conditional grammar in which the R and Q sets are all subsets of N. Because subsets of N are finite sets over (N \cup T)^{*}, it is clear that that random context grammars are indeed kinds of semi-conditional grammars.

Example

Like conditional grammars, random context grammars (and thus semi-conditional grammars) can generate the language \{ a^{2^n} : n \geq 0 \}. One grammar which can do this is:

Let G = ({S,X,Y,A},{a},S,{r1,r2,r3,r4,r5}), where

r_1 = (S \to X X, \emptyset, \{Y, A\})
r_2 = (X \to Y, \emptyset, \{S\})
r_3 = (Y \to S, \emptyset, \{X\})
r_4 = (S \to A, \emptyset, \{X\})
r_5 = (A \to a, \emptyset, \{S\})

Consider now the production for aaaa:

S \Rightarrow_{r_1} X X \Rightarrow_{r_2} Y X \Rightarrow_{r_2} Y Y \Rightarrow_{r_3} S Y \Rightarrow_{r_3} S S
\Rightarrow_{r_1} X X S \Rightarrow_{r_1} X X X X \Rightarrow_{r_2} Y X X X \Rightarrow_{r_2} Y Y X X \Rightarrow_{r_2} Y Y Y X \Rightarrow_{r_2} Y Y Y Y
\Rightarrow_{r_3} S Y Y Y \Rightarrow_{r_3} S S Y Y \Rightarrow_{r_3} S S S Y \Rightarrow_{r_3} S S S S
\Rightarrow_{r_4} A S S S \Rightarrow_{r_4} A A S S \Rightarrow_{r_4} A A A S \Rightarrow_{r_4} A A A A
\Rightarrow_{r_5} a A A A \Rightarrow_{r_5} a a A A \Rightarrow_{r_5} a a a A \Rightarrow_{r_5} a a a a

The behavior of the R sets here is trivial: any string can be rewritten according to them, because they do not require any substrings to be present. The behavior of the Q sets, however, are more interesting. In r1, we are forced by the Q set to rewrite an S, thus beginning an S-doubling process, only when no Ys or As are present in the string, which means only when a prior S-doubling process has been fully initiated, eliminating the possibility of only doubling some of the Ss. In r2, which moves the S-doubling process into its second stage, we cannot begin this process until the first stage is complete and there are no more Ss to try to double, because the Q set prevents the rule from applying if there is an S symbol still in the string. In r3, we complete the doubling stage by introducing the Ss back only when there are no more Xs to rewrite, thus when the second stage is complete. We can cycle through these stages as many times as we want, rewriting all Ss to XXs before then rewriting each X to a Y, and then each Y to an S, finally ending by replacing each S with an A and then an a. Because the rule for replacing S with A prohibits application to a string with an X in it, we cannot apply this in the middle of the first stage of the S-doubling process, thus again preventing us from only doubling some Ss.

Ordered grammars

Ordered grammars are perhaps one of the simpler extensions of grammars into the controlled grammar domain. An ordered grammar is simply a tuple G = (N,T,S,P) where N, T, and S are identical to those in a CFG, and P is a set of context-free rewrite rules with a partial ordering < . The partial ordering is then used to determine which rule to apply to a string, when multiple rules are applicable. The derives relation is then:

Given some strings xAx', xwx' \in (N \cup T)^{*} and some rule p = A \to w \in P,

xAx' \Rightarrow_{p} xwx' if and only if there is no rule p' = A \to w' \in P such that p < p'.

Example

Like many other contextually controlled grammars, ordered grammars can enforce the application of rules in a particular order. Since this is the essential property of previous grammars that could generate the language \{ a^{2^n} : n \geq 0 \}, it should be no surprise that a grammar that explicitly uses rule ordering, rather than encoding it via string contexts, should similarly be able to capture that language. And as it turns out, just such an ordered grammar exists:

Let G = ({S,X,Y,Z,A},{a},S,P), where P is the partially ordered set described by the Hasse diagram

Ordered grammar.svg

The derivation for the string aaaa is simply:

S \Rightarrow_{S \to XX}\  XX \ \Rightarrow_{X \to Y}\  YX \ \Rightarrow_{X \to Y}\  YY \ \Rightarrow_{Y \to S}\  SY \ \Rightarrow_{Y \to S}\  YY
\Rightarrow_{S \to XX}\  XXS \ \Rightarrow_{S \to XX}\  XXXX
\Rightarrow_{X \to Y}\  YXXX \ \Rightarrow_{X \to Y}\  YYXX \ \Rightarrow_{X \to Y}\  YYYX \ \Rightarrow_{X \to Y}\  YYYY
\Rightarrow_{Y \to S}\  SYYY \ \Rightarrow_{Y \to S}\  SSYY \ \Rightarrow_{Y \to S}\  SSSY \ \Rightarrow_{Y \to S}\  SSSS
\Rightarrow_{S \to A}\  ASSS \ \Rightarrow_{S \to A}\  AASS \ \Rightarrow_{S \to A}\  AAAS \ \Rightarrow_{S \to A}\  AAAA
\Rightarrow_{A \to a}\  aAAA \ \Rightarrow_{A \to a}\  aaAA \ \Rightarrow_{A \to a}\  aaaA \ \Rightarrow_{A \to a}\  aaaa

At each step of the way, the derivation proceeds by rewriting in cycles. Notice that if at the fifth step SY, we had four options: Y \to Z, S \to Z, Y \to S, S \to A, the first two of which halt the derivation, as Z cannot be rewritten. In the example, we used Y \to S to derive SS, but consider if we had chosen S \to A instead. We would have produced the string AS, the options for which are Y \to Z and A \to Z, both of which halt the derivation. Thus with the string SY, and conversely with YS, we must rewrite the Y to produce SS. The same hold for other combinations, so that overall, the ordering forces the derivation to halt, or else proceed by rewriting all Ss to XXs, then all Xs to Ys, then all Ys to Ss, and so on, then finally all Ss to As then all As to as. In this way, a string Sn can only ever be rewritten as An which produces as, or as S2n. Starting with n = 0, it should be clear that this grammar only generates the language \{ a^{2^n} : n \geq 0 \}.

Grammars with parallelism

A still further class of controlled grammars is the class of grammars with parallelism in the application of a rewrite operation, in which each rewrite step can (or must) rewrite more than one non-terminal simultaneously. These, too, come in several flavors: Indian parallel grammars, k-grammars, scattered context grammars, unordered scattered context grammars, and k-simple matrix grammars. Again, the variants differ in how the parallelism is defined.

Indian parallel grammars

An Indian parallel grammar is simply a CFG in which to use a rewrite rule, all instances of the rules non-terminal symbol must be rewritten simultaneously. Thus, for example, given the string aXbYcXd, with two instances of X, and some rule X \to w, the only way to rewrite this string with this rule is to rewrite it as awbYcwd; neither awbYcXd nor aXbYcwd are valid rewrites in an Indian parallel grammar, because they did not rewrite all instances of X.

Indian parallel grammars can easily produce the language \{ ww : w \in \{a,b\}^{*}\}:

Let G = ({S,A},{a,b},S,{f,g,h,k}), where

f = S \to AA
g = A \to aA
h = A \to bA
k = A \to \epsilon

Generating aabaab then is quite simple:

S \Rightarrow_{f} AA \Rightarrow_{g} aAaA \Rightarrow_{g} aaAaaA \Rightarrow_{h} aabAaabA \Rightarrow_{k} aabaab

The language \{ a^{2^n} : n \geq 0 \} is even simpler:

Let G = (\{S\}, \{a\}, S, P), where ''P'' consists of

: <math>S \to SS

S \to a

It should be obvious, just from the first rule, and the requirement that all instances of a non-terminal are rewritten simultaneously with the same rule, that the number of Ss doubles on each rewrite step using the first rule, giving the derivation steps S \Rightarrow S^2 \Rightarrow S^4 \Rightarrow S^8 \Rightarrow .... Final application of the second rule replaces all the Ss with as, thus showing how this simple language can produce the language \{ a^{2^n} : n \geq 0 \}.

K-grammars

A k-grammar is yet another kind of parallel grammar, very different from an Indian parallel grammar, but still with a level of parallelism. In a k-grammar, for some number k, exactly k non-terminal symbols must be rewritten at every step (except the first step, where the only symbol in the string is the start symbol). If the string has less than k non-terminals, the derivation fails.

A 3-grammar can produce the language \{ a^n b^n c^n : n \geq 0 \}, as can be seen below:

Let G = ({S,A,B,C},{a,b,c},S,P), where P consists of:

S \to ABC
A \to aA
A \to a
B \to bB
B \to b
C \to cC
C \to c

With the following derivation for aaabbbccc:

S \Rightarrow ABC \Rightarrow aAbBcC \Rightarrow aaAbbBccC \Rightarrow aaabbbccc

At each step in the derivation except the first and last, we used the self-recursive rules A \to aA, B \to bB, C \to cC. If we had not use the recursive rules, instead using, say, A \to a, B \to bB, C \to cC, where one of the rules is not self-recursive, the number of non-terminals would have decreased to 2, thus making the string unable to be derived further because it would have too few non-terminals to be rewritten.

Russian parallel grammars

Russian parallel grammars[2] are somewhere between Indian parallel grammars and k-grammars, defined as G = (N,T,S,P), where N, T, and S are as in a context-free grammar, and P is a set of pairs (A \to w, k), where A \to w is a context-free production rule, and k is either 1 or 2. Application of a rule p = (A \to w, k) involves rewriting k occurrences of A to w simultaneously.

Scattered context grammars

A scattered context grammar is a 4-tuple G = (N,T,S,P) where N, T, and S are defined as in a context-free grammar, and P is a set of tuples called matrixes p = (A_1 \to w_1, ..., A_n \to w_n), where n > 0 can vary according to the matrix. The derives relation for such a grammar is

x \Rightarrow_{p} y if and only if
p = (A_1 \to w_1, ..., A_n \to w_n)\in P, and
x = x1A1x2...xnAnxn + 1,y = x1w1x2...xnwnxn + 1, for x_i \in (N \cup T)^{*}

Intuitively, then, the matrixes in a scattered context grammar provide a list of rules which must each be applied to non-terminals in a string, where those non-terminals appear in the same linear order as the rules that rewrite them.

An unordered scattered context grammar is a scattered context grammar in which, for every rule in P, each of its permutations is also in P. As such, a rule and its permutations can instead be represented as a set rather than as tuples.

Example

Scattered context grammars are capable of describing the language \{ a^n b^n c^n : n \geq 0 \} quite easily.

Let G = ({S},{a,b,c},S,{r1,r2,r3}), where

r_1 = (S \to SSS)
r_2 = (S \to aS, S \to bS, S \to cS)
r_3 = (S \to \epsilon,S \to \epsilon,S \to \epsilon)

Deriving aaabbbccc then is trivial:

S \Rightarrow_{r_1} SSS \Rightarrow_{r_2} aSbScS \Rightarrow_{r_2} aaSbbSccS \Rightarrow_{r_2} aaaSbbbScccS \Rightarrow_{r_3} aaabbbccc

References

  1. ^ Dassow, J., Pǎun, Gh., and Salomaa, A. Grammars with Controlled Derivations. In G. Rozenberg and A. Salomaa (Eds.) Handbook of Formal Languages, Vol. 2, Ch. 3.
  2. ^ Dassow, J. 1984. On some extensions of russian parallel context free grammars. Acta Cybernetica 6, pp. 355-360.

Wikimedia Foundation. 2010.

Игры ⚽ Поможем решить контрольную работу

Look at other dictionaries:

  • Controlled natural language — Controlled natural languages (CNLs) are subsets of natural languages, obtained by restricting the grammar and vocabulary in order to reduce or eliminate ambiguity and complexity. Traditionally, controlled languages fall into two major types:… …   Wikipedia

  • Controlled language in machine translation — Using controlled language in machine translation poses several problems. In an automated translation, the first step in order to understand the controlled language is to know what it is and to distinguish between natural language and controlled… …   Wikipedia

  • Grosvenor Grammar School — Infobox Education in the United States name= Grosvenor Grammar School motto= Veritas Liberabit motto translation= And The Truth Shall Set You Free streetaddress= Cameronian Drive, BT5 6AX city= Belfast state= Northern Ireland phone= (+ 44 28)… …   Wikipedia

  • Watford Grammar School for Boys — Motto Sperate parati Established 1704 and 1884 Type parti …   Wikipedia

  • Maidstone Grammar School for Girls — Established 1887 Type voluntary controlled grammar school Location Buckland Road Maidstone Kent ME16 0SF England Gender Gir …   Wikipedia

  • Strabane Grammar School — Established 1956 Type Controlled Religion non demonational Headmaster Mr.L. J. Lacey Location Milltown House, Liskey Road Strabane …   Wikipedia

  • Carrickfergus Grammar School — Infobox UK school name = Carrickfergus Grammar School latitude = 54.729242 longitude = 5.816703 dms = motto = Praestantia motto pl = established = 1962 approx = closed = c approx = type = Controlled Grammar religion = president = head label =… …   Wikipedia

  • Aylesbury Grammar School — Infobox UK school name = Aylesbury Grammar School size = 150px latitude = 51.8139 longitude = 0.8014 dms = established = 1598 approx = closed = c approx = type = Voluntary controlled Grammar school religion = president = head label = Headteacher… …   Wikipedia

  • Matrix grammar — A matrix grammar is a formal grammar in which instead of single productions, productions are grouped together into finite sequences. A production cannot be applied separately, it must be applied in sequence. In the application of such a sequence… …   Wikipedia

  • Cambridge House Grammar School — Infobox UK school name =Cambridge House Grammar School size = latitude = longitude = motto = Per Laborem established =September 2001 type =Grammar school religion =None head label =Principal head =Eileen Lisk city =Ballymena county =County Antrim …   Wikipedia

Share the article and excerpts

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