Czy zestawy przed i po dla gramatyk bezkontekstowych zawsze są pozbawione kontekstu?


14

Niech G będzie gramatyką bezkontekstową. Łańcuch zacisków i nieterminali z G mówi się zdań tworzą z G , czy można go otrzymać stosując produkcje G zero lub więcej razy symbolu startu S . Niech SF(G) będzie zbiorem form zdaniowych G .

Niech αSF(G) i pozwolić β być podłańcuchem α - nazywamy β się fragment o SF(G) . Teraz pozwól

Before(β)={γ | δ.γβδSF(G)}

i

After(β)={δ | γ.γβδSF(G)} .

Czy języki Before(β) i After(β) bezkontekstowe? Co jeśli G jest jednoznaczny? Jeśli G jest jednoznaczne, czy Before(β) i After(β) również opisać jednoznaczny język bezkontekstowy?

Jest to kontynuacja mojego wcześniejszego pytania , po nieudanej próbie ułatwienia odpowiedzi na moje pytanie. Odpowiedź negatywna sprawi, że pytanie, na które ciężko pracuję, będzie bardzo trudne.

Odpowiedzi:


8

Pozwól nam uzyskać poczucie dla i Po ( p ) w pierwszej kolejności. Rozważ drzewo pochodnych, które zawiera β ; „zawiera” oznacza tutaj, że możesz odciąć poddrzewa, tak aby β było podsłowem frontu drzewa. Następnie, przed (po) zestawem są wszystkie potencjalne fronty części drzewa po lewej (prawej) stronie β :Before(β)After(β)βββ

tree with before and after sets
[ źródło ]

Musimy więc zbudować gramatykę dla wyłożonej poziomo (pionowo) części drzewa. Wydaje się to dość łatwe, ponieważ mamy już gramatykę dla całego drzewa; musimy tylko upewnić się, że wszystkie sentymentalne formy są słowami (zmienić alfabety), odfiltrować te, które nie zawierają (co jest normalną właściwością, ponieważ β jest ustalone) i odciąć wszystko po (przed) β , w tym β . To cięcie powinno być również możliwe.ββββ


Teraz do formalnego dowodu. Zmienimy gramatykę zgodnie z przedstawionymi rysunkami i wykorzystamy właściwości zamykające do filtrowania i wycinania, tzn. Wykonujemy dowód niekonstruktywny.CFL

Niech gramatyka bezkontekstowa. Łatwo zauważyć, że SF ( G ) jest pozbawiony kontekstu; konstruuj G = ( N , T , δ , N S ) w następujący sposób:G=(N,T,δ,S)SF(G)G=(N,T,δ,NS)

  • N={NAAN}
  • T=NT
  • δ={α(A)α(β)Aβδ}{NAAAN}

z dla wszystkich t T i α ( ) = N dla każdego z N . Oczywiste jest, że L ( G ) = SF ( G ) ; dlatego też odpowiednie prefiks Pref ( SF ( G ) ) i sufiks Suff ( SF ( G ) ) również są pozbawione kontekstu¹.α(t)=ttTα(A)=NAaNL(G)=SF(G)Pref(SF(G))Suff(SF(G))

Teraz, dla każdego L ( β ( N T ) ) i L ( ( N T ) β ) zwykłe języki. Ponieważ C F L jest zamknięte pod przecięciem i ilorazem prawo / lewo zwykłymi językami, otrzymujemyβ(NT)L(β(NT))L((NT)β)CFL

Before(β)=(Pref(SF(G))  L((NT)β))/βCFL

and

After(β)=(Suff(SF(G))  L(β(NT)))βCFL.


¹ CFL is closed under right (and left) quotient; Pref(L)=L/Σ and similar for Suff yield prefix resp. suffix closure.


I started to write an answer then realized my proof was the same as yours. I'd have put it this way (compressed to fit here): form a grammar G by adding a new terminal A^ (a metavariable) for each non-terminal A and a production AA^. Then sentential forms of G are the words recognized by G that consist of metavariables. This is the intersection of a CFG with a regular language and thus is regular. The prefix set of a CFG is a CFG (take a PDA and make every state final). Before(γ)={γγβL(Prefix(G^))} is again a CFG.
Gilles 'SO- stop being evil'

1
@Gilles, three comments on that: 1) the sentential forms typically (properly) contain the language. 2) "make every state final" -- that won't work; you'll accept prefixes of non-words, too. 3) The last step of "cutting off" a suffix seems to be tricky to get rigorous. :/ Do you have a rigorous but more compact proof than mine?
Raphael

1) doesn't matter (change G to have or not have a nonterminal for each terminal). 2) Oops, I cut off too much: make every state that can reach a final state final. 3) Do it one terminal b at a time; in the PDA, mark the states from which one can reach a final state by consuming b as final instead. Yes, it would take more expansion to make this rigorous.
Gilles 'SO- stop being evil'

9

Yes, Before(β) and After(β) are context-free languages. Here's how I would prove it. First, a lemma (which is the crux). If L is CF then:

Before(L,β)={γ | δ.γβδL}

and

After(L,β)={γ | δ.δβγL}

are CF.

Proof? For Before(L,β) construct a non-deterministic finite-state transducer Tβ that scans a string, outputting every input symbol it sees and simultaneously searches non-deterministically for β. Whenever Tβ sees the first symbol of β it forks non-deterministically and ceases outputting symbols until either it finishes seeing β or it sees sees a symbol that deviates from β, stopping in either case. If Tβ sees β in full, it accepts upon stopping, which is the only way it accepts. If it sees a deviation from β, it rejects.

The lemma can be jiggered to handle cases where β could overlap with itself (like abab -- keep looking for β even while in the midst of scanning for a prior β) or appears multiple times (actually, the original non-determinisic forking already handles that).

It's fairly clear that Tβ(L)=Before(L,β), and since the CFLs are closed under finite-state transduction, Before(L,β) is therefore CF.

A similar argument goes for After(L,β), or it could be done with string reversals from Before(L,β) , CFLs also being closed under reversal:

After(L,β)=rev(Before(rev(L),rev(β)))

Actually, now that I see the reversal argument, it would be even easier to start with After(L,β), since the transducer for that is simpler to describe and verify -- it outputs the empty string while looking for a β. When it finds β it forks non-deterministically, one fork continuing to look for further copies of β, the other fork copying all subsequent characters verbatim from input to output, accepting all the while.

What remains is to make this work for sentential forms as well as CFLs. But that is pretty straightforward, since the language of sentential forms of a CFG is itself a CFL. You can show that by replacing every non-terminal X throughout G by say X, declaring X to be a terminal, and adding all productions XX to the grammar.

I'll have to think about your question on unambiguity.

Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.