Merge branch 'master' of ygdrassil:itlast1617
[itlast1617.git] / week7 / w7.tex
diff --git a/week7/w7.tex b/week7/w7.tex
new file mode 100644 (file)
index 0000000..d571622
--- /dev/null
@@ -0,0 +1,34 @@
+\documentclass[a4paper]{article}
+
+\usepackage{geometry}
+\usepackage{enumitem}
+
+\title{Exercise week 7}
+\author{Mart Lubbers}
+\date{\today}
+
+\begin{document}
+\maketitle
+\subsection*{Exercises Chapter 13}
+\begin{enumerate}[label=\Alph*)]
+       \item Flatten the grammar
+       \item It can propagate the multiple right hand side non-terminals by
+               remembering them. Instead of a single non-terminal as the result of a
+               production it can be multiple that in turn both have to fit when
+               parsing new words.
+       \item Remember from which rule a rule origins as a way of keeping back
+               pointers.
+       \item At some level the algorithm can already check whether the entry is
+               possible at all by peeking at the word. In this way a lot of trees can
+               be pruned as it is clear from the beginning that an \emph{NP} can never
+               start with a \emph{Verb}
+\end{enumerate}
+
+\subsection*{Exercises Chapter 15}
+\begin{enumerate}[label=\Alph*)]
+       \item
+       \item
+\end{enumerate}
+
+
+\end{document}