Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body>
<h1>Decidable</h1>
<h2>DFA NFA Regular Expression</h2>
<ol>
<li>A<sub>DFA</sub> = {&lt; D, w &gt; | D is a DFA that accepts input w}<blockquote>
@richardfat7
richardfat7 / Decidable.md
Last active December 13, 2017 10:49
Decidable ? Not Decidable ?

✓Decidable

DFA NFA Regular Expression

  1. ADFA = {< D, w > | D is a DFA that accepts input w}
    By Simulatation
  2. ANFA = {< N, w > | N is an NFA that accepts input w}
    Convert to DFA
  3. AREX = {< R, w > | R is a regular expression that generates w}
    Convert to DFA
  4. MINDFA = {< D > | D is a minimal DFA}