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