src/ZF/Fixedpt.thy
author lcp
Thu, 08 Dec 1994 14:18:31 +0100
changeset 768 59c0a821e468
parent 753 ec86863e87c8
child 1401 0c439768f45c
permissions -rw-r--r--
UN_upper_cardinal: updated to refer to Card_le_imp_lepoll and lepoll_imp_Card_le

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

Least and greatest fixed points
*)

Fixedpt = ZF + "domrange" +
consts
  bnd_mono    :: "[i,i=>i]=>o"
  lfp, gfp    :: "[i,i=>i]=>i"

defs
  (*monotone operator from Pow(D) to itself*)
  bnd_mono_def 
      "bnd_mono(D,h) == h(D)<=D & (ALL W X. W<=X --> X<=D --> h(W) <= h(X))"

  lfp_def     "lfp(D,h) == Inter({X: Pow(D). h(X) <= X})"

  gfp_def     "gfp(D,h) == Union({X: Pow(D). X <= h(X)})"

end