src/HOL/Lfp.thy
author obua
Tue, 23 Nov 2004 15:50:27 +0100
changeset 15314 55eec5c6d401
parent 15140 322485b816ac
child 15386 06757406d8cf
permissions -rw-r--r--
relaxed type constraints of lemmas: setsum_nonneg, setsum_nonpos, setsum_negf, setsum_Un_ring

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

The Knaster-Tarski Theorem
*)

theory Lfp
imports Product_Type
begin

constdefs
  lfp :: "['a set \<Rightarrow> 'a set] \<Rightarrow> 'a set"
  "lfp(f) == Inter({u. f(u) <= u})"    (*least fixed point*)

end