Context-free language: Difference between revisions
Angrysockhop (talk | contribs) m Reverted edits by 117.199.114.53 (talk) to last version by Luckas-bot |
Mouhaned99 (talk | contribs) No edit summary |
||
Line 56: | Line 56: | ||
* There exist [[context-sensitive language]]s which are not context-free. |
* There exist [[context-sensitive language]]s which are not context-free. |
||
* To prove that a given language is not context-free, one may employ the [[pumping lemma for context-free languages]]. |
* To prove that a given language is not context-free, one may employ the [[pumping lemma for context-free languages]]. |
||
==Converting a grammar to Greibach Normal Form and Chomsky normal form using CNF/GNF software== |
|||
CNF / GNF : is a software make the automatic Convertion of a context-free grammar to: |
|||
1- Chomsky normal form grammar (CNF). |
|||
2- Greibach normal form grammar (GNF). |
|||
and also it show you the new grammar in each of the steps of the transformation. |
|||
A- Chomsky normal normal grammar (CNF) |
|||
1- reduced grammar. |
|||
2- epsilon-free grammar. |
|||
3- grammar without cycles and unit rules . |
|||
4-CNF. |
|||
B-Greibach normal form grammar (GNF). |
|||
1- reduced grammar. |
|||
2- epsilon-free grammar. |
|||
3- without cycles and unit rules. |
|||
4- non-left recursive grammar. |
|||
5- GNF. |
|||
with this application you can have CNF and GNF for any context-free grammar just in few steps. |
|||
just run the application and create new project and enter your grammar and click done and you will have : |
|||
CNF and GNF grammar and the new grammar in each of the steps of the transformation. |
|||
== See also == |
|||
* [[Cnf/gnf|CNF/GNF]] |
|||
* [[Cnf/gnf|Chomsky normal form software]] |
|||
==External links== |
|||
*[http://www.adfaria.com/index.php?option=com_content&view=article&id=48&Itemid=29 Chomsky normal form software] |
|||
*[http://www.adfaria.com/ CNF/GNF Homepage] |
|||
*[http://www.adfaria.com/index.php?option=com_content&view=article&id=48&Itemid=29 CNF/GNF download] |
|||
== References == |
== References == |
Revision as of 05:52, 30 September 2010
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.
Examples
An archetypical context-free language is , the language of all non-empty even-length strings, the entire first halves of which are 's, and the entire second halves of which are 's. is generated by the grammar , and is accepted by the pushdown automaton where is defined as follows:
where is initial stack symbol and 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 . Also, most arithmetic expressions are generated by context-free grammars.
Closure properties
Context-free languages are closed under the following operations. That is, if L and P are context-free languages, the following languages are context-free as well:
- the union of L and P
- the reversal of L
- the concatenation of L and P
- the Kleene star of L
- the image φ(L) of L under a homomorphism φ
- the image of L under an inverse homomorphism
- the cyclic shift of L (the language )
Context-free languages are not closed under complement, intersection, or difference. However, if L is a context-free language and D is a regular language then both their intersection and their difference are context-free languages.
Nonclosure under intersection and complement
The context-free languages are not closed under intersection. This can be seen by taking the languages and , which are both context-free. Their intersection is , which can be shown to be non-context-free by the pumping lemma for context-free languages.
Context-free languages are also not closed under complementation. For example, the language is context-free, because it can be expressed as a union of three languages that are obviously context-free. However, its complement is not context-free. To see why, note that if we take the regular language , then their intersection is .
Decidability properties
The following problems are undecidable for arbitrary context-free grammars A and B:
- Equivalence: is ?
- is ? (However, the intersection of a context-free language and a regular language is context-free, so if were a regular language, this problem becomes decidable.)
- is ?
- is ?
The following problems are decidable for arbitrary context-free languages:
- is ?
- is finite?
- Membership: given any word , does ? (membership problem is even polynomially decidable - see CYK algorithm and Early's Algorithm)
Properties of context-free languages
- The reverse of a context-free language is context-free, but the complement need not be.
- Every regular language is context-free because it can be described by a regular grammar.
- The intersection of a context-free language and a regular language is always context-free.
- There exist context-sensitive languages which are not context-free.
- To prove that a given language is not context-free, one may employ the pumping lemma for context-free languages.
Converting a grammar to Greibach Normal Form and Chomsky normal form using CNF/GNF software
CNF / GNF : is a software make the automatic Convertion of a context-free grammar to:
1- Chomsky normal form grammar (CNF).
2- Greibach normal form grammar (GNF).
and also it show you the new grammar in each of the steps of the transformation.
A- Chomsky normal normal grammar (CNF)
1- reduced grammar.
2- epsilon-free grammar.
3- grammar without cycles and unit rules .
4-CNF.
B-Greibach normal form grammar (GNF).
1- reduced grammar.
2- epsilon-free grammar.
3- without cycles and unit rules.
4- non-left recursive grammar.
5- GNF.
with this application you can have CNF and GNF for any context-free grammar just in few steps.
just run the application and create new project and enter your grammar and click done and you will have :
CNF and GNF grammar and the new grammar in each of the steps of the transformation.
See also
External links
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.