src/HOL/Fun.thy
author haftmann
Wed, 27 May 2009 22:11:05 +0200
changeset 31266 55e70b6d812e
parent 31202 52d332f8f909
child 31438 a1c4c1500abe
permissions -rw-r--r--
added lemma about 0 - 1
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
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 923
diff changeset
     2
    Author:     Tobias Nipkow, Cambridge University Computer Laboratory
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     3
    Copyright   1994  University of Cambridge
18154
0c05abaf6244 add header
huffman
parents: 17956
diff changeset
     4
*)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
18154
0c05abaf6244 add header
huffman
parents: 17956
diff changeset
     6
header {* Notions about functions *}
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
15510
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
     8
theory Fun
22886
cdff6ef76009 moved recfun_codegen.ML to Code_Generator.thy
haftmann
parents: 22845
diff changeset
     9
imports Set
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15111
diff changeset
    10
begin
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    11
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    12
text{*As a simplification rule, it replaces all function equalities by
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    13
  first-order equalities.*}
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    14
lemma expand_fun_eq: "f = g \<longleftrightarrow> (\<forall>x. f x = g x)"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    15
apply (rule iffI)
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    16
apply (simp (no_asm_simp))
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    17
apply (rule ext)
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    18
apply (simp (no_asm_simp))
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    19
done
5305
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    20
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    21
lemma apply_inverse:
26357
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
    22
  "f x = u \<Longrightarrow> (\<And>x. P x \<Longrightarrow> g (f x) = x) \<Longrightarrow> P x \<Longrightarrow> x = g u"
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    23
  by auto
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    24
12258
5da24e7e9aba got rid of theory Inverse_Image;
wenzelm
parents: 12114
diff changeset
    25
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    26
subsection {* The Identity Function @{text id} *}
6171
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    27
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22577
diff changeset
    28
definition
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22577
diff changeset
    29
  id :: "'a \<Rightarrow> 'a"
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22577
diff changeset
    30
where
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22577
diff changeset
    31
  "id = (\<lambda>x. x)"
13910
f9a9ef16466f Added thms
nipkow
parents: 13637
diff changeset
    32
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    33
lemma id_apply [simp]: "id x = x"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    34
  by (simp add: id_def)
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    35
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    36
lemma image_ident [simp]: "(%x. x) ` Y = Y"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    37
by blast
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    38
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    39
lemma image_id [simp]: "id ` Y = Y"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    40
by (simp add: id_def)
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    41
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    42
lemma vimage_ident [simp]: "(%x. x) -` Y = Y"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    43
by blast
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    44
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    45
lemma vimage_id [simp]: "id -` A = A"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    46
by (simp add: id_def)
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    47
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    48
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    49
subsection {* The Composition Operator @{text "f \<circ> g"} *}
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    50
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22577
diff changeset
    51
definition
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22577
diff changeset
    52
  comp :: "('b \<Rightarrow> 'c) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'c" (infixl "o" 55)
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22577
diff changeset
    53
where
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22577
diff changeset
    54
  "f o g = (\<lambda>x. f (g x))"
11123
15ffc08f905e removed whitespace
oheimb
parents: 10826
diff changeset
    55
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 20044
diff changeset
    56
notation (xsymbols)
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19536
diff changeset
    57
  comp  (infixl "\<circ>" 55)
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19536
diff changeset
    58
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 20044
diff changeset
    59
