doc-src/TutorialI/Inductive/document/AB.tex
author paulson
Thu, 09 Aug 2001 18:12:15 +0200
changeset 11494 23a118849801
parent 11310 51e70b7bc315
child 11708 d27253c4594f
permissions -rw-r--r--
revisions and indexing
nipkow@10217
     1
%
nipkow@10217
     2
\begin{isabellebody}%
nipkow@10217
     3
\def\isabellecontext{AB}%
nipkow@10225
     4
%
paulson@10878
     5
\isamarkupsection{Case Study: A Context Free Grammar%
wenzelm@10395
     6
}
nipkow@10236
     7
%
nipkow@10236
     8
\begin{isamarkuptext}%
nipkow@10242
     9
\label{sec:CFG}
paulson@11494
    10
\index{grammars!defining inductively|(}%
nipkow@10236
    11
Grammars are nothing but shorthands for inductive definitions of nonterminals
nipkow@10236
    12
which represent sets of strings. For example, the production
nipkow@10236
    13
$A \to B c$ is short for
nipkow@10236
    14
\[ w \in B \Longrightarrow wc \in A \]
paulson@10878
    15
This section demonstrates this idea with an example
paulson@10878
    16
due to Hopcroft and Ullman, a grammar for generating all words with an
paulson@10878
    17
equal number of $a$'s and~$b$'s:
nipkow@10236
    18
\begin{eqnarray}
nipkow@10236
    19
S &\to& \epsilon \mid b A \mid a B \nonumber\\
nipkow@10236
    20
A &\to& a S \mid b A A \nonumber\\
nipkow@10236
    21
B &\to& b S \mid a B B \nonumber
nipkow@10236
    22
\end{eqnarray}
paulson@10878
    23
At the end we say a few words about the relationship between
paulson@10878
    24
the original proof \cite[p.\ts81]{HopcroftUllman} and our formal version.
nipkow@10236
    25
paulson@10299
    26
We start by fixing the alphabet, which consists only of \isa{a}'s
paulson@10878
    27
and~\isa{b}'s:%
nipkow@10236
    28
\end{isamarkuptext}%
nipkow@10236
    29
\isacommand{datatype}\ alfa\ {\isacharequal}\ a\ {\isacharbar}\ b%
nipkow@10236
    30
\begin{isamarkuptext}%
nipkow@10236
    31
\noindent
paulson@10299
    32
For convenience we include the following easy lemmas as simplification rules:%
nipkow@10236
    33
\end{isamarkuptext}%
nipkow@10236
    34
\isacommand{lemma}\ {\isacharbrackleft}simp{\isacharbrackright}{\isacharcolon}\ {\isachardoublequote}{\isacharparenleft}x\ {\isasymnoteq}\ a{\isacharparenright}\ {\isacharequal}\ {\isacharparenleft}x\ {\isacharequal}\ b{\isacharparenright}\ {\isasymand}\ {\isacharparenleft}x\ {\isasymnoteq}\ b{\isacharparenright}\ {\isacharequal}\ {\isacharparenleft}x\ {\isacharequal}\ a{\isacharparenright}{\isachardoublequote}\isanewline
paulson@10878
    35
\isacommand{by}\ {\isacharparenleft}case{\isacharunderscore}tac\ x{\isacharcomma}\ auto{\isacharparenright}%
nipkow@10236
    36
\begin{isamarkuptext}%
nipkow@10236
    37
\noindent
nipkow@10236
    38
Words over this alphabet are of type \isa{alfa\ list}, and
paulson@10878
    39
the three nonterminals are declared as sets of such words:%
nipkow@10236
    40
\end{isamarkuptext}%
nipkow@10217
    41
\isacommand{consts}\ S\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}alfa\ list\ set{\isachardoublequote}\isanewline
nipkow@10217
    42
\ \ \ \ \ \ \ A\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}alfa\ list\ set{\isachardoublequote}\isanewline
nipkow@10236
    43
\ \ \ \ \ \ \ B\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}alfa\ list\ set{\isachardoublequote}%
nipkow@10236
    44
\begin{isamarkuptext}%
nipkow@10236
    45
\noindent
paulson@10878
    46
The productions above are recast as a \emph{mutual} inductive
nipkow@10242
    47
definition\index{inductive definition!simultaneous}
paulson@10878
    48
of \isa{S}, \isa{A} and~\isa{B}:%
nipkow@10236
    49
\end{isamarkuptext}%
nipkow@10217
    50
\isacommand{inductive}\ S\ A\ B\isanewline
nipkow@10217
    51
\isakeyword{intros}\isanewline
nipkow@10236
    52
\ \ {\isachardoublequote}{\isacharbrackleft}{\isacharbrackright}\ {\isasymin}\ S{\isachardoublequote}\isanewline
nipkow@10236
    53
