src/LCF/ex/Ex3.thy
author wenzelm
Sat, 14 Jun 2008 23:19:51 +0200
changeset 27208 5fe899199f85
parent 19755 90f80de04c46
child 35762 af3ff2ba4c54
permissions -rw-r--r--
proper context for tactics derived from res_inst_tac;


(* $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))"

declare p_strict [simp] p_s [simp]

lemma example: "p(FIX(s),y) = FIX(s)"
  apply (tactic {* induct_tac @{context} "s" 1 *})
  apply (simp (no_asm))
  apply (simp (no_asm))
  done

end