| author | haftmann | 
| Sun, 28 Feb 2021 20:13:07 +0000 | |
| changeset 73327 | fd32f08f4fb5 | 
| parent 73326 | 7a88313895d5 | 
| child 73328 | ff24fe85ee57 | 
| permissions | -rw-r--r-- | 
| 1475 | 1 | (* Title: HOL/Fun.thy | 
| 2 | Author: Tobias Nipkow, Cambridge University Computer Laboratory | |
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 3 | Author: Andrei Popescu, TU Muenchen | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 4 | Copyright 1994, 2012 | 
| 18154 | 5 | *) | 
| 923 | 6 | |
| 60758 | 7 | section \<open>Notions about functions\<close> | 
| 923 | 8 | |
| 15510 | 9 | theory Fun | 
| 63575 | 10 | imports Set | 
| 69913 | 11 | keywords "functor" :: thy_goal_defn | 
| 15131 | 12 | begin | 
| 2912 | 13 | |
| 63322 | 14 | lemma apply_inverse: "f x = u \<Longrightarrow> (\<And>x. P x \<Longrightarrow> g (f x) = x) \<Longrightarrow> P x \<Longrightarrow> x = g u" | 
| 26147 | 15 | by auto | 
| 2912 | 16 | |
| 63322 | 17 | text \<open>Uniqueness, so NOT the axiom of choice.\<close> | 
| 59504 
8c6747dba731
New lemmas and a bit of tidying up.
 paulson <lp15@cam.ac.uk> parents: 
58889diff
changeset | 18 | lemma uniq_choice: "\<forall>x. \<exists>!y. Q x y \<Longrightarrow> \<exists>f. \<forall>x. Q x (f x)" | 
| 
8c6747dba731
New lemmas and a bit of tidying up.
 paulson <lp15@cam.ac.uk> parents: 