\ \ {\isachardoublequote}w\ {\isasymin}\ A\ {\isasymLongrightarrow}\ b{\isacharhash}w\ {\isasymin}\ S{\isachardoublequote}\isanewline
nipkow@10236
    54
\ \ {\isachardoublequote}w\ {\isasymin}\ B\ {\isasymLongrightarrow}\ a{\isacharhash}w\ {\isasymin}\ S{\isachardoublequote}\isanewline
nipkow@10217
    55
\isanewline
nipkow@10236
    56
\ \ {\isachardoublequote}w\ {\isasymin}\ S\ \ \ \ \ \ \ \ {\isasymLongrightarrow}\ a{\isacharhash}w\ \ \ {\isasymin}\ A{\isachardoublequote}\isanewline
nipkow@10236
    57
\ \ {\isachardoublequote}{\isasymlbrakk}\ v{\isasymin}A{\isacharsemicolon}\ w{\isasymin}A\ {\isasymrbrakk}\ {\isasymLongrightarrow}\ b{\isacharhash}v{\isacharat}w\ {\isasymin}\ A{\isachardoublequote}\isanewline
nipkow@10217
    58
\isanewline
nipkow@10236
    59
\ \ {\isachardoublequote}w\ {\isasymin}\ S\ \ \ \ \ \ \ \ \ \ \ \ {\isasymLongrightarrow}\ b{\isacharhash}w\ \ \ {\isasymin}\ B{\isachardoublequote}\isanewline
nipkow@10236
    60
\ \ {\isachardoublequote}{\isasymlbrakk}\ v\ {\isasymin}\ B{\isacharsemicolon}\ w\ {\isasymin}\ B\ {\isasymrbrakk}\ {\isasymLongrightarrow}\ a{\isacharhash}v{\isacharat}w\ {\isasymin}\ B{\isachardoublequote}%
nipkow@10236
    61
\begin{isamarkuptext}%
nipkow@10236
    62
\noindent
paulson@10878
    63
First we show that all words in \isa{S} contain the same number of \isa{a}'s and \isa{b}'s. Since the definition of \isa{S} is by mutual
paulson@10878
    64
induction, so is the proof: we show at the same time that all words in
nipkow@10236
    65
\isa{A} contain one more \isa{a} than \isa{b} and all words in \isa{B} contains one more \isa{b} than \isa{a}.%
nipkow@10236
    66
\end{isamarkuptext}%
nipkow@10236
    67
\isacommand{lemma}\ correctness{\isacharcolon}\isanewline
nipkow@10236
    68
\ \ {\isachardoublequote}{\isacharparenleft}w\ {\isasymin}\ S\ {\isasymlongrightarrow}\ size{\isacharbrackleft}x{\isasymin}w{\isachardot}\ x{\isacharequal}a{\isacharbrackright}\ {\isacharequal}\ size{\isacharbrackleft}x{\isasymin}w{\isachardot}\ x{\isacharequal}b{\isacharbrackright}{\isacharparenright}\ \ \ \ \ {\isasymand}\isanewline
nipkow@10237
    69
\ \ \ {\isacharparenleft}w\ {\isasymin}\ A\ {\isasymlongrightarrow}\ size{\isacharbrackleft}x{\isasymin}w{\isachardot}\ x{\isacharequal}a{\isacharbrackright}\ {\isacharequal}\ size{\isacharbrackleft}x{\isasymin}w{\isachardot}\ x{\isacharequal}b{\isacharbrackright}\ {\isacharplus}\ {\isadigit{1}}{\isacharparenright}\ {\isasymand}\isanewline
nipkow@10237
    70
\ \ \ {\isacharparenleft}w\ {\isasymin}\ B\ {\isasymlongrightarrow}\ size{\isacharbrackleft}x{\isasymin}w{\isachardot}\ x{\isacharequal}b{\isacharbrackright}\ {\isacharequal}\ size{\isacharbrackleft}x{\isasymin}w{\isachardot}\ x{\isacharequal}a{\isacharbrackright}\ {\isacharplus}\ {\isadigit{1}}{\isacharparenright}{\isachardoublequote}%
nipkow@10236
    71
\begin{isamarkuptxt}%
nipkow@10236
    72
\noindent
nipkow@10283
    73
These propositions are expressed with the help of the predefined \isa{filter} function on lists, which has the convenient syntax \isa{{\isacharbrackleft}x{\isasymin}xs{\isachardot}\ P\ x{\isacharbrackright}}, the list of all elements \isa{x} in \isa{xs} such that \isa{P\ x}
paulson@10878
    74
holds. Remember that on lists \isa{size} and \isa{length} are synonymous.
nipkow@10236
    75
nipkow@10236
    76
The proof itself is by rule induction and afterwards automatic:%
nipkow@10236
    77
\end{isamarkuptxt}%
paulson@10878
    78
