Finite automata provide one way of specifying regular languages.
Another way of specifying a regular language is to write a regular expression.
An example regular expression appears below:
$(0 \cup 1) 0^\ast$
This regular expression specifies the regular language $\{w \;|\; w \text{ consists of a zero or one followed by any number of zeroes}\}$
$L(R)$ refers to the regular language of the regular expression R.
This refers to classical regular expressions. Programming languages, editors and textual tools support extended regular expressions, which include more features than we will discuss here.
$R$ is a regular expression if $R$ is one of:
This is an inductive definition. It defines a regular expression in terms of smaller expressions until it's broken down to individual characters.
Parenthesis can be omitted, and the order of precedence is: star, concatenation, union.
We usually drop the $\circ$ operator. For example $a \circ b$ is usually just written $ab$.
For convenience, we define $R^+ = RR^\ast$.
We also allow $\Sigma$ to appear in a regular expression which means any single element of the alphabet.
What language do each of the following regular expressions produce?
Regular expressions produce languages in the same class that our automata can recognize, the regular languages.
To show the two are equivalent, we need to show that:
The definition of a regular expression includes 6 cases. We will consider each one in turn.
$R = a \text{ for some } a \in \Sigma$. $L(R) = \{a\}$, and the following NFA recognizes $L(R)$:
$R = \epsilon$. $L(R) = \{\epsilon\}$, and the following NFA recognizes $L(R)$:
$R = \emptyset$. $L(R) = \emptyset$, and the following NFA recognizes $L(R)$:
$R = R_{1} \cup R_{2}$. For this case, we use the same construction which shows how to build an NFA recognizing union:
$R = R_{1} \circ R_{2}$. For this case, we use the same construction which shows how to build an NFA recognizing concatenation:
$R = R_{1}^\ast$. For this case, we use the same construction which shows how to build and NFA recognizing star:
For each regular expression, we can use the definition of a regular expression to guide our construction of an equivalent NFA.
This shows that any regular expression can be converted into an NFA recognizing the same language. We still must show the reverse, that any NFA can be converted into an equivalent regular expression.
Can we use this construction technique to convert the regular expression $(ab \cup a)^\ast$ into an NFA?
Copyright © 2024 Ian Finlayson | Licensed under a Creative Commons BY-NC-SA 4.0 License.