| author | urbanc |
| Thu, 03 Feb 2011 05:38:47 +0000 | |
| changeset 60 | fb08f41ca33d |
| parent 54 | c19d2fc2cc69 |
| child 61 | 070f543e2560 |
| permissions | -rw-r--r-- |
| 24 | 1 |
\documentclass{llncs}
|
2 |
\usepackage{isabelle}
|
|
3 |
\usepackage{isabellesym}
|
|
4 |
\usepackage{amsmath}
|
|
5 |
\usepackage{amssymb}
|
|
6 |
\usepackage{tikz}
|
|
7 |
\usepackage{pgf}
|
|
8 |
\usepackage{pdfsetup}
|
|
9 |
\usepackage{ot1patch}
|
|
10 |
\usepackage{times}
|
|
11 |
\usepackage{proof}
|
|
|
52
4a517c6ac07d
tuning of the syntax; needs the stmaryrd latex package
urbanc
parents:
24
diff
changeset
|
12 |
\usepackage{stmaryrd}
|
| 24 | 13 |
|
14 |
\urlstyle{rm}
|
|
15 |
\isabellestyle{it}
|
|
16 |
\renewcommand{\isastyleminor}{\it}%
|
|
17 |
\renewcommand{\isastyle}{\normalsize\it}%
|
|
18 |
||
19 |
||
20 |
\def\dn{\,\stackrel{\mbox{\scriptsize def}}{=}\,}
|
|
21 |
\renewcommand{\isasymequiv}{$\dn$}
|
|
22 |
\renewcommand{\isasymemptyset}{$\varnothing$}
|
|
23 |
\renewcommand{\isacharunderscore}{\mbox{$\_\!\_$}}
|
|
24 |
||
25 |
\begin{document}
|
|
26 |
||
| 54 | 27 |
\title{A Formalisation of the Myhill-Nerode Theorem\\ based on Regular
|
28 |
Expressions (Proof Pearl)} |
|
| 24 | 29 |
\author{Chunhan Wu\inst{1} \and Xingjuan Zhang\inst{1} \and Christian Urban\inst{2}}
|
30 |
\institute{PLA University, China \and TU Munich, Germany}
|
|
31 |
\maketitle |
|
32 |
||
33 |
\begin{abstract}
|
|
34 |
There are numerous textbooks on regular languages. Nearly all of them |
|
35 |
introduce the subject by describing finite automata and |
|
36 |
only mentioning on the side a connection with regular expressions. |
|
37 |
Unfortunately, automata are a hassle for formalisations in HOL-based |
|
| 60 | 38 |
theorem provers. The reason is that they need to be represented as graphs |
39 |
or matrices, neither of which can be defined as inductive datatype. Also |
|
40 |
operations, such as disjoint unions of graphs, are not easily formalisiable |
|
| 24 | 41 |
in HOL. In contrast, regular expressions can be defined easily |
42 |
as datatype and a corresponding reasoning infrastructure comes for |
|
43 |
free. We show in this paper that a central result from formal |
|
44 |
language theory---the Myhill-Nerode theorem---can be recreated |
|
45 |
using only regular expressions. |
|
46 |
\end{abstract}
|
|
47 |
||
48 |
\input{session}
|
|
49 |
||
50 |
\bibliographystyle{plain}
|
|
51 |
\bibliography{root}
|
|
52 |
||
53 |
\end{document}
|
|
54 |
||
55 |
%%% Local Variables: |
|
56 |
%%% mode: latex |
|
57 |
%%% TeX-master: t |
|
58 |
%%% End: |