\isacommand{by}\ {\isacharparenleft}rule\ S{\isacharunderscore}A{\isacharunderscore}B{\isachardot}induct{\isacharcomma}\ auto{\isacharparenright}%
nipkow@10236
    79
\begin{isamarkuptext}%
nipkow@10236
    80
\noindent
nipkow@10236
    81
This may seem surprising at first, and is indeed an indication of the power
nipkow@10236
    82
of inductive definitions. But it is also quite straightforward. For example,
nipkow@10236
    83
consider the production $A \to b A A$: if $v,w \in A$ and the elements of $A$
paulson@10878
    84
contain one more $a$ than~$b$'s, then $bvw$ must again contain one more $a$
paulson@10878
    85
than~$b$'s.
nipkow@10236
    86
nipkow@10236
    87
As usual, the correctness of syntactic descriptions is easy, but completeness
nipkow@10236
    88
is hard: does \isa{S} contain \emph{all} words with an equal number of
nipkow@10236
    89
\isa{a}'s and \isa{b}'s? It turns out that this proof requires the
paulson@10878
    90
following lemma: every string with two more \isa{a}'s than \isa{b}'s can be cut somewhere such that each half has one more \isa{a} than
nipkow@10236
    91
\isa{b}. This is best seen by imagining counting the difference between the
nipkow@10283
    92
number of \isa{a}'s and \isa{b}'s starting at the left end of the
nipkow@10283
    93
word. We start with 0 and end (at the right end) with 2. Since each move to the
nipkow@10236
    94
right increases or decreases the difference by 1, we must have passed through
nipkow@10236
    95
1 on our way from 0 to 2. Formally, we appeal to the following discrete
nipkow@10236
    96
intermediate value theorem \isa{nat{\isadigit{0}}{\isacharunderscore}intermed{\isacharunderscore}int{\isacharunderscore}val}
nipkow@10236
    97
\begin{isabelle}%
nipkow@10696
    98
\ \ \ \ \ {\isasymlbrakk}{\isasymforall}i{\isachardot}\ i\ {\isacharless}\ n\ {\isasymlongrightarrow}\ {\isasymbar}f\ {\isacharparenleft}i\ {\isacharplus}\ {\isadigit{1}}{\isacharparenright}\ {\isacharminus}\ f\ i{\isasymbar}\ {\isasymle}\ {\isacharhash}{\isadigit{1}}{\isacharsemicolon}\ f\ {\isadigit{0}}\ {\isasymle}\ k{\isacharsemicolon}\ k\ {\isasymle}\ f\ n{\isasymrbrakk}\isanewline
wenzelm@10950
    99
\isaindent{\ \ \ \ \ }{\isasymLongrightarrow}\ {\isasymexists}i{\isachardot}\ i\ {\isasymle}\ n\ {\isasymand}\ f\ i\ {\isacharequal}\ k%
nipkow@10236
   100
\end{isabelle}
nipkow@10236
   101
where \isa{f} is of type \isa{nat\ {\isasymRightarrow}\ int}, \isa{int} are the integers,
nipkow@11308
   102
\isa{{\isasymbar}{\isachardot}{\isasymbar}} is the absolute value function\footnote{See
nipkow@11308
   103
Table~\ref{tab:ascii} in the Appendix for the correct \textsc{ascii}
nipkow@11308
   104
syntax.}, and \isa{{\isacharhash}{\isadigit{1}}} is the integer 1 (see \S\ref{sec:numbers}).
nipkow@10236
   105
nipkow@11147
   106
First we show that our specific function, the difference between the
nipkow@10236
   107
numbers of \isa{a}'s and \isa{b}'s, does indeed only change by 1 in every
nipkow@10236
   108
move to the right. At this point we also start generalizing from \isa{a}'s
nipkow@10236
   109
and \isa{b}'s to an arbitrary property \isa{P}. Otherwise we would have
nipkow@10236
   110
to prove the desired lemma twice, once as stated above and once with the
nipkow@10236
   111
roles of \isa{a}'s and \isa{b}'s interchanged.%
nipkow@10236
   112
\end{isamarkuptext}%
nipkow@10236
   113
\isacommand{lemma}\ step{\isadigit{1}}{\isacharcolon}\ {\isachardoublequote}{\isasymforall}i\ {\isacharless}\ size\ w{\isachardot}\isanewline
nipkow@10608
   114
\ \ {\isasymbar}{\isacharparenleft}int{\isacharparenleft}size{\isacharbrackleft}x{\isasymin}take\ {\isacharparenleft}i{\isacharplus}{\isadigit{1}}{\isacharparenright}\ w{\isachardot}\ P\ x{\isacharbrackright}{\isacharparenright}{\isacharminus}int{\isacharparenleft}size{\isacharbrackleft}x{\isasymin}take\ {\isacharparenleft}i{\isacharplus}{\isadigit{1}}{\isacharparenright}\ w{\isachardot}\ {\isasymnot}P\ x{\isacharbrackright}{\isacharparenright}{\isacharparenright}\isanewline
nipkow@10608
   115
