src/LCF/ex/Ex3.thy
author wenzelm
Fri, 25 Nov 2005 21:14:34 +0100
changeset 18260 5597cfcecd49
parent 17248 81bf91654e73
child 19755 90f80de04c46
permissions -rw-r--r--
tuned induct proofs;


(* $Id$ *)

header {* Addition with fixpoint of successor *}

theory Ex3
imports LCF
begin

consts
  s     :: "'a => 'a"
  p     :: "'a => 'a => 'a"

axioms
  p_strict:     "p(UU) = UU"
  p_s:          "p(s(x),y) = s(p(x,y))"

ML {* use_legacy_bindings (the_context ()) *}

end