Conjunctive grammar

From HandWiki
Revision as of 15:16, 10 July 2021 by imported>MainAI5 (change)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Conjunctive grammars are a class of formal grammars studied in formal language theory. They extend the basic type of grammars, the context-free grammars, with a conjunction operation. Besides explicit conjunction, conjunctive grammars allow implicit disjunction represented by multiple rules for a single nonterminal symbol, which is the only logical connective expressible in context-free grammars. Conjunction can be used, in particular, to specify intersection of languages. A further extension of conjunctive grammars known as Boolean grammars additionally allows explicit negation.

The rules of a conjunctive grammar are of the form

[math]\displaystyle{ A \to \alpha_1 \And \ldots \And \alpha_m }[/math]

where [math]\displaystyle{ A }[/math] is a nonterminal and [math]\displaystyle{ \alpha_1 }[/math], ..., [math]\displaystyle{ \alpha_m }[/math] are strings formed of symbols in [math]\displaystyle{ \Sigma }[/math] and [math]\displaystyle{ V }[/math] (finite sets of terminal and nonterminal symbols respectively). Informally, such a rule asserts that every string [math]\displaystyle{ w }[/math] over [math]\displaystyle{ \Sigma }[/math] that satisfies each of the syntactical conditions represented by [math]\displaystyle{ \alpha_1 }[/math], ..., [math]\displaystyle{ \alpha_m }[/math] therefore satisfies the condition defined by [math]\displaystyle{ A }[/math].

Formal definition

A conjunctive grammar [math]\displaystyle{ G }[/math] is defined by the 4-tuple [math]\displaystyle{ G = (V, \Sigma, R, S) }[/math] where

  1. V is a finite set; each element [math]\displaystyle{ v\in V }[/math] is called a nonterminal symbol or a variable. Each variable represents a different type of phrase or clause in the sentence. Variables are also sometimes called syntactic categories.
  2. Σ is a finite set of terminals, disjoint from V, which make up the actual content of the sentence. The set of terminals is the alphabet of the language defined by the grammar G.
  3. R is a finite set of productions, each of the form [math]\displaystyle{ A \rightarrow \alpha_1\&\ldots\&\alpha_m }[/math] for some [math]\displaystyle{ A }[/math] in [math]\displaystyle{ V }[/math] and [math]\displaystyle{ \alpha_i \in (V\cup\Sigma)^* }[/math]. The members of R are called the rules or productions of the grammar.
  4. S is the start variable (or start symbol), used to represent the whole sentence (or program). It must be an element of V.

It is common to list all right-hand sides for the same left-hand side on the same line, using | (the pipe symbol) to separate them. Rules [math]\displaystyle{ A\rightarrow\alpha_1\&\ldots\&\alpha_m }[/math] and [math]\displaystyle{ A\rightarrow\beta_1\&\ldots\&\beta_n }[/math] can hence be written as [math]\displaystyle{ A\rightarrow\alpha_1\&\ldots\&\alpha_m\ |\ \beta_1\&\ldots\&\beta_n }[/math].

Two equivalent formal definitions of the language specified by a conjunctive grammar exist. One definition is based upon representing the grammar as a system of language equations with union, intersection and concatenation and considering its least solution. The other definition generalizes Chomsky's generative definition of the context-free grammars using rewriting of terms over conjunction and concatenation.

Definition by derivation

For any strings [math]\displaystyle{ u, v \in (V \cup \Sigma \cup \{ \text{“(”}, \text{“}\&\text{”}, \text{“)”} \})^{*} }[/math], we say u directly yields v, written as [math]\displaystyle{ u\Rightarrow v\, }[/math], if

  • either there is a rule [math]\displaystyle{ A \rightarrow \alpha_1 \& \ldots \& \alpha_m \in R }[/math] such that [math]\displaystyle{ u\,=u_{1} A u_{2} }[/math] and [math]\displaystyle{ v\,=u_{1} (\alpha_1 \& \ldots \& \alpha_m) u_{2} }[/math],
  • or there exists a string [math]\displaystyle{ w \in (V \cup \Sigma)^{*} }[/math] such that [math]\displaystyle{ u\,=u_{1} (w \& \ldots \& w) u_{2} }[/math] and [math]\displaystyle{ v\,=u_{1} w u_{2} }[/math].

