src/LCF/ex/Ex3.thy
author wenzelm
Mon, 19 Mar 2012 21:49:52 +0100
changeset 47025 b2b8ae61d6ad
parent 35762 af3ff2ba4c54
child 58889 5b7a9633cfa8
permissions -rw-r--r--
modernized axiomatizations; tuned proofs;

header {* Addition with fixpoint of successor *}

theory Ex3
imports LCF
begin

axiomatization
  s     :: "'a => 'a" and
  p     :: "'a => 'a => 'a"
where
  p_strict:     "p(UU) = UU" and
  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
  apply simp
  done

end