\ \ \ {\isacharminus}\ {\isacharparenleft}int{\isacharparenleft}size{\isacharbrackleft}x{\isasymin}take\ i\ w{\isachardot}\ P\ x{\isacharbrackright}{\isacharparenright}{\isacharminus}int{\isacharparenleft}size{\isacharbrackleft}x{\isasymin}take\ i\ w{\isachardot}\ {\isasymnot}P\ x{\isacharbrackright}{\isacharparenright}{\isacharparenright}{\isasymbar}\ {\isasymle}\ {\isacharhash}{\isadigit{1}}{\isachardoublequote}%
nipkow@10236
   116
\begin{isamarkuptxt}%
nipkow@10236
   117
\noindent
nipkow@10236
   118
The lemma is a bit hard to read because of the coercion function
nipkow@11147
   119
\isa{int\ {\isacharcolon}{\isacharcolon}\ nat\ {\isasymRightarrow}\ int}. It is required because \isa{size} returns
paulson@10878
   120
a natural number, but subtraction on type~\isa{nat} will do the wrong thing.
nipkow@10236
   121
Function \isa{take} is predefined and \isa{take\ i\ xs} is the prefix of
paulson@10878
   122
length \isa{i} of \isa{xs}; below we also need \isa{drop\ i\ xs}, which
nipkow@10236
   123
is what remains after that prefix has been dropped from \isa{xs}.
nipkow@10236
   124
nipkow@10236
   125
The proof is by induction on \isa{w}, with a trivial base case, and a not
nipkow@10236
   126
so trivial induction step. Since it is essentially just arithmetic, we do not
nipkow@10236
   127
discuss it.%
nipkow@10236
   128
\end{isamarkuptxt}%
nipkow@10217
   129
\isacommand{apply}{\isacharparenleft}induct\ w{\isacharparenright}\isanewline
nipkow@10217
   130
\ \isacommand{apply}{\isacharparenleft}simp{\isacharparenright}\isanewline
nipkow@10236
   131
\isacommand{by}{\isacharparenleft}force\ simp\ add{\isacharcolon}zabs{\isacharunderscore}def\ take{\isacharunderscore}Cons\ split{\isacharcolon}nat{\isachardot}split\ if{\isacharunderscore}splits{\isacharparenright}%
nipkow@10236
   132
\begin{isamarkuptext}%
paulson@11494
   133
Finally we come to the above-mentioned lemma about cutting in half a word with two more elements of one sort than of the other sort:%
nipkow@10236
   134
\end{isamarkuptext}%
nipkow@10236
   135
\isacommand{lemma}\ part{\isadigit{1}}{\isacharcolon}\isanewline
nipkow@10236
   136
\ {\isachardoublequote}size{\isacharbrackleft}x{\isasymin}w{\isachardot}\ P\ x{\isacharbrackright}\ {\isacharequal}\ size{\isacharbrackleft}x{\isasymin}w{\isachardot}\ {\isasymnot}P\ x{\isacharbrackright}{\isacharplus}{\isadigit{2}}\ {\isasymLongrightarrow}\isanewline
nipkow@10236
   137
\ \ {\isasymexists}i{\isasymle}size\ w{\isachardot}\ size{\isacharbrackleft}x{\isasymin}take\ i\ w{\isachardot}\ P\ x{\isacharbrackright}\ {\isacharequal}\ size{\isacharbrackleft}x{\isasymin}take\ i\ w{\isachardot}\ {\isasymnot}P\ x{\isacharbrackright}{\isacharplus}{\isadigit{1}}{\isachardoublequote}%
nipkow@10236
   138
\begin{isamarkuptxt}%
nipkow@10236
   139
\noindent
paulson@10878
   140
This is proved by \isa{force} with the help of the intermediate value theorem,
nipkow@10608
   141
instantiated appropriately and with its first premise disposed of by lemma
nipkow@10608
   142
\isa{step{\isadigit{1}}}:%
nipkow@10236
   143
\end{isamarkuptxt}%
nipkow@10236
   144
\isacommand{apply}{\isacharparenleft}insert\ nat{\isadigit{0}}{\isacharunderscore}intermed{\isacharunderscore}int{\isacharunderscore}val{\isacharbrackleft}OF\ step{\isadigit{1}}{\isacharcomma}\ of\ {\isachardoublequote}P{\isachardoublequote}\ {\isachardoublequote}w{\isachardoublequote}\ {\isachardoublequote}{\isacharhash}{\isadigit{1}}{\isachardoublequote}{\isacharbrackright}{\isacharparenright}\isanewline
nipkow@10608
   145
\isacommand{by}\ force%
nipkow@10236
   146
