src/HOL/Fun.thy
author berghofe
Mon, 16 Dec 2002 13:43:11 +0100
changeset 13755 a9bb54a3cfb7
parent 13637 02aa63636ab8
child 13910 f9a9ef16466f
permissions -rw-r--r--
Added mk_int and mk_list.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 923
diff changeset
     1
(*  Title:      HOL/Fun.thy
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 923
diff changeset
     3
    Author:     Tobias Nipkow, Cambridge University Computer Laboratory
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1994  University of Cambridge
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
     6
Notions about functions.
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
     9
theory Fun = Typedef:
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    10
12338
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 12258
diff changeset
    11
instance set :: (type) order
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    12
  by (intro_classes,
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    13
      (assumption | rule subset_refl subset_trans subset_antisym psubset_eq)+)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    14
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    15
constdefs
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    16
  fun_upd :: "('a => 'b) => 'a => 'b => ('a => 'b)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    17
   "fun_upd f a b == % x. if x=a then b else f x"
6171
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    18
9141
wenzelm
parents: 8960
diff changeset
    19
nonterminals
wenzelm
parents: 8960
diff changeset
    20
  updbinds updbind
5305
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    21
syntax
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    22
  "_updbind" :: "['a, 'a] => updbind"             ("(2_ :=/ _)")
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    23
  ""         :: "updbind => updbinds"             ("_")
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    24
  "_updbinds":: "[updbind, updbinds] => updbinds" ("_,/ _")
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    25
  "_Update"  :: "['a, updbinds] => 'a"            ("_/'((_)')" [1000,0] 900)
5305
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    26
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    27
translations
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    28
  "_Update f (_updbinds b bs)"  == "_Update (_Update f b) bs"
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    29
  "f(x:=y)"                     == "fun_upd f x y"
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    30
9340
9666f78ecfab added hint on fun_sum
oheimb
parents: 9309
diff changeset
    31
(* Hint: to define the sum of two functions (or maps), use sum_case.
9666f78ecfab added hint on fun_sum
oheimb
parents: 9309
diff changeset
    32
         A nice infix syntax could be defined (in Datatype.thy or below) by
9666f78ecfab added hint on fun_sum
oheimb
parents: 9309
diff changeset
    33
consts
9666f78ecfab added hint on fun_sum
oheimb
parents: 9309
diff changeset
    34
  fun_sum :: "('a => 'c) => ('b => 'c) => (('a+'b) => 'c)" (infixr "'(+')"80)
9666f78ecfab added hint on fun_sum
oheimb
parents: 9309
diff changeset
    35
translations
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    36
 "fun_sum" == sum_case
9340
9666f78ecfab added hint on fun_sum
oheimb
parents: 9309
diff changeset
    37
*)
12258
5da24e7e9aba got rid of theory Inverse_Image;
wenzelm
parents: 12114
diff changeset
    38
6171
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    39
constdefs
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    40
  id :: "'a => 'a"
6171
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    41
    "id == %x. x"
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    42
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    43
  comp :: "['b => 'c, 'a => 'b, 'a] => 'c"   (infixl "o" 55)
6171
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    44
    "f o g == %x. f(g(x))"
11123
15ffc08f905e removed whitespace
oheimb
parents: 10826
diff changeset
    45
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    46
text{*compatibility*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    47
lemmas o_def = comp_def
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    48
12114
a8e860c86252 eliminated old "symbols" syntax, use "xsymbols" instead;
wenzelm
parents: 11609
diff changeset
    49
syntax (xsymbols)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    50
  comp :: "['b => 'c, 'a => 'b, 'a] => 'c"        (infixl "\<circ>" 55)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    51
9352
416b2ecd97a1 syntax (symbols) "op o" moved from HOL to Fun;
wenzelm
parents: 9340
diff changeset
    52
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    53
constdefs
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    54
  inj_on :: "['a => 'b, 'a set] => bool"         (*injective*)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    55
    "inj_on f A == ! x:A. ! y:A. f(x)=f(y) --> x=y"
6171
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    56
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    57
text{*A common special case: functions injective over the entire domain type.*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    58
syntax inj   :: "('a => 'b) => bool"
6171
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    59
translations
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    60
  "inj f" == "inj_on f UNIV"
5852
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    61
7374
dec7b838f5cb the bij predicate (at last)
paulson
parents: 6171
diff changeset
    62
constdefs
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    63
  surj :: "('a => 'b) => bool"                   (*surjective*)
7374
dec7b838f5cb the bij predicate (at last)
paulson
parents: 6171
diff changeset
    64
    "surj f == ! y. ? x. y=f(x)"
12258
5da24e7e9aba got rid of theory Inverse_Image;
wenzelm
parents: 12114
diff changeset
    65
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    66
  bij :: "('a => 'b) => bool"                    (*bijective*)
7374
dec7b838f5cb the bij predicate (at last)
paulson
parents: 6171
diff changeset
    67
    "bij f == inj f & surj f"
12258
5da24e7e9aba got rid of theory Inverse_Image;
wenzelm
parents: 12114
diff changeset
    68
7374
dec7b838f5cb the bij predicate (at last)
paulson
parents: 6171
diff changeset
    69
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    70
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    71
text{*As a simplification rule, it replaces all function equalities by
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    72
  first-order equalities.*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    73
lemma expand_fun_eq: "(f = g) = (! x. f(x)=g(x))"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    74
apply (rule iffI)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    75
apply (simp (no_asm_simp))
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    76
apply (rule ext, simp (no_asm_simp))
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    77
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    78
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    79
lemma apply_inverse:
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    80
    "[| f(x)=u;  !!x. P(x) ==> g(f(x)) = x;  P(x) |] ==> x=g(u)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    81
by auto
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    82
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    83
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    84
text{*The Identity Function: @{term id}*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    85
lemma id_apply [simp]: "id x = x"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    86
by (simp add: id_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    87
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    88
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    89
subsection{*The Composition Operator: @{term "f \<circ> g"}*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    90
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    91
lemma o_apply [simp]: "(f o g) x = f (g x)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    92
by (simp add: comp_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    93
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    94
lemma o_assoc: "f o (g o h) = f o g o h"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    95
by (simp add: comp_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    96
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    97
lemma id_o [simp]: "id o g = g"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    98
by (simp add: comp_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    99
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   100
lemma o_id [simp]: "f o id = f"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   101
by (simp add: comp_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   102
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   103
lemma image_compose: "(f o g) ` r = f`(g`r)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   104
by (simp add: comp_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   105
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   106
lemma image_eq_UN: "f`A = (UN x:A. {f x})"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   107
by blast
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   108
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   109
lemma UN_o: "UNION A (g o f) = UNION (f`A) g"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   110
by (unfold comp_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   111
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   112
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   113
subsection{*The Injectivity Predicate, @{term inj}*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   114
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   115
text{*NB: @{term inj} now just translates to @{term inj_on}*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   116
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   117
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   118
text{*For Proofs in @{text "Tools/datatype_rep_proofs"}*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   119
lemma datatype_injI:
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   120
    "(!! x. ALL y. f(x) = f(y) --> x=y) ==> inj(f)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   121
by (simp add: inj_on_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   122
13637
02aa63636ab8 - Added range_ex1_eq
berghofe
parents: 13585
diff changeset
   123
theorem range_ex1_eq: "inj f \<Longrightarrow> b : range f = (EX! x. b = f x)"
02aa63636ab8 - Added range_ex1_eq
berghofe
parents: 13585
diff changeset
   124
  by (unfold inj_on_def, blast)
02aa63636ab8 - Added range_ex1_eq
berghofe
parents: 13585
diff changeset
   125
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   126
lemma injD: "[| inj(f); f(x) = f(y) |] ==> x=y"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   127
by (simp add: inj_on_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   128
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   129
(*Useful with the simplifier*)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   130
lemma inj_eq: "inj(f) ==> (f(x) = f(y)) = (x=y)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   131
by (force simp add: inj_on_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   132
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   133
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   134
subsection{*The Predicate @{term inj_on}: Injectivity On A Restricted Domain*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   135
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   136
lemma inj_onI:
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   137
    "(!! x y. [|  x:A;  y:A;  f(x) = f(y) |] ==> x=y) ==> inj_on f A"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   138
by (simp add: inj_on_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   139
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   140
lemma inj_on_inverseI: "(!!x. x:A ==> g(f(x)) = x) ==> inj_on f A"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   141
by (auto dest:  arg_cong [of concl: g] simp add: inj_on_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   142
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   143
lemma inj_onD: "[| inj_on f A;  f(x)=f(y);  x:A;  y:A |] ==> x=y"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   144
by (unfold inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   145
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   146
lemma inj_on_iff: "[| inj_on f A;  x:A;  y:A |] ==> (f(x)=f(y)) = (x=y)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   147
by (blast dest!: inj_onD)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   148
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   149
lemma comp_inj_on:
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   150
     "[| inj_on f A;  inj_on g (f`A) |] ==> inj_on (g o f) A"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   151
by (simp add: comp_def inj_on_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   152
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   153
lemma inj_on_contraD: "[| inj_on f A;  ~x=y;  x:A;  y:A |] ==> ~ f(x)=f(y)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   154
by (unfold inj_on_def, blast)
12258
5da24e7e9aba got rid of theory Inverse_Image;
wenzelm
parents: 12114
diff changeset
   155
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   156
lemma inj_singleton: "inj (%s. {s})"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   157
by (simp add: inj_on_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   158
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   159
lemma subset_inj_on: "[| A<=B; inj_on f B |] ==> inj_on f A"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   160
by (unfold inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   161
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   162
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   163
subsection{*The Predicate @{term surj}: Surjectivity*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   164
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   165
lemma surjI: "(!! x. g(f x) = x) ==> surj g"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   166
apply (simp add: surj_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   167
apply (blast intro: sym)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   168
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   169
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   170
lemma surj_range: "surj f ==> range f = UNIV"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   171
by (auto simp add: surj_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   172
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   173
lemma surjD: "surj f ==> EX x. y = f x"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   174
by (simp add: surj_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   175
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   176
lemma surjE: "surj f ==> (!!x. y = f x ==> C) ==> C"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   177
by (simp add: surj_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   178
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   179
lemma comp_surj: "[| surj f;  surj g |] ==> surj (g o f)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   180
apply (simp add: comp_def surj_def, clarify)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   181
apply (drule_tac x = y in spec, clarify)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   182
apply (drule_tac x = x in spec, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   183
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   184
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   185
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   186
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   187
subsection{*The Predicate @{term bij}: Bijectivity*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   188
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   189
lemma bijI: "[| inj f; surj f |] ==> bij f"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   190
by (simp add: bij_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   191
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   192
lemma bij_is_inj: "bij f ==> inj f"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   193
by (simp add: bij_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   194
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   195
lemma bij_is_surj: "bij f ==> surj f"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   196
by (simp add: bij_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   197
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   198
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   199
subsection{*Facts About the Identity Function*}
5852
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
   200
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   201
text{*We seem to need both the @{term id} forms and the @{term "\<lambda>x. x"}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   202
forms. The latter can arise by rewriting, while @{term id} may be used
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   203
explicitly.*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   204
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   205
lemma image_ident [simp]: "(%x. x) ` Y = Y"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   206
by blast
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   207
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   208
lemma image_id [simp]: "id ` Y = Y"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   209
by (simp add: id_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   210
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   211
lemma vimage_ident [simp]: "(%x. x) -` Y = Y"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   212
by blast
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   213
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   214
lemma vimage_id [simp]: "id -` A = A"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   215
by (simp add: id_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   216
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   217
lemma vimage_image_eq: "f -` (f ` A) = {y. EX x:A. f x = f y}"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   218
by (blast intro: sym)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   219
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   220
lemma image_vimage_subset: "f ` (f -` A) <= A"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   221
by blast
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   222
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   223
lemma image_vimage_eq [simp]: "f ` (f -` A) = A Int range f"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   224
by blast
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   225
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   226
lemma surj_image_vimage_eq: "surj f ==> f ` (f -` A) = A"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   227
by (simp add: surj_range)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   228
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   229
lemma inj_vimage_image_eq: "inj f ==> f -` (f ` A) = A"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   230
by (simp add: inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   231
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   232
lemma vimage_subsetD: "surj f ==> f -` B <= A ==> B <= f ` A"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   233
apply (unfold surj_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   234
apply (blast intro: sym)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   235
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   236
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   237
lemma vimage_subsetI: "inj f ==> B <= f ` A ==> f -` B <= A"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   238
by (unfold inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   239
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   240
lemma vimage_subset_eq: "bij f ==> (f -` B <= A) = (B <= f ` A)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   241
apply (unfold bij_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   242
apply (blast del: subsetI intro: vimage_subsetI vimage_subsetD)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   243
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   244
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   245
lemma image_Int_subset: "f`(A Int B) <= f`A Int f`B"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   246
by blast
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   247
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   248
lemma image_diff_subset: "f`A - f`B <= f`(A - B)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   249
by blast
5852
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
   250
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   251
lemma inj_on_image_Int:
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   252
   "[| inj_on f C;  A<=C;  B<=C |] ==> f`(A Int B) = f`A Int f`B"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   253
apply (simp add: inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   254
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   255
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   256
lemma inj_on_image_set_diff:
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   257
   "[| inj_on f C;  A<=C;  B<=C |] ==> f`(A-B) = f`A - f`B"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   258
apply (simp add: inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   259
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   260
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   261
lemma image_Int: "inj f ==> f`(A Int B) = f`A Int f`B"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   262
by (simp add: inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   263
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   264
lemma image_set_diff: "inj f ==> f`(A-B) = f`A - f`B"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   265
by (simp add: inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   266
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   267
lemma inj_image_mem_iff: "inj f ==> (f a : f`A) = (a : A)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   268
by (blast dest: injD)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   269
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   270
lemma inj_image_subset_iff: "inj f ==> (f`A <= f`B) = (A<=B)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   271
by (simp add: inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   272
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   273
lemma inj_image_eq_iff: "inj f ==> (f`A = f`B) = (A = B)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   274
by (blast dest: injD)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   275
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   276
lemma image_UN: "(f ` (UNION A B)) = (UN x:A.(f ` (B x)))"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   277
by blast
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   278
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   279
(*injectivity's required.  Left-to-right inclusion holds even if A is empty*)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   280
lemma image_INT:
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   281
   "[| inj_on f C;  ALL x:A. B x <= C;  j:A |]
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   282
    ==> f ` (INTER A B) = (INT x:A. f ` B x)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   283
apply (simp add: inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   284
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   285
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   286
(*Compare with image_INT: no use of inj_on, and if f is surjective then
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   287
  it doesn't matter whether A is empty*)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   288
lemma bij_image_INT: "bij f ==> f ` (INTER A B) = (INT x:A. f ` B x)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   289
apply (simp add: bij_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   290
apply (simp add: inj_on_def surj_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   291
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   292
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   293
lemma surj_Compl_image_subset: "surj f ==> -(f`A) <= f`(-A)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   294
by (auto simp add: surj_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   295
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   296
lemma inj_image_Compl_subset: "inj f ==> f`(-A) <= -(f`A)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   297
by (auto simp add: inj_on_def)
5852
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
   298
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   299
lemma bij_image_Compl_eq: "bij f ==> f`(-A) = -(f`A)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   300
apply (simp add: bij_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   301
apply (rule equalityI)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   302
apply (simp_all (no_asm_simp) add: inj_image_Compl_subset surj_Compl_image_subset)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   303
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   304
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   305
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   306
subsection{*Function Updating*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   307
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   308
lemma fun_upd_idem_iff: "(f(x:=y) = f) = (f x = y)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   309
apply (simp add: fun_upd_def, safe)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   310
apply (erule subst)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   311
apply (rule_tac [2] ext, auto)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   312
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   313
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   314
(* f x = y ==> f(x:=y) = f *)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   315
lemmas fun_upd_idem = fun_upd_idem_iff [THEN iffD2, standard]
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   316
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   317
(* f(x := f x) = f *)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   318
declare refl [THEN fun_upd_idem, iff]
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   319
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   320
lemma fun_upd_apply [simp]: "(f(x:=y))z = (if z=x then y else f z)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   321
apply (simp (no_asm) add: fun_upd_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   322
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   323
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   324
(* fun_upd_apply supersedes these two,   but they are useful
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   325
   if fun_upd_apply is intentionally removed from the simpset *)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   326
lemma fun_upd_same: "(f(x:=y)) x = y"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   327
by simp
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   328
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   329
lemma fun_upd_other: "z~=x ==> (f(x:=y)) z = f z"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   330
by simp
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   331
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   332
lemma fun_upd_upd [simp]: "f(x:=y,x:=z) = f(x:=z)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   333
by (simp add: expand_fun_eq)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   334
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   335
lemma fun_upd_twist: "a ~= c ==> (m(a:=b))(c:=d) = (m(c:=d))(a:=b)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   336
by (rule ext, auto)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   337
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   338
text{*The ML section includes some compatibility bindings and a simproc
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   339
for function updates, in addition to the usual ML-bindings of theorems.*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   340
ML
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   341
{*
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   342
val id_def = thm "id_def";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   343
val inj_on_def = thm "inj_on_def";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   344
val surj_def = thm "surj_def";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   345
val bij_def = thm "bij_def";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   346
val fun_upd_def = thm "fun_upd_def";
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents: 11123
diff changeset
   347
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   348
val o_def = thm "comp_def";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   349
val injI = thm "inj_onI";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   350
val inj_inverseI = thm "inj_on_inverseI";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   351
val set_cs = claset() delrules [equalityI];
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   352
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   353
val print_translation = [("Pi", dependent_tr' ("@Pi", "op funcset"))];
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   354
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   355
(* simplifies terms of the form f(...,x:=y,...,x:=z,...) to f(...,x:=z,...) *)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   356
local
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   357
  fun gen_fun_upd None T _ _ = None
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   358
    | gen_fun_upd (Some f) T x y = Some (Const ("Fun.fun_upd",T) $ f $ x $ y)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   359
  fun dest_fun_T1 (Type (_, T :: Ts)) = T
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   360
  fun find_double (t as Const ("Fun.fun_upd",T) $ f $ x $ y) =
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   361
    let
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   362
      fun find (Const ("Fun.fun_upd",T) $ g $ v $ w) =
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   363
            if v aconv x then Some g else gen_fun_upd (find g) T v w
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   364
        | find t = None
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   365
    in (dest_fun_T1 T, gen_fun_upd (find f) T x y) end
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   366
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   367
  val ss = simpset ()
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   368
  val fun_upd_prover = K (rtac eq_reflection 1 THEN rtac ext 1 THEN simp_tac ss 1)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   369
in
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   370
  val fun_upd2_simproc =
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   371
    Simplifier.simproc (Theory.sign_of (the_context ()))
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   372
      "fun_upd2" ["f(v := w, x := y)"]
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   373
      (fn sg => fn _ => fn t =>
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   374
        case find_double t of (T, None) => None
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   375
        | (T, Some rhs) => Some (Tactic.prove sg [] [] (Term.equals T $ t $ rhs) fun_upd_prover))
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   376
end;
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   377
Addsimprocs[fun_upd2_simproc];
5852
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
   378
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   379
val expand_fun_eq = thm "expand_fun_eq";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   380
val apply_inverse = thm "apply_inverse";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   381
val id_apply = thm "id_apply";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   382
val o_apply = thm "o_apply";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   383
val o_assoc = thm "o_assoc";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   384
val id_o = thm "id_o";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   385
val o_id = thm "o_id";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   386
val image_compose = thm "image_compose";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   387
val image_eq_UN = thm "image_eq_UN";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   388
val UN_o = thm "UN_o";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   389
val datatype_injI = thm "datatype_injI";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   390
val injD = thm "injD";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   391
val inj_eq = thm "inj_eq";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   392
val inj_onI = thm "inj_onI";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   393
val inj_on_inverseI = thm "inj_on_inverseI";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   394
val inj_onD = thm "inj_onD";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   395
val inj_on_iff = thm "inj_on_iff";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   396
val comp_inj_on = thm "comp_inj_on";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   397
val inj_on_contraD = thm "inj_on_contraD";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   398
val inj_singleton = thm "inj_singleton";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   399
val subset_inj_on = thm "subset_inj_on";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   400
val surjI = thm "surjI";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   401
val surj_range = thm "surj_range";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   402
val surjD = thm "surjD";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   403
val surjE = thm "surjE";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   404
val comp_surj = thm "comp_surj";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   405
val bijI = thm "bijI";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   406
val bij_is_inj = thm "bij_is_inj";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   407
val bij_is_surj = thm "bij_is_surj";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   408
val image_ident = thm "image_ident";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   409
val image_id = thm "image_id";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   410
val vimage_ident = thm "vimage_ident";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   411
val vimage_id = thm "vimage_id";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   412
val vimage_image_eq = thm "vimage_image_eq";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   413
val image_vimage_subset = thm "image_vimage_subset";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   414
val image_vimage_eq = thm "image_vimage_eq";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   415
val surj_image_vimage_eq = thm "surj_image_vimage_eq";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   416
val inj_vimage_image_eq = thm "inj_vimage_image_eq";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   417
val vimage_subsetD = thm "vimage_subsetD";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   418
val vimage_subsetI = thm "vimage_subsetI";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   419
val vimage_subset_eq = thm "vimage_subset_eq";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   420
val image_Int_subset = thm "image_Int_subset";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   421
val image_diff_subset = thm "image_diff_subset";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   422
val inj_on_image_Int = thm "inj_on_image_Int";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   423
val inj_on_image_set_diff = thm "inj_on_image_set_diff";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   424
val image_Int = thm "image_Int";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   425
val image_set_diff = thm "image_set_diff";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   426
val inj_image_mem_iff = thm "inj_image_mem_iff";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   427
val inj_image_subset_iff = thm "inj_image_subset_iff";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   428
val inj_image_eq_iff = thm "inj_image_eq_iff";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   429
val image_UN = thm "image_UN";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   430
val image_INT = thm "image_INT";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   431
val bij_image_INT = thm "bij_image_INT";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   432
val surj_Compl_image_subset = thm "surj_Compl_image_subset";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   433
val inj_image_Compl_subset = thm "inj_image_Compl_subset";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   434
val bij_image_Compl_eq = thm "bij_image_Compl_eq";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   435
val fun_upd_idem_iff = thm "fun_upd_idem_iff";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   436
val fun_upd_idem = thm "fun_upd_idem";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   437
val fun_upd_apply = thm "fun_upd_apply";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   438
val fun_upd_same = thm "fun_upd_same";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   439
val fun_upd_other = thm "fun_upd_other";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   440
val fun_upd_upd = thm "fun_upd_upd";
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   441
val fun_upd_twist = thm "fun_upd_twist";
13637
02aa63636ab8 - Added range_ex1_eq
berghofe
parents: 13585
diff changeset
   442
val range_ex1_eq = thm "range_ex1_eq";
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   443
*}
5852
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
   444
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
   445
end