src/ZF/Sum.thy
author clasohm
Tue, 16 Nov 1993 14:24:21 +0100
changeset 124 858ab9a9b047
parent 0 a5a9c433f639
child 753 ec86863e87c8
permissions -rw-r--r--
made pseudo theories for all ML files; documented dependencies between all thy and ML files

(*  Title: 	ZF/sum.thy
    ID:         $Id$
    Author: 	Lawrence C Paulson, Cambridge University Computer Laboratory
    Copyright   1993  University of Cambridge

Disjoint sums in Zermelo-Fraenkel Set Theory 
"Part" primitive for simultaneous recursive type definitions
*)

Sum = Bool + "simpdata" +
consts
    "+"    	:: "[i,i]=>i"      		(infixr 65)
    Inl,Inr     :: "i=>i"
    case        :: "[i=>i, i=>i, i]=>i"
    Part        :: "[i,i=>i] => i"

rules
    sum_def     "A+B == {0}*A Un {1}*B"
    Inl_def     "Inl(a) == <0,a>"
    Inr_def     "Inr(b) == <1,b>"
    case_def    "case(c,d) == split(%y z. cond(y, d(z), c(z)))"

  (*operator for selecting out the various summands*)
    Part_def	"Part(A,h) == {x: A. EX z. x = h(z)}"
end