notation (HTML output)
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19536
diff changeset
    60
  comp  (infixl "\<circ>" 55)
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19536
diff changeset
    61
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    62
text{*compatibility*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    63
lemmas o_def = comp_def
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    64
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    65
lemma o_apply [simp]: "(f o g) x = f (g x)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    66
by (simp add: comp_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    67
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    68
lemma o_assoc: "f o (g o h) = f o g o h"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    69
by (simp add: comp_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    70
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    71
lemma id_o [simp]: "id o g = g"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    72
by (simp add: comp_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    73
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    74
lemma o_id [simp]: "f o id = f"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    75
by (simp add: comp_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    76
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    77
lemma image_compose: "(f o g) ` r = f`(g`r)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    78
by (simp add: comp_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    79
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    80
lemma UN_o: "UNION A (g o f) = UNION (f`A) g"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    81
by (unfold comp_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    82
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    83
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26357
diff changeset
    84
subsection {* The Forward Composition Operator @{text fcomp} *}
26357
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
    85
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
    86
definition
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
    87
  fcomp :: "('a \<Rightarrow> 'b) \<Rightarrow> ('b \<Rightarrow> 'c) \<Rightarrow> 'a \<Rightarrow> 'c" (infixl "o>" 60)
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
    88
where
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
    89
  "f o> g = (\<lambda>x. g (f x))"
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
    90
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
    91
lemma fcomp_apply:  "(f o> g) x = g (f x)"
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
    92
  by (simp add: fcomp_def)
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
    93
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
    94
lemma fcomp_assoc: "(f o> g) o> h = f o> (g o> h)"
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
    95
  by (simp add: fcomp_def)
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
    96
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
    97
lemma id_fcomp [simp]: "id o> g = g"
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
    98
  by (simp add: fcomp_def)
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
    99
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
   100
lemma fcomp_id [simp]: "f o> id = f"
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
   101
  by (simp add: fcomp_def)
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
   102
31202
52d332f8f909 pretty printing of functional combinators for evaluation code
haftmann
parents: 31080
diff changeset
   103
code_const fcomp
52d332f8f909 pretty printing of functional combinators for evaluation code
haftmann
parents: 31080
diff changeset
   104
  (Eval infixl 1 "#>")
52d332f8f909 pretty printing of functional combinators for evaluation code
haftmann
parents: 31080
diff changeset
   105
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26357
diff changeset
   106
no_notation fcomp (infixl "o>" 60)
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26357
diff changeset
   107
26357
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
   108
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   109
subsection {* Injectivity and Surjectivity *}
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   110
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   111
constdefs
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   112
  inj_on :: "['a => 'b, 'a set] => bool"  -- "injective"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   113
  "inj_on f A == ! x:A. ! y:A. f(x)=f(y) --> x=y"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   114
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   115
text{*A common special case: functions injective over the entire domain type.*}
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   116
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   117
abbreviation
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   118
  "inj f == inj_on f UNIV"
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   119
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   120
definition
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   121
  bij_betw :: "('a => 'b) => 'a set => 'b set => bool" where -- "bijective"
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27330
diff changeset
   122
  [code del]: "bij_betw f A B \<longleftrightarrow> inj_on f A & f ` A = B"
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   123
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   124
constdefs
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   125
  surj :: "('a => 'b) => bool"                   (*surjective*)
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   126
  "surj f == ! y. ? x. y=f(x)"
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   127
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   128
  bij :: "('a => 'b) => bool"                    (*bijective*)
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   129
  "bij f == inj f & surj f"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   130
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   131
lemma injI:
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   132
  assumes "\<And>x y. f x = f y \<Longrightarrow> x = y"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   133
  shows "inj f"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   134
  using assms unfolding inj_on_def by auto
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   135
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   136
text{*For Proofs in @{text "Tools/datatype_rep_proofs"}*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   137
lemma datatype_injI:
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   138
    "(!! x. ALL y. f(x) = f(y) --> x=y) ==> inj(f)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   139
by (simp add: inj_on_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   140
13637
02aa63636ab8 - Added range_ex1_eq
berghofe
parents: 13585
diff changeset
   141
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
   142
  by (unfold inj_on_def, blast)
02aa63636ab8 - Added range_ex1_eq
berghofe
parents: 13585
diff changeset
   143
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   144
lemma injD: "[| inj(f); f(x) = f(y) |] ==> x=y"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   145
by (simp add: inj_on_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   146
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   147
(*Useful with the simplifier*)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   148
lemma inj_eq: "inj(f) ==> (f(x) = f(y)) = (x=y)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   149
by (force simp add: inj_on_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   150
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   151
lemma inj_on_id[simp]: "inj_on id A"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   152
  by (simp add: inj_on_def) 
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   153
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   154
lemma inj_on_id2[simp]: "inj_on (%x. x) A"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   155
by (simp add: inj_on_def) 
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   156
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   157
lemma surj_id[simp]: "surj id"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   158
by (simp add: surj_def) 
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   159
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   160
lemma bij_id[simp]: "bij id"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   161
by (simp add: bij_def inj_on_id surj_id) 
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   162
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   163
lemma inj_onI:
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   164
    "(!! 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
   165
by (simp add: inj_on_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   166
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   167
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
   168
by (auto dest:  arg_cong [of concl: g] simp add: inj_on_def)
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 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
   171
by (unfold inj_on_def, blast)
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 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
   174
by (blast dest!: inj_onD)
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 comp_inj_on:
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   177
     "[| 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
   178
by (simp add: comp_def inj_on_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   179
15303
eedbb8d22ca2 added lemmas
nipkow
parents: 15140
diff changeset
   180
lemma inj_on_imageI: "inj_on (g o f) A \<Longrightarrow> inj_on g (f ` A)"
eedbb8d22ca2 added lemmas
nipkow
parents: 15140
diff changeset
   181
apply(simp add:inj_on_def image_def)
eedbb8d22ca2 added lemmas
nipkow
parents: 15140
diff changeset
   182
apply blast
eedbb8d22ca2 added lemmas
nipkow
parents: 15140
diff changeset
   183
done
eedbb8d22ca2 added lemmas
nipkow
parents: 15140
diff changeset
   184
15439
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15303
diff changeset
   185
lemma inj_on_image_iff: "\<lbrakk> ALL x:A. ALL y:A. (g(f x) = g(f y)) = (g x = g y);
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15303
diff changeset
   186
  inj_on f A \<rbrakk> \<Longrightarrow> inj_on g (f ` A) = inj_on g A"
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15303
diff changeset
   187
apply(unfold inj_on_def)
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15303
diff changeset
   188
apply blast
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15303
diff changeset
   189
done
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15303
diff changeset
   190
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   191
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
   192
by (unfold inj_on_def, blast)
12258
5da24e7e9aba got rid of theory Inverse_Image;
wenzelm
parents: 12114
diff changeset
   193
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   194
lemma inj_singleton: "inj (%s. {s})"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   195
by (simp add: inj_on_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   196
15111
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   197
lemma inj_on_empty[iff]: "inj_on f {}"
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   198
by(simp add: inj_on_def)
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   199
15303
eedbb8d22ca2 added lemmas
nipkow
parents: 15140
diff changeset
   200
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
   201
by (unfold inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   202
15111
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   203
lemma inj_on_Un:
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   204
 "inj_on f (A Un B) =
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   205
  (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
   206
apply(unfold inj_on_def)
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   207
apply (blast intro:sym)
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   208
done
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   209
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   210
lemma inj_on_insert[iff]:
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   211
  "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
   212
apply(unfold inj_on_def)
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   213
apply (blast intro:sym)
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   214
done
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   215
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   216
lemma inj_on_diff: "inj_on f A ==> inj_on f (A-B)"
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   217
apply(unfold inj_on_def)
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   218
apply (blast)
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   219
done
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   220
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   221
lemma surjI: "(!! x. g(f x) = x) ==> surj g"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   222
apply (simp add: surj_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   223
apply (blast intro: sym)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   224
done
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_range: "surj f ==> range f = UNIV"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   227
by (auto simp add: surj_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 surjD: "surj f ==> EX x. y = f x"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   230
by (simp add: surj_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
lemma surjE: "surj f ==> (!!x. y = f x ==> C) ==> C"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   233
by (simp add: surj_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   234
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   235
lemma comp_surj: "[| surj f;  surj g |] ==> surj (g o f)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   236
apply (simp add: comp_def surj_def, clarify)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   237
apply (drule_tac x = y in spec, clarify)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   238
apply (drule_tac x = x in spec, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   239
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   240
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   241
lemma bijI: "[| inj f; surj f |] ==> bij f"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   242
by (simp add: bij_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   243
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   244
lemma bij_is_inj: "bij f ==> inj f"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   245
by (simp add: bij_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   246
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   247
lemma bij_is_surj: "bij f ==> surj f"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   248
by (simp add: bij_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   249
26105
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   250
lemma bij_betw_imp_inj_on: "bij_betw f A B \<Longrightarrow> inj_on f A"
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   251
by (simp add: bij_betw_def)
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   252
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   253
lemma bij_betw_inv: assumes "bij_betw f A B" shows "EX g. bij_betw g B A"
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   254
proof -
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   255
  have i: "inj_on f A" and s: "f ` A = B"
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   256
    using assms by(auto simp:bij_betw_def)
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   257
  let ?P = "%b a. a:A \<and> f a = b" let ?g = "%b. The (?P b)"
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   258
  { fix a b assume P: "?P b a"
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   259
    hence ex1: "\<exists>a. ?P b a" using s unfolding image_def by blast
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   260
    hence uex1: "\<exists>!a. ?P b a" by(blast dest:inj_onD[OF i])
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   261
    hence " ?g b = a" using the1_equality[OF uex1, OF P] P by simp
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   262
  } note g = this
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   263
  have "inj_on ?g B"
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   264
  proof(rule inj_onI)
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   265
    fix x y assume "x:B" "y:B" "?g x = ?g y"
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   266
    from s `x:B` obtain a1 where a1: "?P x a1" unfolding image_def by blast
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   267
    from s `y:B` obtain a2 where a2: "?P y a2" unfolding image_def by blast
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   268
    from g[OF a1] a1 g[OF a2] a2 `?g x = ?g y` show "x=y" by simp
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   269
  qed
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   270
  moreover have "?g ` B = A"
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   271
  proof(auto simp:image_def)
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   272
    fix b assume "b:B"
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   273
    with s obtain a where P: "?P b a" unfolding image_def by blast
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   274
    thus "?g b \<in> A" using g[OF P] by auto
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   275
  next
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   276
    fix a assume "a:A"
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   277
    then obtain b where P: "?P b a" using s unfolding image_def by blast
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   278
    then have "b:B" using s unfolding image_def by blast
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   279
    with g[OF P] show "\<exists>b\<in>B. a = ?g b" by blast
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   280
  qed
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   281
  ultimately show ?thesis by(auto simp:bij_betw_def)
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   282
qed
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   283
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   284
lemma surj_image_vimage_eq: "surj f ==> f ` (f -` A) = A"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   285
by (simp add: surj_range)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   286
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   287
lemma inj_vimage_image_eq: "inj f ==> f -` (f ` A) = A"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   288
by (simp add: inj_on_def, blast)
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 vimage_subsetD: "surj f ==> f -` B <= A ==> B <= f ` A"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   291
apply (unfold surj_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   292
apply (blast intro: sym)
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 vimage_subsetI: "inj f ==> B <= f ` A ==> f -` B <= A"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   296
by (unfold 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 vimage_subset_eq: "bij f ==> (f -` B <= A) = (B <= f ` A)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   299
apply (unfold bij_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   300
apply (blast del: subsetI intro: vimage_subsetI vimage_subsetD)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   301
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   302
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   303
lemma inj_on_image_Int:
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   304
   "[| 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
   305
apply (simp add: inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   306
done
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 inj_on_image_set_diff:
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   309
   "[| 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
   310
apply (simp add: inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   311
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   312
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   313
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
   314
by (simp add: inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   315
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   316
lemma image_set_diff: "inj f ==> f`(A-B) = f`A - f`B"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   317
by (simp add: inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   318
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   319
lemma inj_image_mem_iff: "inj f ==> (f a : f`A) = (a : A)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   320
by (blast dest: injD)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   321
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   322
lemma inj_image_subset_iff: "inj f ==> (f`A <= f`B) = (A<=B)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   323
by (simp add: inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   324
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   325
lemma inj_image_eq_iff: "inj f ==> (f`A = f`B) = (A = B)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   326
by (blast dest: injD)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   327
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   328
(*injectivity's required.  Left-to-right inclusion holds even if A is empty*)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   329
lemma image_INT:
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   330
   "[| inj_on f C;  ALL x:A. B x <= C;  j:A |]
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   331
    ==> f ` (INTER A B) = (INT x:A. f ` B x)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   332
apply (simp add: inj_on_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   333
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   334
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   335
(*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
   336
  it doesn't matter whether A is empty*)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   337
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
   338
apply (simp add: bij_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   339
apply (simp add: inj_on_def surj_def, blast)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   340
done
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 surj_Compl_image_subset: "surj f ==> -(f`A) <= f`(-A)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   343
by (auto simp add: surj_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   344
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   345
lemma inj_image_Compl_subset: "inj f ==> f`(-A) <= -(f`A)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   346
by (auto simp add: inj_on_def)
5852
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
   347
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   348
lemma bij_image_Compl_eq: "bij f ==> f`(-A) = -(f`A)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   349
apply (simp add: bij_def)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   350
apply (rule equalityI)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   351
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
   352
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   353
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   354
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   355
subsection{*Function Updating*}
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   356
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   357
constdefs
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   358
  fun_upd :: "('a => 'b) => 'a => 'b => ('a => 'b)"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   359
  "fun_upd f a b == % x. if x=a then b else f x"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   360
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   361
nonterminals
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   362
  updbinds updbind
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   363
syntax
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   364
  "_updbind" :: "['a, 'a] => updbind"             ("(2_ :=/ _)")
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   365
  ""         :: "updbind => updbinds"             ("_")
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   366
  "_updbinds":: "[updbind, updbinds] => updbinds" ("_,/ _")
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   367
  "_Update"  :: "['a, updbinds] => 'a"            ("_/'((_)')" [1000,0] 900)
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   368
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   369
translations
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   370
  "_Update f (_updbinds b bs)"  == "_Update (_Update f b) bs"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   371
  "f(x:=y)"                     == "fun_upd f x y"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   372
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   373
(* Hint: to define the sum of two functions (or maps), use sum_case.
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   374
         A nice infix syntax could be defined (in Datatype.thy or below) by
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   375
consts
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   376
  fun_sum :: "('a => 'c) => ('b => 'c) => (('a+'b) => 'c)" (infixr "'(+')"80)
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   377
translations
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   378
 "fun_sum" == sum_case
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   379
*)
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   380
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   381
lemma fun_upd_idem_iff: "(f(x:=y) = f) = (f x = y)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   382
apply (simp add: fun_upd_def, safe)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   383
apply (erule subst)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   384
apply (rule_tac [2] ext, auto)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   385
done
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   386
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   387
(* f x = y ==> f(x:=y) = f *)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   388
lemmas fun_upd_idem = fun_upd_idem_iff [THEN iffD2, standard]
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   389
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   390
(* f(x := f x) = f *)
17084
fb0a80aef0be classical rules must have names for ATP integration
paulson
parents: 16973
diff changeset
   391
lemmas fun_upd_triv = refl [THEN fun_upd_idem]
fb0a80aef0be classical rules must have names for ATP integration
paulson
parents: 16973
diff changeset
   392
declare fun_upd_triv [iff]
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   393
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   394
lemma fun_upd_apply [simp]: "(f(x:=y))z = (if z=x then y else f z)"
17084
fb0a80aef0be classical rules must have names for ATP integration
paulson
parents: 16973
diff changeset
   395
by (simp add: fun_upd_def)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   396
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   397
(* fun_upd_apply supersedes these two,   but they are useful
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   398
   if fun_upd_apply is intentionally removed from the simpset *)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   399
lemma fun_upd_same: "(f(x:=y)) x = y"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   400
by simp
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   401
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   402
lemma fun_upd_other: "z~=x ==> (f(x:=y)) z = f z"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   403
by simp
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   404
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   405
lemma fun_upd_upd [simp]: "f(x:=y,x:=z) = f(x:=z)"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   406
by (simp add: expand_fun_eq)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   407
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   408
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
   409
by (rule ext, auto)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   410
15303
eedbb8d22ca2 added lemmas
nipkow
parents: 15140
diff changeset
   411
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
   412
by(fastsimp simp:inj_on_def image_def)
eedbb8d22ca2 added lemmas
nipkow
parents: 15140
diff changeset
   413
15510
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   414
lemma fun_upd_image:
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   415
     "f(x:=y) ` A = (if x \<in> A then insert y (f ` (A-{x})) else f ` A)"
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   416
by auto
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   417
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 30301
diff changeset
   418
lemma fun_upd_comp: "f \<circ> (g(x := y)) = (f \<circ> g)(x := f y)"
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 30301
diff changeset
   419
by(auto intro: ext)
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 30301
diff changeset
   420
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   421
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   422
subsection {* @{text override_on} *}
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   423
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   424
definition
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   425
  override_on :: "('a \<Rightarrow> 'b) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'a set \<Rightarrow> 'a \<Rightarrow> 'b"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   426
where
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   427
  "override_on f g A = (\<lambda>a. if a \<in> A then g a else f a)"
13910
f9a9ef16466f Added thms
nipkow
parents: 13637
diff changeset
   428
15691
900cf45ff0a6 _(_|_) is now override_on
nipkow
parents: 15531
diff changeset
   429
lemma override_on_emptyset[simp]: "override_on f g {} = f"
900cf45ff0a6 _(_|_) is now override_on
nipkow
parents: 15531
diff changeset
   430
by(simp add:override_on_def)
13910
f9a9ef16466f Added thms
nipkow
parents: 13637
diff changeset
   431
15691
900cf45ff0a6 _(_|_) is now override_on
nipkow
parents: 15531
diff changeset
   432
lemma override_on_apply_notin[simp]: "a ~: A ==> (override_on f g A) a = f a"
900cf45ff0a6 _(_|_) is now override_on
nipkow
parents: 15531
diff changeset
   433
by(simp add:override_on_def)
13910
f9a9ef16466f Added thms
nipkow
parents: 13637
diff changeset
   434
15691
900cf45ff0a6 _(_|_) is now override_on
nipkow
parents: 15531
diff changeset
   435
lemma override_on_apply_in[simp]: "a : A ==> (override_on f g A) a = g a"
900cf45ff0a6 _(_|_) is now override_on
nipkow
parents: 15531
diff changeset
   436
by(simp add:override_on_def)
13910
f9a9ef16466f Added thms
nipkow
parents: 13637
diff changeset
   437
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   438
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   439
subsection {* @{text swap} *}
15510
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   440
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22577
diff changeset
   441
definition
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22577
diff changeset
   442
  swap :: "'a \<Rightarrow> 'a \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> ('a \<Rightarrow> 'b)"
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22577
diff changeset
   443
where
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22577
diff changeset
   444
  "swap a b f = f (a := f b, b:= f a)"
15510
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   445
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   446
lemma swap_self: "swap a a f = f"
15691
900cf45ff0a6 _(_|_) is now override_on
nipkow
parents: 15531
diff changeset
   447
by (simp add: swap_def)
15510
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   448
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   449
lemma swap_commute: "swap a b f = swap b a f"
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   450
by (rule ext, simp add: fun_upd_def swap_def)
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   451
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   452
lemma swap_nilpotent [simp]: "swap a b (swap a b f) = f"
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   453
by (rule ext, simp add: fun_upd_def swap_def)
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   454
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   455
lemma inj_on_imp_inj_on_swap:
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22577
diff changeset
   456
  "[|inj_on f A; a \<in> A; b \<in> A|] ==> inj_on (swap a b f) A"
15510
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   457
by (simp add: inj_on_def swap_def, blast)
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   458
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   459
lemma inj_on_swap_iff [simp]:
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   460
  assumes A: "a \<in> A" "b \<in> A" shows "inj_on (swap a b f) A = inj_on f A"
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   461
proof 
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   462
  assume "inj_on (swap a b f) A"
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   463
  with A have "inj_on (swap a b (swap a b f)) A" 
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17084
diff changeset
   464
    by (iprover intro: inj_on_imp_inj_on_swap) 
15510
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   465
  thus "inj_on f A" by simp 
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   466
next
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   467
  assume "inj_on f A"
27165
e1c49eb8cee6 Hid swap
nipkow
parents: 27125
diff changeset
   468
  with A show "inj_on (swap a b f) A" by(iprover intro: inj_on_imp_inj_on_swap)
15510
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   469
qed
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   470
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   471
lemma surj_imp_surj_swap: "surj f ==> surj (swap a b f)"
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   472
apply (simp add: surj_def swap_def, clarify)
27125
0733f575b51e tuned proofs -- case_tac *is* available here;
wenzelm
parents: 27106
diff changeset
   473
apply (case_tac "y = f b", blast)
0733f575b51e tuned proofs -- case_tac *is* available here;
wenzelm
parents: 27106
diff changeset
   474
apply (case_tac "y = f a", auto)
15510
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   475
done
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   476
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   477
lemma surj_swap_iff [simp]: "surj (swap a b f) = surj f"
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   478
proof 
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   479
  assume "surj (swap a b f)"
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   480
  hence "surj (swap a b (swap a b f))" by (rule surj_imp_surj_swap) 
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   481
  thus "surj f" by simp 
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   482
next
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   483
  assume "surj f"
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   484
  thus "surj (swap a b f)" by (rule surj_imp_surj_swap) 
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   485
qed
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   486
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   487
lemma bij_swap_iff: "bij (swap a b f) = bij f"
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   488
by (simp add: bij_def)
21547
9c9fdf4c2949 moved order arities for fun and bool to Fun/Orderings
haftmann
parents: 21327
diff changeset
   489
27188
e47b069cab35 hide -> hide (open)
nipkow
parents: 27165
diff changeset
   490
hide (open) const swap
21547
9c9fdf4c2949 moved order arities for fun and bool to Fun/Orderings
haftmann
parents: 21327
diff changeset
   491
22845
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   492
subsection {* Proof tool setup *} 
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   493
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   494
text {* simplifies terms of the form
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   495
  f(...,x:=y,...,x:=z,...) to f(...,x:=z,...) *}
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   496
24017
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   497
simproc_setup fun_upd2 ("f(v := w, x := y)") = {* fn _ =>
22845
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   498
let
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   499
  fun gen_fun_upd NONE T _ _ = NONE
24017
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   500
    | gen_fun_upd (SOME f) T x y = SOME (Const (@{const_name fun_upd}, T) $ f $ x $ y)
22845
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   501
  fun dest_fun_T1 (Type (_, T :: Ts)) = T
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   502
  fun find_double (t as Const (@{const_name fun_upd},T) $ f $ x $ y) =
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   503
    let
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   504
      fun find (Const (@{const_name fun_upd},T) $ g $ v $ w) =
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   505
            if v aconv x then SOME g else gen_fun_upd (find g) T v w
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   506
        | find t = NONE
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   507
    in (dest_fun_T1 T, gen_fun_upd (find f) T x y) end
24017
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   508
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   509
  fun proc ss ct =
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   510
    let
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   511
      val ctxt = Simplifier.the_context ss
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   512
      val t = Thm.term_of ct
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   513
    in
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   514
      case find_double t of
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   515
        (T, NONE) => NONE
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   516
      | (T, SOME rhs) =>
27330
1af2598b5f7d Logic.all/mk_equals/mk_implies;
wenzelm
parents: 27188
diff changeset
   517
          SOME (Goal.prove ctxt [] [] (Logic.mk_equals (t, rhs))
24017
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   518
            (fn _ =>
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   519
              rtac eq_reflection 1 THEN
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   520
              rtac ext 1 THEN
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   521
              simp_tac (Simplifier.inherit_context ss @{simpset}) 1))
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   522
    end
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
   523
in proc end
22845
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   524
*}
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   525
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
   526
21870
c701cdacf69b infix syntax for generated code for composition
haftmann
parents: 21547
diff changeset
   527
subsection {* Code generator setup *}
c701cdacf69b infix syntax for generated code for composition
haftmann
parents: 21547
diff changeset
   528
25886
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   529
types_code
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   530
  "fun"  ("(_ ->/ _)")
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   531
attach (term_of) {*
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   532
fun term_of_fun_type _ aT _ bT _ = Free ("<function>", aT --> bT);
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   533
*}
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   534
attach (test) {*
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   535
fun gen_fun_type aF aT bG bT i =
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   536
  let
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   537
    val tab = ref [];
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   538
    fun mk_upd (x, (_, y)) t = Const ("Fun.fun_upd",
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   539
      (aT --> bT) --> aT --> bT --> aT --> bT) $ t $ aF x $ y ()
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   540
  in
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   541
    (fn x =>
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   542
       case AList.lookup op = (!tab) x of
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   543
         NONE =>
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   544
           let val p as (y, _) = bG i
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   545
           in (tab := (x, p) :: !tab; y) end
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   546
       | SOME (y, _) => y,
28711
60e51a045755 Replaced arbitrary by undefined.
berghofe
parents: 28562
diff changeset
   547
     fn () => Basics.fold mk_upd (!tab) (Const ("HOL.undefined", aT --> bT)))
25886
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   548
  end;
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   549
*}
7753e0d81b7a Added test data generator for function type (from Pure/codegen.ML).
berghofe
parents: 24286
diff changeset
   550
21870
c701cdacf69b infix syntax for generated code for composition
haftmann
parents: 21547
diff changeset
   551
code_const "op \<circ>"
c701cdacf69b infix syntax for generated code for composition
haftmann
parents: 21547
diff changeset
   552
  (SML infixl 5 "o")
c701cdacf69b infix syntax for generated code for composition
haftmann
parents: 21547
diff changeset
   553
  (Haskell infixr 9 ".")
c701cdacf69b infix syntax for generated code for composition
haftmann
parents: 21547
diff changeset
   554
21906
db805c70a519 explizit serialization for Haskell id
haftmann
parents: 21870
diff changeset
   555
code_const "id"
db805c70a519 explizit serialization for Haskell id
haftmann
parents: 21870
diff changeset
   556
  (Haskell "id")
db805c70a519 explizit serialization for Haskell id
haftmann
parents: 21870
diff changeset
   557
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
   558
end