doc-src/Intro/intro.tex
author wenzelm
Mon, 08 May 2000 11:13:28 +0200
changeset 8828 5be2d1745c61
parent 7827 c9c615d970db
child 8979 802acc97fdaf
permissions -rw-r--r--
improved indexing;

\documentclass[12pt,a4paper]{article}
\usepackage{graphicx,../iman,../extra,../proof,../pdfsetup}

%% $Id$
%% run    bibtex intro         to prepare bibliography
%% run    ../sedindex intro    to prepare index file
%prth *(\(.*\));          \1;      
%{\\out \(.*\)}          {\\out val it = "\1" : thm}

\title{\includegraphics[scale=0.5]{isabelle} \\[4ex] Introduction to Isabelle}   
\author{{\em Lawrence C. Paulson}\\
        Computer Laboratory \\ University of Cambridge \\
        \texttt{lcp@cl.cam.ac.uk}\\[3ex] 
        With Contributions by Tobias Nipkow and Markus Wenzel
}
\makeindex

\underscoreoff

\setcounter{secnumdepth}{2} \setcounter{tocdepth}{2}

\sloppy
\binperiod     %%%treat . like a binary operator

\newcommand\qeq{\stackrel{?}{\equiv}}  %for disagreement pairs in unification
\newcommand{\nand}{\mathbin{\lnot\&}} 
\newcommand{\xor}{\mathbin{\#}}

\pagenumbering{roman} 
\begin{document}
\pagestyle{empty}
\begin{titlepage}
\maketitle 
\thispagestyle{empty}
\vfill
{\small Copyright \copyright{} \number\year{} by Lawrence C. Paulson}
\end{titlepage}

\pagestyle{headings}
\part*{Preface}
\index{Isabelle!overview} \index{Isabelle!object-logics supported}
Isabelle~\cite{paulson-natural,paulson-found,paulson700} is a generic theorem
prover.  It has been instantiated to support reasoning in several
object-logics:
\begin{itemize}
\item first-order logic, constructive and classical versions
\item higher-order logic, similar to that of Gordon's {\sc
hol}~\cite{mgordon-hol}
\item Zermelo-Fraenkel set theory~\cite{suppes72}
\item an extensional version of Martin-L\"of's Type Theory~\cite{nordstrom90}
\item the classical first-order sequent calculus, {\sc lk}
\item the modal logics $T$, $S4$, and $S43$
\item the Logic for Computable Functions~\cite{paulson87}
\end{itemize}
A logic's syntax and inference rules are specified declaratively; this
allows single-step proof construction.  Isabelle provides control
structures for expressing search procedures.  Isabelle also provides
several generic tools, such as simplifiers and classical theorem provers,
which can be applied to object-logics.

\index{ML}
Isabelle is a large system, but beginners can get by with a small
repertoire of commands and a basic knowledge of how Isabelle works.  Some
knowledge of Standard~\ML{} is essential, because \ML{} is Isabelle's user
interface.  Advanced Isabelle theorem proving can involve writing \ML{}
code, possibly with Isabelle's sources at hand.  My book
on~\ML{}~\cite{paulson-ml2} covers much material connected with Isabelle,
including a simple theorem prover.  Users must be familiar with logic as
used in computer science; there are many good
texts~\cite{galton90,reeves90}.

\index{LCF}
{\sc lcf}, developed by Robin Milner and colleagues~\cite{mgordon79}, is an
ancestor of {\sc hol}, Nuprl, and several other systems.  Isabelle borrows
ideas from {\sc lcf}: formulae are~\ML{} values; theorems belong to an
abstract type; tactics and tacticals support backward proof.  But {\sc lcf}
represents object-level rules by functions, while Isabelle represents them
by terms.  You may find my other writings~\cite{paulson87,paulson-handbook}
helpful in understanding the relationship between {\sc lcf} and Isabelle.

\index{Isabelle!release history} Isabelle was first distributed in 1986.
The 1987 version introduced a higher-order meta-logic with an improved
treatment of quantifiers.  The 1988 version added limited polymorphism and
support for natural deduction.  The 1989 version included a parser and
pretty printer generator.  The 1992 version introduced type classes, to
support many-sorted and higher-order logics.  The current version provides
greater support for theories and is much faster.  Isabelle is still under
development and will continue to change.

\subsubsection*{Overview} 
This manual consists of three parts.  Part~I discusses the Isabelle's
foundations.  Part~II, presents simple on-line sessions, starting with
forward proof.  It also covers basic tactics and tacticals, and some
commands for invoking them.  Part~III contains further examples for users
with a bit of experience.  It explains how to derive rules define theories,
and concludes with an extended example: a Prolog interpreter.

Isabelle's Reference Manual and Object-Logics manual contain more details.
They assume familiarity with the concepts presented here.


\subsubsection*{Acknowledgements} 
Tobias Nipkow contributed most of the section on defining theories.
Stefan Berghofer and Sara Kalvala suggested improvements.

Tobias Nipkow has made immense contributions to Isabelle, including the
parser generator, type classes, and the simplifier.  Carsten Clasohm and
Markus Wenzel made major contributions; Sonia Mahjoub and Karin Nimmermann
also helped.  Isabelle was developed using Dave Matthews's Standard~{\sc
  ml} compiler, Poly/{\sc ml}.  Many people have contributed to Isabelle's
standard object-logics, including Martin Coen, Philippe de Groote, Philippe
No\"el.  The research has been funded by the EPSRC (grants
GR/G53279, GR/H40570, GR/K57381, GR/K77051)
and by ESPRIT (projects 3245: Logical Frameworks, and 6453: Types).

\newpage
\pagestyle{plain} \tableofcontents 
\newpage

\newfont{\sanssi}{cmssi12}
\vspace*{2.5cm}
\begin{quote}
\raggedleft
{\sanssi
You can only find truth with logic\\
if you have already found truth without it.}\\
\bigskip

G.K. Chesterton, {\em The Man who was Orthodox}
\end{quote}

\clearfirst  \pagestyle{headings}
\include{foundations}
\include{getting}
\include{advanced}

\bibliographystyle{plain} \small\raggedright\frenchspacing
\bibliography{../manual}

\printindex
\end{document}