src/LCF/ex/Ex3.thy
author wenzelm
Wed, 14 May 2014 12:00:18 +0200
changeset 56958 b2c2f74d1c93
parent 47025 b2b8ae61d6ad
child 58889 5b7a9633cfa8
permissions -rw-r--r--
updated to polyml-5.5.2;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17248
81bf91654e73 converted to Isar theory format;
wenzelm
parents: 4905
diff changeset
     1
header {* Addition with fixpoint of successor *}
4905
be73ddff6c5a proper thy files;
wenzelm
parents:
diff changeset
     2
17248
81bf91654e73 converted to Isar theory format;
wenzelm
parents: 4905
diff changeset
     3
theory Ex3
81bf91654e73 converted to Isar theory format;
wenzelm
parents: 4905
diff changeset
     4
imports LCF
81bf91654e73 converted to Isar theory format;
wenzelm
parents: 4905
diff changeset
     5
begin
4905
be73ddff6c5a proper thy files;
wenzelm
parents:
diff changeset
     6
47025
b2b8ae61d6ad modernized axiomatizations;
wenzelm
parents: 35762
diff changeset
     7
axiomatization
b2b8ae61d6ad modernized axiomatizations;
wenzelm
parents: 35762
diff changeset
     8
  s     :: "'a => 'a" and
17248
81bf91654e73 converted to Isar theory format;
wenzelm
parents: 4905
diff changeset
     9
  p     :: "'a => 'a => 'a"
47025
b2b8ae61d6ad modernized axiomatizations;
wenzelm
parents: 35762
diff changeset
    10
where
b2b8ae61d6ad modernized axiomatizations;
wenzelm
parents: 35762
diff changeset
    11
  p_strict:     "p(UU) = UU" and
17248
81bf91654e73 converted to Isar theory format;
wenzelm
parents: 4905
diff changeset
    12
  p_s:          "p(s(x),y) = s(p(x,y))"
81bf91654e73 converted to Isar theory format;
wenzelm
parents: 4905
diff changeset
    13
19755
90f80de04c46 removed obsolete ML files;
wenzelm
parents: 17248
diff changeset
    14
declare p_strict [simp] p_s [simp]
90f80de04c46 removed obsolete ML files;
wenzelm
parents: 17248
diff changeset
    15
90f80de04c46 removed obsolete ML files;
wenzelm
parents: 17248
diff changeset
    16
lemma example: "p(FIX(s),y) = FIX(s)"
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 19755
diff changeset
    17
  apply (tactic {* induct_tac @{context} "s" 1 *})
47025
b2b8ae61d6ad modernized axiomatizations;
wenzelm
parents: 35762
diff changeset
    18
  apply simp
b2b8ae61d6ad modernized axiomatizations;
wenzelm
parents: 35762
diff changeset
    19
  apply simp
19755
90f80de04c46 removed obsolete ML files;
wenzelm
parents: 17248
diff changeset
    20
  done
4905
be73ddff6c5a proper thy files;
wenzelm
parents:
diff changeset
    21
be73ddff6c5a proper thy files;
wenzelm
parents:
diff changeset
    22
end