src/ZF/Integ/EquivClass.thy
author wenzelm
Mon, 28 Aug 2000 14:09:33 +0200
changeset 9697 c5fc121c2067
parent 9333 5cacc383157a
child 13239 f599984ec4c2
permissions -rw-r--r--
restart_loader: reset_path;

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

Equivalence relations in Zermelo-Fraenkel Set Theory 
*)

EquivClass = Rel + Perm + 

constdefs

  quotient    :: [i,i]=>i    (infixl "'/'/" 90)  (*set of equiv classes*)
      "A//r == {r``{x} . x:A}"

  congruent   :: [i,i=>i]=>o
      "congruent(r,b) == ALL y z. <y,z>:r --> b(y)=b(z)"

  congruent2  :: [i,[i,i]=>i]=>o
      "congruent2(r,b) == ALL y1 z1 y2 z2. 
           <y1,z1>:r --> <y2,z2>:r --> b(y1,y2) = b(z1,z2)"

end