doc-src/ZF/logics-ZF.tex
author wenzelm
Mon, 02 May 2011 22:31:46 +0200
changeset 43508 381fdcab0f36
parent 43493 61a99eb5eb9d
permissions -rw-r--r--
eliminated old CVS Ids;
paulson@8248
     1
\documentclass[11pt,a4paper]{report}
wenzelm@43382
     2
\usepackage{../../lib/texinputs/isabelle,../../lib/texinputs/isabellesym}
wenzelm@43493
     3
\usepackage{graphicx,logics,../ttbox,../proof,latexsym}
paulson@6121
     4
paulson@14154
     5
\usepackage{../pdfsetup}   
paulson@14154
     6
%last package!
paulson@14154
     7
paulson@14154
     8
\remarkstrue 
paulson@14154
     9
paulson@14154
    10
%%% to index derived rls: ^\([a-zA-Z0-9][a-zA-Z0-9_]*\)        \\tdx{\1}  
paulson@6121
    11
%%% to index rulenames:   ^ *(\([a-zA-Z0-9][a-zA-Z0-9_]*\),     \\tdx{\1}  
paulson@6121
    12
%%% to index constants:   \\tt \([a-zA-Z0-9][a-zA-Z0-9_]*\)     \\cdx{\1}  
paulson@6121
    13
%%% to deverbify:         \\verb|\([^|]*\)|     \\ttindex{\1}  
paulson@6121
    14
wenzelm@6579
    15
\title{\includegraphics[scale=0.5]{isabelle_zf} \\[4ex] 
paulson@6121
    16
       Isabelle's Logics: FOL and ZF}
paulson@6121
    17
paulson@6121
    18
\author{{\em Lawrence C. Paulson}\\
paulson@6121
    19
        Computer Laboratory \\ University of Cambridge \\
paulson@6121
    20
        \texttt{lcp@cl.cam.ac.uk}\\[3ex] 
paulson@14154
    21
        With Contributions by Tobias Nipkow and Markus Wenzel}
paulson@6121
    22
paulson@6121
    23
\newcommand\subcaption[1]{\par {\centering\normalsize\sc#1\par}\bigskip
paulson@6121
    24
  \hrule\bigskip}
paulson@6121
    25
\newenvironment{constants}{\begin{center}\small\begin{tabular}{rrrr}}{\end{tabular}\end{center}}
paulson@6121
    26
paulson@14154
    27
\let\ts=\thinspace
paulson@14154
    28
paulson@6121
    29
\makeindex
paulson@6121
    30
paulson@6121
    31
\underscoreoff
paulson@6121
    32
paulson@6121
    33
\setcounter{secnumdepth}{2} \setcounter{tocdepth}{2}  %% {secnumdepth}{2}???
paulson@6121
    34
paulson@6121
    35
\pagestyle{headings}
paulson@6121
    36
\sloppy
paulson@6121
    37
\binperiod     %%%treat . like a binary operator
paulson@6121
    38
paulson@6121
    39
\begin{document}
paulson@6121
    40
\maketitle 
paulson@6121
    41
paulson@6121
    42
\begin{abstract}
paulson@6121
    43
This manual describes Isabelle's formalizations of many-sorted first-order
paulson@6121
    44
logic (\texttt{FOL}) and Zermelo-Fraenkel set theory (\texttt{ZF}).  See the
paulson@6121
    45
\emph{Reference Manual} for general Isabelle commands, and \emph{Introduction
paulson@6121
    46
  to Isabelle} for an overall tutorial.
paulson@14154
    47
paulson@14154
    48
This manual is part of the earlier Isabelle documentation, 
paulson@14154
    49
which is somewhat superseded by the Isabelle/HOL
paulson@14154
    50
\emph{Tutorial}~\cite{isa-tutorial}. However, the present document is the
paulson@14154
    51
only available documentation for Isabelle's versions of first-order logic
paulson@14154
    52
and set theory. Much of it is concerned with 
paulson@14154
    53
the primitives for conducting proofs 
paulson@14154
    54
using the ML top level.  It has been rewritten to use the Isar proof
paulson@14154
    55
language, but evidence of the old \ML{} orientation remains.
paulson@6121
    56
\end{abstract}
paulson@6121
    57
paulson@14154
    58
paulson@14154
    59
\subsubsection*{Acknowledgements} 
paulson@14154
    60
Markus Wenzel made numerous improvements.
paulson@14154
    61
    Philippe de Groote contributed to~ZF.  Philippe No\"el and
paulson@14154
    62
    Martin Coen made many contributions to~ZF.  The research has 
paulson@14154
    63
    been funded by the EPSRC (grants GR/G53279, GR/H40570, GR/K57381,
paulson@14154
    64
    GR/K77051, GR/M75440) and by ESPRIT (projects 3245:
paulson@14154
    65
    Logical Frameworks, and 6453: Types) and by the DFG Schwerpunktprogramm
paulson@14154
    66
    \emph{Deduktion}.
paulson@14154
    67
    
paulson@14154
    68
\pagenumbering{roman} \tableofcontents \cleardoublepage
paulson@14154
    69
\pagenumbering{arabic} 
paulson@14154
    70
\setcounter{page}{1} 
wenzelm@6623
    71
\input{../Logics/syntax}
paulson@6121
    72
\include{FOL}
paulson@6121
    73
\include{ZF}
paulson@6121
    74
\bibliographystyle{plain}
paulson@6592
    75
\bibliography{../manual}
wenzelm@8828
    76
\printindex
paulson@6121
    77
\end{document}