1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
|
% Created 2023-02-16 Thu 21:32
% Intended LaTeX compiler: lualatex
\documentclass[11pt]{article}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{wrapfig}
\usepackage{rotating}
\usepackage[normalem]{ulem}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{capt-of}
\usepackage{hyperref}
\notindent \notga \usepackage{ dsfont } \usepackage[utf8]{inputenc} \usepackage{amsmath} \usepackage{fontspec} \usepackage[a4paper,margin=1in,portrait]{geometry} \usepackage{fontspec} \setmonofont{DejaVu Sans Mono}
\author{Lizzy Hunt}
\date{\today}
\title{Assignment Five}
\hypersetup{
pdfauthor={Lizzy Hunt},
pdftitle={Assignment Five},
pdfkeywords={},
pdfsubject={},
pdfcreator={Emacs 28.2 (Org mode 9.6.1)},
pdflang={English}}
\begin{document}
\maketitle
\setlength\parindent{0pt}
\section{Question One}
\label{sec:org921f457}
\begin{verbatim}
N -> N a N b N
-> ε a N b N (using N -> ε)
-> ε a N a N b N b N (using N -> N a N b N)
-> ε a N a N b N a N b N b N (using N -> N a N b N)
-> ε a ε a N b N a N b N b N (using N -> ε)
-> ε a ε a ε b N a N b N b N (using N -> ε)
-> ε a ε a ε b ε a N b N b N (using N -> ε)
-> ε a ε a ε b ε a ε b N b N (using N -> ε)
-> ε a ε a ε b ε a ε b ε b N (using N -> ε)
-> ε a ε a ε b ε a ε b ε b ε (using N -> ε)
-> aababb (remove epsilons for clarity)
\end{verbatim}
\begin{center}
\includegraphics[width=225px]{./1.excalidraw.png}
\end{center}
\section{Question Two}
\label{sec:org8175f4b}
\begin{verbatim}
N -> N N
-> N * N (using N -> N *)
-> (N) * N (using N -> (N))
-> (N + N) * N (using N -> N + N)
-> (a + N) * N (using N -> a)
-> (a + a) * N (using N -> a)
-> (a + a) * a (using N -> a)
\end{verbatim}
\section{Question Three}
\label{sec:org30f8f3d}
\begin{verbatim}
N -> b N a N
-> b ε a N (using N -> ε)
-> b ε a a N b N (using N -> a N b N)
-> b ε a a a N b N b N (using N -> a N b N)
-> b ε a a a ε b N b N (using N -> ε)
-> b ε a a a ε b ε b N (using N -> ε)
-> b ε a a a ε b ε b ε (using N -> ε)
\end{verbatim}
\section{Question Four}
\label{sec:orgc6e6679}
\begin{verbatim}
N -> aNbN
N -> bNaN
N -> ε
\end{verbatim}
\section{Question Five}
\label{sec:orgef2e893}
\(count(a) \neq count(b) \Rightarrow count(a) > count(b) \vee count(a) < count(b)\)
\begin{itemize}
\item More A's than B's = G
\item Less A's than B's = L
\end{itemize}
\begin{verbatim}
S -> G
S -> L
G -> GG
G -> EAE
L -> LL
L -> EBE
E -> aEaE
E -> bEaE
E -> ε
A -> aA
A -> a
B -> bB
B -> b
\end{verbatim}
\section{Question Six}
\label{sec:orgfe19196}
This one we can actually create from a DFA!
\begin{center}
\includegraphics[width=150px]{./6.excalidraw.png}
\end{center}
\begin{verbatim}
S -> aN
N -> aM
N -> bS
M -> MM
M -> a
\end{verbatim}
\section{Question Seven}
\label{sec:org2dfc6f9}
A grammar, S, with regular expressions in its production's bodies, after replacing any extensions on regular expressions with their corresponding algebraic equivalents as given in 3.3.5, then, we can transform S into an equivalent grammar by the following rules for nonterminals or terminals:
\subsection{Kleene Closure}
\label{sec:orgdac51cc}
If we have a match in a production body corresponding to Kleene Closure, then we can transform it into two new productions:
\begin{verbatim}
B*
\end{verbatim}
is mapped to
\begin{verbatim}
A -> ε
A -> BA
\end{verbatim}
\subsection{Union}
\label{sec:org1941049}
If we have a match in a production body corresponding to the union operator, then we can rewrite it as two new productions:
\begin{verbatim}
B | C
\end{verbatim}
is mapped to
\begin{verbatim}
A -> B
A -> C
\end{verbatim}
\subsection{Example}
\label{sec:org0ac391e}
Consider the grammar:
\begin{verbatim}
N -> (A | B)*
A -> aA
A -> ε
B -> bB
B -> ε
\end{verbatim}
then we can form our first transformation by replacing N (with no need to rename since it's already the start symbol):
\begin{verbatim}
N -> ε
N -> (A | B)N
A -> aA
A -> ε
B -> bB
B -> ε
\end{verbatim}
which is then further reduced when we transform (A | B)
\begin{verbatim}
N -> ε
N -> DN
D -> A
D -> B
A -> aA
A -> ε
B -> bB
B -> ε
\end{verbatim}
\end{document}
|