src/ZF/README
author clasohm
Thu, 23 Mar 1995 15:39:13 +0100
changeset 971 f4815812665b
parent 958 f2c225386348
child 1062 c79fb313bf89
permissions -rw-r--r--
fixed bug: parent theory wasn't loaded if .thy file was completly read before (regardless of the .ML file)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     1
		ZF: Zermelo-Fraenkel Set Theory
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     3
This directory contains the Standard ML sources of the Isabelle system for
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     4
ZF Set Theory.  It is loaded upon FOL, not Pure Isabelle.  Important files
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
include
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
958
f2c225386348 Now mentions Coind
lcp
parents: 488
diff changeset
     7
Makefile -- compiles the files under Poly/ML or SML of New Jersey.  Can also
f2c225386348 Now mentions Coind
lcp
parents: 488
diff changeset
     8
run all the tests described below.
f2c225386348 Now mentions Coind
lcp
parents: 488
diff changeset
     9
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    10
ROOT.ML -- loads all source files.  Enter an ML image containing FOL and
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    11
type: use "ROOT.ML";
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    12
958
f2c225386348 Now mentions Coind
lcp
parents: 488
diff changeset
    13
Coind -- subdirectory containing a large example of proof by co-induction,
f2c225386348 Now mentions Coind
lcp
parents: 488
diff changeset
    14
originally due to Robin Milner and Mads Tofte.  To execute, enter an ML image
f2c225386348 Now mentions Coind
lcp
parents: 488
diff changeset
    15
containing ZF and type:   use "Coind/ROOT.ML";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    16
488
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    17
IMP -- subdirectory containing a semantics equivalence proof between
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    18
operational and denotational definitions of a simple programming language.
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    19
To execute, enter an ML image containing ZF and type:   use "IMP/ROOT.ML";
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    20
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    21
ex -- subdirectory containing examples.  To execute them, enter an ML image
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    22
containing ZF and type:    use "ex/ROOT.ML";
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    23
488
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    24
Isabelle/ZF formalizes the greater part of elementary set theory, including
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    25
relations, functions, injections, surjections, ordinals and cardinals.
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    26
Results proved include Cantor's Theorem, the Recursion Theorem, the
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    27
Schroeder-Bernstein Theorem, and (assuming AC) the Wellordering Theorem.
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    28
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    29
Isabelle/ZF also provides theories of lists, trees, etc., for formalizing
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    30
computational notions.  It supports inductive definitions of
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    31
infinite-branching trees for any cardinality of branching.
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    32
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    33
Useful references for Isabelle/ZF:
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    34
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    35
	Lawrence C. Paulson,
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    36
	Set theory for verification: I. From foundations to functions.
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    37
	J. Automated Reasoning 11 (1993), 353-389.
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    38
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    39
	Lawrence C. Paulson,
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    40
	Set theory for verification: II. Induction and recursion.
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    41
	Report 312, Computer Lab (1993).
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    42
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    43
	Lawrence C. Paulson,
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    44
	A fixedpoint approach to implementing (co)inductive definitions.  
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    45
	In: A. Bundy (editor),
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    46
	CADE-12: 12th International Conference on Automated Deduction,
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    47
	(Springer LNAI 814, 1994), 148-161.
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    48
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    49
Useful references on ZF set theory:
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    50
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    51
	Paul R. Halmos, Naive Set Theory (Van Nostrand, 1960)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    52
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    53
	Patrick Suppes, Axiomatic Set Theory (Dover, 1972)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    54
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    55
	Keith J. Devlin,
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    56
	Fundamentals of Contemporary Set Theory (Springer, 1979)
488
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    57
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    58
	Kenneth Kunen
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    59
	Set Theory: An Introduction to Independence Proofs
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 0
diff changeset
    60
	(North-Holland, 1980)
958
f2c225386348 Now mentions Coind
lcp
parents: 488
diff changeset
    61
f2c225386348 Now mentions Coind
lcp
parents: 488
diff changeset
    62
$Id$