\begin{isamarkuptext}%
nipkow@10236
   147
\noindent
nipkow@10236
   148
nipkow@10236
   149
Lemma \isa{part{\isadigit{1}}} tells us only about the prefix \isa{take\ i\ w}.
paulson@10878
   150
An easy lemma deals with the suffix \isa{drop\ i\ w}:%
nipkow@10236
   151
\end{isamarkuptext}%
nipkow@10236
   152
\isacommand{lemma}\ part{\isadigit{2}}{\isacharcolon}\isanewline
nipkow@10236
   153
\ \ {\isachardoublequote}{\isasymlbrakk}size{\isacharbrackleft}x{\isasymin}take\ i\ w\ {\isacharat}\ drop\ i\ w{\isachardot}\ P\ x{\isacharbrackright}\ {\isacharequal}\isanewline
nipkow@10236
   154
\ \ \ \ size{\isacharbrackleft}x{\isasymin}take\ i\ w\ {\isacharat}\ drop\ i\ w{\isachardot}\ {\isasymnot}P\ x{\isacharbrackright}{\isacharplus}{\isadigit{2}}{\isacharsemicolon}\isanewline
nipkow@10236
   155
\ \ \ \ size{\isacharbrackleft}x{\isasymin}take\ i\ w{\isachardot}\ P\ x{\isacharbrackright}\ {\isacharequal}\ size{\isacharbrackleft}x{\isasymin}take\ i\ w{\isachardot}\ {\isasymnot}P\ x{\isacharbrackright}{\isacharplus}{\isadigit{1}}{\isasymrbrakk}\isanewline
nipkow@10236
   156
\ \ \ {\isasymLongrightarrow}\ size{\isacharbrackleft}x{\isasymin}drop\ i\ w{\isachardot}\ P\ x{\isacharbrackright}\ {\isacharequal}\ size{\isacharbrackleft}x{\isasymin}drop\ i\ w{\isachardot}\ {\isasymnot}P\ x{\isacharbrackright}{\isacharplus}{\isadigit{1}}{\isachardoublequote}\isanewline
nipkow@10236
   157
\isacommand{by}{\isacharparenleft}simp\ del{\isacharcolon}append{\isacharunderscore}take{\isacharunderscore}drop{\isacharunderscore}id{\isacharparenright}%
nipkow@10236
   158
\begin{isamarkuptext}%
nipkow@10236
   159
\noindent
nipkow@11257
   160
In the proof we have disabled the normally useful lemma
paulson@10878
   161
\begin{isabelle}
paulson@10878
   162
\isa{take\ n\ xs\ {\isacharat}\ drop\ n\ xs\ {\isacharequal}\ xs}
paulson@10878
   163
\rulename{append_take_drop_id}
paulson@10878
   164
\end{isabelle}
nipkow@11257
   165
to allow the simplifier to apply the following lemma instead:
nipkow@11257
   166
\begin{isabelle}%
nipkow@11257
   167
\ \ \ \ \ {\isacharbrackleft}x{\isasymin}xs{\isacharat}ys{\isachardot}\ P\ x{\isacharbrackright}\ {\isacharequal}\ {\isacharbrackleft}x{\isasymin}xs{\isachardot}\ P\ x{\isacharbrackright}\ {\isacharat}\ {\isacharbrackleft}x{\isasymin}ys{\isachardot}\ P\ x{\isacharbrackright}%
nipkow@11257
   168
\end{isabelle}
nipkow@10236
   169
nipkow@10236
   170
To dispose of trivial cases automatically, the rules of the inductive
nipkow@10236
   171
definition are declared simplification rules:%
nipkow@10236
   172
\end{isamarkuptext}%
nipkow@10236
   173
\isacommand{declare}\ S{\isacharunderscore}A{\isacharunderscore}B{\isachardot}intros{\isacharbrackleft}simp{\isacharbrackright}%
nipkow@10236
   174
\begin{isamarkuptext}%
nipkow@10236
   175
\noindent
nipkow@10236
   176
This could have been done earlier but was not necessary so far.
nipkow@10236
   177
nipkow@10236
   178
The completeness theorem tells us that if a word has the same number of
paulson@10878
   179
\isa{a}'s and \isa{b}'s, then it is in \isa{S}, and similarly 
paulson@10878
   180
for \isa{A} and \isa{B}:%
nipkow@10236
   181
\end{isamarkuptext}%
nipkow@10236
   182
\isacommand{theorem}\ completeness{\isacharcolon}\isanewline
nipkow@10236
   183
\ \ {\isachardoublequote}{\isacharparenleft}size{\isacharbrackleft}x{\isasymin}w{\isachardot}\ x{\isacharequal}a{\isacharbrackright}\ {\isacharequal}\ size{\isacharbrackleft}x{\isasymin}w{\isachardot}\ x{\isacharequal}b{\isacharbrackright}\ \ \ \ \ {\isasymlongrightarrow}\ w\ {\isasymin}\ S{\isacharparenright}\ {\isasymand}\isanewline
nipkow@10237
   184
