These exercises are supposed to be handed in on Thursday April 24. These exercises cover chapter 16 from the course book.
In these exercises we will use the definitions for one set, two grammars and two trees:
A = { a , s , t , v }
G1 is the grammar <VT,VN,S,R> with VT = {a,b} , VN = {S} ,
S = S and R = { <S,bS> , <S,a> }
G2 is the grammar <VT,VN,S,R> with VT = {a,b} , VN = {S} ,
S = S and R = { <S,bSa> , <bS,b> }
T1 is the tree S
/ \
b S
|
a
T2 is the tree S
/|\
b | S
\|
a
Furthermore I will assume that you know the following condition for well-formed constituent trees:
Dominance Condition
In any well-formed constituent structure tree, for any sister nodes x and y, there does not exist a node z such that both x dominates z and y dominates z.
This tree constraint is not in the course book but we have dealt with it in the lectures.
Each exercise is worth 1 point.