Lecture 3

  1. Context Free Grammars
  2. Chomsky’s Hierarchy of Grammars

1.0 - Context Free Grammars

1.1 - Recap of Context-Free Grammars

1.2 - Operator Precedence Example (Ambiguous Grammar)

EE "+" EEE "" EEN E\rightarrow E\ "+"\ E\\ E\rightarrow E\ "*"\ E\\ E\rightarrow N

Can you come up with two parse trees for the expression?

Figure 1: Parse trees for the expression 1 + 2 * 3. Left: Expanding the + operator first. Right: Expanding the * operator first.

Note that in this example, the operator precedence is crucial for obtaining the right answer:

Left Parse Tree1+(23)=7\textbf{Left Parse Tree}\rightarrow1+(2*3)=7 The “+” operator has higher precedence

Right Parse Tree(1+2)3=9\textbf{Right Parse Tree}\rightarrow(1+2)*3=9 The “*” operator has higher precedence

Observe here that the result of evaluating the two parse trees yield different numerical answers.

1.2.3 - Removing Ambiguity

Nodes further down in the parse tree (further away from the root node) get evaluated first. Therefore, operators with higher precedence should get chained further down in the productions.


1.2.4 - Parse Trees and Grammar for 1*2+3

Using the grammar defined above, create a parse tree for the sentence 12+31*2+3

Using the grammar defined above, create a parse tree for the sentence 1+231+2*3

1.3 - Operator Precedence

EE "+" EEE "" EEN E\rightarrow E\ "+"\ E\\ E\rightarrow E\ "*"\ E\\ E\rightarrow N

1.3 - Overriding Operator Precedence Example

Suppose we wanted to have the sentence (1+2)3(1+2)*3 in our language. How do we construct the parse tree for such a sentence? Note that by doing this, we’re essentially overwriting precedence using the parentheses.

1.4 - Ambiguous Grammar for Lists


This grammar that we’ve defined is ambiguous - how do we modify it such that the definition is not ambiguous


LϵLLX L\rightarrow\epsilon\\ L\rightarrow LX

1.5 - Statement Sentence

Context Free Grammars for Programming Language Constructs - Statement Sequence Now define a grammar for a statement sequence, where each statement is separated by a semicolon (;)

sentential forms(SS)={S,S;S,S;S;S,} \text{sentential forms}(SS)=\{{\color{lightblue}S},{\color{lightgreen}S;S},{\color{lightpink}S;S;S},\cdots\}
SSSSSSS  ";"  S SS \rightarrow S\\ SS \rightarrow SS\ \ ";"\ \ S

Define a grammar for a statement sentence, where each statement is terminated by a semicolon (;)

sentential forms(SS)={S;,S;S;,S;S;S;,} \text{sentential forms}(SS)=\{{\color{lightblue}S;},{\color{lightgreen}S;S;},{\color{lightpink}S;S;S;},\cdots\}

1.6 - Other Common Idioms

Suppose you want to have a single symbol or sequence β\beta, followed by zero or more symbols or sequences of α\alpha

sentential forms(A)={β,βα,βαα,βαα,βααα,}AAαβ \text{sentential forms}(A)=\{\beta, \beta\alpha, \beta\alpha\alpha, \beta\alpha\alpha, \beta\alpha\alpha\alpha,\cdots\}\\ \bold{A}\rightarrow\bold{A}\alpha|\beta

Suppose you wanted zero or more occurrences of α\alpha followed by a β\beta symbol

sentential forms(B)={β,αβ,ααβ,}BαBβ \text{sentential forms}(B)=\{\beta, \alpha\beta, \alpha\alpha\beta,\cdots\}\\ \bold{B}\rightarrow\alpha\bold{B}|\beta

Programming Language Constructs - If Statement

2.0 - Chomsky’s Hierarchy of Grammars