\ \ \ {\isacharparenleft}size{\isacharbrackleft}x{\isasymin}w{\isachardot}\ x{\isacharequal}a{\isacharbrackright}\ {\isacharequal}\ size{\isacharbrackleft}x{\isasymin}w{\isachardot}\ x{\isacharequal}b{\isacharbrackright}\ {\isacharplus}\ {\isadigit{1}}\ {\isasymlongrightarrow}\ w\ {\isasymin}\ A{\isacharparenright}\ {\isasymand}\isanewline
nipkow@10237
   185
\ \ \ {\isacharparenleft}size{\isacharbrackleft}x{\isasymin}w{\isachardot}\ x{\isacharequal}b{\isacharbrackright}\ {\isacharequal}\ size{\isacharbrackleft}x{\isasymin}w{\isachardot}\ x{\isacharequal}a{\isacharbrackright}\ {\isacharplus}\ {\isadigit{1}}\ {\isasymlongrightarrow}\ w\ {\isasymin}\ B{\isacharparenright}{\isachardoublequote}%
nipkow@10236
   186
\begin{isamarkuptxt}%
nipkow@10236
   187
\noindent
nipkow@10236
   188
The proof is by induction on \isa{w}. Structural induction would fail here
nipkow@10236
   189
because, as we can see from the grammar, we need to make bigger steps than
nipkow@10236
   190
merely appending a single letter at the front. Hence we induct on the length
nipkow@10236
   191
of \isa{w}, using the induction rule \isa{length{\isacharunderscore}induct}:%
nipkow@10236
   192
\end{isamarkuptxt}%
nipkow@10236
   193
\isacommand{apply}{\isacharparenleft}induct{\isacharunderscore}tac\ w\ rule{\isacharcolon}\ length{\isacharunderscore}induct{\isacharparenright}%
nipkow@10236
   194
\begin{isamarkuptxt}%
nipkow@10236
   195
\noindent
nipkow@10236
   196
The \isa{rule} parameter tells \isa{induct{\isacharunderscore}tac} explicitly which induction
nipkow@10236
   197
rule to use. For details see \S\ref{sec:complete-ind} below.
nipkow@10236
   198
In this case the result is that we may assume the lemma already
nipkow@10236
   199
holds for all words shorter than \isa{w}.
nipkow@10236
   200
nipkow@10236
   201
The proof continues with a case distinction on \isa{w},
paulson@11494
   202
on whether \isa{w} is empty or not.%
nipkow@10236
   203
\end{isamarkuptxt}%
nipkow@10236
   204
\isacommand{apply}{\isacharparenleft}case{\isacharunderscore}tac\ w{\isacharparenright}\isanewline
nipkow@10236
   205
\ \isacommand{apply}{\isacharparenleft}simp{\isacharunderscore}all{\isacharparenright}%
nipkow@10236
   206
\begin{isamarkuptxt}%
nipkow@10236
   207
\noindent
nipkow@11257
   208
Simplification disposes of the base case and leaves only a conjunction
nipkow@11257
   209
of two step cases to be proved:
paulson@10878
   210
if \isa{w\ {\isacharequal}\ a\ {\isacharhash}\ v} and \begin{isabelle}%
paulson@10878
   211
\ \ \ \ \ length\ {\isacharbrackleft}x{\isasymin}v\ {\isachardot}\ x\ {\isacharequal}\ a{\isacharbrackright}\ {\isacharequal}\ length\ {\isacharbrackleft}x{\isasymin}v\ {\isachardot}\ x\ {\isacharequal}\ b{\isacharbrackright}\ {\isacharplus}\ {\isadigit{2}}%
paulson@10878
   212
\end{isabelle} then
nipkow@10236
   213
\isa{b\ {\isacharhash}\ v\ {\isasymin}\ A}, and similarly for \isa{w\ {\isacharequal}\ b\ {\isacharhash}\ v}.
nipkow@10236
   214
We only consider the first case in detail.
nipkow@10236
   215
nipkow@11257
   216
After breaking the conjunction up into two cases, we can apply
nipkow@10236
   217
\isa{part{\isadigit{1}}} to the assumption that \isa{w} contains two more \isa{a}'s than \isa{b}'s.%
nipkow@10236
   218
\end{isamarkuptxt}%
nipkow@10217
   219
\isacommand{apply}{\isacharparenleft}rule\ conjI{\isacharparenright}\isanewline
nipkow@10217
   220
\ \isacommand{apply}{\isacharparenleft}clarify{\isacharparenright}\isanewline
nipkow@10236
   221
