5790
|
1 |
<html>
|
|
2 |
|
|
3 |
<head>
|
|
4 |
<title>Isabelle</title>
|
|
5 |
|
|
6 |
<body>
|
|
7 |
|
|
8 |
<h1>Isabelle </h1> <a href="http://www.in.tum.de/~isabelle/logo/"><img
|
|
9 |
src="isabelle.gif" width=100 align=right alt="[Isabelle logo]"></a>
|
|
10 |
|
|
11 |
<p>
|
|
12 |
|
|
13 |
<strong>Isabelle</strong> is a popular generic theorem proving
|
|
14 |
environment developed at Cambridge University (<a
|
|
15 |
href="http://www.cl.cam.ac.uk/users/lcp/">Larry Paulson</a>) and TU
|
|
16 |
Munich (<a href="http://www.in.tum.de/~nipkow/">Tobias Nipkow</a>).
|
|
17 |
The latest version is <strong>Isabelle98-1</strong>. It is available
|
|
18 |
from several <a href="dist/">mirror sites</a>.
|
|
19 |
|
|
20 |
<p>
|
|
21 |
|
|
22 |
Isabelle can be viewed from two main perspectives. On the one hand it
|
|
23 |
may serve as a generic framework for rapid prototyping of deductive
|
5791
|
24 |
systems. On the other hand, major object logics like
|
|
25 |
<strong>Isabelle/HOL</strong> provide a theorem proving environment
|
5790
|
26 |
ready to use for sizable applications.
|
|
27 |
|
|
28 |
|
|
29 |
<h2>Object logics</h2>
|
|
30 |
|
5791
|
31 |
The Isabelle distribution includes a large body of object logics and
|
5790
|
32 |
other examples (see the <a
|
|
33 |
href="http://www.in.tum.de/~isabelle/library/">Isabelle theory
|
5791
|
34 |
library</a>).
|
5790
|
35 |
|
|
36 |
<dl>
|
|
37 |
|
|
38 |
<dt><a
|
|
39 |
href="http://www.in.tum.de/~isabelle/library/HOL/"><strong>Isabelle/HOL</strong></a><dd>
|
|
40 |
is a version of classical higher-order logic, similar to Gordon's HOL
|
|
41 |
(it is related to Church's Simple Theory of Types).
|
|
42 |
|
|
43 |
<dt><a
|
|
44 |
href="http://www.in.tum.de/~isabelle/library/HOLCF/"><strong>Isabelle/HOLCF</strong></a><dd>
|
|
45 |
adds a considerably amount of Scott's domain theory to HOL.
|
|
46 |
|
|
47 |
<dt><a
|
|
48 |
href="http://www.in.tum.de/~isabelle/library/FOL/"><strong>Isabelle/FOL</strong></a><dd>
|
|
49 |
provides basic classical and intuitionistic first-order (polymorphic)
|
|
50 |
logic.
|
|
51 |
|
|
52 |
<dt><a
|
|
53 |
href="http://www.in.tum.de/~isabelle/library/ZF/"><strong>Isabelle/ZF</strong></a><dd>
|
|
54 |
offers a formulation of Zermelo-Fraenkel set theory on top of FOL.
|
|
55 |
|
|
56 |
</dl>
|
|
57 |
|
|
58 |
<p>
|
|
59 |
|
|
60 |
Isabelle/HOL is currently the best developed object logic, including
|
|
61 |
an extensive library of (concrete) mathematics, and various packages
|
|
62 |
for advanced definitional concepts (like (co-)inductive sets and
|
|
63 |
types, well-founded recursion etc.). The distribution also includes
|
|
64 |
some large applications, for example correctness proofs of
|
|
65 |
cryptographic protocols (<a
|
|
66 |
href="http://www.in.tum.de/~isabelle/library/HOL/Auth/">HOL/Auth</a>).
|
|
67 |
|
|
68 |
<p>
|
|
69 |
|
|
70 |
Isabelle/ZF provides another starting point for applications, with a
|
|
71 |
slightly less developed library, though. Its definitional packages
|
|
72 |
are similar to those of Isabelle/HOL. Untyped ZF provides more
|
|
73 |
advanced constructions for sets than simply typed HOL.
|
|
74 |
|
|
75 |
<p>
|
|
76 |
|
|
77 |
There are also a few minor object logics that may serve as further
|
|
78 |
examples: <a
|
|
79 |
href="http://www.in.tum.de/~isabelle/library/CTT/">CTT</a> is an
|
|
80 |
extensional version of Martin-Löf's Type Theory, <a
|
|
81 |
href="http://www.in.tum.de/~isabelle/library/Cube/">Cube</a> is
|
|
82 |
Barendregt's Lambda Cube. There are also some sequent calculus
|
|
83 |
examples under <a
|
|
84 |
href="http://www.in.tum.de/~isabelle/library/Sequents/">Sequents</a>,
|
|
85 |
including modal or linear logics. There are a few more examples,
|
|
86 |
again see the <a
|
|
87 |
href="http://www.in.tum.de/~isabelle/library/">Isabelle theory
|
|
88 |
library</a>.
|
|
89 |
|
|
90 |
|
|
91 |
<h2>Defining Logics</h2>
|
|
92 |
|
|
93 |
Logics are not hard-wired into Isabelle, but formulated within
|
|
94 |
Isabelle's meta logic: <strong>Isabelle/Pure</strong>. There are
|
5791
|
95 |
quite a lot of syntactic and deductive tools available in generic
|
|
96 |
Isabelle. Thus defining new logics or extending existing ones
|
|
97 |
basically works as follows:
|
5790
|
98 |
|
|
99 |
<ol>
|
|
100 |
|
|
101 |
<li> declare concrete syntax (via mixfix grammar and syntax macros),
|
|
102 |
|
|
103 |
<li> declare abstract syntax (as higher-order constants),
|
|
104 |
|
|
105 |
<li> declare inference rules (as meta-logical propositions),
|
|
106 |
|
|
107 |
<li> instantiate generic proof tools (simplifier, classical tableau
|
|
108 |
prover etc.),
|
|
109 |
|
|
110 |
<li> manually code special proof procedures (via tacticals or hand
|
|
111 |
written ML).
|
|
112 |
|
|
113 |
</ol>
|
|
114 |
|
5791
|
115 |
The first 3 steps above are fully declarative and involve no ML
|
|
116 |
programming at all. Thus one already gets a decent deductive
|
|
117 |
environment based on primitive inferences (by employing the built-in
|
|
118 |
mechanisms of Isabelle/Pure, in particular higher-order unification
|
|
119 |
and resolution).
|
5790
|
120 |
|
|
121 |
For sizable applications some degree of automated reasoning is
|
|
122 |
essential. Instantiating existing tools like the classical tableau
|
5791
|
123 |
prover involves only minimal ML-based setup. One may also write
|
5790
|
124 |
arbitrary proof procedures or even theory extension packages in ML,
|
|
125 |
without breaching system soundness (Isabelle follows the well-known
|
5791
|
126 |
"LCF system approach" to achieve a secure system).
|
5790
|
127 |
|
|
128 |
|
|
129 |
<h2>Further information</h2>
|
|
130 |
|
|
131 |
<a href="http://www.cl.cam.ac.uk/Research/HVG/isabelle.html"><img
|
|
132 |
src="cambridge.gif" width=144 align=right alt="[Cambridge]"></a> <a
|
|
133 |
href="http://www.in.tum.de/~isabelle/"><img src="munich.gif" width=47
|
|
134 |
align=right alt="[Munich]"></a> The local Isabelle pages at <a
|
|
135 |
href="http://www.cl.cam.ac.uk/Research/HVG/isabelle.html">Cambridge</a>
|
|
136 |
and <a href="http://www.in.tum.de/~isabelle/">Munich</a> provide
|
|
137 |
further information on Isabelle and related projects.
|
|
138 |
|
|
139 |
</html>
|