58889diff
changeset | 19 | by (force intro: theI') | 
| 
8c6747dba731
New lemmas and a bit of tidying up.
 paulson <lp15@cam.ac.uk> parents: 
58889diff
changeset | 20 | |
| 
8c6747dba731
New lemmas and a bit of tidying up.
 paulson <lp15@cam.ac.uk> parents: 
58889diff
changeset | 21 | lemma b_uniq_choice: "\<forall>x\<in>S. \<exists>!y. Q x y \<Longrightarrow> \<exists>f. \<forall>x\<in>S. Q x (f x)" | 
| 
8c6747dba731
New lemmas and a bit of tidying up.
 paulson <lp15@cam.ac.uk> parents: 
58889diff
changeset | 22 | by (force intro: theI') | 
| 12258 | 23 | |
| 63400 | 24 | |
| 61799 | 25 | subsection \<open>The Identity Function \<open>id\<close>\<close> | 
| 6171 | 26 | |
| 63322 | 27 | definition id :: "'a \<Rightarrow> 'a" | 
| 28 | where "id = (\<lambda>x. x)" | |
| 13910 | 29 | |
| 26147 | 30 | lemma id_apply [simp]: "id x = x" | 
| 31 | by (simp add: id_def) | |
| 32 | ||
| 47579 | 33 | lemma image_id [simp]: "image id = id" | 
| 34 | by (simp add: id_def fun_eq_iff) | |
| 26147 | 35 | |
| 47579 | 36 | lemma vimage_id [simp]: "vimage id = id" | 
| 37 | by (simp add: id_def fun_eq_iff) | |
| 26147 | 38 | |
| 62843 
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
 paulson <lp15@cam.ac.uk> parents: 
62618diff
changeset | 39 | lemma eq_id_iff: "(\<forall>x. f x = x) \<longleftrightarrow> f = id" | 
| 
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
 paulson <lp15@cam.ac.uk> parents: 
62618diff
changeset | 40 | by auto | 
| 
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
 paulson <lp15@cam.ac.uk> parents: 
62618diff
changeset | 41 | |
| 52435 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
51717diff
changeset | 42 | code_printing | 
| 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
51717diff
changeset | 43 | constant id \<rightharpoonup> (Haskell) "id" | 
| 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
51717diff
changeset | 44 | |
| 26147 | 45 | |
| 61799 | 46 | subsection \<open>The Composition Operator \<open>f \<circ> g\<close>\<close> | 
| 26147 | 47 | |
| 61955 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 48 | definition comp :: "('b \<Rightarrow> 'c) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'c"  (infixl "\<circ>" 55)
 | 
| 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 49 | where "f \<circ> g = (\<lambda>x. f (g x))" | 
| 11123 | 50 | |
| 61955 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 51 | notation (ASCII) | 
| 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 52 | comp (infixl "o" 55) | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19536diff
changeset | 53 | |
| 63322 | 54 | lemma comp_apply [simp]: "(f \<circ> g) x = f (g x)" | 
| 49739 | 55 | by (simp add: comp_def) | 
| 13585 | 56 | |
| 63322 | 57 | lemma comp_assoc: "(f \<circ> g) \<circ> h = f \<circ> (g \<circ> h)" | 
| 49739 | 58 | by (simp add: fun_eq_iff) | 
| 13585 | 59 | |
| 63322 | 60 | lemma id_comp [simp]: "id \<circ> g = g" | 
| 49739 | 61 | by (simp add: fun_eq_iff) | 
| 13585 | 62 | |
| 63322 | 63 | lemma comp_id [simp]: "f \<circ> id = f" | 
| 49739 | 64 | by (simp add: fun_eq_iff) | 
| 65 | ||
| 63575 | 66 | lemma comp_eq_dest: "a \<circ> b = c \<circ> d \<Longrightarrow> a (b v) = c (d v)" | 
| 49739 | 67 | by (simp add: fun_eq_iff) | 
| 34150 | 68 | |
| 63575 | 69 | lemma comp_eq_elim: "a \<circ> b = c \<circ> d \<Longrightarrow> ((\<And>v. a (b v) = c (d v)) \<Longrightarrow> R) \<Longrightarrow> R" | 
| 61204 | 70 | by (simp add: fun_eq_iff) | 
| 34150 | 71 | |
| 63322 | 72 | lemma comp_eq_dest_lhs: "a \<circ> b = c \<Longrightarrow> a (b v) = c v" | 
| 55066 | 73 | by clarsimp | 
| 74 | ||
| 63322 | 75 | lemma comp_eq_id_dest: "a \<circ> b = id \<circ> c \<Longrightarrow> a (b v) = c v" | 
| 76 | by clarsimp | |
| 77 | ||
| 78 | lemma image_comp: "f ` (g ` r) = (f \<circ> g) ` r" | |
| 33044 | 79 | by auto | 
| 80 | ||
| 63322 | 81 | lemma vimage_comp: "f -` (g -` x) = (g \<circ> f) -` x" | 
| 49739 | 82 | by auto | 
| 83 | ||
| 63322 | 84 | lemma image_eq_imp_comp: "f ` A = g ` B \<Longrightarrow> (h \<circ> f) ` A = (h \<circ> g) ` B" | 
| 59504 
8c6747dba731
New lemmas and a bit of tidying up.
 paulson <lp15@cam.ac.uk> parents: 
58889diff
changeset | 85 | by (auto simp: comp_def elim!: equalityE) | 
| 
8c6747dba731
New lemmas and a bit of tidying up.
 paulson <lp15@cam.ac.uk> parents: 
58889diff
changeset | 86 | |
| 67399 | 87 | lemma image_bind: "f ` (Set.bind A g) = Set.bind A ((`) f \<circ> g)" | 
| 63322 | 88 | by (auto simp add: Set.bind_def) | 
| 59512 | 89 | |
| 90 | lemma bind_image: "Set.bind (f ` A) g = Set.bind A (g \<circ> f)" | |
| 63322 | 91 | by (auto simp add: Set.bind_def) | 
| 59512 | 92 | |
| 63322 | 93 | lemma (in group_add) minus_comp_minus [simp]: "uminus \<circ> uminus = id" | 
| 60929 | 94 | by (simp add: fun_eq_iff) | 
| 95 | ||
| 63322 | 96 | lemma (in boolean_algebra) minus_comp_minus [simp]: "uminus \<circ> uminus = id" | 
| 60929 | 97 | by (simp add: fun_eq_iff) | 
| 98 | ||
| 52435 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
51717diff
changeset | 99 | code_printing | 
| 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
51717diff
changeset | 100 | constant comp \<rightharpoonup> (SML) infixl 5 "o" and (Haskell) infixr 9 "." | 
| 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
51717diff
changeset | 101 | |
| 13585 | 102 | |
| 61799 | 103 | subsection \<open>The Forward Composition Operator \<open>fcomp\<close>\<close> | 
| 26357 | 104 | |
| 63575 | 105 | definition fcomp :: "('a \<Rightarrow> 'b) \<Rightarrow> ('b \<Rightarrow> 'c) \<Rightarrow> 'a \<Rightarrow> 'c"  (infixl "\<circ>>" 60)
 | 
| 63322 | 106 | where "f \<circ>> g = (\<lambda>x. g (f x))" | 
| 26357 | 107 | |
| 37751 | 108 | lemma fcomp_apply [simp]: "(f \<circ>> g) x = g (f x)" | 
| 26357 | 109 | by (simp add: fcomp_def) | 
| 110 | ||
| 37751 | 111 | lemma fcomp_assoc: "(f \<circ>> g) \<circ>> h = f \<circ>> (g \<circ>> h)" | 
| 26357 | 112 | by (simp add: fcomp_def) | 
| 113 | ||
| 37751 | 114 | lemma id_fcomp [simp]: "id \<circ>> g = g" | 
| 26357 | 115 | by (simp add: fcomp_def) | 
| 116 | ||
| 37751 | 117 | lemma fcomp_id [simp]: "f \<circ>> id = f" | 
| 26357 | 118 | by (simp add: fcomp_def) | 
| 119 | ||
| 63322 | 120 | lemma fcomp_comp: "fcomp f g = comp g f" | 
| 61699 
a81dc5c4d6a9
New theorems mostly from Peter Gammie
 paulson <lp15@cam.ac.uk> parents: 
61630diff
changeset | 121 | by (simp add: ext) | 
| 
a81dc5c4d6a9
New theorems mostly from Peter Gammie
 paulson <lp15@cam.ac.uk> parents: 
61630diff
changeset | 122 | |
| 52435 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
51717diff
changeset | 123 | code_printing | 
| 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
51717diff
changeset | 124 | constant fcomp \<rightharpoonup> (Eval) infixl 1 "#>" | 
| 31202 
52d332f8f909
pretty printing of functional combinators for evaluation code
 haftmann parents: 
31080diff
changeset | 125 | |
| 37751 | 126 | no_notation fcomp (infixl "\<circ>>" 60) | 
| 26588 
d83271bfaba5
removed syntax from monad combinators; renamed mbind to scomp
 haftmann parents: 
26357diff
changeset | 127 | |
| 26357 | 128 | |
| 60758 | 129 | subsection \<open>Mapping functions\<close> | 
| 40602 | 130 | |
| 63322 | 131 | definition map_fun :: "('c \<Rightarrow> 'a) \<Rightarrow> ('b \<Rightarrow> 'd) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'c \<Rightarrow> 'd"
 | 
| 132 | where "map_fun f g h = g \<circ> h \<circ> f" | |
| 40602 | 133 | |
| 63322 | 134 | lemma map_fun_apply [simp]: "map_fun f g h x = g (h (f x))" | 
| 40602 | 135 | by (simp add: map_fun_def) | 
| 136 | ||
| 137 | ||
| 60758 | 138 | subsection \<open>Injectivity and Bijectivity\<close> | 
| 39076 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 139 | |
| 63322 | 140 | definition inj_on :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a set \<Rightarrow> bool"  \<comment> \<open>injective\<close>
 | 
| 141 | where "inj_on f A \<longleftrightarrow> (\<forall>x\<in>A. \<forall>y\<in>A. f x = f y \<longrightarrow> x = y)" | |
| 26147 | 142 | |
| 63322 | 143 | definition bij_betw :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a set \<Rightarrow> 'b set \<Rightarrow> bool"  \<comment> \<open>bijective\<close>
 | 
| 144 | where "bij_betw f A B \<longleftrightarrow> inj_on f A \<and> f ` A = B" | |
| 26147 | 145 | |
| 63575 | 146 | text \<open> | 
| 147 | A common special case: functions injective, surjective or bijective over | |
| 148 | the entire domain type. | |
| 149 | \<close> | |
| 26147 | 150 | |
| 65170 
53675f36820d
restored surj as output abbreviation, amending 6af79184bef3
 haftmann parents: 
64966diff
changeset | 151 | abbreviation inj :: "('a \<Rightarrow> 'b) \<Rightarrow> bool"
 | 
| 
53675f36820d
restored surj as output abbreviation, amending 6af79184bef3
 haftmann parents: 
64966diff
changeset | 152 | where "inj f \<equiv> inj_on f UNIV" | 
| 26147 | 153 | |
| 65170 
53675f36820d
restored surj as output abbreviation, amending 6af79184bef3
 haftmann parents: 
64966diff
changeset | 154 | abbreviation surj :: "('a \<Rightarrow> 'b) \<Rightarrow> bool"
 | 
| 63322 | 155 | where "surj f \<equiv> range f = UNIV" | 
| 13585 | 156 | |
| 67226 | 157 | translations \<comment> \<open>The negated case:\<close> | 
| 65170 
53675f36820d
restored surj as output abbreviation, amending 6af79184bef3
 haftmann parents: 
64966diff
changeset | 158 | "\<not> CONST surj f" \<leftharpoondown> "CONST range f \<noteq> CONST UNIV" | 
| 
53675f36820d
restored surj as output abbreviation, amending 6af79184bef3
 haftmann parents: 
64966diff
changeset | 159 | |
| 
53675f36820d
restored surj as output abbreviation, amending 6af79184bef3
 haftmann parents: 
64966diff
changeset | 160 | abbreviation bij :: "('a \<Rightarrow> 'b) \<Rightarrow> bool"
 | 
| 
53675f36820d
restored surj as output abbreviation, amending 6af79184bef3
 haftmann parents: 
64966diff
changeset | 161 | where "bij f \<equiv> bij_betw f UNIV UNIV" | 
| 26147 | 162 | |
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 163 | lemma inj_def: "inj f \<longleftrightarrow> (\<forall>x y. f x = f y \<longrightarrow> x = y)" | 
| 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 164 | unfolding inj_on_def by blast | 
| 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 165 | |
| 63322 | 166 | lemma injI: "(\<And>x y. f x = f y \<Longrightarrow> x = y) \<Longrightarrow> inj f" | 
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 167 | unfolding inj_def by blast | 
| 13585 | 168 | |
| 63322 | 169 | theorem range_ex1_eq: "inj f \<Longrightarrow> b \<in> range f \<longleftrightarrow> (\<exists>!x. b = f x)" | 
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 170 | unfolding inj_def by blast | 
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 171 | |
| 63322 | 172 | lemma injD: "inj f \<Longrightarrow> f x = f y \<Longrightarrow> x = y" | 
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 173 | by (simp add: inj_def) | 
| 63322 | 174 | |
| 175 | lemma inj_on_eq_iff: "inj_on f A \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> f x = f y \<longleftrightarrow> x = y" | |
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 176 | by (auto simp: inj_on_def) | 
| 63322 | 177 | |
| 64965 | 178 | lemma inj_on_cong: "(\<And>a. a \<in> A \<Longrightarrow> f a = g a) \<Longrightarrow> inj_on f A \<longleftrightarrow> inj_on g A" | 
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 179 | by (auto simp: inj_on_def) | 
| 63322 | 180 | |
| 181 | lemma inj_on_strict_subset: "inj_on f B \<Longrightarrow> A \<subset> B \<Longrightarrow> f ` A \<subset> f ` B" | |
| 182 | unfolding inj_on_def by blast | |
| 183 | ||
| 69700 
7a92cbec7030
new material about summations and powers, along with some tweaks
 paulson <lp15@cam.ac.uk> parents: 
69661diff
changeset | 184 | lemma inj_compose: "inj f \<Longrightarrow> inj g \<Longrightarrow> inj (f \<circ> g)" | 
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 185 | by (simp add: inj_def) | 
| 38620 | 186 | |
| 187 | lemma inj_fun: "inj f \<Longrightarrow> inj (\<lambda>x y. f x)" | |
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 188 | by (simp add: inj_def fun_eq_iff) | 
| 38620 | 189 | |
| 63322 | 190 | lemma inj_eq: "inj f \<Longrightarrow> f x = f y \<longleftrightarrow> x = y" | 
| 191 | by (simp add: inj_on_eq_iff) | |
| 32988 | 192 | |
| 71827 | 193 | lemma inj_on_iff_Uniq: "inj_on f A \<longleftrightarrow> (\<forall>x\<in>A. \<exists>\<^sub>\<le>\<^sub>1y. y\<in>A \<and> f x = f y)" | 
| 194 | by (auto simp: Uniq_def inj_on_def) | |
| 195 | ||
| 26147 | 196 | lemma inj_on_id[simp]: "inj_on id A" | 
| 39076 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 197 | by (simp add: inj_on_def) | 
| 13585 | 198 | |
| 63322 | 199 | lemma inj_on_id2[simp]: "inj_on (\<lambda>x. x) A" | 
| 200 | by (simp add: inj_on_def) | |
| 26147 | 201 | |
| 46586 | 202 | lemma inj_on_Int: "inj_on f A \<or> inj_on f B \<Longrightarrow> inj_on f (A \<inter> B)" | 
| 63322 | 203 | unfolding inj_on_def by blast | 
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 204 | |
| 40702 | 205 | lemma surj_id: "surj id" | 
| 63322 | 206 | by simp | 
| 26147 | 207 | |
| 39101 
606432dd1896
Revert bij_betw changes to simp set (Problem in afp/Ordinals_and_Cardinals)
 hoelzl parents: 
39076diff
changeset | 208 | lemma bij_id[simp]: "bij id" | 
| 63322 | 209 | by (simp add: bij_betw_def) | 
| 13585 | 210 | |
| 63322 | 211 | lemma bij_uminus: "bij (uminus :: 'a \<Rightarrow> 'a::ab_group_add)" | 
| 212 | unfolding bij_betw_def inj_on_def | |
| 213 | by (force intro: minus_minus [symmetric]) | |
| 63072 | 214 | |
| 72125 
cf8399df4d76
elimination of some needless assumptions
 paulson <lp15@cam.ac.uk> parents: 
71857diff
changeset | 215 | lemma bij_betwE: "bij_betw f A B \<Longrightarrow> \<forall>a\<in>A. f a \<in> B" | 
| 
cf8399df4d76
elimination of some needless assumptions
 paulson <lp15@cam.ac.uk> parents: 
71857diff
changeset | 216 | unfolding bij_betw_def by auto | 
| 
cf8399df4d76
elimination of some needless assumptions
 paulson <lp15@cam.ac.uk> parents: 
71857diff
changeset | 217 | |
| 63322 | 218 | lemma inj_onI [intro?]: "(\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> f x = f y \<Longrightarrow> x = y) \<Longrightarrow> inj_on f A" | 
| 219 | by (simp add: inj_on_def) | |
| 13585 | 220 | |
| 63322 | 221 | lemma inj_on_inverseI: "(\<And>x. x \<in> A \<Longrightarrow> g (f x) = x) \<Longrightarrow> inj_on f A" | 
| 64965 | 222 | by (auto dest: arg_cong [of concl: g] simp add: inj_on_def) | 
| 13585 | 223 | |
| 63322 | 224 | lemma inj_onD: "inj_on f A \<Longrightarrow> f x = f y \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> x = y" | 
| 225 | unfolding inj_on_def by blast | |
| 13585 | 226 | |
| 63365 | 227 | lemma inj_on_subset: | 
| 228 | assumes "inj_on f A" | |
| 63575 | 229 | and "B \<subseteq> A" | 
| 63365 | 230 | shows "inj_on f B" | 
| 231 | proof (rule inj_onI) | |
| 232 | fix a b | |
| 233 | assume "a \<in> B" and "b \<in> B" | |
| 234 | with assms have "a \<in> A" and "b \<in> A" | |
| 235 | by auto | |
| 236 | moreover assume "f a = f b" | |
| 64965 | 237 | ultimately show "a = b" | 
| 238 | using assms by (auto dest: inj_onD) | |
| 63365 | 239 | qed | 
| 240 | ||
| 63322 | 241 | lemma comp_inj_on: "inj_on f A \<Longrightarrow> inj_on g (f ` A) \<Longrightarrow> inj_on (g \<circ> f) A" | 
| 242 | by (simp add: comp_def inj_on_def) | |
| 243 | ||
| 244 | lemma inj_on_imageI: "inj_on (g \<circ> f) A \<Longrightarrow> inj_on g (f ` A)" | |
| 63072 | 245 | by (auto simp add: inj_on_def) | 
| 15303 | 246 | |
| 63322 | 247 | lemma inj_on_image_iff: | 
| 64965 | 248 | "\<forall>x\<in>A. \<forall>y\<in>A. g (f x) = g (f y) \<longleftrightarrow> g x = g y \<Longrightarrow> inj_on f A \<Longrightarrow> inj_on g (f ` A) \<longleftrightarrow> inj_on g A" | 
| 63322 | 249 | unfolding inj_on_def by blast | 
| 15439 | 250 | |
| 63322 | 251 | lemma inj_on_contraD: "inj_on f A \<Longrightarrow> x \<noteq> y \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> f x \<noteq> f y" | 
| 252 | unfolding inj_on_def by blast | |
| 12258 | 253 | |
| 63072 | 254 | lemma inj_singleton [simp]: "inj_on (\<lambda>x. {x}) A"
 | 
| 255 | by (simp add: inj_on_def) | |
| 13585 | 256 | |
| 15111 | 257 | lemma inj_on_empty[iff]: "inj_on f {}"
 | 
| 63322 | 258 | by (simp add: inj_on_def) | 
| 13585 | 259 | |
| 63322 | 260 | lemma subset_inj_on: "inj_on f B \<Longrightarrow> A \<subseteq> B \<Longrightarrow> inj_on f A" | 
| 261 | unfolding inj_on_def by blast | |
| 262 | ||
| 263 | lemma inj_on_Un: "inj_on f (A \<union> B) \<longleftrightarrow> inj_on f A \<and> inj_on f B \<and> f ` (A - B) \<inter> f ` (B - A) = {}"
 | |
| 264 | unfolding inj_on_def by (blast intro: sym) | |
| 15111 | 265 | |
| 63322 | 266 | lemma inj_on_insert [iff]: "inj_on f (insert a A) \<longleftrightarrow> inj_on f A \<and> f a \<notin> f ` (A - {a})"
 | 
| 267 | unfolding inj_on_def by (blast intro: sym) | |
| 268 | ||
| 269 | lemma inj_on_diff: "inj_on f A \<Longrightarrow> inj_on f (A - B)" | |
| 270 | unfolding inj_on_def by blast | |
| 15111 | 271 | |
| 63322 | 272 | lemma comp_inj_on_iff: "inj_on f A \<Longrightarrow> inj_on f' (f ` A) \<longleftrightarrow> inj_on (f' \<circ> f) A" | 
| 64965 | 273 | by (auto simp: comp_inj_on inj_on_def) | 
| 15111 | 274 | |
| 63322 | 275 | lemma inj_on_imageI2: "inj_on (f' \<circ> f) A \<Longrightarrow> inj_on f A" | 
| 64965 | 276 | by (auto simp: comp_inj_on inj_on_def) | 
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 277 | |
| 51598 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 haftmann parents: 
49905diff
changeset | 278 | lemma inj_img_insertE: | 
| 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 haftmann parents: 
49905diff
changeset | 279 | assumes "inj_on f A" | 
| 63322 | 280 | assumes "x \<notin> B" | 
| 281 | and "insert x B = f ` A" | |
| 282 | obtains x' A' where "x' \<notin> A'" and "A = insert x' A'" and "x = f x'" and "B = f ` A'" | |
| 51598 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 haftmann parents: 
49905diff
changeset | 283 | proof - | 
| 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 haftmann parents: 
49905diff
changeset | 284 | from assms have "x \<in> f ` A" by auto | 
| 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 haftmann parents: 
49905diff
changeset | 285 | then obtain x' where *: "x' \<in> A" "x = f x'" by auto | 
| 63322 | 286 |   then have A: "A = insert x' (A - {x'})" by auto
 | 
| 287 |   with assms * have B: "B = f ` (A - {x'})" by (auto dest: inj_on_contraD)
 | |
| 51598 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 haftmann parents: 
49905diff
changeset | 288 |   have "x' \<notin> A - {x'}" by simp
 | 
| 63322 | 289 | from this A \<open>x = f x'\<close> B show ?thesis .. | 
| 51598 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 haftmann parents: 
49905diff
changeset | 290 | qed | 
| 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 haftmann parents: 
49905diff
changeset | 291 | |
| 71404 
f2b783abfbe7
A few lemmas connected with orderings
 paulson <lp15@cam.ac.uk> parents: 
69913diff
changeset | 292 | lemma linorder_inj_onI: | 
| 
f2b783abfbe7
A few lemmas connected with orderings
 paulson <lp15@cam.ac.uk> parents: 
69913diff
changeset | 293 | fixes A :: "'a::order set" | 
| 
f2b783abfbe7
A few lemmas connected with orderings
 paulson <lp15@cam.ac.uk> parents: 
69913diff
changeset | 294 | assumes ne: "\<And>x y. \<lbrakk>x < y; x\<in>A; y\<in>A\<rbrakk> \<Longrightarrow> f x \<noteq> f y" and lin: "\<And>x y. \<lbrakk>x\<in>A; y\<in>A\<rbrakk> \<Longrightarrow> x\<le>y \<or> y\<le>x" | 
| 
f2b783abfbe7
A few lemmas connected with orderings
 paulson <lp15@cam.ac.uk> parents: 
69913diff
changeset | 295 | shows "inj_on f A" | 
| 
f2b783abfbe7
A few lemmas connected with orderings
 paulson <lp15@cam.ac.uk> parents: 
69913diff
changeset | 296 | proof (rule inj_onI) | 
| 
f2b783abfbe7
A few lemmas connected with orderings
 paulson <lp15@cam.ac.uk> parents: 
69913diff
changeset | 297 | fix x y | 
| 
f2b783abfbe7
A few lemmas connected with orderings
 paulson <lp15@cam.ac.uk> parents: 
69913diff
changeset | 298 | assume eq: "f x = f y" and "x\<in>A" "y\<in>A" | 
| 
f2b783abfbe7
A few lemmas connected with orderings
 paulson <lp15@cam.ac.uk> parents: 
69913diff
changeset | 299 | then show "x = y" | 
| 
f2b783abfbe7
A few lemmas connected with orderings
 paulson <lp15@cam.ac.uk> parents: 
69913diff
changeset | 300 | using lin [of x y] ne by (force simp: dual_order.order_iff_strict) | 
| 
f2b783abfbe7
A few lemmas connected with orderings
 paulson <lp15@cam.ac.uk> parents: 
69913diff
changeset | 301 | qed | 
| 
f2b783abfbe7
A few lemmas connected with orderings
 paulson <lp15@cam.ac.uk> parents: 
69913diff
changeset | 302 | |
| 54578 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54147diff
changeset | 303 | lemma linorder_injI: | 
| 64965 | 304 | assumes "\<And>x y::'a::linorder. x < y \<Longrightarrow> f x \<noteq> f y" | 
| 54578 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54147diff
changeset | 305 | shows "inj f" | 
| 71404 
f2b783abfbe7
A few lemmas connected with orderings
 paulson <lp15@cam.ac.uk> parents: 
69913diff
changeset | 306 | \<comment> \<open>Courtesy of Stephan Merz\<close> | 
| 
f2b783abfbe7
A few lemmas connected with orderings
 paulson <lp15@cam.ac.uk> parents: 
69913diff
changeset | 307 | using assms by (auto intro: linorder_inj_onI linear) | 
| 69735 
8230dca028eb
the theory of Equipollence, and moving Fpow from Cardinals into Main
 paulson <lp15@cam.ac.uk> parents: 
69700diff
changeset | 308 | |
| 
8230dca028eb
the theory of Equipollence, and moving Fpow from Cardinals into Main
 paulson <lp15@cam.ac.uk> parents: 
69700diff
changeset | 309 | lemma inj_on_image_Pow: "inj_on f A \<Longrightarrow>inj_on (image f) (Pow A)" | 
| 
8230dca028eb
the theory of Equipollence, and moving Fpow from Cardinals into Main
 paulson <lp15@cam.ac.uk> parents: 
69700diff
changeset | 310 | unfolding Pow_def inj_on_def by blast | 
| 
8230dca028eb
the theory of Equipollence, and moving Fpow from Cardinals into Main
 paulson <lp15@cam.ac.uk> parents: 
69700diff
changeset | 311 | |
| 
8230dca028eb
the theory of Equipollence, and moving Fpow from Cardinals into Main
 paulson <lp15@cam.ac.uk> parents: 
69700diff
changeset | 312 | lemma bij_betw_image_Pow: "bij_betw f A B \<Longrightarrow> bij_betw (image f) (Pow A) (Pow B)" | 
| 
8230dca028eb
the theory of Equipollence, and moving Fpow from Cardinals into Main
 paulson <lp15@cam.ac.uk> parents: 
69700diff
changeset | 313 | by (auto simp add: bij_betw_def inj_on_image_Pow image_Pow_surj) | 
| 
8230dca028eb
the theory of Equipollence, and moving Fpow from Cardinals into Main
 paulson <lp15@cam.ac.uk> parents: 
69700diff
changeset | 314 | |
| 40702 | 315 | lemma surj_def: "surj f \<longleftrightarrow> (\<forall>y. \<exists>x. y = f x)" | 
| 316 | by auto | |
| 39076 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 317 | |
| 63322 | 318 | lemma surjI: | 
| 64965 | 319 | assumes "\<And>x. g (f x) = x" | 
| 63322 | 320 | shows "surj g" | 
| 64965 | 321 | using assms [symmetric] by auto | 
| 13585 | 322 | |
| 39076 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 323 | lemma surjD: "surj f \<Longrightarrow> \<exists>x. y = f x" | 
| 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 324 | by (simp add: surj_def) | 
| 13585 | 325 | |
| 39076 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 326 | lemma surjE: "surj f \<Longrightarrow> (\<And>x. y = f x \<Longrightarrow> C) \<Longrightarrow> C" | 
| 63575 | 327 | by (simp add: surj_def) blast | 
| 13585 | 328 | |
| 63322 | 329 | lemma comp_surj: "surj f \<Longrightarrow> surj g \<Longrightarrow> surj (g \<circ> f)" | 
| 69768 | 330 | using image_comp [of g f UNIV] by simp | 
| 13585 | 331 | |
| 63322 | 332 | lemma bij_betw_imageI: "inj_on f A \<Longrightarrow> f ` A = B \<Longrightarrow> bij_betw f A B" | 
| 333 | unfolding bij_betw_def by clarify | |
| 57282 | 334 | |
| 335 | lemma bij_betw_imp_surj_on: "bij_betw f A B \<Longrightarrow> f ` A = B" | |
| 336 | unfolding bij_betw_def by clarify | |
| 337 | ||
| 39074 | 338 | lemma bij_betw_imp_surj: "bij_betw f A UNIV \<Longrightarrow> surj f" | 
| 40702 | 339 | unfolding bij_betw_def by auto | 
| 39074 | 340 | |
| 63322 | 341 | lemma bij_betw_empty1: "bij_betw f {} A \<Longrightarrow> A = {}"
 | 
| 342 | unfolding bij_betw_def by blast | |
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 343 | |
| 63322 | 344 | lemma bij_betw_empty2: "bij_betw f A {} \<Longrightarrow> A = {}"
 | 
| 345 | unfolding bij_betw_def by blast | |
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 346 | |
| 63322 | 347 | lemma inj_on_imp_bij_betw: "inj_on f A \<Longrightarrow> bij_betw f A (f ` A)" | 
| 348 | unfolding bij_betw_def by simp | |
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 349 | |
| 71464 | 350 | lemma bij_betw_apply: "\<lbrakk>bij_betw f A B; a \<in> A\<rbrakk> \<Longrightarrow> f a \<in> B" | 
| 351 | unfolding bij_betw_def by auto | |
| 352 | ||
| 39076 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 353 | lemma bij_def: "bij f \<longleftrightarrow> inj f \<and> surj f" | 
| 64965 | 354 | by (rule bij_betw_def) | 
| 39074 | 355 | |
| 63322 | 356 | lemma bijI: "inj f \<Longrightarrow> surj f \<Longrightarrow> bij f" | 
| 64965 | 357 | by (rule bij_betw_imageI) | 
| 13585 | 358 | |
| 63322 | 359 | lemma bij_is_inj: "bij f \<Longrightarrow> inj f" | 
| 360 | by (simp add: bij_def) | |
| 13585 | 361 | |
| 63322 | 362 | lemma bij_is_surj: "bij f \<Longrightarrow> surj f" | 
| 363 | by (simp add: bij_def) | |
| 13585 | 364 | |
| 26105 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 365 | lemma bij_betw_imp_inj_on: "bij_betw f A B \<Longrightarrow> inj_on f A" | 
| 63322 | 366 | by (simp add: bij_betw_def) | 
| 26105 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 367 | |
| 63322 | 368 | lemma bij_betw_trans: "bij_betw f A B \<Longrightarrow> bij_betw g B C \<Longrightarrow> bij_betw (g \<circ> f) A C" | 
| 369 | by (auto simp add:bij_betw_def comp_inj_on) | |
| 31438 | 370 | |
| 63322 | 371 | lemma bij_comp: "bij f \<Longrightarrow> bij g \<Longrightarrow> bij (g \<circ> f)" | 
| 40702 | 372 | by (rule bij_betw_trans) | 
| 373 | ||
| 63322 | 374 | lemma bij_betw_comp_iff: "bij_betw f A A' \<Longrightarrow> bij_betw f' A' A'' \<longleftrightarrow> bij_betw (f' \<circ> f) A A''" | 
| 375 | by (auto simp add: bij_betw_def inj_on_def) | |
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 376 | |
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 377 | lemma bij_betw_comp_iff2: | 
| 63322 | 378 | assumes bij: "bij_betw f' A' A''" | 
| 379 | and img: "f ` A \<le> A'" | |
| 380 | shows "bij_betw f A A' \<longleftrightarrow> bij_betw (f' \<circ> f) A A''" | |
| 381 | using assms | |
| 382 | proof (auto simp add: bij_betw_comp_iff) | |
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 383 | assume *: "bij_betw (f' \<circ> f) A A''" | 
| 63322 | 384 | then show "bij_betw f A A'" | 
| 385 | using img | |
| 386 | proof (auto simp add: bij_betw_def) | |
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 387 | assume "inj_on (f' \<circ> f) A" | 
| 63575 | 388 | then show "inj_on f A" | 
| 389 | using inj_on_imageI2 by blast | |
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 390 | next | 
| 63322 | 391 | fix a' | 
| 392 | assume **: "a' \<in> A'" | |
| 63575 | 393 | with bij have "f' a' \<in> A''" | 
| 394 | unfolding bij_betw_def by auto | |
| 395 | with * obtain a where 1: "a \<in> A \<and> f' (f a) = f' a'" | |
| 396 | unfolding bij_betw_def by force | |
| 397 | with img have "f a \<in> A'" by auto | |
| 398 | with bij ** 1 have "f a = a'" | |
| 399 | unfolding bij_betw_def inj_on_def by auto | |
| 400 | with 1 show "a' \<in> f ` A" by auto | |
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 401 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 402 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 403 | |
| 63322 | 404 | lemma bij_betw_inv: | 
| 405 | assumes "bij_betw f A B" | |
| 406 | shows "\<exists>g. bij_betw g B A" | |
| 26105 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 407 | proof - | 
| 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 408 | have i: "inj_on f A" and s: "f ` A = B" | 
| 63322 | 409 | using assms by (auto simp: bij_betw_def) | 
| 410 | let ?P = "\<lambda>b a. a \<in> A \<and> f a = b" | |
| 411 | let ?g = "\<lambda>b. The (?P b)" | |
| 412 | have g: "?g b = a" if P: "?P b a" for a b | |
| 413 | proof - | |
| 63575 | 414 | from that s have ex1: "\<exists>a. ?P b a" by blast | 
| 63322 | 415 | then have uex1: "\<exists>!a. ?P b a" by (blast dest:inj_onD[OF i]) | 
| 63575 | 416 | then show ?thesis | 
| 417 | using the1_equality[OF uex1, OF P] P by simp | |
| 63322 | 418 | qed | 
| 26105 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 419 | have "inj_on ?g B" | 
| 63322 | 420 | proof (rule inj_onI) | 
| 421 | fix x y | |
| 422 | assume "x \<in> B" "y \<in> B" "?g x = ?g y" | |
| 423 | from s \<open>x \<in> B\<close> obtain a1 where a1: "?P x a1" by blast | |
| 424 | from s \<open>y \<in> B\<close> obtain a2 where a2: "?P y a2" by blast | |
| 425 | from g [OF a1] a1 g [OF a2] a2 \<open>?g x = ?g y\<close> show "x = y" by simp | |
| 26105 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 426 | qed | 
| 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 427 | moreover have "?g ` B = A" | 
| 63322 | 428 | proof (auto simp: image_def) | 
| 429 | fix b | |
| 430 | assume "b \<in> B" | |
| 56077 | 431 | with s obtain a where P: "?P b a" by blast | 
| 63575 | 432 | with g[OF P] show "?g b \<in> A" by auto | 
| 26105 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 433 | next | 
| 63322 | 434 | fix a | 
| 435 | assume "a \<in> A" | |
| 63575 | 436 | with s obtain b where P: "?P b a" by blast | 
| 437 | with s have "b \<in> B" by blast | |
| 26105 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 438 | 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: 
25886diff
changeset | 439 | qed | 
| 63575 | 440 | ultimately show ?thesis | 
| 441 | by (auto simp: bij_betw_def) | |
| 26105 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 442 | qed | 
| 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 443 | |
| 63588 | 444 | lemma bij_betw_cong: "(\<And>a. a \<in> A \<Longrightarrow> f a = g a) \<Longrightarrow> bij_betw f A A' = bij_betw g A A'" | 
| 63591 | 445 | unfolding bij_betw_def inj_on_def by safe force+ (* somewhat slow *) | 
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 446 | |
| 63322 | 447 | lemma bij_betw_id[intro, simp]: "bij_betw id A A" | 
| 448 | unfolding bij_betw_def id_def by auto | |
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 449 | |
| 63322 | 450 | lemma bij_betw_id_iff: "bij_betw id A B \<longleftrightarrow> A = B" | 
| 451 | by (auto simp add: bij_betw_def) | |
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 452 | |
| 39075 | 453 | lemma bij_betw_combine: | 
| 63400 | 454 |   "bij_betw f A B \<Longrightarrow> bij_betw f C D \<Longrightarrow> B \<inter> D = {} \<Longrightarrow> bij_betw f (A \<union> C) (B \<union> D)"
 | 
| 455 | unfolding bij_betw_def inj_on_Un image_Un by auto | |
| 39075 | 456 | |
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 457 | lemma bij_betw_subset: "bij_betw f A A' \<Longrightarrow> B \<subseteq> A \<Longrightarrow> f ` B = B' \<Longrightarrow> bij_betw f B B'" | 
| 63322 | 458 | by (auto simp add: bij_betw_def inj_on_def) | 
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 459 | |
| 58195 | 460 | lemma bij_pointE: | 
| 461 | assumes "bij f" | |
| 462 | obtains x where "y = f x" and "\<And>x'. y = f x' \<Longrightarrow> x' = x" | |
| 463 | proof - | |
| 464 | from assms have "inj f" by (rule bij_is_inj) | |
| 465 | moreover from assms have "surj f" by (rule bij_is_surj) | |
| 466 | then have "y \<in> range f" by simp | |
| 467 | ultimately have "\<exists>!x. y = f x" by (simp add: range_ex1_eq) | |
| 468 | with that show thesis by blast | |
| 469 | qed | |
| 470 | ||
| 73326 | 471 | lemma bij_iff: \<^marker>\<open>contributor \<open>Amine Chaieb\<close>\<close> | 
| 472 | \<open>bij f \<longleftrightarrow> (\<forall>x. \<exists>!y. f y = x)\<close> (is \<open>?P \<longleftrightarrow> ?Q\<close>) | |
| 473 | proof | |
| 474 | assume ?P | |
| 475 | then have \<open>inj f\<close> \<open>surj f\<close> | |
| 476 | by (simp_all add: bij_def) | |
| 477 | show ?Q | |
| 478 | proof | |
| 479 | fix y | |
| 480 | from \<open>surj f\<close> obtain x where \<open>y = f x\<close> | |
| 481 | by (auto simp add: surj_def) | |
| 482 | with \<open>inj f\<close> show \<open>\<exists>!x. f x = y\<close> | |
| 483 | by (auto simp add: inj_def) | |
| 484 | qed | |
| 485 | next | |
| 486 | assume ?Q | |
| 487 | then have \<open>inj f\<close> | |
| 488 | by (auto simp add: inj_def) | |
| 489 | moreover have \<open>\<exists>x. y = f x\<close> for y | |
| 490 | proof - | |
| 491 | from \<open>?Q\<close> obtain x where \<open>f x = y\<close> | |
| 492 | by blast | |
| 493 | then have \<open>y = f x\<close> | |
| 494 | by simp | |
| 495 | then show ?thesis .. | |
| 496 | qed | |
| 497 | then have \<open>surj f\<close> | |
| 498 | by (auto simp add: surj_def) | |
| 499 | ultimately show ?P | |
| 500 | by (rule bijI) | |
| 501 | qed | |
| 502 | ||
| 63322 | 503 | lemma surj_image_vimage_eq: "surj f \<Longrightarrow> f ` (f -` A) = A" | 
| 504 | by simp | |
| 13585 | 505 | |
| 42903 | 506 | lemma surj_vimage_empty: | 
| 63322 | 507 | assumes "surj f" | 
| 508 |   shows "f -` A = {} \<longleftrightarrow> A = {}"
 | |
| 509 | using surj_image_vimage_eq [OF \<open>surj f\<close>, of A] | |
| 44890 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 nipkow parents: 
44860diff
changeset | 510 | by (intro iffI) fastforce+ | 
| 42903 | 511 | |
| 63322 | 512 | lemma inj_vimage_image_eq: "inj f \<Longrightarrow> f -` (f ` A) = A" | 
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 513 | unfolding inj_def by blast | 
| 13585 | 514 | |
| 63322 | 515 | lemma vimage_subsetD: "surj f \<Longrightarrow> f -` B \<subseteq> A \<Longrightarrow> B \<subseteq> f ` A" | 
| 516 | by (blast intro: sym) | |
| 13585 | 517 | |
| 63322 | 518 | lemma vimage_subsetI: "inj f \<Longrightarrow> B \<subseteq> f ` A \<Longrightarrow> f -` B \<subseteq> A" | 
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 519 | unfolding inj_def by blast | 
| 13585 | 520 | |
| 63322 | 521 | lemma vimage_subset_eq: "bij f \<Longrightarrow> f -` B \<subseteq> A \<longleftrightarrow> B \<subseteq> f ` A" | 
| 522 | unfolding bij_def by (blast del: subsetI intro: vimage_subsetI vimage_subsetD) | |
| 13585 | 523 | |
| 63322 | 524 | lemma inj_on_image_eq_iff: "inj_on f C \<Longrightarrow> A \<subseteq> C \<Longrightarrow> B \<subseteq> C \<Longrightarrow> f ` A = f ` B \<longleftrightarrow> A = B" | 
| 64965 | 525 | by (fastforce simp: inj_on_def) | 
| 53927 | 526 | |
| 31438 | 527 | lemma inj_on_Un_image_eq_iff: "inj_on f (A \<union> B) \<Longrightarrow> f ` A = f ` B \<longleftrightarrow> A = B" | 
| 63322 | 528 | by (erule inj_on_image_eq_iff) simp_all | 
| 31438 | 529 | |
| 63322 | 530 | lemma inj_on_image_Int: "inj_on f C \<Longrightarrow> A \<subseteq> C \<Longrightarrow> B \<subseteq> C \<Longrightarrow> f ` (A \<inter> B) = f ` A \<inter> f ` B" | 
| 531 | unfolding inj_on_def by blast | |
| 532 | ||
| 533 | lemma inj_on_image_set_diff: "inj_on f C \<Longrightarrow> A - B \<subseteq> C \<Longrightarrow> B \<subseteq> C \<Longrightarrow> f ` (A - B) = f ` A - f ` B" | |
| 534 | unfolding inj_on_def by blast | |
| 13585 | 535 | |
| 63322 | 536 | lemma image_Int: "inj f \<Longrightarrow> f ` (A \<inter> B) = f ` A \<inter> f ` B" | 
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 537 | unfolding inj_def by blast | 
| 13585 | 538 | |
| 63322 | 539 | lemma image_set_diff: "inj f \<Longrightarrow> f ` (A - B) = f ` A - f ` B" | 
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 540 | unfolding inj_def by blast | 
| 13585 | 541 | |
| 63322 | 542 | lemma inj_on_image_mem_iff: "inj_on f B \<Longrightarrow> a \<in> B \<Longrightarrow> A \<subseteq> B \<Longrightarrow> f a \<in> f ` A \<longleftrightarrow> a \<in> A" | 
| 59504 
8c6747dba731
New lemmas and a bit of tidying up.
 paulson <lp15@cam.ac.uk> parents: 
58889diff
changeset | 543 | by (auto simp: inj_on_def) | 
| 
8c6747dba731
New lemmas and a bit of tidying up.
 paulson <lp15@cam.ac.uk> parents: 
58889diff
changeset | 544 | |
| 63322 | 545 | lemma inj_image_mem_iff: "inj f \<Longrightarrow> f a \<in> f ` A \<longleftrightarrow> a \<in> A" | 
| 59504 
8c6747dba731
New lemmas and a bit of tidying up.
 paulson <lp15@cam.ac.uk> parents: 
58889diff
changeset | 546 | by (blast dest: injD) | 
| 13585 | 547 | |
| 63322 | 548 | lemma inj_image_subset_iff: "inj f \<Longrightarrow> f ` A \<subseteq> f ` B \<longleftrightarrow> A \<subseteq> B" | 
| 59504 
8c6747dba731
New lemmas and a bit of tidying up.
 paulson <lp15@cam.ac.uk> parents: 
58889diff
changeset | 549 | by (blast dest: injD) | 
| 13585 | 550 | |
| 63322 | 551 | lemma inj_image_eq_iff: "inj f \<Longrightarrow> f ` A = f ` B \<longleftrightarrow> A = B" | 
| 59504 
8c6747dba731
New lemmas and a bit of tidying up.
 paulson <lp15@cam.ac.uk> parents: 
58889diff
changeset | 552 | by (blast dest: injD) | 
| 13585 | 553 | |
| 63322 | 554 | lemma surj_Compl_image_subset: "surj f \<Longrightarrow> - (f ` A) \<subseteq> f ` (- A)" | 
| 555 | by auto | |
| 5852 | 556 | |
| 63322 | 557 | lemma inj_image_Compl_subset: "inj f \<Longrightarrow> f ` (- A) \<subseteq> - (f ` A)" | 
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 558 | by (auto simp: inj_def) | 
| 63322 | 559 | |
| 560 | lemma bij_image_Compl_eq: "bij f \<Longrightarrow> f ` (- A) = - (f ` A)" | |
| 561 | by (simp add: bij_def inj_image_Compl_subset surj_Compl_image_subset equalityI) | |
| 13585 | 562 | |
| 41657 | 563 | lemma inj_vimage_singleton: "inj f \<Longrightarrow> f -` {a} \<subseteq> {THE x. f x = a}"
 | 
| 63322 | 564 | \<comment> \<open>The inverse image of a singleton under an injective function is included in a singleton.\<close> | 
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 565 | by (simp add: inj_def) (blast intro: the_equality [symmetric]) | 
| 41657 | 566 | |
| 63322 | 567 | lemma inj_on_vimage_singleton: "inj_on f A \<Longrightarrow> f -` {a} \<inter> A \<subseteq> {THE x. x \<in> A \<and> f x = a}"
 | 
| 43991 | 568 | by (auto simp add: inj_on_def intro: the_equality [symmetric]) | 
| 569 | ||
| 35584 
768f8d92b767
generalized inj_uminus; added strict_mono_imp_inj_on
 hoelzl parents: 
35580diff
changeset | 570 | lemma (in ordered_ab_group_add) inj_uminus[simp, intro]: "inj_on uminus A" | 
| 35580 | 571 | by (auto intro!: inj_onI) | 
| 13585 | 572 | |
| 35584 
768f8d92b767
generalized inj_uminus; added strict_mono_imp_inj_on
 hoelzl parents: 
35580diff
changeset | 573 | lemma (in linorder) strict_mono_imp_inj_on: "strict_mono f \<Longrightarrow> inj_on f A" | 
| 
768f8d92b767
generalized inj_uminus; added strict_mono_imp_inj_on
 hoelzl parents: 
35580diff
changeset | 574 | by (auto intro!: inj_onI dest: strict_mono_eq) | 
| 
768f8d92b767
generalized inj_uminus; added strict_mono_imp_inj_on
 hoelzl parents: 
35580diff
changeset | 575 | |
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 576 | lemma bij_betw_byWitness: | 
| 63322 | 577 | assumes left: "\<forall>a \<in> A. f' (f a) = a" | 
| 578 | and right: "\<forall>a' \<in> A'. f (f' a') = a'" | |
| 63575 | 579 | and "f ` A \<subseteq> A'" | 
| 580 | and img2: "f' ` A' \<subseteq> A" | |
| 63322 | 581 | shows "bij_betw f A A'" | 
| 582 | using assms | |
| 63400 | 583 | unfolding bij_betw_def inj_on_def | 
| 584 | proof safe | |
| 63322 | 585 | fix a b | 
| 63575 | 586 | assume "a \<in> A" "b \<in> A" | 
| 587 | with left have "a = f' (f a) \<and> b = f' (f b)" by simp | |
| 588 | moreover assume "f a = f b" | |
| 589 | ultimately show "a = b" by simp | |
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 590 | next | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 591 | fix a' assume *: "a' \<in> A'" | 
| 63575 | 592 | with img2 have "f' a' \<in> A" by blast | 
| 593 | moreover from * right have "a' = f (f' a')" by simp | |
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 594 | ultimately show "a' \<in> f ` A" by blast | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 595 | qed | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 596 | |
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 597 | corollary notIn_Un_bij_betw: | 
| 63322 | 598 | assumes "b \<notin> A" | 
| 599 | and "f b \<notin> A'" | |
| 600 | and "bij_betw f A A'" | |
| 601 |   shows "bij_betw f (A \<union> {b}) (A' \<union> {f b})"
 | |
| 602 | proof - | |
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 603 |   have "bij_betw f {b} {f b}"
 | 
| 63322 | 604 | unfolding bij_betw_def inj_on_def by simp | 
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 605 | with assms show ?thesis | 
| 63322 | 606 |     using bij_betw_combine[of f A A' "{b}" "{f b}"] by blast
 | 
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 607 | qed | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 608 | |
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 609 | lemma notIn_Un_bij_betw3: | 
| 63322 | 610 | assumes "b \<notin> A" | 
| 611 | and "f b \<notin> A'" | |
| 612 |   shows "bij_betw f A A' = bij_betw f (A \<union> {b}) (A' \<union> {f b})"
 | |
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 613 | proof | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 614 | assume "bij_betw f A A'" | 
| 63322 | 615 |   then show "bij_betw f (A \<union> {b}) (A' \<union> {f b})"
 | 
| 616 | using assms notIn_Un_bij_betw [of b A f A'] by blast | |
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 617 | next | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 618 |   assume *: "bij_betw f (A \<union> {b}) (A' \<union> {f b})"
 | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 619 | have "f ` A = A'" | 
| 63322 | 620 | proof auto | 
| 621 | fix a | |
| 622 | assume **: "a \<in> A" | |
| 623 |     then have "f a \<in> A' \<union> {f b}"
 | |
| 624 | using * unfolding bij_betw_def by blast | |
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 625 | moreover | 
| 63322 | 626 | have False if "f a = f b" | 
| 627 | proof - | |
| 63575 | 628 | have "a = b" | 
| 629 | using * ** that unfolding bij_betw_def inj_on_def by blast | |
| 63322 | 630 | with \<open>b \<notin> A\<close> ** show ?thesis by blast | 
| 631 | qed | |
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 632 | ultimately show "f a \<in> A'" by blast | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 633 | next | 
| 63322 | 634 | fix a' | 
| 635 | assume **: "a' \<in> A'" | |
| 636 |     then have "a' \<in> f ` (A \<union> {b})"
 | |
| 637 | using * by (auto simp add: bij_betw_def) | |
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 638 |     then obtain a where 1: "a \<in> A \<union> {b} \<and> f a = a'" by blast
 | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 639 | moreover | 
| 63322 | 640 | have False if "a = b" using 1 ** \<open>f b \<notin> A'\<close> that by blast | 
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 641 | ultimately have "a \<in> A" by blast | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 642 | with 1 show "a' \<in> f ` A" by blast | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 643 | qed | 
| 63322 | 644 | then show "bij_betw f A A'" | 
| 645 |     using * bij_betw_subset[of f "A \<union> {b}" _ A] by blast
 | |
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 646 | qed | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 647 | |
| 71857 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 648 | lemma inj_on_disjoint_Un: | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 649 | assumes "inj_on f A" and "inj_on g B" | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 650 |   and "f ` A \<inter> g ` B = {}"
 | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 651 | shows "inj_on (\<lambda>x. if x \<in> A then f x else g x) (A \<union> B)" | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 652 | using assms by (simp add: inj_on_def disjoint_iff) (blast) | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 653 | |
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 654 | lemma bij_betw_disjoint_Un: | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 655 | assumes "bij_betw f A C" and "bij_betw g B D" | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 656 |   and "A \<inter> B = {}"
 | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 657 |   and "C \<inter> D = {}"
 | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 658 | shows "bij_betw (\<lambda>x. if x \<in> A then f x else g x) (A \<union> B) (C \<union> D)" | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 659 | using assms by (auto simp: inj_on_disjoint_Un bij_betw_def) | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 660 | |
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 661 | subsubsection \<open>Important examples\<close> | 
| 69502 | 662 | |
| 663 | context cancel_semigroup_add | |
| 664 | begin | |
| 665 | ||
| 69661 | 666 | lemma inj_on_add [simp]: | 
| 667 | "inj_on ((+) a) A" | |
| 668 | by (rule inj_onI) simp | |
| 669 | ||
| 670 | lemma inj_add_left: | |
| 671 | \<open>inj ((+) a)\<close> | |
| 672 | by simp | |
| 673 | ||
| 674 | lemma inj_on_add' [simp]: | |
| 675 | "inj_on (\<lambda>b. b + a) A" | |
| 676 | by (rule inj_onI) simp | |
| 677 | ||
| 678 | lemma bij_betw_add [simp]: | |
| 679 | "bij_betw ((+) a) A B \<longleftrightarrow> (+) a ` A = B" | |
| 680 | by (simp add: bij_betw_def) | |
| 69502 | 681 | |
| 682 | end | |
| 683 | ||
| 684 | context ab_group_add | |
| 685 | begin | |
| 686 | ||
| 69661 | 687 | lemma surj_plus [simp]: | 
| 688 | "surj ((+) a)" | |
| 69768 | 689 | by (auto intro!: range_eqI [of b "(+) a" "b - a" for b]) (simp add: algebra_simps) | 
| 69661 | 690 | |
| 691 | lemma inj_diff_right [simp]: | |
| 692 | \<open>inj (\<lambda>b. b - a)\<close> | |
| 69502 | 693 | proof - | 
| 694 | have \<open>inj ((+) (- a))\<close> | |
| 695 | by (fact inj_add_left) | |
| 696 | also have \<open>(+) (- a) = (\<lambda>b. b - a)\<close> | |
| 697 | by (simp add: fun_eq_iff) | |
| 698 | finally show ?thesis . | |
| 699 | qed | |
| 700 | ||
| 69661 | 701 | lemma surj_diff_right [simp]: | 
| 702 | "surj (\<lambda>x. x - a)" | |
| 703 | using surj_plus [of "- a"] by (simp cong: image_cong_simp) | |
| 704 | ||
| 705 | lemma translation_Compl: | |
| 706 | "(+) a ` (- t) = - ((+) a ` t)" | |
| 707 | proof (rule set_eqI) | |
| 708 | fix b | |
| 709 | show "b \<in> (+) a ` (- t) \<longleftrightarrow> b \<in> - (+) a ` t" | |
| 710 | by (auto simp: image_iff algebra_simps intro!: bexI [of _ "b - a"]) | |
| 711 | qed | |
| 712 | ||
| 713 | lemma translation_subtract_Compl: | |
| 714 | "(\<lambda>x. x - a) ` (- t) = - ((\<lambda>x. x - a) ` t)" | |
| 715 | using translation_Compl [of "- a" t] by (simp cong: image_cong_simp) | |
| 716 | ||
| 717 | lemma translation_diff: | |
| 718 | "(+) a ` (s - t) = ((+) a ` s) - ((+) a ` t)" | |
| 719 | by auto | |
| 720 | ||
| 721 | lemma translation_subtract_diff: | |
| 722 | "(\<lambda>x. x - a) ` (s - t) = ((\<lambda>x. x - a) ` s) - ((\<lambda>x. x - a) ` t)" | |
| 723 | using translation_diff [of "- a"] by (simp cong: image_cong_simp) | |
| 724 | ||
| 725 | lemma translation_Int: | |
| 726 | "(+) a ` (s \<inter> t) = ((+) a ` s) \<inter> ((+) a ` t)" | |
| 727 | by auto | |
| 728 | ||
| 729 | lemma translation_subtract_Int: | |
| 730 | "(\<lambda>x. x - a) ` (s \<inter> t) = ((\<lambda>x. x - a) ` s) \<inter> ((\<lambda>x. x - a) ` t)" | |
| 731 | using translation_Int [of " -a"] by (simp cong: image_cong_simp) | |
| 732 | ||
| 69502 | 733 | end | 
| 734 | ||
| 41657 | 735 | |
| 63322 | 736 | subsection \<open>Function Updating\<close> | 
| 13585 | 737 | |
| 63322 | 738 | definition fun_upd :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> ('a \<Rightarrow> 'b)"
 | 
| 63324 | 739 | where "fun_upd f a b = (\<lambda>x. if x = a then b else f x)" | 
| 26147 | 740 | |
| 41229 
d797baa3d57c
replaced command 'nonterminals' by slightly modernized version 'nonterminal';
 wenzelm parents: 
40969diff
changeset | 741 | nonterminal updbinds and updbind | 
| 
d797baa3d57c
replaced command 'nonterminals' by slightly modernized version 'nonterminal';
 wenzelm parents: 
40969diff
changeset | 742 | |
| 26147 | 743 | syntax | 
| 63322 | 744 |   "_updbind" :: "'a \<Rightarrow> 'a \<Rightarrow> updbind"             ("(2_ :=/ _)")
 | 
| 745 |   ""         :: "updbind \<Rightarrow> updbinds"             ("_")
 | |
| 746 |   "_updbinds":: "updbind \<Rightarrow> updbinds \<Rightarrow> updbinds" ("_,/ _")
 | |
| 747 |   "_Update"  :: "'a \<Rightarrow> updbinds \<Rightarrow> 'a"            ("_/'((_)')" [1000, 0] 900)
 | |
| 26147 | 748 | |
| 749 | translations | |
| 63322 | 750 | "_Update f (_updbinds b bs)" \<rightleftharpoons> "_Update (_Update f b) bs" | 
| 751 | "f(x:=y)" \<rightleftharpoons> "CONST fun_upd f x y" | |
| 26147 | 752 | |
| 55414 
eab03e9cee8a
renamed '{prod,sum,bool,unit}_case' to 'case_...'
 blanchet parents: 
55066diff
changeset | 753 | (* Hint: to define the sum of two functions (or maps), use case_sum. | 
| 58111 | 754 | A nice infix syntax could be defined by | 
| 35115 | 755 | notation | 
| 55414 
eab03e9cee8a
renamed '{prod,sum,bool,unit}_case' to 'case_...'
 blanchet parents: 
55066diff
changeset | 756 | case_sum (infixr "'(+')"80) | 
| 26147 | 757 | *) | 
| 758 | ||
| 63322 | 759 | lemma fun_upd_idem_iff: "f(x:=y) = f \<longleftrightarrow> f x = y" | 
| 760 | unfolding fun_upd_def | |
| 761 | apply safe | |
| 63575 | 762 | apply (erule subst) | 
| 763 | apply (rule_tac [2] ext) | |
| 764 | apply auto | |
| 63322 | 765 | done | 
| 13585 | 766 | |
| 63322 | 767 | lemma fun_upd_idem: "f x = y \<Longrightarrow> f(x := y) = f" | 
| 45603 | 768 | by (simp only: fun_upd_idem_iff) | 
| 13585 | 769 | |
| 45603 | 770 | lemma fun_upd_triv [iff]: "f(x := f x) = f" | 
| 771 | by (simp only: fun_upd_idem) | |
| 13585 | 772 | |
| 63322 | 773 | lemma fun_upd_apply [simp]: "(f(x := y)) z = (if z = x then y else f z)" | 
| 774 | by (simp add: fun_upd_def) | |
| 13585 | 775 | |
| 63322 | 776 | (* fun_upd_apply supersedes these two, but they are useful | 
| 13585 | 777 | if fun_upd_apply is intentionally removed from the simpset *) | 
| 63322 | 778 | lemma fun_upd_same: "(f(x := y)) x = y" | 
| 779 | by simp | |
| 13585 | 780 | |
| 63322 | 781 | lemma fun_upd_other: "z \<noteq> x \<Longrightarrow> (f(x := y)) z = f z" | 
| 782 | by simp | |
| 13585 | 783 | |
| 63322 | 784 | lemma fun_upd_upd [simp]: "f(x := y, x := z) = f(x := z)" | 
| 785 | by (simp add: fun_eq_iff) | |
| 13585 | 786 | |
| 63322 | 787 | lemma fun_upd_twist: "a \<noteq> c \<Longrightarrow> (m(a := b))(c := d) = (m(c := d))(a := b)" | 
| 71616 
a9de39608b1a
more tidying up of old apply-proofs
 paulson <lp15@cam.ac.uk> parents: 
71472diff
changeset | 788 | by auto | 
| 63322 | 789 | |
| 790 | lemma inj_on_fun_updI: "inj_on f A \<Longrightarrow> y \<notin> f ` A \<Longrightarrow> inj_on (f(x := y)) A" | |
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 791 | by (auto simp: inj_on_def) | 
| 15303 | 792 | |
| 63322 | 793 | lemma fun_upd_image: "f(x := y) ` A = (if x \<in> A then insert y (f ` (A - {x})) else f ` A)"
 | 
| 794 | by auto | |
| 15510 | 795 | |
| 31080 | 796 | lemma fun_upd_comp: "f \<circ> (g(x := y)) = (f \<circ> g)(x := f y)" | 
| 44921 | 797 | by auto | 
| 31080 | 798 | |
| 61630 | 799 | lemma fun_upd_eqD: "f(x := y) = g(x := z) \<Longrightarrow> y = z" | 
| 63322 | 800 | by (simp add: fun_eq_iff split: if_split_asm) | 
| 801 | ||
| 26147 | 802 | |
| 61799 | 803 | subsection \<open>\<open>override_on\<close>\<close> | 
| 26147 | 804 | |
| 63322 | 805 | definition override_on :: "('a \<Rightarrow> 'b) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'a set \<Rightarrow> 'a \<Rightarrow> 'b"
 | 
| 806 | where "override_on f g A = (\<lambda>a. if a \<in> A then g a else f a)" | |
| 13910 | 807 | |
| 15691 | 808 | lemma override_on_emptyset[simp]: "override_on f g {} = f"
 | 
| 64965 | 809 | by (simp add: override_on_def) | 
| 13910 | 810 | |
| 63322 | 811 | lemma override_on_apply_notin[simp]: "a \<notin> A \<Longrightarrow> (override_on f g A) a = f a" | 
| 64965 | 812 | by (simp add: override_on_def) | 
| 13910 | 813 | |
| 63322 | 814 | lemma override_on_apply_in[simp]: "a \<in> A \<Longrightarrow> (override_on f g A) a = g a" | 
| 64965 | 815 | by (simp add: override_on_def) | 
| 13910 | 816 | |
| 63561 
fba08009ff3e
add lemmas contributed by Peter Gammie
 Andreas Lochbihler parents: 
63416diff
changeset | 817 | lemma override_on_insert: "override_on f g (insert x X) = (override_on f g X)(x:=g x)" | 
| 64965 | 818 | by (simp add: override_on_def fun_eq_iff) | 
| 63561 
fba08009ff3e
add lemmas contributed by Peter Gammie
 Andreas Lochbihler parents: 
63416diff
changeset | 819 | |
| 
fba08009ff3e
add lemmas contributed by Peter Gammie
 Andreas Lochbihler parents: 
63416diff
changeset | 820 | lemma override_on_insert': "override_on f g (insert x X) = (override_on (f(x:=g x)) g X)" | 
| 64965 | 821 | by (simp add: override_on_def fun_eq_iff) | 
| 63561 
fba08009ff3e
add lemmas contributed by Peter Gammie
 Andreas Lochbihler parents: 
63416diff
changeset | 822 | |
| 26147 | 823 | |
| 61799 | 824 | subsection \<open>\<open>swap\<close>\<close> | 
| 15510 | 825 | |
| 56608 | 826 | definition swap :: "'a \<Rightarrow> 'a \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> ('a \<Rightarrow> 'b)"
 | 
| 63322 | 827 | where "swap a b f = f (a := f b, b:= f a)" | 
| 15510 | 828 | |
| 56608 | 829 | lemma swap_apply [simp]: | 
| 830 | "swap a b f a = f b" | |
| 831 | "swap a b f b = f a" | |
| 832 | "c \<noteq> a \<Longrightarrow> c \<noteq> b \<Longrightarrow> swap a b f c = f c" | |
| 833 | by (simp_all add: swap_def) | |
| 834 | ||
| 63322 | 835 | lemma swap_self [simp]: "swap a a f = f" | 
| 56608 | 836 | by (simp add: swap_def) | 
| 15510 | 837 | |
| 63322 | 838 | lemma swap_commute: "swap a b f = swap b a f" | 
| 56608 | 839 | by (simp add: fun_upd_def swap_def fun_eq_iff) | 
| 15510 | 840 | |
| 63322 | 841 | lemma swap_nilpotent [simp]: "swap a b (swap a b f) = f" | 
| 63575 | 842 | by (rule ext) (simp add: fun_upd_def swap_def) | 
| 56608 | 843 | |
| 63322 | 844 | lemma swap_comp_involutory [simp]: "swap a b \<circ> swap a b = id" | 
| 56608 | 845 | by (rule ext) simp | 
| 15510 | 846 | |
| 34145 | 847 | lemma swap_triple: | 
| 848 | assumes "a \<noteq> c" and "b \<noteq> c" | |
| 849 | shows "swap a b (swap b c (swap a b f)) = swap a c f" | |
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39213diff
changeset | 850 | using assms by (simp add: fun_eq_iff swap_def) | 
| 34145 | 851 | |
| 34101 | 852 | lemma comp_swap: "f \<circ> swap a b g = swap a b (f \<circ> g)" | 
| 63322 | 853 | by (rule ext) (simp add: fun_upd_def swap_def) | 
| 34101 | 854 | |
| 39076 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 855 | lemma swap_image_eq [simp]: | 
| 63322 | 856 | assumes "a \<in> A" "b \<in> A" | 
| 857 | shows "swap a b f ` A = f ` A" | |
| 39076 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 858 | proof - | 
| 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 859 | have subset: "\<And>f. swap a b f ` A \<subseteq> f ` A" | 
| 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 860 | using assms by (auto simp: image_iff swap_def) | 
| 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 861 | then have "swap a b (swap a b f) ` A \<subseteq> (swap a b f) ` A" . | 
| 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 862 | with subset[of f] show ?thesis by auto | 
| 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 863 | qed | 
| 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 864 | |
| 63322 | 865 | lemma inj_on_imp_inj_on_swap: "inj_on f A \<Longrightarrow> a \<in> A \<Longrightarrow> b \<in> A \<Longrightarrow> inj_on (swap a b f) A" | 
| 866 | by (auto simp add: inj_on_def swap_def) | |
| 15510 | 867 | |
| 868 | lemma inj_on_swap_iff [simp]: | |
| 63322 | 869 | assumes A: "a \<in> A" "b \<in> A" | 
| 870 | shows "inj_on (swap a b f) A \<longleftrightarrow> inj_on f A" | |
| 39075 | 871 | proof | 
| 15510 | 872 | assume "inj_on (swap a b f) A" | 
| 39075 | 873 | with A have "inj_on (swap a b (swap a b f)) A" | 
| 874 | by (iprover intro: inj_on_imp_inj_on_swap) | |
| 63322 | 875 | then show "inj_on f A" by simp | 
| 15510 | 876 | next | 
| 877 | assume "inj_on f A" | |
| 63322 | 878 | with A show "inj_on (swap a b f) A" | 
| 879 | by (iprover intro: inj_on_imp_inj_on_swap) | |
| 15510 | 880 | qed | 
| 881 | ||
| 39076 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 882 | lemma surj_imp_surj_swap: "surj f \<Longrightarrow> surj (swap a b f)" | 
| 40702 | 883 | by simp | 
| 15510 | 884 | |
| 39076 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 885 | lemma surj_swap_iff [simp]: "surj (swap a b f) \<longleftrightarrow> surj f" | 
| 40702 | 886 | by simp | 
| 21547 
9c9fdf4c2949
moved order arities for fun and bool to Fun/Orderings
 haftmann parents: 
21327diff
changeset | 887 | |
| 63322 | 888 | lemma bij_betw_swap_iff [simp]: "x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> bij_betw (swap x y f) A B \<longleftrightarrow> bij_betw f A B" | 
| 39076 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 889 | by (auto simp: bij_betw_def) | 
| 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 890 | |
| 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 891 | lemma bij_swap_iff [simp]: "bij (swap a b f) \<longleftrightarrow> bij f" | 
| 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 892 | by simp | 
| 39075 | 893 | |
| 36176 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
35584diff
changeset | 894 | hide_const (open) swap | 
| 21547 
9c9fdf4c2949
moved order arities for fun and bool to Fun/Orderings
 haftmann parents: 
21327diff
changeset | 895 | |
| 56608 | 896 | |
| 60758 | 897 | subsection \<open>Inversion of injective functions\<close> | 
| 31949 | 898 | |
| 63322 | 899 | definition the_inv_into :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> ('b \<Rightarrow> 'a)"
 | 
| 63324 | 900 | where "the_inv_into A f = (\<lambda>x. THE y. y \<in> A \<and> f y = x)" | 
| 63322 | 901 | |
| 902 | lemma the_inv_into_f_f: "inj_on f A \<Longrightarrow> x \<in> A \<Longrightarrow> the_inv_into A f (f x) = x" | |
| 903 | unfolding the_inv_into_def inj_on_def by blast | |
| 32961 | 904 | |
| 63322 | 905 | lemma f_the_inv_into_f: "inj_on f A \<Longrightarrow> y \<in> f ` A \<Longrightarrow> f (the_inv_into A f y) = y" | 
| 71857 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 906 | unfolding the_inv_into_def | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 907 | by (rule the1I2; blast dest: inj_onD) | 
| 32961 | 908 | |
| 72125 
cf8399df4d76
elimination of some needless assumptions
 paulson <lp15@cam.ac.uk> parents: 
71857diff
changeset | 909 | lemma f_the_inv_into_f_bij_betw: | 
| 
cf8399df4d76
elimination of some needless assumptions
 paulson <lp15@cam.ac.uk> parents: 
71857diff
changeset | 910 | "bij_betw f A B \<Longrightarrow> (bij_betw f A B \<Longrightarrow> x \<in> B) \<Longrightarrow> f (the_inv_into A f x) = x" | 
| 
cf8399df4d76
elimination of some needless assumptions
 paulson <lp15@cam.ac.uk> parents: 
71857diff
changeset | 911 | unfolding bij_betw_def by (blast intro: f_the_inv_into_f) | 
| 
cf8399df4d76
elimination of some needless assumptions
 paulson <lp15@cam.ac.uk> parents: 
71857diff
changeset | 912 | |
| 63322 | 913 | lemma the_inv_into_into: "inj_on f A \<Longrightarrow> x \<in> f ` A \<Longrightarrow> A \<subseteq> B \<Longrightarrow> the_inv_into A f x \<in> B" | 
| 71857 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 914 | unfolding the_inv_into_def | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 915 | by (rule the1I2; blast dest: inj_onD) | 
| 32961 | 916 | |
| 63322 | 917 | lemma the_inv_into_onto [simp]: "inj_on f A \<Longrightarrow> the_inv_into A f ` (f ` A) = A" | 
| 918 | by (fast intro: the_inv_into_into the_inv_into_f_f [symmetric]) | |
| 32961 | 919 | |
| 63322 | 920 | lemma the_inv_into_f_eq: "inj_on f A \<Longrightarrow> f x = y \<Longrightarrow> x \<in> A \<Longrightarrow> the_inv_into A f y = x" | 
| 71857 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 921 | by (force simp add: the_inv_into_f_f) | 
| 32961 | 922 | |
| 33057 | 923 | lemma the_inv_into_comp: | 
| 63322 | 924 | "inj_on f (g ` A) \<Longrightarrow> inj_on g A \<Longrightarrow> x \<in> f ` g ` A \<Longrightarrow> | 
| 925 | the_inv_into A (f \<circ> g) x = (the_inv_into A g \<circ> the_inv_into (g ` A) f) x" | |
| 926 | apply (rule the_inv_into_f_eq) | |
| 927 | apply (fast intro: comp_inj_on) | |
| 928 | apply (simp add: f_the_inv_into_f the_inv_into_into) | |
| 929 | apply (simp add: the_inv_into_into) | |
| 930 | done | |
| 32961 | 931 | |
| 63322 | 932 | lemma inj_on_the_inv_into: "inj_on f A \<Longrightarrow> inj_on (the_inv_into A f) (f ` A)" | 
| 933 | by (auto intro: inj_onI simp: the_inv_into_f_f) | |
| 32961 | 934 | |
| 63322 | 935 | lemma bij_betw_the_inv_into: "bij_betw f A B \<Longrightarrow> bij_betw (the_inv_into A f) B A" | 
| 936 | by (auto simp add: bij_betw_def inj_on_the_inv_into the_inv_into_into) | |
| 32961 | 937 | |
| 71857 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 938 | lemma bij_betw_iff_bijections: | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 939 | "bij_betw f A B \<longleftrightarrow> (\<exists>g. (\<forall>x \<in> A. f x \<in> B \<and> g(f x) = x) \<and> (\<forall>y \<in> B. g y \<in> A \<and> f(g y) = y))" | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 940 | (is "?lhs = ?rhs") | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 941 | proof | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 942 | assume L: ?lhs | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 943 | then show ?rhs | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 944 | apply (rule_tac x="the_inv_into A f" in exI) | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 945 | apply (auto simp: bij_betw_def f_the_inv_into_f the_inv_into_f_f the_inv_into_into) | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 946 | done | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 947 | qed (force intro: bij_betw_byWitness) | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 948 | |
| 63322 | 949 | abbreviation the_inv :: "('a \<Rightarrow> 'b) \<Rightarrow> ('b \<Rightarrow> 'a)"
 | 
| 950 | where "the_inv f \<equiv> the_inv_into UNIV f" | |
| 32998 
31b19fa0de0b
Renamed inv to the_inv and turned it into an abbreviation (based on the_inv_onto).
 berghofe parents: 
32988diff
changeset | 951 | |
| 64965 | 952 | lemma the_inv_f_f: "the_inv f (f x) = x" if "inj f" | 
| 953 | using that UNIV_I by (rule the_inv_into_f_f) | |
| 32998 
31b19fa0de0b
Renamed inv to the_inv and turned it into an abbreviation (based on the_inv_onto).
 berghofe parents: 
32988diff
changeset | 954 | |
| 44277 
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
 haftmann parents: 
43991diff
changeset | 955 | |
| 60758 | 956 | subsection \<open>Cantor's Paradox\<close> | 
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 957 | |
| 63323 | 958 | theorem Cantors_paradox: "\<nexists>f. f ` A = Pow A" | 
| 959 | proof | |
| 960 | assume "\<exists>f. f ` A = Pow A" | |
| 961 | then obtain f where f: "f ` A = Pow A" .. | |
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 962 |   let ?X = "{a \<in> A. a \<notin> f a}"
 | 
| 63323 | 963 | have "?X \<in> Pow A" by blast | 
| 964 | then have "?X \<in> f ` A" by (simp only: f) | |
| 965 | then obtain x where "x \<in> A" and "f x = ?X" by blast | |
| 966 | then show False by blast | |
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 967 | qed | 
| 31949 | 968 | |
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 969 | subsection \<open>Monotonic functions over a set\<close> | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 970 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 971 | definition "mono_on f A \<equiv> \<forall>r s. r \<in> A \<and> s \<in> A \<and> r \<le> s \<longrightarrow> f r \<le> f s" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 972 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 973 | lemma mono_onI: | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 974 | "(\<And>r s. r \<in> A \<Longrightarrow> s \<in> A \<Longrightarrow> r \<le> s \<Longrightarrow> f r \<le> f s) \<Longrightarrow> mono_on f A" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 975 | unfolding mono_on_def by simp | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 976 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 977 | lemma mono_onD: | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 978 | "\<lbrakk>mono_on f A; r \<in> A; s \<in> A; r \<le> s\<rbrakk> \<Longrightarrow> f r \<le> f s" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 979 | unfolding mono_on_def by simp | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 980 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 981 | lemma mono_imp_mono_on: "mono f \<Longrightarrow> mono_on f A" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 982 | unfolding mono_def mono_on_def by auto | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 983 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 984 | lemma mono_on_subset: "mono_on f A \<Longrightarrow> B \<subseteq> A \<Longrightarrow> mono_on f B" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 985 | unfolding mono_on_def by auto | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 986 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 987 | definition "strict_mono_on f A \<equiv> \<forall>r s. r \<in> A \<and> s \<in> A \<and> r < s \<longrightarrow> f r < f s" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 988 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 989 | lemma strict_mono_onI: | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 990 | "(\<And>r s. r \<in> A \<Longrightarrow> s \<in> A \<Longrightarrow> r < s \<Longrightarrow> f r < f s) \<Longrightarrow> strict_mono_on f A" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 991 | unfolding strict_mono_on_def by simp | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 992 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 993 | lemma strict_mono_onD: | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 994 | "\<lbrakk>strict_mono_on f A; r \<in> A; s \<in> A; r < s\<rbrakk> \<Longrightarrow> f r < f s" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 995 | unfolding strict_mono_on_def by simp | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 996 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 997 | lemma mono_on_greaterD: | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 998 | assumes "mono_on g A" "x \<in> A" "y \<in> A" "g x > (g (y::_::linorder) :: _ :: linorder)" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 999 | shows "x > y" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1000 | proof (rule ccontr) | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1001 | assume "\<not>x > y" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1002 | hence "x \<le> y" by (simp add: not_less) | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1003 | from assms(1-3) and this have "g x \<le> g y" by (rule mono_onD) | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1004 | with assms(4) show False by simp | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1005 | qed | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1006 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1007 | lemma strict_mono_inv: | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1008 |   fixes f :: "('a::linorder) \<Rightarrow> ('b::linorder)"
 | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1009 | assumes "strict_mono f" and "surj f" and inv: "\<And>x. g (f x) = x" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1010 | shows "strict_mono g" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1011 | proof | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1012 | fix x y :: 'b assume "x < y" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1013 | from \<open>surj f\<close> obtain x' y' where [simp]: "x = f x'" "y = f y'" by blast | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1014 | with \<open>x < y\<close> and \<open>strict_mono f\<close> have "x' < y'" by (simp add: strict_mono_less) | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1015 | with inv show "g x < g y" by simp | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1016 | qed | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1017 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1018 | lemma strict_mono_on_imp_inj_on: | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1019 | assumes "strict_mono_on (f :: (_ :: linorder) \<Rightarrow> (_ :: preorder)) A" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1020 | shows "inj_on f A" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1021 | proof (rule inj_onI) | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1022 | fix x y assume "x \<in> A" "y \<in> A" "f x = f y" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1023 | thus "x = y" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1024 | by (cases x y rule: linorder_cases) | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1025 | (auto dest: strict_mono_onD[OF assms, of x y] strict_mono_onD[OF assms, of y x]) | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1026 | qed | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1027 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1028 | lemma strict_mono_on_leD: | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1029 | assumes "strict_mono_on (f :: (_ :: linorder) \<Rightarrow> _ :: preorder) A" "x \<in> A" "y \<in> A" "x \<le> y" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1030 | shows "f x \<le> f y" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1031 | proof (insert le_less_linear[of y x], elim disjE) | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1032 | assume "x < y" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1033 | with assms have "f x < f y" by (rule_tac strict_mono_onD[OF assms(1)]) simp_all | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1034 | thus ?thesis by (rule less_imp_le) | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1035 | qed (insert assms, simp) | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1036 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1037 | lemma strict_mono_on_eqD: | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1038 | fixes f :: "(_ :: linorder) \<Rightarrow> (_ :: preorder)" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1039 | assumes "strict_mono_on f A" "f x = f y" "x \<in> A" "y \<in> A" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1040 | shows "y = x" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1041 | using assms by (rule_tac linorder_cases[of x y]) (auto dest: strict_mono_onD) | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1042 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1043 | lemma strict_mono_on_imp_mono_on: | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1044 | "strict_mono_on (f :: (_ :: linorder) \<Rightarrow> _ :: preorder) A \<Longrightarrow> mono_on f A" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1045 | by (rule mono_onI, rule strict_mono_on_leD) | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1046 | |
| 63322 | 1047 | |
| 61204 | 1048 | subsection \<open>Setup\<close> | 
| 40969 | 1049 | |
| 60758 | 1050 | subsubsection \<open>Proof tools\<close> | 
| 22845 | 1051 | |
| 63400 | 1052 | text \<open>Simplify terms of the form \<open>f(\<dots>,x:=y,\<dots>,x:=z,\<dots>)\<close> to \<open>f(\<dots>,x:=z,\<dots>)\<close>\<close> | 
| 22845 | 1053 | |
| 60758 | 1054 | simproc_setup fun_upd2 ("f(v := w, x := y)") = \<open>fn _ =>
 | 
| 63322 | 1055 | let | 
| 1056 | fun gen_fun_upd NONE T _ _ = NONE | |
| 69593 | 1057 | | gen_fun_upd (SOME f) T x y = SOME (Const (\<^const_name>\<open>fun_upd\<close>, T) $ f $ x $ y) | 
| 63322 | 1058 | fun dest_fun_T1 (Type (_, T :: Ts)) = T | 
| 69593 | 1059 | fun find_double (t as Const (\<^const_name>\<open>fun_upd\<close>,T) $ f $ x $ y) = | 
| 63322 | 1060 | let | 
| 69593 | 1061 | fun find (Const (\<^const_name>\<open>fun_upd\<close>,T) $ g $ v $ w) = | 
| 63322 | 1062 | if v aconv x then SOME g else gen_fun_upd (find g) T v w | 
| 1063 | | find t = NONE | |
| 1064 | in (dest_fun_T1 T, gen_fun_upd (find f) T x y) end | |
| 24017 | 1065 | |
| 69593 | 1066 | val ss = simpset_of \<^context> | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51598diff
changeset | 1067 | |
| 63322 | 1068 | fun proc ctxt ct = | 
| 1069 | let | |
| 1070 | val t = Thm.term_of ct | |
| 1071 | in | |
| 63400 | 1072 | (case find_double t of | 
| 63322 | 1073 | (T, NONE) => NONE | 
| 1074 | | (T, SOME rhs) => | |
| 1075 | SOME (Goal.prove ctxt [] [] (Logic.mk_equals (t, rhs)) | |
| 1076 | (fn _ => | |
| 1077 | resolve_tac ctxt [eq_reflection] 1 THEN | |
| 1078 |                 resolve_tac ctxt @{thms ext} 1 THEN
 | |
| 63400 | 1079 | simp_tac (put_simpset ss ctxt) 1))) | 
| 63322 | 1080 | end | 
| 1081 | in proc end | |
| 60758 | 1082 | \<close> | 
| 22845 | 1083 | |
| 1084 | ||
| 60758 | 1085 | subsubsection \<open>Functorial structure of types\<close> | 
| 40969 | 1086 | |
| 69605 | 1087 | ML_file \<open>Tools/functor.ML\<close> | 
| 40969 | 1088 | |
| 55467 
a5c9002bc54d
renamed 'enriched_type' to more informative 'functor' (following the renaming of enriched type constructors to bounded natural functors)
 blanchet parents: 
55414diff
changeset | 1089 | functor map_fun: map_fun | 
| 47488 
be6dd389639d
centralized enriched_type declaration, thanks to in-situ available Isar commands
 haftmann parents: 
46950diff
changeset | 1090 | by (simp_all add: fun_eq_iff) | 
| 
be6dd389639d
centralized enriched_type declaration, thanks to in-situ available Isar commands
 haftmann parents: 
46950diff
changeset | 1091 | |
| 55467 
a5c9002bc54d
renamed 'enriched_type' to more informative 'functor' (following the renaming of enriched type constructors to bounded natural functors)
 blanchet parents: 
55414diff
changeset | 1092 | functor vimage | 
| 49739 | 1093 | by (simp_all add: fun_eq_iff vimage_comp) | 
| 1094 | ||
| 63322 | 1095 | |
| 60758 | 1096 | text \<open>Legacy theorem names\<close> | 
| 49739 | 1097 | |
| 1098 | lemmas o_def = comp_def | |
| 1099 | lemmas o_apply = comp_apply | |
| 1100 | lemmas o_assoc = comp_assoc [symmetric] | |
| 1101 | lemmas id_o = id_comp | |
| 1102 | lemmas o_id = comp_id | |
| 1103 | lemmas o_eq_dest = comp_eq_dest | |
| 1104 | lemmas o_eq_elim = comp_eq_elim | |
| 55066 | 1105 | lemmas o_eq_dest_lhs = comp_eq_dest_lhs | 
| 1106 | lemmas o_eq_id_dest = comp_eq_id_dest | |
| 47488 
be6dd389639d
centralized enriched_type declaration, thanks to in-situ available Isar commands
 haftmann parents: 
46950diff
changeset | 1107 | |
| 2912 | 1108 | end |