\ \isacommand{apply}{\isacharparenleft}frule\ part{\isadigit{1}}{\isacharbrackleft}of\ {\isachardoublequote}{\isasymlambda}x{\isachardot}\ x{\isacharequal}a{\isachardoublequote}{\isacharcomma}\ simplified{\isacharbrackright}{\isacharparenright}\isanewline
nipkow@11257
   222
\ \isacommand{apply}{\isacharparenleft}clarify{\isacharparenright}%
nipkow@10236
   223
\begin{isamarkuptxt}%
nipkow@10236
   224
\noindent
nipkow@10236
   225
This yields an index \isa{i\ {\isasymle}\ length\ v} such that
paulson@10878
   226
\begin{isabelle}%
paulson@10878
   227
\ \ \ \ \ length\ {\isacharbrackleft}x{\isasymin}take\ i\ v\ {\isachardot}\ x\ {\isacharequal}\ a{\isacharbrackright}\ {\isacharequal}\ length\ {\isacharbrackleft}x{\isasymin}take\ i\ v\ {\isachardot}\ x\ {\isacharequal}\ b{\isacharbrackright}\ {\isacharplus}\ {\isadigit{1}}%
paulson@10878
   228
\end{isabelle}
nipkow@11147
   229
With the help of \isa{part{\isadigit{2}}} it follows that
paulson@10878
   230
\begin{isabelle}%
paulson@10878
   231
\ \ \ \ \ length\ {\isacharbrackleft}x{\isasymin}drop\ i\ v\ {\isachardot}\ x\ {\isacharequal}\ a{\isacharbrackright}\ {\isacharequal}\ length\ {\isacharbrackleft}x{\isasymin}drop\ i\ v\ {\isachardot}\ x\ {\isacharequal}\ b{\isacharbrackright}\ {\isacharplus}\ {\isadigit{1}}%
paulson@10878
   232
\end{isabelle}%
nipkow@10236
   233
\end{isamarkuptxt}%
nipkow@10236
   234
\ \isacommand{apply}{\isacharparenleft}drule\ part{\isadigit{2}}{\isacharbrackleft}of\ {\isachardoublequote}{\isasymlambda}x{\isachardot}\ x{\isacharequal}a{\isachardoublequote}{\isacharcomma}\ simplified{\isacharbrackright}{\isacharparenright}\isanewline
nipkow@10236
   235
\ \ \isacommand{apply}{\isacharparenleft}assumption{\isacharparenright}%
nipkow@10236
   236
\begin{isamarkuptxt}%
nipkow@10236
   237
\noindent
nipkow@10236
   238
Now it is time to decompose \isa{v} in the conclusion \isa{b\ {\isacharhash}\ v\ {\isasymin}\ A}
nipkow@11257
   239
into \isa{take\ i\ v\ {\isacharat}\ drop\ i\ v},%
nipkow@11257
   240
\end{isamarkuptxt}%
nipkow@11257
   241
\ \isacommand{apply}{\isacharparenleft}rule{\isacharunderscore}tac\ n{\isadigit{1}}{\isacharequal}i\ \isakeyword{and}\ t{\isacharequal}v\ \isakeyword{in}\ subst{\isacharbrackleft}OF\ append{\isacharunderscore}take{\isacharunderscore}drop{\isacharunderscore}id{\isacharbrackright}{\isacharparenright}%
nipkow@11257
   242
\begin{isamarkuptxt}%
nipkow@11257
   243
\noindent
nipkow@11257
   244
(the variables \isa{n{\isadigit{1}}} and \isa{t} are the result of composing the
nipkow@11257
   245
theorems \isa{subst} and \isa{append{\isacharunderscore}take{\isacharunderscore}drop{\isacharunderscore}id})
nipkow@10236
   246
after which the appropriate rule of the grammar reduces the goal
nipkow@10236
   247
to the two subgoals \isa{take\ i\ v\ {\isasymin}\ A} and \isa{drop\ i\ v\ {\isasymin}\ A}:%
nipkow@10236
   248
\end{isamarkuptxt}%
nipkow@10236
   249
\ \isacommand{apply}{\isacharparenleft}rule\ S{\isacharunderscore}A{\isacharunderscore}B{\isachardot}intros{\isacharparenright}%
nipkow@10236
   250
\begin{isamarkuptxt}%
nipkow@10236
   251
Both subgoals follow from the induction hypothesis because both \isa{take\ i\ v} and \isa{drop\ i\ v} are shorter than \isa{w}:%
nipkow@10236
   252
\end{isamarkuptxt}%
nipkow@10236
   253
\ \ \isacommand{apply}{\isacharparenleft}force\ simp\ add{\isacharcolon}\ min{\isacharunderscore}less{\isacharunderscore}iff{\isacharunderscore}disj{\isacharparenright}\isanewline
nipkow@10236
   254
\ \isacommand{apply}{\isacharparenleft}force\ split\ add{\isacharcolon}\ nat{\isacharunderscore}diff{\isacharunderscore}split{\isacharparenright}%
nipkow@10236
   255
