src/LCF/ex/Ex1.thy
author obua
Sun, 09 May 2004 23:04:36 +0200
changeset 14722 8e739a6eaf11
parent 4905 be73ddff6c5a
child 17248 81bf91654e73
permissions -rw-r--r--
replaced apply-style proof for instance Multiset :: plus_ac0 by recommended Isar proof style


(***  Section 10.4  ***)

Ex1 = LCF +

consts
  P	:: "'a => tr"
  G	:: "'a => 'a"
  H	:: "'a => 'a"
  K	:: "('a => 'a) => ('a => 'a)"

rules
  P_strict	"P(UU) = UU"
  K		"K = (%h x. P(x) => x | h(h(G(x))))"
  H		"H = FIX(K)"

end