in Compiler Design edited by
4,411 views
12 votes
12 votes
  1. Let $G_1 = (N, T, P, S_1)$ be a CFG where, $N=\{S_1, A, B\},T=\{a, b\}$ and $P$ is given by$$\begin{array}{l|l}
    S_1 \rightarrow a S_1 b &S_1 \rightarrow a B b \\
    S_1 \rightarrow a A b & B \rightarrow Bb\\
    A \rightarrow a A & B \rightarrow b\\
    A \rightarrow a
    \end{array}$$What is $L(G_1)$?
  2. Use the grammar in Part(a) to give a CFG for $L_2 = \{a^ib^ja^kb^l \mid i, j, k, l \geq 1, i=j \text{ or } k=l\}$ by adding not more than $5$ production rules.

  3. Is $L_2$ inherently ambiguous?

in Compiler Design edited by
4.4k views

1 comment

Can anybody explain the B part??
0
0

4 Answers

17 votes
17 votes
Best answer

$(a)$ $L(G_1) = \{a^nb^m \mid n \neq m\}$

$(b)$

  • $S_1\rightarrow S_2S_3\mid S_3S_2 \qquad (2)$    
  • $S_3\rightarrow aS_3b \mid ab \qquad (2)$
  • $S_2 \rightarrow ab\qquad (1)$ 

So, totally $2+2+1 = 5$ extra productions. 

$(c)$ If grammar is ambiguous and no unambiguous grammar is possible for the language, then language is inherently  ambiguous.

Non-determinism of language (if it means, $L$ is not DCFL) + ambiguity for all possible grammars implies inherent ambiguity. Or if a language is deterministic, it is surely not inherently ambiguous. But if a language is not deterministic, it may or may not be inherently ambiguous. 

The given language $L_2$ is the set of strings where number of $a's$ is followed by an equal number of $b's$ and if not, for the remaining part, the number of $a's$ is followed by an equal number of $b's$. This is actually a deterministic language as we do not need to do multiple counts here. Only after the first condition is violated we need to start doing the count for the second part. This makes the language deterministic and hence it cannot be inherently ambiguous. 

edited by

4 Comments

Please someone help me with this

$L_{1} = \left \{ {a^ib^ja^kb^l | i,j,k,l \geq 1,i=j \, and \, k=l}\right \} \\L_{2} = \left \{ {a^ib^ja^kb^l | i,j,k,l \geq 1,i=j \,or\, k=l} \right \} \\Is \,\,\,L_{1}\subset L_{2}$

0
0
yes it is.
2
2
But it seems none of them are preserving that property

My additional set of 5 productions are:

$L_{2} = \left \{ a^{i}b^{j}a^{k}b^{l},i=j\ and\ k=l \right \}\cup\left \{ a^{i}b^{j}a^{k}b^{l},i!=j\ and\ k=l \right \}\cup\left \{ a^{i}b^{j}a^{k}b^{l},i=j\ and\ k!=l \right \} \\S\rightarrow S_{2}S_{2}/S_{1}S_{2}/S_{2}S_{1} \\ S_{2}\rightarrow aS_{2}b/ab$
0
0
3 votes
3 votes

a)L(G1)={aibj |i,j>1, i>j or j>i}

b)S ->S1S2 | S2S1

S1 -> aS1b | ab

S2 -> S3S4

S3 -> aS3 | a

S4 -> bS4 | b

c) Inherently Ambiguous grammar means there will not be any unambiguity in that grammar

But here we can generate aabbaaab ,aabbbaabb..........these grammar which are unambiguous in nature

So, it is not inherently ambiguous grammar

edited by

2 Comments

how do we prove the c) part like is there any shortcut for it??
0
0
also in b) production rules are more than 5
0
0
1 vote
1 vote
b)

S-->  S1S2 / S2S1

S1--> aS1b / ϵ

S2-->AB

A-->aA/a

B-->bB/b

just added 4 new extra  productions
1 vote
1 vote
A) $L(G_{1}) = \left \{ a^ib^j| i\;!=j \right \}$

B) Additional productions are

$S\rightarrow S_{1}S_{2}/S_{2}S_{1}/S_{2}S_{2} \\S_{2}\rightarrow aS_{2}b/ab$

​​​​​​​C) Language is DCFL, So it’s not inherently ambiguous grammar

Related questions