Range concatenation grammar: Difference between revisions

From testwiki
Jump to navigation Jump to search
imported>Jochen Burghardt
 
(No difference)

Latest revision as of 22:55, 25 January 2024

Range concatenation grammar (RCG) is a grammar formalism developed by Pierre Boullier [1] in 1998 as an attempt to characterize a number of phenomena of natural language, such as Chinese numbers and German word order scrambling, which are outside the bounds of the mildly context-sensitive languages.[2]

From a theoretical point of view, any language that can be parsed in polynomial time belongs to the subset of RCG called positive range concatenation grammars, and reciprocally.[4]

Though intended as a variant on Groenink's literal movement grammars (LMGs), RCGs treat the grammatical process more as a proof than as a production. Whereas LMGs produce a terminal string from a start predicate, RCGs aim to reduce a start predicate (which predicates of a terminal string) to the empty string, which constitutes a proof of the terminal strings membership in the language.

Description

Formal definition

A Positive Range Concatenation Grammar (PRCG) is a tuple G=(N,T,V,S,P), where:

  • N, T and V are disjoint finite sets of (respectively) predicate names, terminal symbols and variable names. Each predicate name has an associated arity given by the function dim:N{0}.
  • SN is the start predicate name and verify dim(S)=1.
  • P is a finite set of clauses of the form ψ0ψ1ψm, where the ψi are predicates of the form Ai(α1,,αdim(Ai)) with AiN and αi(TV).

A Negative Range Concatenation Grammar (NRCG) is defined like a PRCG, but with the addition that some predicates occurring in the right-hand side of a clause can have the form Ai(α1,,αdim(Ai)). Such predicates are called negative predicates.

A Range Concatenation Grammar is a positive or a negative one. Although PRCGs are technically NRCGs, the terms are used to highlight the absence (PRCG) or presence (NRCG) of negative predicates.

A range in a word wT is a couple l,rw, with 0lrn, where n is the length of w. Variables bind to ranges, not to arbitrary strings of nonterminals. Two ranges l1,r1w and l2,r2w can be concatenated iff r1=l2, and we then have: l1,r1wl2,r2w=l1,r2w. When instantiating a clause, where an argument consists of multiple elements from TV, their ranges must concatenate.

For a word w=w1w2wn, with wiT, the dotted notation for ranges is: l,rw=w1wl1wlwr1wrwn.

Recognition of strings

The strings of predicates being rewritten represent constraints that the string being tested has to satisfy (if positive), or in the case of negative predicates not satisfy. The order of predicates is irrelevant. Rewrite steps amount to replacing one constraint by zero or more simpler constraints.

Like LMGs, RCG clauses have the general schema A(x1,...,xn)α, where in an RCG, α is either the empty string or a string of predicates. The arguments xi consist of strings of terminal symbols and/or variable symbols, which pattern match against actual argument values like in LMG. Adjacent variables constitute a family of matches against partitions, so that the argument xy, with two variables, matches the literal string ab in three different ways: x=ϵ, y=ab; x=a, y=b; x=ab, y=ϵ. These would give rise to three different instantiations of the clause containing that argument xy.

Predicate terms come in two forms, positive (which produce the empty string on success), and negative (which produce the empty string on failure/if the positive term does not produce the empty string). Negative terms are denoted the same as positive terms, with an overbar, as in A(x1,...,xn).

The rewrite semantics for RCGs is rather simple, identical to the corresponding semantics of LMGs. Given a predicate string A(α1,...,αn), where the symbols αi are terminal strings, if there is a rule A(x1,...,xn)β in the grammar that the predicate string matches, the predicate string is replaced by β, substituting for the matched variables in each xi.

For example, given the rule A(x,ayb)B(axb,y), where x and y are variable symbols and a and b are terminal symbols, the predicate string A(a,abb) can be rewritten as B(aab,b), because A(a,abb) matches A(x,ayb) when x=a, y=b. Similarly, if there were a rule A(x,ayb)A(x,x) A(y,y), A(a,abb) could be rewritten as A(a,a) A(b,b).

A proof/recognition of a string α is done by showing that S(α) produces the empty string. For the individual rewrite steps, when multiple alternative variable matches are possible, any rewrite which could lead the whole proof to succeed is considered. Thus, if there is at least one way to produce the empty string from the initial string S(α), the proof is considered a success, regardless of how many other ways to fail exist.

Example

RCGs are capable of recognizing the non-linear index language {www:w{a,b}*} as follows:

Letting x, y, and z be variable symbols: S(xyz)A(x,y,z)A(ax,ay,az)A(x,y,z)A(bx,by,bz)A(x,y,z)A(ϵ,ϵ,ϵ)ϵ The proof for Template:Not a typo is then

S(abbabbabb)A(abb,abb,abb)A(bb,bb,bb)A(b,b,b)A(ϵ,ϵ,ϵ)ϵ

Or, using the more correct dotted notation for ranges:

S(abbabbabb)A(abbabbabb,abbabbabb,abbabbabb)A(abbabbabb,abbabbabb,abbabbabb) A(abbabbabb,abbabbabb,abbabbabb)A(ϵ,ϵ,ϵ)ϵ

For a string of 3n letters, there are (3n+22)=(3n+2)(3n+1)2 different instantiations of that first clause, but only the one which makes x,y,z all n letters each allows the derivation to reach ϵ.

Properties

Every context-free grammar (CFG) can be converted into a range concatenation grammar:

  • For every nonterminal A of the CFG, the RCG has an arity 1 predicate A(x).
  • For every CFG rule ABC, the RCG has A(xy)B(x)C(y).
  • For every CFG rule Aa (where a terminal), the RCG has A(a)ϵ.

The intersection and union of two range concatenation languages are trivially range concatenation languages:

  • For S the intersection of A and B, you have S(x)A(x)B(x).
  • For S the union of A and B, you have S(x)A(x) and S(x)B(x).

Possibly negative range concatenation languages are also closed under set complement.

A consequence of the above is that it is undecidable whether a (positive) range concatenation language is nonempty, because it is undecidable whether the intersection of two context-free languages is nonempty. Hence range concatenation grammars are not generative.

References

Template:Formal languages and grammars