Welcome to twinme.com on July 10 2009.
This is an internet experiment running to monitor browsing habbits of individuals through wikipedia contents.

Context-free language

From Wikipedia, the free encyclopedia

  (Redirected from Context-free languages)
Jump to: navigation, search

In formal language theory, a context-free language is a language generated by some context-free grammar. The set of all context-free languages is identical to the set of languages accepted by pushdown automata.

Contents

[edit] Examples

An archetypical context-free language is L = \{a^nb^n:n\geq1\}, the language of all non-empty even-length strings, the entire first halves of which are a's, and the entire second halves of which are b's. L is generated by the grammar S\to aSb ~|~ ab, and is accepted by the pushdown automaton M = ({q0,q1,qf},{a,b},{a,z},δ,q0,{qf}) where δ is defined as follows:

δ(q0,a,z) = (q0,a)
δ(q0,a,a) = (q0,a)
δ(q0,b,a) = (q1,x)
δ(q1,b,a) = (q1,x)
δ(q1,λ,z) = (qf,z)

δ(state1,read,pop) = (state2,push)
where z is initial stack symbol and x means pop action.

Context-free languages have many applications in programming languages; for example, the language of all properly matched parentheses is generated by the grammar S\to SS ~|~ (S) ~|~ \lambda. Also, most arithmetic expressions are generated by context-free grammars.

[edit] Closure properties

Context-free languages are closed under the following operations. That is, if L and P are context-free languages and D is a regular language, the following languages are context-free as well:

Context-free languages are not closed under complement, intersection, or difference.

[edit] Nonclosure under intersection

The context-free languages are not closed under intersection. This can be seen by taking the languages A = \{a^m b^n c^n \mid m, n \geq 0 \} and B = \{a^n b^n c^m \mid m,n \geq 0\}, which are both context-free. Their intersection is A \cap B = \{ a^n b^n c^n \mid n \geq 0\}, which can be shown to be non-context-free by the pumping lemma for context-free languages.

[edit] Decidability properties

The following problems are undecidable for arbitrary context-free grammars A and B:

  • Equivalence: is L(A) = L(B)?
  • is L(A) \cap L(B) = \emptyset  ?
  • is L(A) = Σ *  ?
  • is L(A) \subseteq L(B) ?

The following problems are decidable for arbitrary context-free languages:

  • is L(A)=\emptyset ?
  • is L(A) finite?
  • Membership: given any word w, does w \in L(A) ? (membership problem is even polynomially decidable - see CYK algorithm)

[edit] Properties of context-free languages

[edit] References

  • Seymour Ginsburg (1966). The Mathematical Theory of Context-Free Languages. New York, NY, USA: McGraw-Hill, Inc.. 
  • Michael Sipser (1997). Introduction to the Theory of Computation. PWS Publishing. ISBN 0-534-94728-X.  Chapter 2: Context-Free Languages, pp.91–122.
Personal tools

Visit joltnews for the latest headlines
Visit bloit.com for company information
Geed Media does computer consulting on long island.
This page viewed times. See Logs