src/ZF/Ordinal.thy
changeset 435 ca5356bd315a
child 753 ec86863e87c8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/ZF/Ordinal.thy	Tue Jun 21 17:20:34 1994 +0200
@@ -0,0 +1,28 @@
+(*  Title: 	ZF/Ordinal.thy
+    ID:         $Id$
+    Author: 	Lawrence C Paulson, Cambridge University Computer Laboratory
+    Copyright   1994  University of Cambridge
+
+Ordinals in Zermelo-Fraenkel Set Theory 
+*)
+
+Ordinal = WF + "simpdata" + "equalities" +
+consts
+  Memrel      	:: "i=>i"
+  Transset,Ord  :: "i=>o"
+  "<"           :: "[i,i] => o"  (infixl 50) (*less than on ordinals*)
+  "le"          :: "[i,i] => o"  (infixl 50) (*less than or equals*)
+  Limit         :: "i=>o"
+
+translations
+  "x le y"      == "x < succ(y)"
+
+rules
+  Memrel_def  	"Memrel(A)   == {z: A*A . EX x y. z=<x,y> & x:y }"
+  Transset_def	"Transset(i) == ALL x:i. x<=i"
+  Ord_def     	"Ord(i)      == Transset(i) & (ALL x:i. Transset(x))"
+  lt_def        "i<j         == i:j & Ord(j)"
+  Limit_def     "Limit(i)    == Ord(i) & 0<i & (ALL y. y<i --> succ(y)<i)"
+
+
+end