8745
|
1 |
(*<*)
|
|
2 |
theory case_splits = Main:;
|
|
3 |
(*>*)
|
|
4 |
|
|
5 |
text{*
|
|
6 |
Goals containing \isaindex{if}-expressions are usually proved by case
|
|
7 |
distinction on the condition of the \isa{if}. For example the goal
|
|
8 |
*}
|
|
9 |
|
|
10 |
lemma "\\<forall>xs. if xs = [] then rev xs = [] else rev xs \\<noteq> []";
|
|
11 |
|
|
12 |
txt{*\noindent
|
|
13 |
can be split into
|
|
14 |
\begin{isabellepar}%
|
|
15 |
~1.~{\isasymforall}xs.~(xs~=~[]~{\isasymlongrightarrow}~rev~xs~=~[])~{\isasymand}~(xs~{\isasymnoteq}~[]~{\isasymlongrightarrow}~rev~xs~{\isasymnoteq}~[])%
|
|
16 |
\end{isabellepar}%
|
|
17 |
by a degenerate form of simplification
|
|
18 |
*}
|
|
19 |
|
|
20 |
apply(simp only: split: split_if);
|
|
21 |
(*<*)oops;(*>*)
|
|
22 |
|
|
23 |
text{*\noindent
|
|
24 |
where no simplification rules are included (\isa{only:} is followed by the
|
|
25 |
empty list of theorems) but the rule \isaindexbold{split_if} for
|
|
26 |
splitting \isa{if}s is added (via the modifier \isa{split:}). Because
|
|
27 |
case-splitting on \isa{if}s is almost always the right proof strategy, the
|
|
28 |
simplifier performs it automatically. Try \isacommand{apply}\isa{(simp)}
|
|
29 |
on the initial goal above.
|
|
30 |
|
|
31 |
This splitting idea generalizes from \isa{if} to \isaindex{case}:
|
|
32 |
*}
|
|
33 |
|
|
34 |
lemma "(case xs of [] \\<Rightarrow> zs | y#ys \\<Rightarrow> y#(ys@zs)) = xs@zs";
|
|
35 |
txt{*\noindent
|
|
36 |
becomes
|
|
37 |
\begin{isabellepar}%
|
|
38 |
~1.~(xs~=~[]~{\isasymlongrightarrow}~zs~=~xs~@~zs)~{\isasymand}\isanewline
|
|
39 |
~~~~({\isasymforall}a~list.~xs~=~a~\#~list~{\isasymlongrightarrow}~a~\#~list~@~zs~=~xs~@~zs)%
|
|
40 |
\end{isabellepar}%
|
|
41 |
by typing
|
|
42 |
*}
|
|
43 |
|
|
44 |
apply(simp only: split: list.split);
|
|
45 |
(*<*)oops;(*>*)
|
|
46 |
|
|
47 |
text{*\noindent
|
|
48 |
In contrast to \isa{if}-expressions, the simplifier does not split
|
|
49 |
\isa{case}-expressions by default because this can lead to nontermination
|
|
50 |
in case of recursive datatypes. Again, if the \isa{only:} modifier is
|
8771
|
51 |
dropped, the above goal is solved,
|
8745
|
52 |
*}
|
|
53 |
(*<*)
|
|
54 |
lemma "(case xs of [] \\<Rightarrow> zs | y#ys \\<Rightarrow> y#(ys@zs)) = xs@zs";
|
|
55 |
(*>*)
|
9458
|
56 |
by(simp split: list.split);
|
8745
|
57 |
|
8771
|
58 |
text{*\noindent%
|
|
59 |
which \isacommand{apply}\isa{(simp)} alone will not do.
|
|
60 |
|
8745
|
61 |
In general, every datatype $t$ comes with a theorem
|
|
62 |
\isa{$t$.split} which can be declared to be a \bfindex{split rule} either
|
|
63 |
locally as above, or by giving it the \isa{split} attribute globally:
|
|
64 |
*}
|
|
65 |
|
9541
|
66 |
lemmas [split] = list.split;
|
8745
|
67 |
|
|
68 |
text{*\noindent
|
|
69 |
The \isa{split} attribute can be removed with the \isa{del} modifier,
|
|
70 |
either locally
|
|
71 |
*}
|
|
72 |
(*<*)
|
|
73 |
lemma "dummy=dummy";
|
|
74 |
(*>*)
|
|
75 |
apply(simp split del: split_if);
|
|
76 |
(*<*)
|
|
77 |
oops;
|
|
78 |
(*>*)
|
|
79 |
text{*\noindent
|
|
80 |
or globally:
|
|
81 |
*}
|
9541
|
82 |
lemmas [split del] = list.split;
|
8745
|
83 |
|
9721
|
84 |
text{*
|
|
85 |
The above split rules intentionally only affect the conclusion of a
|
|
86 |
subgoal. If you want to split an \isa{if} or \isa{case}-expression in
|
|
87 |
the assumptions, you have to apply \isa{split\_if\_asm} or $t$\isa{.split_asm}:
|
|
88 |
*}
|
|
89 |
|
|
90 |
lemma "if xs = [] then ys ~= [] else ys = [] ==> xs @ ys ~= []"
|
|
91 |
apply(simp only: split: split_if_asm);
|
|
92 |
|
|
93 |
txt{*\noindent
|
|
94 |
In contrast to splitting the conclusion, this actually creates two
|
|
95 |
separate subgoals (which are solved by \isa{simp\_all}):
|
|
96 |
\begin{isabelle}
|
|
97 |
\ \isadigit{1}{\isachardot}\ {\isasymlbrakk}\mbox{xs}\ {\isacharequal}\ {\isacharbrackleft}{\isacharbrackright}{\isacharsemicolon}\ \mbox{ys}\ {\isasymnoteq}\ {\isacharbrackleft}{\isacharbrackright}{\isasymrbrakk}\ {\isasymLongrightarrow}\ {\isacharbrackleft}{\isacharbrackright}\ {\isacharat}\ \mbox{ys}\ {\isasymnoteq}\ {\isacharbrackleft}{\isacharbrackright}\isanewline
|
|
98 |
\ \isadigit{2}{\isachardot}\ {\isasymlbrakk}\mbox{xs}\ {\isasymnoteq}\ {\isacharbrackleft}{\isacharbrackright}{\isacharsemicolon}\ \mbox{ys}\ {\isacharequal}\ {\isacharbrackleft}{\isacharbrackright}{\isasymrbrakk}\ {\isasymLongrightarrow}\ \mbox{xs}\ {\isacharat}\ {\isacharbrackleft}{\isacharbrackright}\ {\isasymnoteq}\ {\isacharbrackleft}{\isacharbrackright}
|
|
99 |
\end{isabelle}
|
|
100 |
If you need to split both in the assumptions and the conclusion,
|
|
101 |
use $t$\isa{.splits} which subsumes $t$\isa{.split} and $t$\isa{.split_asm}.
|
|
102 |
*}
|
|
103 |
|
8745
|
104 |
(*<*)
|
9721
|
105 |
by(simp_all)
|
8745
|
106 |
end
|
|
107 |
(*>*)
|