author | Christian Urban <urbanc@in.tum.de> |
Fri, 11 Jun 2010 21:58:25 +0200 | |
changeset 2223 | c474186439bd |
parent 2222 | 973649d612f8 |
child 2224 | f5b6f9d8a882 |
permissions | -rw-r--r-- |
2208 | 1 |
(* How to change the notation for \<lbrakk> \<rbrakk> meta-level implications? *) |
2195
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
2 |
|
1975
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
3 |
(*<*) |
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
4 |
theory Paper |
2183 | 5 |
imports "Quotient" |
1975
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
6 |
"LaTeXsugar" |
2186
762a739c9eb4
added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents:
2183
diff
changeset
|
7 |
"../Nominal/FSet" |
1975
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
8 |
begin |
1994 | 9 |
|
10 |
notation (latex output) |
|
2217 | 11 |
rel_conj ("_ OOO _" [53, 53] 52) and |
12 |
"op -->" (infix "\<rightarrow>" 100) and |
|
13 |
"==>" (infix "\<Rightarrow>" 100) and |
|
14 |
fun_map (infix "\<longrightarrow>" 51) and |
|
15 |
fun_rel (infix "\<Longrightarrow>" 51) and |
|
16 |
list_eq (infix "\<approx>" 50) and (* Not sure if we want this notation...? *) |
|
2223 | 17 |
fempty ("\<emptyset>") and |
18 |
funion ("_ \<union> _") and |
|
19 |
finsert ("{_} \<union> _") and |
|
2221
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
20 |
Cons ("_::_") and |
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
21 |
concat ("flat") and |
2223 | 22 |
fconcat ("\<Union>") |
2220
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
23 |
|
2217 | 24 |
|
1994 | 25 |
|
2182 | 26 |
ML {* |
27 |
fun nth_conj n (_, r) = nth (HOLogic.dest_conj r) n; |
|
28 |
fun style_lhs_rhs proj = Scan.succeed (fn ctxt => fn t => |
|
29 |
let |
|
30 |
val concl = |
|
31 |
Object_Logic.drop_judgment (ProofContext.theory_of ctxt) (Logic.strip_imp_concl t) |
|
32 |
in |
|
33 |
case concl of (_ $ l $ r) => proj (l, r) |
|
34 |
| _ => error ("Binary operator expected in term: " ^ Syntax.string_of_term ctxt concl) |
|
35 |
end); |
|
36 |
*} |
|
37 |
setup {* |
|
38 |
Term_Style.setup "rhs1" (style_lhs_rhs (nth_conj 0)) #> |
|
39 |
Term_Style.setup "rhs2" (style_lhs_rhs (nth_conj 1)) #> |
|
40 |
Term_Style.setup "rhs3" (style_lhs_rhs (nth_conj 2)) |
|
41 |
*} |
|
1975
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
42 |
(*>*) |
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
43 |
|
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
44 |
section {* Introduction *} |
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
45 |
|
2102
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
46 |
text {* |
2205 | 47 |
\begin{flushright} |
48 |
{\em ``Not using a [quotient] package has its advantages: we do not have to\\ |
|
49 |
collect all the theorems we shall ever want into one giant list;''}\\ |
|
2213
231a20534950
improved abstract, some tuning
Christian Urban <urbanc@in.tum.de>
parents:
2212
diff
changeset
|
50 |
Larry Paulson \cite{Paulson06} |
2205 | 51 |
\end{flushright}\smallskip |
2103
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
52 |
|
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
53 |
\noindent |
2220
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
54 |
Isabelle is a popular generic theorem prover in which many logics can be |
2214
02e03d4287ec
a bit more in the introduction and abstract
Christian Urban <urbanc@in.tum.de>
parents:
2213
diff
changeset
|
55 |
implemented. The most widely used one, however, is Higher-Order Logic |
02e03d4287ec
a bit more in the introduction and abstract
Christian Urban <urbanc@in.tum.de>
parents:
2213
diff
changeset
|
56 |
(HOL). This logic consists of a small number of axioms and inference rules |
02e03d4287ec
a bit more in the introduction and abstract
Christian Urban <urbanc@in.tum.de>
parents:
2213
diff
changeset
|
57 |
over a simply-typed term-language. Safe reasoning in HOL is ensured by two |
02e03d4287ec
a bit more in the introduction and abstract
Christian Urban <urbanc@in.tum.de>
parents:
2213
diff
changeset
|
58 |
very restricted mechanisms for extending the logic: one is the definition of |
02e03d4287ec
a bit more in the introduction and abstract
Christian Urban <urbanc@in.tum.de>
parents:
2213
diff
changeset
|
59 |
new constants in terms of existing ones; the other is the introduction of |
02e03d4287ec
a bit more in the introduction and abstract
Christian Urban <urbanc@in.tum.de>
parents:
2213
diff
changeset
|
60 |
new types by identifying non-empty subsets in existing types. It is well |
2223 | 61 |
understood how to use both mechanisms for dealing with quotient |
2220
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
62 |
constructions in HOL (see \cite{Homeier05,Paulson06}). For example the |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
63 |
integers in Isabelle/HOL are constructed by a quotient construction over the |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
64 |
type @{typ "nat \<times> nat"} and the equivalence relation |
2102
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
65 |
|
2214
02e03d4287ec
a bit more in the introduction and abstract
Christian Urban <urbanc@in.tum.de>
parents:
2213
diff
changeset
|
66 |
@{text [display, indent=10] "(n\<^isub>1, n\<^isub>2) \<approx> (m\<^isub>1, m\<^isub>2) \<equiv> n\<^isub>1 + n\<^isub>2 = m\<^isub>1 + m\<^isub>2"} |
2102
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
67 |
|
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
68 |
\noindent |
2217 | 69 |
This constructions yields the new type @{typ int} and definitions for @{text |
2220
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
70 |
"0"} and @{text "1"} of type @{typ int} can be given in terms of pairs of |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
71 |
natural numbers (namely @{text "(0, 0)"} and @{text "(1, 0)"}). Operations |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
72 |
such as @{text "add"} with type @{typ "int \<Rightarrow> int \<Rightarrow> int"} can be defined in |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
73 |
terms of operations on pairs of natural numbers (namely @{text |
2222 | 74 |
"add\<^bsub>nat\<times>nat\<^esub> (n\<^isub>1, m\<^isub>1) (n\<^isub>2, |
75 |
m\<^isub>2) \<equiv> (n\<^isub>1 + n\<^isub>2, m\<^isub>1 + m\<^isub>2)"}). |
|
76 |
Similarly one can construct the type of finite sets, written @{term "\<alpha> fset"}, |
|
2223 | 77 |
by quotienting the type @{text "\<alpha> list"} according to the equivalence relation |
2103
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
78 |
|
2214
02e03d4287ec
a bit more in the introduction and abstract
Christian Urban <urbanc@in.tum.de>
parents:
2213
diff
changeset
|
79 |
@{text [display, indent=10] "xs \<approx> ys \<equiv> (\<forall>x. x \<in> xs \<longleftrightarrow> x \<in> ys)"} |
2103
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
80 |
|
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
81 |
\noindent |
2215
b307de538d20
more work on intro and abstract (done for today)
Christian Urban <urbanc@in.tum.de>
parents:
2214
diff
changeset
|
82 |
which states that two lists are equivalent if every element in one list is also |
2217 | 83 |
member in the other (@{text "\<in>"} stands here for membership in lists). The |
2220
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
84 |
empty finite set, written @{term "{||}"}, can then be defined as the |
2223 | 85 |
empty list and the union of two finite sets, written @{text "\<union>"}, as list append. |
2220
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
86 |
|
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
87 |
An area where quotients are ubiquitous is reasoning about programming language |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
88 |
calculi. A simple example is the lambda-calculus, whose ``raw'' terms are defined as |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
89 |
|
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
90 |
@{text [display, indent=10] "t ::= x | t t | \<lambda>x.t"} |
2217 | 91 |
|
2220
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
92 |
\noindent |
2222 | 93 |
The problem with this definition arises when one attempts to |
94 |
prove formally, for example, the substitution lemma \cite{Barendregt81} by induction |
|
95 |
over the structure of terms. This can be fiendishly complicated (see |
|
2220
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
96 |
\cite[Pages 94--104]{CurryFeys58} for some ``rough'' sketches of a proof |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
97 |
about ``raw'' lambda-terms). In contrast, if we reason about |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
98 |
$\alpha$-equated lambda-terms, that means terms quotient according to |
2223 | 99 |
$\alpha$-equivalence, then the reasoning infrastructure provided, |
100 |
for example, by Nominal Isabelle \cite{UrbanKaliszyk11} makes the formal |
|
2222 | 101 |
proof of the substitution lemma almost trivial. |
2220
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
102 |
|
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
103 |
The difficulty is that in order to be able to reason about integers, finite |
2221
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
104 |
sets or $\alpha$-equated lambda-terms one needs to establish a reasoning |
2220
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
105 |
infrastructure by transferring, or \emph{lifting}, definitions and theorems |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
106 |
from the ``raw'' type @{typ "nat \<times> nat"} to the quotient type @{typ int} |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
107 |
(similarly for finite sets and $\alpha$-equated lambda-terms). This lifting |
2222 | 108 |
usually requires a \emph{lot} of tedious reasoning effort \cite{Paulson06}. |
2223 | 109 |
It is feasible to to this work manually, if one has only a few quotient |
110 |
constructions at hand. But if they have to be done over and over again as in |
|
2222 | 111 |
Nominal Isabelle, then manual reasoning is not an option. |
2221
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
112 |
|
2223 | 113 |
The purpose of a \emph{quotient package} is to ease the lifting of theorems |
114 |
and automate the definitions and reasoning as much as possible. In the |
|
115 |
context of HOL, there have been a few quotient packages already |
|
116 |
\cite{harrison-thesis,Slotosch97}. The most notable is the one by Homeier |
|
117 |
\cite{Homeier05} implemented in HOL4. The fundamental construction these |
|
118 |
quotient packages perform can be illustrated by the following picture: |
|
2217 | 119 |
|
120 |
\begin{center} |
|
2220
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
121 |
\mbox{}\hspace{20mm}\begin{tikzpicture} |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
122 |
%%\draw[step=2mm] (-4,-1) grid (4,1); |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
123 |
|
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
124 |
\draw[very thick] (0.7,0.3) circle (4.85mm); |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
125 |
\draw[rounded corners=1mm, very thick] ( 0.0,-0.9) rectangle ( 1.8, 0.9); |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
126 |
\draw[rounded corners=1mm, very thick] (-1.95,0.8) rectangle (-2.9,-0.195); |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
127 |
|
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
128 |
\draw (-2.0, 0.8) -- (0.7,0.8); |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
129 |
\draw (-2.0,-0.195) -- (0.7,-0.195); |
2103
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
130 |
|
2220
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
131 |
\draw ( 0.7, 0.23) node {\begin{tabular}{@ {}c@ {}}equiv-\\[-1mm]clas.\end{tabular}}; |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
132 |
\draw (-2.45, 0.35) node {\begin{tabular}{@ {}c@ {}}new\\[-1mm]type\end{tabular}}; |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
133 |
\draw (1.8, 0.35) node[right=-0.1mm] |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
134 |
{\begin{tabular}{@ {}l@ {}}existing\\[-1mm] type\\ (sets of raw terms)\end{tabular}}; |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
135 |
\draw (0.9, -0.55) node {\begin{tabular}{@ {}l@ {}}non-empty\\[-1mm]subset\end{tabular}}; |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
136 |
|
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
137 |
\draw[->, very thick] (-1.8, 0.36) -- (-0.1,0.36); |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
138 |
\draw[<-, very thick] (-1.8, 0.16) -- (-0.1,0.16); |
2221
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
139 |
\draw (-0.95, 0.26) node[above=0.4mm] {@{text Rep}}; |
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
140 |
\draw (-0.95, 0.26) node[below=0.4mm] {@{text Abs}}; |
2220
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
141 |
|
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
142 |
\end{tikzpicture} |
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
143 |
\end{center} |
2217 | 144 |
|
2221
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
145 |
\noindent |
2223 | 146 |
The starting point is an existing type over which an equivalence relation |
147 |
given by the user is defined. With this input the package introduces a new |
|
148 |
type, which comes with two associated abstraction and representation |
|
149 |
functions, written @{text Abs} and @{text Rep}. These functions relate |
|
150 |
elements in the existing and new type, and can be uniquely identified by |
|
151 |
their type (which however we often omit for better readability). They |
|
152 |
represent an isomorphism between the non-empty subset and elements in the |
|
153 |
new type. They are necessary for making definitions involving the new type. For |
|
154 |
example @{text "0"} and @{text "1"} of type @{typ int} can be defined as |
|
2221
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
155 |
|
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
156 |
\begin{isabelle}\ \ \ \ \ \ \ \ \ \ %%% |
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
157 |
@{text "0 \<equiv> Abs (0, 0)"}\hspace{10mm}@{text "1 \<equiv> Abs (1, 0)"} |
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
158 |
\end{isabelle} |
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
159 |
|
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
160 |
\noindent |
2222 | 161 |
Slightly more complicated is the definition of @{text "add"} which has type |
162 |
@{typ "int \<Rightarrow> int \<Rightarrow> int"}. Its definition is as follows |
|
2221
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
163 |
|
2222 | 164 |
@{text [display, indent=10] "add n m \<equiv> Abs (add\<^bsub>nat\<times>nat\<^esub> (Rep n) (Rep m))"} |
2221
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
165 |
|
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
166 |
\noindent |
2222 | 167 |
where we have to take first the representation of @{text n} and @{text m}, |
2221
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
168 |
add them according to @{text "add\<^bsub>nat\<times>nat\<^esub>"} and then take the |
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
169 |
abstraction of the result. This is all straightforward and the existing |
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
170 |
quotient packages can deal with such definitions. But what is surprising |
2223 | 171 |
that none of them can deal with slightly more complicated definitions involving |
2221
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
172 |
\emph{compositions} of quotients. Such compositions are needed for example |
2223 | 173 |
in case of finite sets. For example over lists one can define an operator |
174 |
that flattens lists of lists as follows |
|
2102
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
175 |
|
2220
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
176 |
@{thm [display, indent=10] concat.simps(1) concat.simps(2)[no_vars]} |
2183 | 177 |
|
2103
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
178 |
\noindent |
2221
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
179 |
We expect that the corresponding operator on finite sets, written @{term "fconcat"}, |
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
180 |
behaves as follows: |
2188 | 181 |
|
2220
2c4c0d93daa6
more to the introduction of the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
2217
diff
changeset
|
182 |
@{thm [display, indent=10] fconcat_empty[no_vars] fconcat_insert[no_vars]} |
2102
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
183 |
|
2103
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
184 |
\noindent |
2223 | 185 |
The quotient package should provide us with a definition for @{text "\<Union>"} in |
186 |
terms of @{text flat}, @{text Rep} and @{text Abs}. The problem is that it |
|
187 |
is not enough to just take the representation of the argument and then |
|
188 |
take the abstraction of the result, because in that case we obtain an operator |
|
189 |
with type @{text "(\<alpha> list) fset \<Rightarrow> \<alpha> fset"}, not the expected |
|
190 |
@{text "(\<alpha> fset) fset \<Rightarrow> \<alpha> fset"}. It turns out that we need |
|
191 |
to build aggregate representation and abstraction functions, which in |
|
2221
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
192 |
case of @{term "fconcat"} produce the following definition |
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
193 |
|
2223 | 194 |
@{text [display, indent=10] "\<Union> S \<equiv> Abs (concat ((map Rep \<circ> Rep) S))"} |
2221
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
195 |
|
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
196 |
\noindent |
2223 | 197 |
where @{term map} is the usual mapping function for lists. In this paper we |
198 |
will present a formal definition for our aggregate abstraction and |
|
199 |
representation functions (this definition was omitted in \cite{Homeier05}). |
|
200 |
They generate definitions like the one above for @{text add} and @{text "\<Union>"} |
|
201 |
according to the type of the ``raw'' constant and the type |
|
202 |
of the quotient constant. |
|
203 |
||
2221
e749cefbf66c
even more on the qpaper (intro almost done)
Christian Urban <urbanc@in.tum.de>
parents:
2220
diff
changeset
|
204 |
|
2102
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
205 |
*} |
1975
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
206 |
|
1978 | 207 |
subsection {* Contributions *} |
1975
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
208 |
|
1978 | 209 |
text {* |
210 |
We present the detailed lifting procedure, which was not shown before. |
|
211 |
||
212 |
The quotient package presented in this paper has the following |
|
213 |
advantages over existing packages: |
|
214 |
\begin{itemize} |
|
215 |
||
216 |
\item We define quotient composition, function map composition and |
|
217 |
relation map composition. This lets lifting polymorphic types with |
|
218 |
subtypes quotiented as well. We extend the notions of |
|
2188 | 219 |
respectfulness and preservation to cope with quotient |
1978 | 220 |
composition. |
221 |
||
222 |
\item We allow lifting only some occurrences of quotiented |
|
223 |
types. Rsp/Prs extended. (used in nominal) |
|
224 |
||
225 |
\item The quotient package is very modular. Definitions can be added |
|
2206 | 226 |
separately, rsp and prs can be proved separately, Quotients and maps |
227 |
can be defined separately and theorems can |
|
228 |
be lifted on a need basis. (useful with type-classes). |
|
1978 | 229 |
|
230 |
\item Can be used both manually (attribute, separate tactics, |
|
231 |
rsp/prs databases) and programatically (automated definition of |
|
232 |
lifted constants, the rsp proof obligations and theorem statement |
|
233 |
translation according to given quotients). |
|
234 |
||
235 |
\end{itemize} |
|
236 |
*} |
|
237 |
||
2222 | 238 |
section {* General Quotient *} |
1978 | 239 |
|
2182 | 240 |
|
241 |
||
1978 | 242 |
text {* |
2182 | 243 |
In this section we present the definitions of a quotient that follow |
244 |
those by Homeier, the proofs can be found there. |
|
245 |
||
246 |
\begin{definition}[Quotient] |
|
247 |
A relation $R$ with an abstraction function $Abs$ |
|
248 |
and a representation function $Rep$ is a \emph{quotient} |
|
249 |
if and only if: |
|
1978 | 250 |
|
2182 | 251 |
\begin{enumerate} |
252 |
\item @{thm (rhs1) Quotient_def[of "R", no_vars]} |
|
253 |
\item @{thm (rhs2) Quotient_def[of "R", no_vars]} |
|
254 |
\item @{thm (rhs3) Quotient_def[of "R", no_vars]} |
|
255 |
\end{enumerate} |
|
256 |
||
257 |
\end{definition} |
|
1978 | 258 |
|
2188 | 259 |
\begin{definition}[Relation map and function map]\\ |
2190 | 260 |
@{thm fun_rel_def[of "R1" "R2", no_vars]}\\ |
2182 | 261 |
@{thm fun_map_def[no_vars]} |
262 |
\end{definition} |
|
263 |
||
264 |
The main theorems for building higher order quotients is: |
|
265 |
\begin{lemma}[Function Quotient] |
|
266 |
If @{thm (prem 1) fun_quotient[no_vars]} and @{thm (prem 2) fun_quotient[no_vars]} |
|
267 |
then @{thm (concl) fun_quotient[no_vars]} |
|
268 |
\end{lemma} |
|
269 |
||
1978 | 270 |
*} |
271 |
||
2195
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
272 |
subsection {* Higher Order Logic *} |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
273 |
|
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
274 |
text {* |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
275 |
|
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
276 |
Types: |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
277 |
\begin{eqnarray}\nonumber |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
278 |
@{text "\<sigma> ::="} & @{text "\<alpha>"} & \textrm{(type variable)} \\ \nonumber |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
279 |
@{text "|"} & @{text "(\<sigma>,\<dots>,\<sigma>)\<kappa>"} & \textrm{(type construction)} |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
280 |
\end{eqnarray} |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
281 |
|
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
282 |
Terms: |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
283 |
\begin{eqnarray}\nonumber |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
284 |
@{text "t ::="} & @{text "x\<^isup>\<sigma>"} & \textrm{(variable)} \\ \nonumber |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
285 |
@{text "|"} & @{text "c\<^isup>\<sigma>"} & \textrm{(constant)} \\ \nonumber |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
286 |
@{text "|"} & @{text "t t"} & \textrm{(application)} \\ \nonumber |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
287 |
@{text "|"} & @{text "\<lambda>x\<^isup>\<sigma>. t"} & \textrm{(abstraction)} \\ \nonumber |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
288 |
\end{eqnarray} |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
289 |
|
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
290 |
*} |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
291 |
|
1978 | 292 |
section {* Constants *} |
293 |
||
2188 | 294 |
(* Say more about containers? *) |
2182 | 295 |
|
1978 | 296 |
text {* |
2182 | 297 |
|
2188 | 298 |
To define a constant on the lifted type, an aggregate abstraction |
299 |
function is applied to the raw constant. Below we describe the operation |
|
300 |
that generates |
|
301 |
an aggregate @{term "Abs"} or @{term "Rep"} function given the |
|
302 |
compound raw type and the compound quotient type. |
|
303 |
This operation will also be used in translations of theorem statements |
|
304 |
and in the lifting procedure. |
|
305 |
||
306 |
The operation is additionally able to descend into types for which |
|
307 |
maps are known. Such maps for most common types (list, pair, sum, |
|
2195
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
308 |
option, \ldots) are described in Homeier, and we assume that @{text "map"} |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
309 |
is the function that returns a map for a given type. Then REP/ABS is defined |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
310 |
as follows: |
2182 | 311 |
|
312 |
\begin{itemize} |
|
2195
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
313 |
\item @{text "ABS(\<alpha>\<^isub>1, \<alpha>\<^isub>2)"} = @{text "id"} |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
314 |
\item @{text "REP(\<alpha>\<^isub>1, \<alpha>\<^isub>2)"} = @{text "id"} |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
315 |
\item @{text "ABS(\<sigma>, \<sigma>)"} = @{text "id"} |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
316 |
\item @{text "REP(\<sigma>, \<sigma>)"} = @{text "id"} |
2208 | 317 |
\item @{text "ABS(\<sigma>\<^isub>1\<rightarrow>\<sigma>\<^isub>2,\<tau>\<^isub>1\<rightarrow>\<tau>\<^isub>2)"} = @{text "REP(\<sigma>\<^isub>1,\<tau>\<^isub>1) \<longrightarrow> ABS(\<sigma>\<^isub>2,\<tau>\<^isub>2)"} |
318 |
\item @{text "REP(\<sigma>\<^isub>1\<rightarrow>\<sigma>\<^isub>2,\<tau>\<^isub>1\<rightarrow>\<tau>\<^isub>2)"} = @{text "ABS(\<sigma>\<^isub>1,\<tau>\<^isub>1) \<longrightarrow> REP(\<sigma>\<^isub>2,\<tau>\<^isub>2)"} |
|
2195
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
319 |
\item @{text "ABS((\<sigma>\<^isub>1,\<dots>,\<sigma>\<^isub>n))\<kappa>, (\<tau>\<^isub>1,\<dots>,\<tau>\<^isub>n))\<kappa>)"} = @{text "(map \<kappa>) (ABS(\<sigma>\<^isub>1,\<tau>\<^isub>1)) \<dots> (ABS(\<sigma>\<^isub>n,\<tau>\<^isub>n))"} |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
320 |
\item @{text "REP((\<sigma>\<^isub>1,\<dots>,\<sigma>\<^isub>n))\<kappa>, (\<tau>\<^isub>1,\<dots>,\<tau>\<^isub>n))\<kappa>)"} = @{text "(map \<kappa>) (REP(\<sigma>\<^isub>1,\<tau>\<^isub>1)) \<dots> (REP(\<sigma>\<^isub>n,\<tau>\<^isub>n))"} |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
321 |
\item @{text "ABS((\<sigma>\<^isub>1,\<dots>,\<sigma>\<^isub>n))\<kappa>\<^isub>1, (\<tau>\<^isub>1,\<dots>,\<tau>\<^isub>m))\<kappa>\<^isub>2)"} = @{text "Abs_\<kappa>\<^isub>2 \<circ> (map \<kappa>\<^isub>1) (ABS(\<rho>\<^isub>1,\<nu>\<^isub>1) \<dots> (ABS(\<rho>\<^isub>p,\<nu>\<^isub>p)"} provided @{text "\<eta> \<kappa>\<^isub>2 = (\<alpha>\<^isub>1\<dots>\<alpha>\<^isub>p)\<kappa>\<^isub>1 \<and> \<exists>s. s(\<sigma>s\<kappa>\<^isub>1)=\<rho>s\<kappa>\<^isub>1 \<and> s(\<tau>s\<kappa>\<^isub>2)=\<nu>s\<kappa>\<^isub>2"} |
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
322 |
\item @{text "REP((\<sigma>\<^isub>1,\<dots>,\<sigma>\<^isub>n))\<kappa>\<^isub>1, (\<tau>\<^isub>1,\<dots>,\<tau>\<^isub>m))\<kappa>\<^isub>2)"} = @{text "(map \<kappa>\<^isub>1) (REP(\<rho>\<^isub>1,\<nu>\<^isub>1) \<dots> (REP(\<rho>\<^isub>p,\<nu>\<^isub>p) \<circ> Rep_\<kappa>\<^isub>2"} provided @{text "\<eta> \<kappa>\<^isub>2 = (\<alpha>\<^isub>1\<dots>\<alpha>\<^isub>p)\<kappa>\<^isub>1 \<and> \<exists>s. s(\<sigma>s\<kappa>\<^isub>1)=\<rho>s\<kappa>\<^isub>1 \<and> s(\<tau>s\<kappa>\<^isub>2)=\<nu>s\<kappa>\<^isub>2"} |
2182 | 323 |
\end{itemize} |
324 |
||
2195
0c1dcdefb515
Functionalized the ABS/REP definition.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2194
diff
changeset
|
325 |
Apart from the last 2 points the definition is same as the one implemented in |
2208 | 326 |
in Homeier's HOL package. Adding composition in last two cases is necessary |
327 |
for compositional quotients. We ilustrate the different behaviour of the |
|
328 |
definition by showing the derived definition of @{term fconcat}: |
|
2182 | 329 |
|
2188 | 330 |
@{thm fconcat_def[no_vars]} |
331 |
||
332 |
The aggregate @{term Abs} function takes a finite set of finite sets |
|
333 |
and applies @{term "map rep_fset"} composed with @{term rep_fset} to |
|
334 |
its input, obtaining a list of lists, passes the result to @{term concat} |
|
335 |
obtaining a list and applies @{term abs_fset} obtaining the composed |
|
336 |
finite set. |
|
337 |
*} |
|
338 |
||
339 |
subsection {* Respectfulness *} |
|
340 |
||
341 |
text {* |
|
342 |
||
343 |
A respectfulness lemma for a constant states that the equivalence |
|
344 |
class returned by this constant depends only on the equivalence |
|
2207 | 345 |
classes of the arguments applied to the constant. To automatically |
346 |
lift a theorem that talks about a raw constant, to a theorem about |
|
347 |
the quotient type a respectfulness theorem is required. |
|
348 |
||
349 |
A respectfulness condition for a constant can be expressed in |
|
350 |
terms of an aggregate relation between the constant and itself, |
|
351 |
for example the respectfullness for @{term "append"} |
|
2188 | 352 |
can be stated as: |
353 |
||
2190 | 354 |
@{thm [display] append_rsp[no_vars]} |
2182 | 355 |
|
2190 | 356 |
\noindent |
2208 | 357 |
Which after unfolding @{term "op \<Longrightarrow>"} is equivalent to: |
2188 | 358 |
|
2190 | 359 |
@{thm [display] append_rsp_unfolded[no_vars]} |
2188 | 360 |
|
2207 | 361 |
An aggregate relation is defined in terms of relation composition, |
362 |
so we define it first: |
|
2188 | 363 |
|
364 |
\begin{definition}[Composition of Relations] |
|
2190 | 365 |
@{abbrev "rel_conj R1 R2"} where @{text OO} is the predicate |
366 |
composition @{thm pred_compI[no_vars]} |
|
2188 | 367 |
\end{definition} |
368 |
||
2207 | 369 |
The aggregate relation for an aggregate raw type and quotient type |
370 |
is defined as: |
|
2188 | 371 |
|
372 |
\begin{itemize} |
|
2207 | 373 |
\item @{text "REL(\<alpha>\<^isub>1, \<alpha>\<^isub>2)"} = @{text "op ="} |
374 |
\item @{text "REL(\<sigma>, \<sigma>)"} = @{text "op ="} |
|
375 |
\item @{text "REL((\<sigma>\<^isub>1,\<dots>,\<sigma>\<^isub>n))\<kappa>, (\<tau>\<^isub>1,\<dots>,\<tau>\<^isub>n))\<kappa>)"} = @{text "(rel \<kappa>) (REL(\<sigma>\<^isub>1,\<tau>\<^isub>1)) \<dots> (REL(\<sigma>\<^isub>n,\<tau>\<^isub>n))"} |
|
376 |
\item @{text "REL((\<sigma>\<^isub>1,\<dots>,\<sigma>\<^isub>n))\<kappa>\<^isub>1, (\<tau>\<^isub>1,\<dots>,\<tau>\<^isub>m))\<kappa>\<^isub>2)"} = @{text "(rel \<kappa>\<^isub>1) (REL(\<rho>\<^isub>1,\<nu>\<^isub>1) \<dots> (REL(\<rho>\<^isub>p,\<nu>\<^isub>p) OOO Eqv_\<kappa>\<^isub>2"} provided @{text "\<eta> \<kappa>\<^isub>2 = (\<alpha>\<^isub>1\<dots>\<alpha>\<^isub>p)\<kappa>\<^isub>1 \<and> \<exists>s. s(\<sigma>s\<kappa>\<^isub>1)=\<rho>s\<kappa>\<^isub>1 \<and> s(\<tau>s\<kappa>\<^isub>2)=\<nu>s\<kappa>\<^isub>2"} |
|
2189 | 377 |
|
2188 | 378 |
\end{itemize} |
379 |
||
2207 | 380 |
Again, the last case is novel, so lets look at the example of |
381 |
respectfullness for @{term concat}. The statement according to |
|
382 |
the definition above is: |
|
2190 | 383 |
|
384 |
@{thm [display] concat_rsp[no_vars]} |
|
2189 | 385 |
|
2190 | 386 |
\noindent |
387 |
By unfolding the definition of relation composition and relation map |
|
388 |
we can see the equivalent statement just using the primitive list |
|
389 |
equivalence relation: |
|
390 |
||
391 |
@{thm [display] concat_rsp_unfolded[of "a" "a'" "b'" "b", no_vars]} |
|
2189 | 392 |
|
2190 | 393 |
The statement reads that, for any lists of lists @{term a} and @{term b} |
394 |
if there exist intermediate lists of lists @{term "a'"} and @{term "b'"} |
|
395 |
such that each element of @{term a} is in the relation with an appropriate |
|
396 |
element of @{term a'}, @{term a'} is in relation with @{term b'} and each |
|
397 |
element of @{term b'} is in relation with the appropriate element of |
|
398 |
@{term b}. |
|
2189 | 399 |
|
400 |
*} |
|
401 |
||
402 |
subsection {* Preservation *} |
|
403 |
||
2190 | 404 |
text {* |
405 |
To be able to lift theorems that talk about constants that are not |
|
406 |
lifted but whose type changes when lifting is performed additionally |
|
407 |
preservation theorems are needed. |
|
2196
74637f186af7
qpaper / a bit about prs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2195
diff
changeset
|
408 |
|
74637f186af7
qpaper / a bit about prs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2195
diff
changeset
|
409 |
To lift theorems that talk about insertion in lists of lifted types |
74637f186af7
qpaper / a bit about prs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2195
diff
changeset
|
410 |
we need to know that for any quotient type with the abstraction and |
74637f186af7
qpaper / a bit about prs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2195
diff
changeset
|
411 |
representation functions @{text "Abs"} and @{text Rep} we have: |
74637f186af7
qpaper / a bit about prs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2195
diff
changeset
|
412 |
|
74637f186af7
qpaper / a bit about prs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2195
diff
changeset
|
413 |
@{thm [display] (concl) cons_prs[no_vars]} |
74637f186af7
qpaper / a bit about prs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2195
diff
changeset
|
414 |
|
74637f186af7
qpaper / a bit about prs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2195
diff
changeset
|
415 |
This is not enough to lift theorems that talk about quotient compositions. |
74637f186af7
qpaper / a bit about prs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2195
diff
changeset
|
416 |
For some constants (for example empty list) it is possible to show a |
74637f186af7
qpaper / a bit about prs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2195
diff
changeset
|
417 |
general compositional theorem, but for @{term "op #"} it is necessary |
74637f186af7
qpaper / a bit about prs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2195
diff
changeset
|
418 |
to show that it respects the particular quotient type: |
74637f186af7
qpaper / a bit about prs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2195
diff
changeset
|
419 |
|
74637f186af7
qpaper / a bit about prs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2195
diff
changeset
|
420 |
@{thm [display] insert_preserve2[no_vars]} |
2190 | 421 |
*} |
422 |
||
2191
8fdfbec54229
qpaper / composition of quotients.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2190
diff
changeset
|
423 |
subsection {* Composition of Quotient theorems *} |
2189 | 424 |
|
2191
8fdfbec54229
qpaper / composition of quotients.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2190
diff
changeset
|
425 |
text {* |
8fdfbec54229
qpaper / composition of quotients.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2190
diff
changeset
|
426 |
Given two quotients, one of which quotients a container, and the |
8fdfbec54229
qpaper / composition of quotients.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2190
diff
changeset
|
427 |
other quotients the type in the container, we can write the |
2193 | 428 |
composition of those quotients. To compose two quotient theorems |
2207 | 429 |
we compose the relations with relation composition as defined above |
430 |
and the abstraction and relation functions are the ones of the sub |
|
431 |
quotients composed with the usual function composition. |
|
432 |
The @{term "Rep"} and @{term "Abs"} functions that we obtain agree |
|
433 |
with the definition of aggregate Abs/Rep functions and the |
|
2193 | 434 |
relation is the same as the one given by aggregate relations. |
435 |
This becomes especially interesting |
|
2191
8fdfbec54229
qpaper / composition of quotients.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2190
diff
changeset
|
436 |
when we compose the quotient with itself, as there is no simple |
8fdfbec54229
qpaper / composition of quotients.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2190
diff
changeset
|
437 |
intermediate step. |
8fdfbec54229
qpaper / composition of quotients.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2190
diff
changeset
|
438 |
|
2193 | 439 |
Lets take again the example of @{term concat}. To be able to lift |
2207 | 440 |
theorems that talk about it we provide the composition quotient |
441 |
theorems, which then lets us perform the lifting procedure in an |
|
442 |
unchanged way: |
|
2188 | 443 |
|
2190 | 444 |
@{thm [display] quotient_compose_list[no_vars]} |
2192 | 445 |
*} |
446 |
||
2191
8fdfbec54229
qpaper / composition of quotients.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2190
diff
changeset
|
447 |
|
8fdfbec54229
qpaper / composition of quotients.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2190
diff
changeset
|
448 |
section {* Lifting Theorems *} |
1978 | 449 |
|
2194
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
450 |
text {* |
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
451 |
The core of the quotient package takes an original theorem that |
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
452 |
talks about the raw types, and the statement of the theorem that |
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
453 |
it is supposed to produce. This is different from other existing |
2207 | 454 |
quotient packages, where only the raw theorems were necessary. |
2194
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
455 |
We notice that in some cases only some occurrences of the raw |
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
456 |
types need to be lifted. This is for example the case in the |
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
457 |
new Nominal package, where a raw datatype that talks about |
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
458 |
pairs of natural numbers or strings (being lists of characters) |
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
459 |
should not be changed to a quotient datatype with constructors |
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
460 |
taking integers or finite sets of characters. To simplify the |
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
461 |
use of the quotient package we additionally provide an automated |
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
462 |
statement translation mechanism that replaces occurrences of |
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
463 |
types that match given quotients by appropriate lifted types. |
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
464 |
|
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
465 |
Lifting the theorems is performed in three steps. In the following |
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
466 |
we call these steps \emph{regularization}, \emph{injection} and |
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
467 |
\emph{cleaning} following the names used in Homeier's HOL |
2197 | 468 |
implementation. |
2193 | 469 |
|
2197 | 470 |
We first define the statement of the regularized theorem based |
471 |
on the original theorem and the goal theorem. Then we define |
|
472 |
the statement of the injected theorem, based on the regularized |
|
2208 | 473 |
theorem and the goal. We then show the 3 proofs, as all three |
2197 | 474 |
can be performed independently from each other. |
2193 | 475 |
|
2194
a52499e125ce
qpaper / lifting introduction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2193
diff
changeset
|
476 |
*} |
1994 | 477 |
|
2197 | 478 |
subsection {* Regularization and Injection statements *} |
1994 | 479 |
|
480 |
text {* |
|
2197 | 481 |
|
2207 | 482 |
We first define the function @{text REG}, which takes the statements |
483 |
of the raw theorem and the lifted theorem (both as terms) and |
|
484 |
returns the statement of the regularized version. The intuition |
|
485 |
behind this function is that it replaces quantifiers and |
|
486 |
abstractions involving raw types by bounded ones, and equalities |
|
487 |
involving raw types are replaced by appropriate aggregate |
|
488 |
relations. It is defined as follows: |
|
1994 | 489 |
|
2197 | 490 |
\begin{itemize} |
2198
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
491 |
\item @{text "REG (\<lambda>x : \<sigma>. t, \<lambda>x : \<sigma>. s) = \<lambda>x : \<sigma>. REG (t, s)"} |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
492 |
\item @{text "REG (\<lambda>x : \<sigma>. t, \<lambda>x : \<tau>. s) = \<lambda>x : \<sigma> \<in> Res (REL (\<sigma>, \<tau>)). REG (t, s)"} |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
493 |
\item @{text "REG (\<forall>x : \<sigma>. t, \<forall>x : \<sigma>. s) = \<forall>x : \<sigma>. REG (t, s)"} |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
494 |
\item @{text "REG (\<forall>x : \<sigma>. t, \<forall>x : \<tau>. s) = \<forall>x : \<sigma> \<in> Res (REL (\<sigma>, \<tau>)). REG (t, s)"} |
2197 | 495 |
\item @{text "REG ((op =) : \<sigma>, (op =) : \<sigma>) = (op =) : \<sigma>"} |
496 |
\item @{text "REG ((op =) : \<sigma>, (op =) : \<tau>) = REL (\<sigma>, \<tau>) : \<sigma>"} |
|
497 |
\item @{text "REG (t\<^isub>1 t\<^isub>2, s\<^isub>1 s\<^isub>2) = REG (t\<^isub>1, s\<^isub>1) REG (t\<^isub>2, s\<^isub>2)"} |
|
2198
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
498 |
\item @{text "REG (v\<^isub>1, v\<^isub>2) = v\<^isub>1"} |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
499 |
\item @{text "REG (c\<^isub>1, c\<^isub>2) = c\<^isub>1"} |
2197 | 500 |
\end{itemize} |
1994 | 501 |
|
2207 | 502 |
In the above definition we ommited the cases for existential quantifiers |
503 |
and unique existential quantifiers, as they are very similar to the cases |
|
504 |
for the universal quantifier. |
|
2197 | 505 |
|
2207 | 506 |
Next we define the function @{text INJ} which takes the statement of |
507 |
the regularized theorems and the statement of the lifted theorem both as |
|
508 |
terms and returns the statment of the injected theorem: |
|
2198
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
509 |
|
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
510 |
\begin{itemize} |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
511 |
\item @{text "INJ ((\<lambda>x. t) : \<sigma>, (\<lambda>x. s) : \<sigma>) = \<lambda>x. (INJ (t, s)"} |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
512 |
\item @{text "INJ ((\<lambda>x. t) : \<sigma>, (\<lambda>x. s) : \<tau>) = REP(\<sigma>,\<tau>) (ABS (\<sigma>,\<tau>) (\<lambda>x. (INJ (t, s))))"} |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
513 |
\item @{text "INJ ((\<lambda>x \<in> R. t) : \<sigma>, (\<lambda>x. s) : \<tau>) = REP(\<sigma>,\<tau>) (ABS (\<sigma>,\<tau>) (\<lambda>x \<in> R. (INJ (t, s))))"} |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
514 |
\item @{text "INJ (\<forall> t, \<forall> s) = \<forall> (INJ (t, s)"} |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
515 |
\item @{text "INJ (\<forall> t \<in> R, \<forall> s) = \<forall> (INJ (t, s) \<in> R"} |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
516 |
\item @{text "INJ (t\<^isub>1 t\<^isub>2, s\<^isub>1 s\<^isub>2) = INJ (t\<^isub>1, s\<^isub>1) INJ (t\<^isub>2, s\<^isub>2)"} |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
517 |
\item @{text "INJ (v\<^isub>1 : \<sigma>, v\<^isub>2 : \<sigma>) = v\<^isub>1"} |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
518 |
\item @{text "INJ (v\<^isub>1 : \<sigma>, v\<^isub>2 : \<tau>) = REP(\<sigma>,\<tau>) (ABS (\<sigma>,\<tau>) (v\<^isub>1))"} |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
519 |
\item @{text "INJ (c\<^isub>1 : \<sigma>, c\<^isub>2 : \<sigma>) = c\<^isub>1"} |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
520 |
\item @{text "INJ (c\<^isub>1 : \<sigma>, c\<^isub>2 : \<tau>) = REP(\<sigma>,\<tau>) (ABS (\<sigma>,\<tau>) (c\<^isub>1))"} |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
521 |
\end{itemize} |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
522 |
|
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
523 |
For existential quantifiers and unique existential quantifiers it is |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
524 |
defined similarily to the universal one. |
8fe1a706ade7
qpaper / injection statement
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2197
diff
changeset
|
525 |
|
2197 | 526 |
*} |
527 |
||
2208 | 528 |
subsection {* Proof procedure *} |
529 |
||
530 |
(* In the below the type-guiding 'QuotTrue' assumption is removed; since we |
|
531 |
present in a paper a version with typed-variables it is not necessary *) |
|
2197 | 532 |
|
533 |
text {* |
|
2208 | 534 |
|
535 |
With the above definitions of @{text "REG"} and @{text "INJ"} we can show |
|
536 |
how the proof is performed. The first step is always the application of |
|
537 |
of the following lemma: |
|
538 |
||
539 |
@{term "[|A; A --> B; B = C; C = D|] ==> D"} |
|
540 |
||
541 |
With @{text A} instantiated to the original raw theorem, |
|
542 |
@{text B} instantiated to @{text "REG(A)"}, |
|
543 |
@{text C} instantiated to @{text "INJ(REG(A))"}, |
|
544 |
and @{text D} instantiated to the statement of the lifted theorem. |
|
545 |
The first assumption can be immediately discharged using the original |
|
546 |
theorem and the three left subgoals are exactly the subgoals of regularization, |
|
547 |
injection and cleaning. The three can be proved independently by the |
|
548 |
framework and in case there are non-solved subgoals they can be left |
|
549 |
to the user. |
|
550 |
||
551 |
The injection and cleaning subgoals are always solved if the appropriate |
|
552 |
respectfulness and preservation theorems are given. It is not the case |
|
553 |
with regularization; sometimes a theorem given by the user does not |
|
554 |
imply a regularized version and a stronger one needs to be proved. This |
|
555 |
is outside of the scope of the quotient package, so the user is then left |
|
556 |
with such obligations. As an example lets see the simplest possible |
|
557 |
non-liftable theorem for integers: When we want to prove @{term "0 \<noteq> 1"} |
|
558 |
on integers the fact that @{term "\<not> (0, 0) = (1, 0)"} is not enough. It |
|
559 |
only shows that particular items in the equivalence classes are not equal, |
|
560 |
a more general statement saying that the classes are not equal is necessary. |
|
561 |
*} |
|
562 |
||
563 |
subsection {* Proving Regularization *} |
|
564 |
||
565 |
text {* |
|
1994 | 566 |
|
2209
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
567 |
Isabelle provides a set of \emph{mono} rules, that are used to split implications |
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
568 |
of similar statements into simpler implication subgoals. These are enchanced |
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
569 |
with special quotient theorem in the regularization goal. Below we only show |
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
570 |
the versions for the universal quantifier. For the existential quantifier |
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
571 |
and abstraction they are analoguous with some symmetry. |
2199
6ce64fb5cbd9
qpaper / lemmas used in proofs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2198
diff
changeset
|
572 |
|
2209
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
573 |
First, bounded universal quantifiers can be removed on the right: |
2199
6ce64fb5cbd9
qpaper / lemmas used in proofs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2198
diff
changeset
|
574 |
|
6ce64fb5cbd9
qpaper / lemmas used in proofs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2198
diff
changeset
|
575 |
@{thm [display] ball_reg_right[no_vars]} |
2206 | 576 |
|
2209
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
577 |
They can be removed anywhere if the relation is an equivalence relation: |
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
578 |
|
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
579 |
@{thm [display] ball_reg_eqv[no_vars]} |
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
580 |
|
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
581 |
And finally it can be removed anywhere if @{term R2} is an equivalence relation, then: |
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
582 |
\[ |
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
583 |
@{thm (rhs) ball_reg_eqv_range[no_vars]} = @{thm (lhs) ball_reg_eqv_range[no_vars]} |
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
584 |
\] |
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
585 |
|
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
586 |
The last theorem is new in comparison with Homeier's package; it allows separating |
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
587 |
regularization from injection. |
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
588 |
|
2206 | 589 |
*} |
590 |
||
591 |
(* |
|
2209
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
592 |
@{thm (rhs) bex_reg_eqv_range[no_vars]} = @{thm (lhs) bex_reg_eqv_range[no_vars]} |
2199
6ce64fb5cbd9
qpaper / lemmas used in proofs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2198
diff
changeset
|
593 |
@{thm [display] bex_reg_left[no_vars]} |
6ce64fb5cbd9
qpaper / lemmas used in proofs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2198
diff
changeset
|
594 |
@{thm [display] bex1_bexeq_reg[no_vars]} |
2206 | 595 |
@{thm [display] bex_reg_eqv[no_vars]} |
2209
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
596 |
@{thm [display] babs_reg_eqv[no_vars]} |
5952b0f28261
Qpaper/regularization proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2208
diff
changeset
|
597 |
@{thm [display] babs_simp[no_vars]} |
2206 | 598 |
*) |
1994 | 599 |
|
600 |
subsection {* Injection *} |
|
601 |
||
2199
6ce64fb5cbd9
qpaper / lemmas used in proofs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2198
diff
changeset
|
602 |
text {* |
2211
9d0673c319d1
qpaper / injection proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2210
diff
changeset
|
603 |
The injection proof starts with an equality between the regularized theorem |
9d0673c319d1
qpaper / injection proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2210
diff
changeset
|
604 |
and the injected version. The proof again follows by the structure of the |
9d0673c319d1
qpaper / injection proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2210
diff
changeset
|
605 |
two term, and is defined for a goal being a relation between the two terms. |
2199
6ce64fb5cbd9
qpaper / lemmas used in proofs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2198
diff
changeset
|
606 |
|
2211
9d0673c319d1
qpaper / injection proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2210
diff
changeset
|
607 |
\begin{itemize} |
9d0673c319d1
qpaper / injection proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2210
diff
changeset
|
608 |
\item For two constants, an appropriate constant respectfullness assumption is used. |
9d0673c319d1
qpaper / injection proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2210
diff
changeset
|
609 |
\item For two variables, the regularization assumptions state that they are related. |
9d0673c319d1
qpaper / injection proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2210
diff
changeset
|
610 |
\item For two abstractions, they are eta-expanded and beta-reduced. |
9d0673c319d1
qpaper / injection proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2210
diff
changeset
|
611 |
\end{itemize} |
2199
6ce64fb5cbd9
qpaper / lemmas used in proofs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2198
diff
changeset
|
612 |
|
2211
9d0673c319d1
qpaper / injection proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2210
diff
changeset
|
613 |
Otherwise the two terms are applications. There are two cases: If there is a REP/ABS |
9d0673c319d1
qpaper / injection proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2210
diff
changeset
|
614 |
in the injected theorem we can use the theorem: |
9d0673c319d1
qpaper / injection proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2210
diff
changeset
|
615 |
|
2199
6ce64fb5cbd9
qpaper / lemmas used in proofs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2198
diff
changeset
|
616 |
@{thm [display] rep_abs_rsp[no_vars]} |
6ce64fb5cbd9
qpaper / lemmas used in proofs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2198
diff
changeset
|
617 |
|
2211
9d0673c319d1
qpaper / injection proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2210
diff
changeset
|
618 |
and continue the proof. |
2199
6ce64fb5cbd9
qpaper / lemmas used in proofs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2198
diff
changeset
|
619 |
|
2211
9d0673c319d1
qpaper / injection proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2210
diff
changeset
|
620 |
Otherwise we introduce an appropriate relation between the subterms and continue with |
9d0673c319d1
qpaper / injection proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2210
diff
changeset
|
621 |
two subgoals using the lemma: |
9d0673c319d1
qpaper / injection proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2210
diff
changeset
|
622 |
|
9d0673c319d1
qpaper / injection proof.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2210
diff
changeset
|
623 |
@{thm [display] apply_rsp[no_vars]} |
2199
6ce64fb5cbd9
qpaper / lemmas used in proofs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2198
diff
changeset
|
624 |
|
6ce64fb5cbd9
qpaper / lemmas used in proofs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2198
diff
changeset
|
625 |
*} |
6ce64fb5cbd9
qpaper / lemmas used in proofs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2198
diff
changeset
|
626 |
|
1994 | 627 |
subsection {* Cleaning *} |
628 |
||
2212
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
629 |
text {* |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
630 |
The @{text REG} and @{text INJ} functions have been defined in such a way |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
631 |
that establishing the goal theorem now consists only on rewriting the |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
632 |
injected theorem with the preservation theorems. |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
633 |
|
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
634 |
\begin{itemize} |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
635 |
\item First for lifted constants, their definitions are the preservation rules for |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
636 |
them. |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
637 |
\item For lambda abstractions lambda preservation establishes |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
638 |
the equality between the injected theorem and the goal. This allows both |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
639 |
abstraction and quantification over lifted types. |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
640 |
@{thm [display] lambda_prs[no_vars]} |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
641 |
\item Relations over lifted types are folded with: |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
642 |
@{thm [display] Quotient_rel_rep[no_vars]} |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
643 |
\item User given preservation theorems, that allow using higher level operations |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
644 |
and containers of types being lifted. An example may be |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
645 |
@{thm [display] map_prs(1)[no_vars]} |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
646 |
\end{itemize} |
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
647 |
|
79cebcc230d6
Qpaper / minor on cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2211
diff
changeset
|
648 |
Preservation of relations and user given constant preservation lemmas *} |
1994 | 649 |
|
650 |
section {* Examples *} |
|
651 |
||
2210
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
652 |
(* Mention why equivalence *) |
2206 | 653 |
|
2210
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
654 |
text {* |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
655 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
656 |
A user of our quotient package first needs to define an equivalence relation: |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
657 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
658 |
@{text "fun \<approx> where (x, y) \<approx> (u, v) = (x + v = u + y)"} |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
659 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
660 |
Then the user defines a quotient type: |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
661 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
662 |
@{text "quotient_type int = (nat \<times> nat) / \<approx>"} |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
663 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
664 |
Which leaves a proof obligation that the relation is an equivalence relation, |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
665 |
that can be solved with the automatic tactic with two definitions. |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
666 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
667 |
The user can then specify the constants on the quotient type: |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
668 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
669 |
@{text "quotient_definition 0 \<Colon> int is (0\<Colon>nat, 0\<Colon>nat)"} |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
670 |
@{text "fun plus_raw where plus_raw (x, y) (u, v) = (x + u, y + v)"} |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
671 |
@{text "quotient_definition (op +) \<Colon> (int \<Rightarrow> int \<Rightarrow> int) is plus_raw"} |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
672 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
673 |
Lets first take a simple theorem about addition on the raw level: |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
674 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
675 |
@{text "lemma plus_zero_raw: plus_raw (0, 0) i \<approx> i"} |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
676 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
677 |
When the user tries to lift a theorem about integer addition, the respectfulness |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
678 |
proof obligation is left, so let us prove it first: |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
679 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
680 |
@{text "lemma (op \<approx> \<Longrightarrow> op \<approx> \<Longrightarrow> op \<approx>) plus_raw plus_raw"} |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
681 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
682 |
Can be proved automatically by the system just by unfolding the definition |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
683 |
of @{term "op \<Longrightarrow>"}. |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
684 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
685 |
Now the user can either prove a lifted lemma explicitely: |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
686 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
687 |
@{text "lemma 0 + i = i by lifting plus_zero_raw"} |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
688 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
689 |
Or in this simple case use the automated translation mechanism: |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
690 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
691 |
@{text "thm plus_zero_raw[quot_lifted]"} |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
692 |
|
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
693 |
obtaining the same result. |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
694 |
*} |
2206 | 695 |
|
1978 | 696 |
section {* Related Work *} |
697 |
||
698 |
text {* |
|
699 |
\begin{itemize} |
|
700 |
||
2152
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
701 |
\item Peter Homeier's package~\cite{Homeier05} (and related work from there) |
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
702 |
\item John Harrison's one~\cite{harrison-thesis} is the first one to lift theorems |
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
703 |
but only first order. |
1978 | 704 |
|
2152
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
705 |
\item PVS~\cite{PVS:Interpretations} |
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
706 |
\item MetaPRL~\cite{Nogin02} |
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
707 |
\item Manually defined quotients in Isabelle/HOL Library (Markus's Quotient\_Type, |
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
708 |
Dixon's FSet, \ldots) |
1978 | 709 |
|
710 |
\item Oscar Slotosch defines quotient-type automatically but no |
|
2152
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
711 |
lifting~\cite{Slotosch97}. |
1978 | 712 |
|
713 |
\item PER. And how to avoid it. |
|
714 |
||
2152
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
715 |
\item Necessity of Hilbert Choice op and Larry's quotients~\cite{Paulson06} |
1978 | 716 |
|
2152
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
717 |
\item Setoids in Coq and \cite{ChicliPS02} |
1978 | 718 |
|
719 |
\end{itemize} |
|
720 |
*} |
|
1975
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
721 |
|
2210
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
722 |
section {* Conclusion *} |
6aaec9dd0c62
qpaper / example interaction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2209
diff
changeset
|
723 |
|
1975
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
724 |
(*<*) |
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
725 |
end |
1978 | 726 |
(*>*) |