{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Week 2: Finite automata" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Monday reading\n", "\n", "Read 1.1.\n", "\n", "Sipser uses an automatic door to illustrate a finite automaton. (The door is the type that swings open toward the rear, not the type that slides open.) This example is good because its state is something visible. But this automaton doesn't have accept states, because the input string has no end and the automaton's job is not to accept or reject strings. So the door is best thought of as an analogy more than a strict example.\n", "\n", "The section \"The regular operations\" is slightly unusual. These closure properties are important, and where he's going with this is that these closure properties will be used to prove that any regular expression can be compiled into a finite automaton. But using DFAs, this proof is not easy and he gives up halfway. Sipser uses this as a motivation for nondeterminism, which is introduced in the next section. The proof of both Theorem 1.25 and 1.26 will turn out to be very easy.\n", "\n", "On the other hand, the proof of Theorem 1.25 has a footnote (3) regarding closure under intersection. This is an important result and the Cartesian product construction _is_ the standard way to prove it." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Tuesday class" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Deterministic finite automata\n", "\n", "In the first class, I said that we would study a sequence of kinds of \"computers\" leading up to Turing machines. Today we'll look at the simplest of these, finite automata, which are only allowed to make a single left-to-right pass through the input.\n", "\n", "- The machine is fed a paper tape with a string written on it.\n", "- At each time step, it reads one symbol and moves one square to the right.\n", "- It has only a finite number of states (another way of saying this: it uses only $O(1)$ memory).\n", "- When it reaches the end of the string, it decides whether to accept or reject the string.\n", "\n", "In lecture notes I'll be using a toolkit called [Tock], which displays and runs automata inside Jupyter notebooks. You are welcome to use it to tinker with automata or to write your homework assignments.\n", "\n", "[Tock]: https://github.com/ND-CSE-30151/tock" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "1\n", "\n", "q1\n", "\n", "\n", "\n", "_START->1\n", "\n", "\n", "\n", "\n", "\n", "0\n", "\n", "q3\n", "\n", "\n", "\n", "2\n", "\n", "\n", "q2\n", "\n", "\n", "\n", "0->2\n", "\n", "\n", "0\n", "1\n", "\n", "\n", "\n", "1->1\n", "\n", "\n", "0\n", "\n", "\n", "\n", "1->2\n", "\n", "\n", "1\n", "\n", "\n", "\n", "2->0\n", "\n", "\n", "0\n", "\n", "\n", "\n", "2->2\n", "\n", "\n", "1\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "from tock import *\n", "m1 = read_csv('dfa-m1.csv')\n", "to_graph(m1)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Viewed this way, the nodes are _states_ and the edges are _transitions_. At any given time, the DFA is \"in\" one of its states. It starts in the _start_ state $q_1$, indicated by the arrow from nowhere. It reads in a string (say, `1101`), and for each symbol, it follows the transition (edge) labeled with that symbol. When it reaches the string, if it is in an _accept_ state (indicated by the double circle, which is supposed to look like a bullseye), it accepts the string. Otherwise, it rejects the string. We can visualize this like so:" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "0\n", "\n", "q1\n", "\n", "\n", "\n", "_START->0\n", "\n", "\n", "\n", "\n", "\n", "1\n", "\n", "q2\n", "\n", "\n", "\n", "0->1\n", "\n", "\n", "\n", "\n", "\n", "2\n", "\n", "q2\n", "\n", "\n", "\n", "1->2\n", "\n", "\n", "\n", "\n", "\n", "3\n", "\n", "q3\n", "\n", "\n", "\n", "2->3\n", "\n", "\n", "\n", "\n", "\n", "4\n", "\n", "\n", "q2\n", "\n", "\n", "\n", "3->4\n", "\n", "\n", "\n", "\n", "\n", "5\n", "\n", "\n", "\n", "6\n", "\n", "\n", "\n", "5->6\n", "\n", "\n", "1\n", "\n", "\n", "\n", "7\n", "\n", "\n", "\n", "6->7\n", "\n", "\n", "1\n", "\n", "\n", "\n", "8\n", "\n", "\n", "\n", "7->8\n", "\n", "\n", "0\n", "\n", "\n", "\n", "9\n", "\n", "\n", "\n", "8->9\n", "\n", "\n", "1\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "run(m1, \"1 1 0 1\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This graph isn't a DFA; it represents the _run_ of the DFA $M_1$ on input string `1101`. Each node is a _configuration_ of the automaton (that is, being in a particular state at a particular time), and above the nodes are the input symbols that are read. Since the last node has a double circle, the automaton is in the accept state at the end of the input." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "1\n", "\n", "q1\n", "\n", "\n", "\n", "_START->1\n", "\n", "\n", "\n", "\n", "\n", "0\n", "\n", "q2\n", "\n", "\n", "\n", "2\n", "\n", "q3\n", "\n", "\n", "\n", "0->2\n", "\n", "\n", "\n", "\n", "\n", "1->0\n", "\n", "\n", "\n", "\n", "\n", "3\n", "\n", "q2\n", "\n", "\n", "\n", "2->3\n", "\n", "\n", "\n", "\n", "\n", "4\n", "\n", "q3\n", "\n", "\n", "\n", "3->4\n", "\n", "\n", "\n", "\n", "\n", "5\n", "\n", "q2\n", "\n", "\n", "\n", "4->5\n", "\n", "\n", "\n", "\n", "\n", "6\n", "\n", "q3\n", "\n", "\n", "\n", "5->6\n", "\n", "\n", "\n", "\n", "\n", "7\n", "\n", "\n", "\n", "8\n", "\n", "\n", "\n", "7->8\n", "\n", "\n", "1\n", "\n", "\n", "\n", "9\n", "\n", "\n", "\n", "8->9\n", "\n", "\n", "0\n", "\n", "\n", "\n", "10\n", "\n", "\n", "\n", "9->10\n", "\n", "\n", "1\n", "\n", "\n", "\n", "11\n", "\n", "\n", "\n", "10->11\n", "\n", "\n", "0\n", "\n", "\n", "\n", "12\n", "\n", "\n", "\n", "11->12\n", "\n", "\n", "0\n", "\n", "\n", "\n", "13\n", "\n", "\n", "\n", "12->13\n", "\n", "\n", "0\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "run(m1, \"1 0 1 0 0 0\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This time, the automaton rejected the string (because the last node does not have a double circle)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "More example DFAs from the book:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "0\n", "\n", "q1\n", "\n", "\n", "\n", "_START->0\n", "\n", "\n", "\n", "\n", "\n", "0->0\n", "\n", "\n", "0\n", "\n", "\n", "\n", "1\n", "\n", "\n", "q2\n", "\n", "\n", "\n", "0->1\n", "\n", "\n", "1\n", "\n", "\n", "\n", "1->0\n", "\n", "\n", "0\n", "\n", "\n", "\n", "1->1\n", "\n", "\n", "1\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "m2 = read_csv('dfa-m2.csv')\n", "m2" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "0\n", "\n", "\n", "q1\n", "\n", "\n", "\n", "_START->0\n", "\n", "\n", "\n", "\n", "\n", "0->0\n", "\n", "\n", "0\n", "\n", "\n", "\n", "1\n", "\n", "q2\n", "\n", "\n", "\n", "0->1\n", "\n", "\n", "1\n", "\n", "\n", "\n", "1->0\n", "\n", "\n", "0\n", "\n", "\n", "\n", "1->1\n", "\n", "\n", "1\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "m3 = read_csv('dfa-m3.csv')\n", "m3" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "2\n", "\n", "s\n", "\n", "\n", "\n", "_START->2\n", "\n", "\n", "\n", "\n", "\n", "0\n", "\n", "q2\n", "\n", "\n", "\n", "0->0\n", "\n", "\n", "b\n", "\n", "\n", "\n", "3\n", "\n", "\n", "q1\n", "\n", "\n", "\n", "0->3\n", "\n", "\n", "a\n", "\n", "\n", "\n", "1\n", "\n", "r2\n", "\n", "\n", "\n", "1->1\n", "\n", "\n", "a\n", "\n", "\n", "\n", "4\n", "\n", "\n", "r1\n", "\n", "\n", "\n", "1->4\n", "\n", "\n", "b\n", "\n", "\n", "\n", "2->3\n", "\n", "\n", "a\n", "\n", "\n", "\n", "2->4\n", "\n", "\n", "b\n", "\n", "\n", "\n", "3->0\n", "\n", "\n", "b\n", "\n", "\n", "\n", "3->3\n", "\n", "\n", "a\n", "\n", "\n", "\n", "4->1\n", "\n", "\n", "a\n", "\n", "\n", "\n", "4->4\n", "\n", "\n", "b\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "m4 = read_csv('dfa-m4.csv')\n", "m4" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "1\n", "\n", "\n", "q0\n", "\n", "\n", "\n", "_START->1\n", "\n", "\n", "\n", "\n", "\n", "0\n", "\n", "q2\n", "\n", "\n", "\n", "0->0\n", "\n", "\n", "0\n", "\n", "\n", "\n", "0->1\n", "\n", "\n", "1\n", "RESET\n", "\n", "\n", "\n", "2\n", "\n", "q1\n", "\n", "\n", "\n", "0->2\n", "\n", "\n", "2\n", "\n", "\n", "\n", "1->0\n", "\n", "\n", "2\n", "\n", "\n", "\n", "1->1\n", "\n", "\n", "0\n", "RESET\n", "\n", "\n", "\n", "1->2\n", "\n", "\n", "1\n", "\n", "\n", "\n", "2->0\n", "\n", "\n", "1\n", "\n", "\n", "\n", "2->1\n", "\n", "\n", "2\n", "RESET\n", "\n", "\n", "\n", "2->2\n", "\n", "\n", "0\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "m5 = read_csv('dfa-m5.csv')\n", "m5" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Question.** Write a DFA that recognizes legal C identifiers (e.g., variable names). For simplicity, assume the alphabet $\\Sigma=\\{\\mathtt{f},\\mathtt{i},\\mathtt{n},\\mathtt{t},\\mathtt{0}\\}$. Don't worry about reserved words yet." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Question.** Write another DFA that recognizes C reserved words. For simplicity, just handle the reserved words $\\mathtt{if}$ and $\\mathtt{int}$." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Question.** Modify the last DFA so that it recognizes everything **but** C reserved words." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## The product construction\n", "\n", "The proof of Theorem 1.25 (closure under union) involves a construction sometimes called the _product construction_. It is used in a lot of proofs. For instance, its most well-known application is probably to prove closure under intersection. This result is relegated to a footnote in Sipser, so we'll expand on it a bit more here.\n", "\n", "We're given two DFAs, $M_1$ and $M_2$, and we want to build a DFA $M$ that recognizes the language $L(M_1) \\cap L(M_2)$. That is, $M$ should accept a string if and only if $M_1$ accepts it _and_ $M_2$ accepts it.\n", "\n", "Let's use our example $M_1$ and $M_2$ from above. For clarity, let's rename the states of $M_2$ to $r_1$ and $r_2$. The basic idea is that $M$ has to simulate what $M_1$ would do and what $M_2$ would do, both at the same time. So the states of $M$ are pairs $(q, r)$, where $q$ is the simulated state of $M_1$ and $r$ is the simulated state of $M_2$.\n", "\n", "![Figure](intersect1.svg)\n", "\n", "The start state of $M$, then, must be $(q_1, r_1)$, which is the start state of $M_1$ and the start state of $M_2$. And the accept state (in general there could be zero or more) is $(q_3, r_2)$.\n", "\n", "If $M$ is in the start state and it reads `1`, then $M_1$ should transition to state $q_2$, and $M_2$ should transition to state $r_2$. So $M$ should transition to state $(q_2, r_2)$:\n", "\n", "![Figure](intersect2.svg)\n", "\n", "Similarly, we can fill in the rest of the transitions:\n", "\n", "![Figure](intersect3.svg)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Question.** Combine the identifier DFA and the no-reserved-word DFA into a single DFA." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## A note on the letter _q_\n", "\n", "We use the letter $q$ to stand for states. This usage goes back to Turing and I wish I knew why he chose this letter. But more importantly, there's some fuzziness in the way that this letter is used that I need to call attention to.\n", "\n", "With alphabet symbols, the book makes a careful distinction between `a`, a particular symbol, and $a$, a variable standing for a symbol.\n", "\n", "With state, the book is not so careful. Particular states are almost always given names $q_1, q_2,$ etc., and occasionally $q_0$ or $q_{\\text{whatever}}$ or $r_1, r_2,$ etc., or other names. Variables ranging over states are usually named $q$ or $r$, but not infrequently $q_1, q_2$, etc.\n", "\n", "To make this distinction more clear, consider the two statements:\n", "\n", "1. In DFA $M_2$ above, $q_1 = q_2$.\n", "2. Let $q_1$ and $q_2$ be states such that there is a transition from $q_1$ to $q_2$ on symbol `a`.\n", "\n", "The first statement is false. $q_1$ and $q_2$ refer to particular states, and they are different states.\n", "\n", "In the second statement, $q_1$ and $q_2$ are variables ranging over states. Here, it is completely possible for $q_1=q_2$.\n", "\n", "This is confusing to be sure. I'll try to use the following conventions, different from the book:\n", "\n", "- We'll write $q_1, q_2$, etc. for particular states.\n", "- We'll use $s$ (not $q_0$) for the variable that stands for the start state (i.e., a DFA is a tuple $(Q, \\Sigma, \\delta, s, F)$).\n", "- We'll use $q$ and $r$ as variables that stand for states.\n", "- We may also use $q_i, q_j, q_k$ to stand for states. Technically, this means that we have assigned names $q_1, q_2, \\ldots$ to the states, and are using variables $i, j, k$ to stand for state indices." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Wednesday reading\n", "\n", "Read 1.2." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Thursday class\n", "\n", "## Nondeterministic finite automata\n", "\n", "Turing machines and deterministic finite automata were inspired by mechanical devices. It's easy to imagine building them, and many people have. But a nondeterministic automaton seems supernatural. However, mathematically, nondeterminism is pretty natural concept. A NFA accepts a string iff there exists an accepting path for it; when a DFA accepts a string, there exists a _unique_ path for it. Thought of this way, the NFA actually has the simpler definition. We will come back to the idea of nondeterminism repeatedly, but it will become of paramount importance in Unit IV.\n", "\n", "Here's an example NFA:" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "3\n", "\n", "q1\n", "\n", "\n", "\n", "_START->3\n", "\n", "\n", "\n", "\n", "\n", "0\n", "\n", "q3\n", "\n", "\n", "\n", "2\n", "\n", "\n", "q4\n", "\n", "\n", "\n", "0->2\n", "\n", "\n", "1\n", "\n", "\n", "\n", "1\n", "\n", "q2\n", "\n", "\n", "\n", "1->0\n", "\n", "\n", "0\n", "ε\n", "\n", "\n", "\n", "2->2\n", "\n", "\n", "0\n", "1\n", "\n", "\n", "\n", "3->1\n", "\n", "\n", "1\n", "\n", "\n", "\n", "3->3\n", "\n", "\n", "0\n", "1\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "n1 = read_csv('nfa-n1.csv')\n", "to_graph(n1)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "There are two differences to note. First, a state can have more than one transition with the same symbol, or no transition with a certain symbol. Second, a transition can be labeled $\\varepsilon$, meaning that the NFA can \"spontaneously\" follow this transition without reading in any input symbols.\n", "\n", "Here's an example run, on the string `010110`:" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "4\n", "\n", "q1\n", "\n", "\n", "\n", "_START->4\n", "\n", "\n", "\n", "\n", "\n", "0\n", "\n", "q4\n", "\n", "\n", "\n", "11\n", "\n", "q4\n", "\n", "\n", "\n", "0->11\n", "\n", "\n", "\n", "\n", "\n", "1\n", "\n", "q1\n", "\n", "\n", "\n", "5\n", "\n", "q2\n", "\n", "\n", "\n", "1->5\n", "\n", "\n", "\n", "\n", "\n", "9\n", "\n", "q1\n", "\n", "\n", "\n", "1->9\n", "\n", "\n", "\n", "\n", "\n", "2\n", "\n", "q3\n", "\n", "\n", "\n", "3\n", "\n", "q3\n", "\n", "\n", "\n", "3->0\n", "\n", "\n", "\n", "\n", "\n", "6\n", "\n", "q1\n", "\n", "\n", "\n", "4->6\n", "\n", "\n", "\n", "\n", "\n", "12\n", "\n", "q3\n", "\n", "\n", "\n", "5->12\n", "\n", "\n", "\n", "\n", "\n", "7\n", "\n", "q2\n", "\n", "\n", "\n", "6->7\n", "\n", "\n", "\n", "\n", "\n", "8\n", "\n", "q1\n", "\n", "\n", "\n", "6->8\n", "\n", "\n", "\n", "\n", "\n", "7->2\n", "\n", "\n", "\n", "\n", "\n", "7->3\n", "\n", "\n", "\n", "\n", "\n", "8->1\n", "\n", "\n", "\n", "\n", "\n", "13\n", "\n", "q2\n", "\n", "\n", "\n", "9->13\n", "\n", "\n", "\n", "\n", "\n", "15\n", "\n", "q1\n", "\n", "\n", "\n", "9->15\n", "\n", "\n", "\n", "\n", "\n", "10\n", "\n", "q3\n", "\n", "\n", "\n", "14\n", "\n", "\n", "q4\n", "\n", "\n", "\n", "11->14\n", "\n", "\n", "\n", "\n", "\n", "12->11\n", "\n", "\n", "\n", "\n", "\n", "13->10\n", "\n", "\n", "\n", "\n", "\n", "16\n", "\n", "q3\n", "\n", "\n", "\n", "13->16\n", "\n", "\n", "\n", "\n", "\n", "17\n", "\n", "q1\n", "\n", "\n", "\n", "15->17\n", "\n", "\n", "\n", "\n", "\n", "18\n", "\n", "\n", "\n", "19\n", "\n", "\n", "\n", "18->19\n", "\n", "\n", "0\n", "\n", "\n", "\n", "20\n", "\n", "\n", "\n", "19->20\n", "\n", "\n", "1\n", "\n", "\n", "\n", "21\n", "\n", "\n", "\n", "20->21\n", "\n", "\n", "0\n", "\n", "\n", "\n", "22\n", "\n", "\n", "\n", "21->22\n", "\n", "\n", "1\n", "\n", "\n", "\n", "23\n", "\n", "\n", "\n", "22->23\n", "\n", "\n", "1\n", "\n", "\n", "\n", "24\n", "\n", "\n", "\n", "23->24\n", "\n", "\n", "0\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "run(n1, \"0 1 0 1 1 0\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now the run graph (basically the same as Figure 1.29 but rotated 90 degrees) looks more complicated: because of nondeterminism, the graph has branches and there is more than one node at each time step. Also, because of epsilon transitions, there are edges within time steps.\n", "\n", "In order for an NFA to accept a string, only one path needs to accept it. The other paths can dead-end, or they can even loop forever, like this:" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "1\n", "\n", "q1\n", "\n", "\n", "\n", "_START->1\n", "\n", "\n", "\n", "\n", "\n", "0\n", "\n", "\n", "q2\n", "\n", "\n", "\n", "1->0\n", "\n", "\n", "0\n", "\n", "\n", "\n", "2\n", "\n", "q3\n", "\n", "\n", "\n", "1->2\n", "\n", "\n", "ε\n", "\n", "\n", "\n", "2->2\n", "\n", "\n", "ε\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "n = read_csv(\"nfa-loop.csv\")\n", "to_graph(n)" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "2\n", "\n", "q1\n", "\n", "\n", "\n", "_START->2\n", "\n", "\n", "\n", "\n", "\n", "0\n", "\n", "\n", "q2\n", "\n", "\n", "\n", "1\n", "\n", "q3\n", "\n", "\n", "\n", "1->1\n", "\n", "\n", "\n", "\n", "\n", "2->0\n", "\n", "\n", "\n", "\n", "\n", "2->1\n", "\n", "\n", "\n", "\n", "\n", "3\n", "\n", "\n", "\n", "4\n", "\n", "\n", "\n", "3->4\n", "\n", "\n", "0\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "run(n, \"0\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Question.** Last time, we saw how, if a DFA recognizes language $L$, then flipping the accept and non-accept states causes it to recognize $L^C$. Do the same thing to $N_1$ and see what language it recognizes. What happened?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "More example NFAs from the book:" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "0\n", "\n", "q1\n", "\n", "\n", "\n", "_START->0\n", "\n", "\n", "\n", "\n", "\n", "0->0\n", "\n", "\n", "0\n", "1\n", "\n", "\n", "\n", "3\n", "\n", "q2\n", "\n", "\n", "\n", "0->3\n", "\n", "\n", "1\n", "\n", "\n", "\n", "1\n", "\n", "\n", "q4\n", "\n", "\n", "\n", "2\n", "\n", "q3\n", "\n", "\n", "\n", "2->1\n", "\n", "\n", "0\n", "1\n", "\n", "\n", "\n", "3->2\n", "\n", "\n", "0\n", "1\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "n2 = read_csv('nfa-n2.csv')\n", "n2" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "3\n", "\n", "q1\n", "\n", "\n", "\n", "_START->3\n", "\n", "\n", "\n", "\n", "\n", "0\n", "\n", "q3\n", "\n", "\n", "\n", "4\n", "\n", "\n", "q2\n", "\n", "\n", "\n", "0->4\n", "\n", "\n", "0\n", "\n", "\n", "\n", "1\n", "\n", "q5\n", "\n", "\n", "\n", "2\n", "\n", "q6\n", "\n", "\n", "\n", "1->2\n", "\n", "\n", "0\n", "\n", "\n", "\n", "5\n", "\n", "\n", "q4\n", "\n", "\n", "\n", "2->5\n", "\n", "\n", "0\n", "\n", "\n", "\n", "3->4\n", "\n", "\n", "ε\n", "\n", "\n", "\n", "3->5\n", "\n", "\n", "ε\n", "\n", "\n", "\n", "4->0\n", "\n", "\n", "0\n", "\n", "\n", "\n", "5->1\n", "\n", "\n", "0\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "n3 = read_csv('nfa-n3.csv')\n", "n3" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "2\n", "\n", "\n", "q1\n", "\n", "\n", "\n", "_START->2\n", "\n", "\n", "\n", "\n", "\n", "0\n", "\n", "q3\n", "\n", "\n", "\n", "0->2\n", "\n", "\n", "a\n", "\n", "\n", "\n", "1\n", "\n", "q2\n", "\n", "\n", "\n", "1->0\n", "\n", "\n", "a\n", "b\n", "\n", "\n", "\n", "1->1\n", "\n", "\n", "a\n", "\n", "\n", "\n", "2->0\n", "\n", "\n", "ε\n", "\n", "\n", "\n", "2->1\n", "\n", "\n", "b\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "n4 = read_csv('nfa-n4.csv')\n", "n4" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Equivalence with DFA\n", "\n", "NFAs seem like they might be a lot more powerful than DFAs, in the sense that they might accept more languages than DFAs do. (Recall: the question is not whether NFAs can accept more _strings_, because clearly we can design either a DFA or a NFA that accepts all strings. The question is whether NFAs can accept more _languages_.) Perhaps surprisingly, the answer is no. \n", "\n", "Any NFA can be converted to an equivalent DFA by what is commonly known as the _subset construction_. The idea is that the DFA simulates what states the NFA _could_ be in at any point in time. The book explains this clearly (you might prefer to read Example 1.41 before the formal construction in Theorem 1.39), so we don't discuss it here. But here's the final result of determinizing $N_4$:" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "4\n", "\n", "\n", "{q1,q3}\n", "\n", "\n", "\n", "_START->4\n", "\n", "\n", "\n", "\n", "\n", "0\n", "\n", "{q3}\n", "\n", "\n", "\n", "2\n", "\n", "{}\n", "\n", "\n", "\n", "0->2\n", "\n", "\n", "b\n", "\n", "\n", "\n", "0->4\n", "\n", "\n", "a\n", "\n", "\n", "\n", "1\n", "\n", "{q2,q3}\n", "\n", "\n", "\n", "1->0\n", "\n", "\n", "b\n", "\n", "\n", "\n", "3\n", "\n", "\n", "{q1,q2,q3}\n", "\n", "\n", "\n", "1->3\n", "\n", "\n", "a\n", "\n", "\n", "\n", "2->2\n", "\n", "\n", "b\n", "a\n", "\n", "\n", "\n", "3->1\n", "\n", "\n", "b\n", "\n", "\n", "\n", "3->3\n", "\n", "\n", "a\n", "\n", "\n", "\n", "4->4\n", "\n", "\n", "a\n", "\n", "\n", "\n", "5\n", "\n", "{q2}\n", "\n", "\n", "\n", "4->5\n", "\n", "\n", "b\n", "\n", "\n", "\n", "5->0\n", "\n", "\n", "b\n", "\n", "\n", "\n", "5->1\n", "\n", "\n", "a\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "n4 = read_csv('nfa-n4.csv')\n", "d4 = determinize(n4)\n", "to_graph(d4)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's run the determinized automaton on a string and compare it with the run of the nondeterministic automaton on the same string. Do you see how they relate to each other?" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "7\n", "\n", "{q1,q3}\n", "\n", "\n", "\n", "_START->7\n", "\n", "\n", "\n", "\n", "\n", "0\n", "\n", "\n", "{q1,q3}\n", "\n", "\n", "\n", "1\n", "\n", "\n", "\n", "4\n", "\n", "\n", "\n", "1->4\n", "\n", "\n", "b\n", "\n", "\n", "\n", "2\n", "\n", "\n", "\n", "3\n", "\n", "\n", "\n", "3->2\n", "\n", "\n", "a\n", "\n", "\n", "\n", "5\n", "\n", "\n", "\n", "4->5\n", "\n", "\n", "a\n", "\n", "\n", "\n", "5->3\n", "\n", "\n", "b\n", "\n", "\n", "\n", "6\n", "\n", "{q3}\n", "\n", "\n", "\n", "6->0\n", "\n", "\n", "\n", "\n", "\n", "8\n", "\n", "{q2}\n", "\n", "\n", "\n", "7->8\n", "\n", "\n", "\n", "\n", "\n", "9\n", "\n", "{q2,q3}\n", "\n", "\n", "\n", "8->9\n", "\n", "\n", "\n", "\n", "\n", "9->6\n", "\n", "\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "run(d4, \"b a b a\")" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "%3\n", "\n", "\n", "\n", "_START\n", "\n", "\n", "\n", "6\n", "\n", "q1\n", "\n", "\n", "\n", "_START->6\n", "\n", "\n", "\n", "\n", "\n", "0\n", "\n", "q3\n", "\n", "\n", "\n", "1\n", "\n", "\n", "q1\n", "\n", "\n", "\n", "0->1\n", "\n", "\n", "\n", "\n", "\n", "2\n", "\n", "q3\n", "\n", "\n", "\n", "1->2\n", "\n", "\n", "\n", "\n", "\n", "3\n", "\n", "q2\n", "\n", "\n", "\n", "3->0\n", "\n", "\n", "\n", "\n", "\n", "4\n", "\n", "q3\n", "\n", "\n", "\n", "5\n", "\n", "q2\n", "\n", "\n", "\n", "5->3\n", "\n", "\n", "\n", "\n", "\n", "5->4\n", "\n", "\n", "\n", "\n", "\n", "6->5\n", "\n", "\n", "\n", "\n", "\n", "7\n", "\n", "q3\n", "\n", "\n", "\n", "6->7\n", "\n", "\n", "\n", "\n", "\n", "8\n", "\n", "\n", "\n", "9\n", "\n", "\n", "\n", "8->9\n", "\n", "\n", "b\n", "\n", "\n", "\n", "10\n", "\n", "\n", "\n", "9->10\n", "\n", "\n", "a\n", "\n", "\n", "\n", "11\n", "\n", "\n", "\n", "10->11\n", "\n", "\n", "b\n", "\n", "\n", "\n", "12\n", "\n", "\n", "\n", "11->12\n", "\n", "\n", "a\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "run(n4, \"b a b a\")" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.5" } }, "nbformat": 4, "nbformat_minor": 1 }