What Language Does This Specific Grammar Produce?

  • MHB
  • Thread starter mathmari
  • Start date
  • Tags
    Language
In summary, the language $L(G)$ produced by the grammar G is the set of all strings in $\{0,1\}^*$ that can be generated by applying the production rules starting from the start symbol S.
  • #1
mathmari
Gold Member
MHB
5,049
7
Hey! :eek:

Let G=(N,T,S,P) be a grammar with the non-terminal symbols N={S,E,T,Z,Q,C,D}, the terminal symbols T={0,1} and the production rules
Code:
P={ S  ->  E | Z | Q, 
    E  ->  1E | 0T | ε, 
    T  ->  1T | 0E, 
    Z  ->  1Z | 0E | ε, 
    Q  ->  CD, 
    C  ->  0C | 0, 
    D  ->  1D | 1}

How could we determine the language L(G) that the grammar produces? From the above rules we get for example the words [m]11010111010[/m], [m]11000110110[/m], [m]0000001111111[/m].

Is the language maybe $L(G)=\{w\in \{0,1\}^\star \mid \# 0 < \# 1\}$ ? (Wondering)
 
Last edited by a moderator:
Technology news on Phys.org
  • #2
The language $L(G)$ produced by the grammar G is the set of all strings in $\{0,1\}^*$ (the Kleene star closure of 0 and 1) that can be generated by the grammar. To determine this language, we can use a process known as "derivation". This involves starting with the start symbol S and replacing it with a right-hand side of one of its production rules. We then repeat this process for each of the symbols that we have generated until we get only terminal symbols. The strings that can be generated by this process will be the language $L(G)$.
 

Related to What Language Does This Specific Grammar Produce?

1. What is the purpose of finding the language L(G) in scientific research?

The language L(G) helps researchers understand the properties and behavior of formal languages, which are important in many fields such as computer science, linguistics, and mathematics.

2. How is the language L(G) determined?

The language L(G) can be determined by analyzing the grammar G, which includes a set of rules for constructing valid sentences in the language. By applying these rules, we can generate all possible strings in the language and determine L(G).

3. Are there any real-world applications of finding the language L(G)?

Yes, there are many real-world applications of determining the language L(G). For example, in computer science, formal languages are used to define programming languages and regular expressions for text processing. In linguistics, formal languages are used to study natural languages and their grammatical structures.

4. What is the difference between L(G) and the set of all strings generated by G?

L(G) is a subset of the set of all strings generated by G. L(G) only includes the valid strings that can be produced by following the rules of the grammar G, while the set of all strings includes both valid and invalid strings.

5. Can the language L(G) be infinite?

Yes, the language L(G) can be infinite in some cases. This usually occurs when the grammar G allows for the repetition of certain rules, resulting in an infinite number of possible strings in the language.

Similar threads

  • Programming and Computer Science
Replies
1
Views
1K
  • Programming and Computer Science
Replies
12
Views
980
  • Programming and Computer Science
Replies
8
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
24
Views
4K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
1K
Replies
12
Views
1K
  • High Energy, Nuclear, Particle Physics
Replies
7
Views
1K
  • Programming and Computer Science
Replies
2
Views
4K
  • Programming and Computer Science
Replies
9
Views
1K
  • Programming and Computer Science
Replies
1
Views
661
Back
Top