For any string [math]\displaystyle{ w \in \Sigma^{*}, }[/math] we say G generates w, written as [math]\displaystyle{ S \ \stackrel{*}{\Rightarrow} \ w }[/math], if [math]\displaystyle{ \exists k\geq 1\, \exists \, u_{1}, \cdots, u_{k}\in (V \cup \Sigma \cup \{ \text{“(”}, \text{“}\&\text{”}, \text{“)”} \})^{*} }[/math] such that [math]\displaystyle{ S = \, u_{1} \Rightarrow u_{2} \Rightarrow \cdots \Rightarrow u_{k} \, = w }[/math].

The language of a grammar [math]\displaystyle{ G = (V, \Sigma, R, S) }[/math] is the set of all strings it generates.

Example

The grammar [math]\displaystyle{ G = (\{S, A, B, C, D\}, \{a, b, c\}, R, S) }[/math], with productions

[math]\displaystyle{ S\rightarrow AB \& DC }[/math],
[math]\displaystyle{ A\rightarrow aA\ |\ \epsilon }[/math],
[math]\displaystyle{ B\rightarrow bBc\ |\ \epsilon }[/math],
[math]\displaystyle{ C\rightarrow cC\ |\ \epsilon }[/math],
[math]\displaystyle{ D\rightarrow aDb\ |\ \epsilon }[/math],

is conjunctive. A typical derivation is

[math]\displaystyle{ S \Rightarrow (AB \& DC) \Rightarrow (aAB \& DC) \Rightarrow (aB \& DC) \Rightarrow (abBc \& DC) \Rightarrow (abc \& DC) \Rightarrow (abc \& aDbC) \Rightarrow (abc \& abC) \Rightarrow (abc \& abcC) \Rightarrow (abc \& abc) \Rightarrow abc }[/math]

It can be shown that [math]\displaystyle{ L(G) = \{a^nb^nc^n:n \ge 0\} }[/math]. The language is not context-free, proved by the pumping lemma for context-free languages.

Parsing algorithms

Though the expressive power of conjunctive grammars is greater than those of context-free grammars, conjunctive grammars retain some of the latter. Most importantly, there are generalizations of the main context-free parsing algorithms, including the linear-time recursive descent, the cubic-time generalized LR, the cubic-time Cocke-Kasami-Younger, as well as Valiant's algorithm running as fast as matrix multiplication.

Theoretical properties

A property that is undecidable already for context-free languages or finite intersections of them, must be undecidable also for conjunctive grammars; these include: emptiness, finiteness, regularity, context-freeness,[n 1] inclusion and equivalence.[n 2]

The family of conjunctive languages is closed under union, intersection, concatenation and Kleene star, but not under string homomorphism, prefix, suffix, and substring. Closure under complement and under ε-free string homomorphism are still open problems (as of 2001).[1]:533

The expressive power of grammars over a one-letter alphabet has been researched.[citation needed]

This work provided a basis for the study of language equations of a more general form.

Synchronized alternating pushdown automata

Aizikowitz and Kaminski[2] introduced a new class of pushdown automata (PDA) called synchronized alternating pushdown automata (SAPDA). They proved it to be equivalent to conjunctive grammars in the same way as nondeterministic PDAs are equivalent to context-free grammars.

Notes

  1. Given a conjunctive grammar, is its generated language empty / finite / regular / context-free?
  2. Given two conjunctive grammars, is the first's generated language a subset of / equal to the second's?

References

  1. Alexander Okhotin (2001). "Conjunctive Grammars". Journal of Automata, Languages and Combinatorics 6 (4): 519–535. http://users.utu.fi/aleokh/papers/conjunctive.pdf. 
  2. Aizikowitz, Tamar; Kaminski, Michael (2011). "LR(0) Conjunctive Grammars and Deterministic Synchronized Alternating Pushdown Automata". Computer Science – Theory and Applications. Lecture Notes in Computer Science. 6651. pp. 345–358. doi:10.1007/978-3-642-20712-9_27. ISBN 978-3-642-20711-2. 

External links