\begin{isamarkuptxt}%
paulson@10878
   256
The case \isa{w\ {\isacharequal}\ b\ {\isacharhash}\ v} is proved analogously:%
nipkow@10236
   257
\end{isamarkuptxt}%
nipkow@10217
   258
\isacommand{apply}{\isacharparenleft}clarify{\isacharparenright}\isanewline
nipkow@10236
   259
\isacommand{apply}{\isacharparenleft}frule\ part{\isadigit{1}}{\isacharbrackleft}of\ {\isachardoublequote}{\isasymlambda}x{\isachardot}\ x{\isacharequal}b{\isachardoublequote}{\isacharcomma}\ simplified{\isacharbrackright}{\isacharparenright}\isanewline
nipkow@11257
   260
\isacommand{apply}{\isacharparenleft}clarify{\isacharparenright}\isanewline
nipkow@10236
   261
\isacommand{apply}{\isacharparenleft}drule\ part{\isadigit{2}}{\isacharbrackleft}of\ {\isachardoublequote}{\isasymlambda}x{\isachardot}\ x{\isacharequal}b{\isachardoublequote}{\isacharcomma}\ simplified{\isacharbrackright}{\isacharparenright}\isanewline
nipkow@10217
   262
\ \isacommand{apply}{\isacharparenleft}assumption{\isacharparenright}\isanewline
nipkow@10236
   263
\isacommand{apply}{\isacharparenleft}rule{\isacharunderscore}tac\ n{\isadigit{1}}{\isacharequal}i\ \isakeyword{and}\ t{\isacharequal}v\ \isakeyword{in}\ subst{\isacharbrackleft}OF\ append{\isacharunderscore}take{\isacharunderscore}drop{\isacharunderscore}id{\isacharbrackright}{\isacharparenright}\isanewline
nipkow@10217
   264
\isacommand{apply}{\isacharparenleft}rule\ S{\isacharunderscore}A{\isacharunderscore}B{\isachardot}intros{\isacharparenright}\isanewline
nipkow@10217
   265
\ \isacommand{apply}{\isacharparenleft}force\ simp\ add{\isacharcolon}min{\isacharunderscore}less{\isacharunderscore}iff{\isacharunderscore}disj{\isacharparenright}\isanewline
nipkow@10236
   266
\isacommand{by}{\isacharparenleft}force\ simp\ add{\isacharcolon}min{\isacharunderscore}less{\isacharunderscore}iff{\isacharunderscore}disj\ split\ add{\isacharcolon}\ nat{\isacharunderscore}diff{\isacharunderscore}split{\isacharparenright}%
nipkow@10236
   267
\begin{isamarkuptext}%
paulson@10878
   268
We conclude this section with a comparison of our proof with 
paulson@11494
   269
Hopcroft\index{Hopcroft, J. E.} and Ullman's\index{Ullman, J. D.}
paulson@11494
   270
\cite[p.\ts81]{HopcroftUllman}.
paulson@11494
   271
For a start, the textbook
nipkow@11257
   272
grammar, for no good reason, excludes the empty word, thus complicating
nipkow@11257
   273
matters just a little bit: they have 8 instead of our 7 productions.
nipkow@10236
   274
nipkow@11158
   275
More importantly, the proof itself is different: rather than
nipkow@11158
   276
separating the two directions, they perform one induction on the
nipkow@11158
   277
length of a word. This deprives them of the beauty of rule induction,
nipkow@11158
   278
and in the easy direction (correctness) their reasoning is more
nipkow@11158
   279
detailed than our \isa{auto}. For the hard part (completeness), they
nipkow@11158
   280
consider just one of the cases that our \isa{simp{\isacharunderscore}all} disposes of
nipkow@11158
   281
automatically. Then they conclude the proof by saying about the
nipkow@11158
   282
remaining cases: ``We do this in a manner similar to our method of
nipkow@11158
   283
proof for part (1); this part is left to the reader''. But this is
nipkow@11158
   284
precisely the part that requires the intermediate value theorem and
nipkow@11158
   285
thus is not at all similar to the other cases (which are automatic in
nipkow@11158
   286
Isabelle). The authors are at least cavalier about this point and may
nipkow@11158
   287
even have overlooked the slight difficulty lurking in the omitted
paulson@11494
   288
cases.  Such errors are found in many pen-and-paper proofs when they
paulson@11494
   289
are scrutinized formally.%
paulson@11494
   290
\index{grammars!defining inductively|)}%
nipkow@10236
   291
\end{isamarkuptext}%
nipkow@10217
   292
\end{isabellebody}%
nipkow@10217
   293
%%% Local Variables:
nipkow@10217
   294
%%% mode: latex
nipkow@10217
   295
%%% TeX-master: "root"
nipkow@10217
   296
%%% End: