| author | wenzelm | 
| Wed, 05 Jul 2023 15:01:46 +0200 | |
| changeset 78255 | 3e11f510b3f6 | 
| parent 78099 | 4d9349989d94 | 
| child 78258 | 71366be2c647 | 
| 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 | ||
| 74123 
7c5842b06114
clarified abstract and concrete boolean algebras
 haftmann parents: 
74101diff
changeset | 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 | |
| 76281 
457f1cba78fb
renamed lemma inj_on_strict_subset to image_strict_mono for symmetry with image_mono and to distinguish from inj_on_subset
 desharna parents: 
76264diff
changeset | 181 | lemma image_strict_mono: "inj_on f B \<Longrightarrow> A \<subset> B \<Longrightarrow> f ` A \<subset> f ` B" | 
| 63322 | 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 | |
| 76252 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 211 | lemma bij_uminus: "bij (uminus :: 'a \<Rightarrow> 'a::group_add)" | 
| 63322 | 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 | |
| 76722 
b1d57dd345e1
First round of moving material from the number theory development
 paulson <lp15@cam.ac.uk> parents: 
76281diff
changeset | 303 | lemma linorder_inj_onI': | 
| 
b1d57dd345e1
First round of moving material from the number theory development
 paulson <lp15@cam.ac.uk> parents: 
76281diff
changeset | 304 | fixes A :: "'a :: linorder set" | 
| 
b1d57dd345e1
First round of moving material from the number theory development
 paulson <lp15@cam.ac.uk> parents: 
76281diff
changeset | 305 | assumes "\<And>i j. i \<in> A \<Longrightarrow> j \<in> A \<Longrightarrow> i < j \<Longrightarrow> f i \<noteq> f j" | 
| 
b1d57dd345e1
First round of moving material from the number theory development
 paulson <lp15@cam.ac.uk> parents: 
76281diff
changeset | 306 | shows "inj_on f A" | 
| 
b1d57dd345e1
First round of moving material from the number theory development
 paulson <lp15@cam.ac.uk> parents: 
76281diff
changeset | 307 | by (intro linorder_inj_onI) (auto simp add: assms) | 
| 
b1d57dd345e1
First round of moving material from the number theory development
 paulson <lp15@cam.ac.uk> parents: 
76281diff
changeset | 308 | |
| 54578 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54147diff
changeset | 309 | lemma linorder_injI: | 
| 64965 | 310 | 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 | 311 | shows "inj f" | 
| 71404 
f2b783abfbe7
A few lemmas connected with orderings
 paulson <lp15@cam.ac.uk> parents: 
69913diff
changeset | 312 | \<comment> \<open>Courtesy of Stephan Merz\<close> | 
| 76722 
b1d57dd345e1
First round of moving material from the number theory development
 paulson <lp15@cam.ac.uk> parents: 
76281diff
changeset | 313 | using assms by (simp add: linorder_inj_onI') | 
| 69735 
8230dca028eb
the theory of Equipollence, and moving Fpow from Cardinals into Main
 paulson <lp15@cam.ac.uk> parents: 
69700diff
changeset | 314 | |
| 
8230dca028eb
the theory of Equipollence, and moving Fpow from Cardinals into Main
 paulson <lp15@cam.ac.uk> parents: 
69700diff
changeset | 315 | 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 | 316 | 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 | 317 | |
| 
8230dca028eb
the theory of Equipollence, and moving Fpow from Cardinals into Main
 paulson <lp15@cam.ac.uk> parents: 
69700diff
changeset | 318 | 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 | 319 | 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 | 320 | |
| 40702 | 321 | lemma surj_def: "surj f \<longleftrightarrow> (\<forall>y. \<exists>x. y = f x)" | 
| 322 | by auto | |
| 39076 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 323 | |
| 63322 | 324 | lemma surjI: | 
| 64965 | 325 | assumes "\<And>x. g (f x) = x" | 
| 63322 | 326 | shows "surj g" | 
| 64965 | 327 | using assms [symmetric] by auto | 
| 13585 | 328 | |
| 39076 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 329 | 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 | 330 | by (simp add: surj_def) | 
| 13585 | 331 | |
| 39076 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 332 | lemma surjE: "surj f \<Longrightarrow> (\<And>x. y = f x \<Longrightarrow> C) \<Longrightarrow> C" | 
| 63575 | 333 | by (simp add: surj_def) blast | 
| 13585 | 334 | |
| 63322 | 335 | lemma comp_surj: "surj f \<Longrightarrow> surj g \<Longrightarrow> surj (g \<circ> f)" | 
| 69768 | 336 | using image_comp [of g f UNIV] by simp | 
| 13585 | 337 | |
| 63322 | 338 | lemma bij_betw_imageI: "inj_on f A \<Longrightarrow> f ` A = B \<Longrightarrow> bij_betw f A B" | 
| 339 | unfolding bij_betw_def by clarify | |
| 57282 | 340 | |
| 341 | lemma bij_betw_imp_surj_on: "bij_betw f A B \<Longrightarrow> f ` A = B" | |
| 342 | unfolding bij_betw_def by clarify | |
| 343 | ||
| 39074 | 344 | lemma bij_betw_imp_surj: "bij_betw f A UNIV \<Longrightarrow> surj f" | 
| 40702 | 345 | unfolding bij_betw_def by auto | 
| 39074 | 346 | |
| 63322 | 347 | lemma bij_betw_empty1: "bij_betw f {} A \<Longrightarrow> A = {}"
 | 
| 348 | 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 | 349 | |
| 63322 | 350 | lemma bij_betw_empty2: "bij_betw f A {} \<Longrightarrow> A = {}"
 | 
| 351 | 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 | 352 | |
| 63322 | 353 | lemma inj_on_imp_bij_betw: "inj_on f A \<Longrightarrow> bij_betw f A (f ` A)" | 
| 354 | 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 | 355 | |
| 77138 
c8597292cd41
Moved in a large number of highly useful library lemmas, mostly due to Manuel Eberl
 paulson <lp15@cam.ac.uk> parents: 
76722diff
changeset | 356 | lemma bij_betw_DiffI: | 
| 
c8597292cd41
Moved in a large number of highly useful library lemmas, mostly due to Manuel Eberl
 paulson <lp15@cam.ac.uk> parents: 
76722diff
changeset | 357 | assumes "bij_betw f A B" "bij_betw f C D" "C \<subseteq> A" "D \<subseteq> B" | 
| 
c8597292cd41
Moved in a large number of highly useful library lemmas, mostly due to Manuel Eberl
 paulson <lp15@cam.ac.uk> parents: 
76722diff
changeset | 358 | shows "bij_betw f (A - C) (B - D)" | 
| 
c8597292cd41
Moved in a large number of highly useful library lemmas, mostly due to Manuel Eberl
 paulson <lp15@cam.ac.uk> parents: 
76722diff
changeset | 359 | using assms unfolding bij_betw_def inj_on_def by auto | 
| 
c8597292cd41
Moved in a large number of highly useful library lemmas, mostly due to Manuel Eberl
 paulson <lp15@cam.ac.uk> parents: 
76722diff
changeset | 360 | |
| 
c8597292cd41
Moved in a large number of highly useful library lemmas, mostly due to Manuel Eberl
 paulson <lp15@cam.ac.uk> parents: 
76722diff
changeset | 361 | lemma bij_betw_singleton_iff [simp]: "bij_betw f {x} {y} \<longleftrightarrow> f x = y"
 | 
| 
c8597292cd41
Moved in a large number of highly useful library lemmas, mostly due to Manuel Eberl
 paulson <lp15@cam.ac.uk> parents: 
76722diff
changeset | 362 | by (auto simp: bij_betw_def) | 
| 
c8597292cd41
Moved in a large number of highly useful library lemmas, mostly due to Manuel Eberl
 paulson <lp15@cam.ac.uk> parents: 
76722diff
changeset | 363 | |
| 
c8597292cd41
Moved in a large number of highly useful library lemmas, mostly due to Manuel Eberl
 paulson <lp15@cam.ac.uk> parents: 
76722diff
changeset | 364 | lemma bij_betw_singletonI [intro]: "f x = y \<Longrightarrow> bij_betw f {x} {y}"
 | 
| 
c8597292cd41
Moved in a large number of highly useful library lemmas, mostly due to Manuel Eberl
 paulson <lp15@cam.ac.uk> parents: 
76722diff
changeset | 365 | by auto | 
| 
c8597292cd41
Moved in a large number of highly useful library lemmas, mostly due to Manuel Eberl
 paulson <lp15@cam.ac.uk> parents: 
76722diff
changeset | 366 | |
| 71464 | 367 | lemma bij_betw_apply: "\<lbrakk>bij_betw f A B; a \<in> A\<rbrakk> \<Longrightarrow> f a \<in> B" | 
| 368 | unfolding bij_betw_def by auto | |
| 369 | ||
| 39076 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 hoelzl parents: 
39075diff
changeset | 370 | lemma bij_def: "bij f \<longleftrightarrow> inj f \<and> surj f" | 
| 64965 | 371 | by (rule bij_betw_def) | 
| 39074 | 372 | |
| 63322 | 373 | lemma bijI: "inj f \<Longrightarrow> surj f \<Longrightarrow> bij f" | 
| 64965 | 374 | by (rule bij_betw_imageI) | 
| 13585 | 375 | |
| 63322 | 376 | lemma bij_is_inj: "bij f \<Longrightarrow> inj f" | 
| 377 | by (simp add: bij_def) | |
| 13585 | 378 | |
| 63322 | 379 | lemma bij_is_surj: "bij f \<Longrightarrow> surj f" | 
| 380 | by (simp add: bij_def) | |
| 13585 | 381 | |
| 26105 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 382 | lemma bij_betw_imp_inj_on: "bij_betw f A B \<Longrightarrow> inj_on f A" | 
| 63322 | 383 | by (simp add: bij_betw_def) | 
| 26105 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 384 | |
| 63322 | 385 | lemma bij_betw_trans: "bij_betw f A B \<Longrightarrow> bij_betw g B C \<Longrightarrow> bij_betw (g \<circ> f) A C" | 
| 386 | by (auto simp add:bij_betw_def comp_inj_on) | |
| 31438 | 387 | |
| 63322 | 388 | lemma bij_comp: "bij f \<Longrightarrow> bij g \<Longrightarrow> bij (g \<circ> f)" | 
| 40702 | 389 | by (rule bij_betw_trans) | 
| 390 | ||
| 63322 | 391 | lemma bij_betw_comp_iff: "bij_betw f A A' \<Longrightarrow> bij_betw f' A' A'' \<longleftrightarrow> bij_betw (f' \<circ> f) A A''" | 
| 392 | 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 | 393 | |
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 394 | lemma bij_betw_comp_iff2: | 
| 63322 | 395 | assumes bij: "bij_betw f' A' A''" | 
| 396 | and img: "f ` A \<le> A'" | |
| 75669 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 397 | shows "bij_betw f A A' \<longleftrightarrow> bij_betw (f' \<circ> f) A A''" (is "?L \<longleftrightarrow> ?R") | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 398 | proof | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 399 | assume "?L" | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 400 | then show "?R" | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 401 | using assms by (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 | 402 | next | 
| 75669 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 403 | assume *: "?R" | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 404 | have "inj_on (f' \<circ> f) A \<Longrightarrow> inj_on f A" | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 405 | using inj_on_imageI2 by blast | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 406 | moreover have "A' \<subseteq> f ` A" | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 407 | proof | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 408 | fix a' | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 409 | assume **: "a' \<in> A'" | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 410 | with bij have "f' a' \<in> A''" | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 411 | unfolding bij_betw_def by auto | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 412 | with * obtain a where 1: "a \<in> A \<and> f' (f a) = f' a'" | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 413 | unfolding bij_betw_def by force | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 414 | with img have "f a \<in> A'" by auto | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 415 | with bij ** 1 have "f a = a'" | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 416 | unfolding bij_betw_def inj_on_def by auto | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 417 | with 1 show "a' \<in> f ` A" by auto | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 418 | qed | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 419 | ultimately show "?L" | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 420 | using img * 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 | 421 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 422 | |
| 63322 | 423 | lemma bij_betw_inv: | 
| 424 | assumes "bij_betw f A B" | |
| 425 | 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 | 426 | proof - | 
| 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 427 | have i: "inj_on f A" and s: "f ` A = B" | 
| 63322 | 428 | using assms by (auto simp: bij_betw_def) | 
| 429 | let ?P = "\<lambda>b a. a \<in> A \<and> f a = b" | |
| 430 | let ?g = "\<lambda>b. The (?P b)" | |
| 431 | have g: "?g b = a" if P: "?P b a" for a b | |
| 432 | proof - | |
| 63575 | 433 | from that s have ex1: "\<exists>a. ?P b a" by blast | 
| 63322 | 434 | then have uex1: "\<exists>!a. ?P b a" by (blast dest:inj_onD[OF i]) | 
| 63575 | 435 | then show ?thesis | 
| 436 | using the1_equality[OF uex1, OF P] P by simp | |
| 63322 | 437 | qed | 
| 26105 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 438 | have "inj_on ?g B" | 
| 63322 | 439 | proof (rule inj_onI) | 
| 440 | fix x y | |
| 441 | assume "x \<in> B" "y \<in> B" "?g x = ?g y" | |
| 442 | from s \<open>x \<in> B\<close> obtain a1 where a1: "?P x a1" by blast | |
| 443 | from s \<open>y \<in> B\<close> obtain a2 where a2: "?P y a2" by blast | |
| 444 | 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 | 445 | qed | 
| 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 446 | moreover have "?g ` B = A" | 
| 75669 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 447 | proof safe | 
| 63322 | 448 | fix b | 
| 449 | assume "b \<in> B" | |
| 56077 | 450 | with s obtain a where P: "?P b a" by blast | 
| 63575 | 451 | 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 | 452 | next | 
| 63322 | 453 | fix a | 
| 454 | assume "a \<in> A" | |
| 63575 | 455 | with s obtain b where P: "?P b a" by blast | 
| 456 | with s have "b \<in> B" by blast | |
| 75669 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 457 | with g[OF P] have "\<exists>b\<in>B. a = ?g b" by blast | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 458 | then show "a \<in> ?g ` B" | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 459 | by auto | 
| 26105 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 460 | qed | 
| 63575 | 461 | ultimately show ?thesis | 
| 462 | by (auto simp: bij_betw_def) | |
| 26105 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 463 | qed | 
| 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 nipkow parents: 
25886diff
changeset | 464 | |
| 63588 | 465 | 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 | 466 | 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 | 467 | |
| 63322 | 468 | lemma bij_betw_id[intro, simp]: "bij_betw id A A" | 
| 469 | 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 | 470 | |
| 63322 | 471 | lemma bij_betw_id_iff: "bij_betw id A B \<longleftrightarrow> A = B" | 
| 472 | 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 | 473 | |
| 39075 | 474 | lemma bij_betw_combine: | 
| 63400 | 475 |   "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)"
 | 
| 476 | unfolding bij_betw_def inj_on_Un image_Un by auto | |
| 39075 | 477 | |
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64965diff
changeset | 478 | lemma bij_betw_subset: "bij_betw f A A' \<Longrightarrow> B \<subseteq> A \<Longrightarrow> f ` B = B' \<Longrightarrow> bij_betw f B B'" | 
| 63322 | 479 | 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 | 480 | |
| 75624 | 481 | lemma bij_betw_ball: "bij_betw f A B \<Longrightarrow> (\<forall>b \<in> B. phi b) = (\<forall>a \<in> A. phi (f a))" | 
| 482 | unfolding bij_betw_def inj_on_def by blast | |
| 483 | ||
| 58195 | 484 | lemma bij_pointE: | 
| 485 | assumes "bij f" | |
| 486 | obtains x where "y = f x" and "\<And>x'. y = f x' \<Longrightarrow> x' = x" | |
| 487 | proof - | |
| 488 | from assms have "inj f" by (rule bij_is_inj) | |
| 489 | moreover from assms have "surj f" by (rule bij_is_surj) | |
| 490 | then have "y \<in> range f" by simp | |
| 491 | ultimately have "\<exists>!x. y = f x" by (simp add: range_ex1_eq) | |
| 492 | with that show thesis by blast | |
| 493 | qed | |
| 494 | ||
| 73326 | 495 | lemma bij_iff: \<^marker>\<open>contributor \<open>Amine Chaieb\<close>\<close> | 
| 496 | \<open>bij f \<longleftrightarrow> (\<forall>x. \<exists>!y. f y = x)\<close> (is \<open>?P \<longleftrightarrow> ?Q\<close>) | |
| 497 | proof | |
| 498 | assume ?P | |
| 499 | then have \<open>inj f\<close> \<open>surj f\<close> | |
| 500 | by (simp_all add: bij_def) | |
| 501 | show ?Q | |
| 502 | proof | |
| 503 | fix y | |
| 504 | from \<open>surj f\<close> obtain x where \<open>y = f x\<close> | |
| 505 | by (auto simp add: surj_def) | |
| 506 | with \<open>inj f\<close> show \<open>\<exists>!x. f x = y\<close> | |
| 507 | by (auto simp add: inj_def) | |
| 508 | qed | |
| 509 | next | |
| 510 | assume ?Q | |
| 511 | then have \<open>inj f\<close> | |
| 512 | by (auto simp add: inj_def) | |
| 513 | moreover have \<open>\<exists>x. y = f x\<close> for y | |
| 514 | proof - | |
| 515 | from \<open>?Q\<close> obtain x where \<open>f x = y\<close> | |
| 516 | by blast | |
| 517 | then have \<open>y = f x\<close> | |
| 518 | by simp | |
| 519 | then show ?thesis .. | |
| 520 | qed | |
| 521 | then have \<open>surj f\<close> | |
| 522 | by (auto simp add: surj_def) | |
| 523 | ultimately show ?P | |
| 524 | by (rule bijI) | |
| 525 | qed | |
| 526 | ||
| 73466 | 527 | lemma bij_betw_partition: | 
| 528 | \<open>bij_betw f A B\<close> | |
| 529 |   if \<open>bij_betw f (A \<union> C) (B \<union> D)\<close> \<open>bij_betw f C D\<close> \<open>A \<inter> C = {}\<close> \<open>B \<inter> D = {}\<close>
 | |
| 530 | proof - | |
| 531 | from that have \<open>inj_on f (A \<union> C)\<close> \<open>inj_on f C\<close> \<open>f ` (A \<union> C) = B \<union> D\<close> \<open>f ` C = D\<close> | |
| 532 | by (simp_all add: bij_betw_def) | |
| 533 |   then have \<open>inj_on f A\<close> and \<open>f ` (A - C) \<inter> f ` (C - A) = {}\<close>
 | |
| 534 | by (simp_all add: inj_on_Un) | |
| 535 |   with \<open>A \<inter> C = {}\<close> have \<open>f ` A \<inter> f ` C = {}\<close>
 | |
| 536 | by auto | |
| 537 |   with \<open>f ` (A \<union> C) = B \<union> D\<close> \<open>f ` C = D\<close>  \<open>B \<inter> D = {}\<close>
 | |
| 538 | have \<open>f ` A = B\<close> | |
| 539 | by blast | |
| 540 | with \<open>inj_on f A\<close> show ?thesis | |
| 541 | by (simp add: bij_betw_def) | |
| 542 | qed | |
| 543 | ||
| 63322 | 544 | lemma surj_image_vimage_eq: "surj f \<Longrightarrow> f ` (f -` A) = A" | 
| 545 | by simp | |
| 13585 | 546 | |
| 42903 | 547 | lemma surj_vimage_empty: | 
| 63322 | 548 | assumes "surj f" | 
| 549 |   shows "f -` A = {} \<longleftrightarrow> A = {}"
 | |
| 550 | 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 | 551 | by (intro iffI) fastforce+ | 
| 42903 | 552 | |
| 63322 | 553 | 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 | 554 | unfolding inj_def by blast | 
| 13585 | 555 | |
| 63322 | 556 | lemma vimage_subsetD: "surj f \<Longrightarrow> f -` B \<subseteq> A \<Longrightarrow> B \<subseteq> f ` A" | 
| 557 | by (blast intro: sym) | |
| 13585 | 558 | |
| 63322 | 559 | 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 | 560 | unfolding inj_def by blast | 
| 13585 | 561 | |
| 63322 | 562 | lemma vimage_subset_eq: "bij f \<Longrightarrow> f -` B \<subseteq> A \<longleftrightarrow> B \<subseteq> f ` A" | 
| 563 | unfolding bij_def by (blast del: subsetI intro: vimage_subsetI vimage_subsetD) | |
| 13585 | 564 | |
| 63322 | 565 | 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 | 566 | by (fastforce simp: inj_on_def) | 
| 53927 | 567 | |
| 31438 | 568 | lemma inj_on_Un_image_eq_iff: "inj_on f (A \<union> B) \<Longrightarrow> f ` A = f ` B \<longleftrightarrow> A = B" | 
| 63322 | 569 | by (erule inj_on_image_eq_iff) simp_all | 
| 31438 | 570 | |
| 63322 | 571 | 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" | 
| 572 | unfolding inj_on_def by blast | |
| 573 | ||
| 574 | 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" | |
| 575 | unfolding inj_on_def by blast | |
| 13585 | 576 | |
| 63322 | 577 | 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 | 578 | unfolding inj_def by blast | 
| 13585 | 579 | |
| 63322 | 580 | 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 | 581 | unfolding inj_def by blast | 
| 13585 | 582 | |
| 63322 | 583 | 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 | 584 | by (auto simp: inj_on_def) | 
| 
8c6747dba731
New lemmas and a bit of tidying up.
 paulson <lp15@cam.ac.uk> parents: 
58889diff
changeset | 585 | |
| 63322 | 586 | 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 | 587 | by (blast dest: injD) | 
| 13585 | 588 | |
| 63322 | 589 | 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 | 590 | by (blast dest: injD) | 
| 13585 | 591 | |
| 63322 | 592 | 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 | 593 | by (blast dest: injD) | 
| 13585 | 594 | |
| 63322 | 595 | lemma surj_Compl_image_subset: "surj f \<Longrightarrow> - (f ` A) \<subseteq> f ` (- A)" | 
| 596 | by auto | |
| 5852 | 597 | |
| 63322 | 598 | 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 | 599 | by (auto simp: inj_def) | 
| 63322 | 600 | |
| 601 | lemma bij_image_Compl_eq: "bij f \<Longrightarrow> f ` (- A) = - (f ` A)" | |
| 602 | by (simp add: bij_def inj_image_Compl_subset surj_Compl_image_subset equalityI) | |
| 13585 | 603 | |
| 41657 | 604 | lemma inj_vimage_singleton: "inj f \<Longrightarrow> f -` {a} \<subseteq> {THE x. f x = a}"
 | 
| 63322 | 605 | \<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 | 606 | by (simp add: inj_def) (blast intro: the_equality [symmetric]) | 
| 41657 | 607 | |
| 63322 | 608 | 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 | 609 | by (auto simp add: inj_on_def intro: the_equality [symmetric]) | 
| 610 | ||
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 611 | lemma bij_betw_byWitness: | 
| 63322 | 612 | assumes left: "\<forall>a \<in> A. f' (f a) = a" | 
| 613 | and right: "\<forall>a' \<in> A'. f (f' a') = a'" | |
| 63575 | 614 | and "f ` A \<subseteq> A'" | 
| 615 | and img2: "f' ` A' \<subseteq> A" | |
| 63322 | 616 | shows "bij_betw f A A'" | 
| 617 | using assms | |
| 63400 | 618 | unfolding bij_betw_def inj_on_def | 
| 619 | proof safe | |
| 63322 | 620 | fix a b | 
| 63575 | 621 | assume "a \<in> A" "b \<in> A" | 
| 622 | with left have "a = f' (f a) \<and> b = f' (f b)" by simp | |
| 623 | moreover assume "f a = f b" | |
| 624 | ultimately show "a = b" by simp | |
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 625 | next | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 626 | fix a' assume *: "a' \<in> A'" | 
| 63575 | 627 | with img2 have "f' a' \<in> A" by blast | 
| 628 | 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 | 629 | ultimately show "a' \<in> f ` A" by blast | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 630 | qed | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 631 | |
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 632 | corollary notIn_Un_bij_betw: | 
| 63322 | 633 | assumes "b \<notin> A" | 
| 634 | and "f b \<notin> A'" | |
| 635 | and "bij_betw f A A'" | |
| 636 |   shows "bij_betw f (A \<union> {b}) (A' \<union> {f b})"
 | |
| 637 | proof - | |
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 638 |   have "bij_betw f {b} {f b}"
 | 
| 63322 | 639 | 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 | 640 | with assms show ?thesis | 
| 63322 | 641 |     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 | 642 | qed | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 643 | |
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 644 | lemma notIn_Un_bij_betw3: | 
| 63322 | 645 | assumes "b \<notin> A" | 
| 646 | and "f b \<notin> A'" | |
| 647 |   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 | 648 | proof | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 649 | assume "bij_betw f A A'" | 
| 63322 | 650 |   then show "bij_betw f (A \<union> {b}) (A' \<union> {f b})"
 | 
| 651 | 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 | 652 | next | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 653 |   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 | 654 | have "f ` A = A'" | 
| 75669 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 655 | proof safe | 
| 63322 | 656 | fix a | 
| 657 | assume **: "a \<in> A" | |
| 658 |     then have "f a \<in> A' \<union> {f b}"
 | |
| 659 | using * unfolding bij_betw_def by blast | |
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 660 | moreover | 
| 63322 | 661 | have False if "f a = f b" | 
| 662 | proof - | |
| 63575 | 663 | have "a = b" | 
| 664 | using * ** that unfolding bij_betw_def inj_on_def by blast | |
| 63322 | 665 | with \<open>b \<notin> A\<close> ** show ?thesis by blast | 
| 666 | qed | |
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 667 | ultimately show "f a \<in> A'" by blast | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 668 | next | 
| 63322 | 669 | fix a' | 
| 670 | assume **: "a' \<in> A'" | |
| 671 |     then have "a' \<in> f ` (A \<union> {b})"
 | |
| 672 | using * by (auto simp add: bij_betw_def) | |
| 55019 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 673 |     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 | 674 | moreover | 
| 63322 | 675 | 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 | 676 | ultimately have "a \<in> A" by blast | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 677 | with 1 show "a' \<in> f ` A" by blast | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 678 | qed | 
| 63322 | 679 | then show "bij_betw f A A'" | 
| 680 |     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 | 681 | qed | 
| 
0d5e831175de
moved lemmas from 'Fun_More_FP' to where they belong
 blanchet parents: 
54578diff
changeset | 682 | |
| 71857 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 683 | lemma inj_on_disjoint_Un: | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 684 | 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 | 685 |   and "f ` A \<inter> g ` B = {}"
 | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 686 | 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 | 687 | 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 | 688 | |
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 689 | lemma bij_betw_disjoint_Un: | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 690 | 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 | 691 |   and "A \<inter> B = {}"
 | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 692 |   and "C \<inter> D = {}"
 | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 693 | 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 | 694 | 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 | 695 | |
| 73594 | 696 | lemma involuntory_imp_bij: | 
| 697 | \<open>bij f\<close> if \<open>\<And>x. f (f x) = x\<close> | |
| 698 | proof (rule bijI) | |
| 699 | from that show \<open>surj f\<close> | |
| 700 | by (rule surjI) | |
| 701 | show \<open>inj f\<close> | |
| 702 | proof (rule injI) | |
| 703 | fix x y | |
| 704 | assume \<open>f x = f y\<close> | |
| 705 | then have \<open>f (f x) = f (f y)\<close> | |
| 706 | by simp | |
| 707 | then show \<open>x = y\<close> | |
| 708 | by (simp add: that) | |
| 709 | qed | |
| 710 | qed | |
| 711 | ||
| 712 | ||
| 76261 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 713 | subsubsection \<open>Inj/surj/bij of Algebraic Operations\<close> | 
| 69502 | 714 | |
| 715 | context cancel_semigroup_add | |
| 716 | begin | |
| 717 | ||
| 69661 | 718 | lemma inj_on_add [simp]: | 
| 719 | "inj_on ((+) a) A" | |
| 720 | by (rule inj_onI) simp | |
| 721 | ||
| 722 | lemma inj_on_add' [simp]: | |
| 723 | "inj_on (\<lambda>b. b + a) A" | |
| 724 | by (rule inj_onI) simp | |
| 725 | ||
| 726 | lemma bij_betw_add [simp]: | |
| 727 | "bij_betw ((+) a) A B \<longleftrightarrow> (+) a ` A = B" | |
| 728 | by (simp add: bij_betw_def) | |
| 69502 | 729 | |
| 730 | end | |
| 731 | ||
| 76252 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 732 | context group_add | 
| 69502 | 733 | begin | 
| 734 | ||
| 76261 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 735 | lemma diff_left_imp_eq: "a - b = a - c \<Longrightarrow> b = c" | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 736 | unfolding add_uminus_conv_diff[symmetric] | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 737 | by(drule local.add_left_imp_eq) simp | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 738 | |
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 739 | lemma inj_uminus[simp, intro]: "inj_on uminus A" | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 740 | by (auto intro!: inj_onI) | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 741 | |
| 76264 | 742 | lemma surj_uminus[simp]: "surj uminus" | 
| 743 | using surjI minus_minus by blast | |
| 744 | ||
| 69661 | 745 | lemma surj_plus [simp]: | 
| 746 | "surj ((+) a)" | |
| 76252 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 747 | proof (standard, simp, standard, simp) | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 748 | fix x | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 749 | have "x = a + (-a + x)" by (simp add: add.assoc) | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 750 | thus "x \<in> range ((+) a)" by blast | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 751 | qed | 
| 69661 | 752 | |
| 76261 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 753 | lemma surj_plus_right [simp]: | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 754 | "surj (\<lambda>b. b+a)" | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 755 | proof (standard, simp, standard, simp) | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 756 | fix b show "b \<in> range (\<lambda>b. b+a)" | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 757 | using diff_add_cancel[of b a, symmetric] by blast | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 758 | qed | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 759 | |
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 760 | lemma inj_on_diff_left [simp]: | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 761 | \<open>inj_on ((-) a) A\<close> | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 762 | by (auto intro: inj_onI dest!: diff_left_imp_eq) | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 763 | |
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 764 | lemma inj_on_diff_right [simp]: | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 765 | \<open>inj_on (\<lambda>b. b - a) A\<close> | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 766 | by (auto intro: inj_onI simp add: algebra_simps) | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 767 | |
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 768 | lemma surj_diff [simp]: | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 769 | "surj ((-) a)" | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 770 | proof (standard, simp, standard, simp) | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 771 | fix x | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 772 | have "x = a - (- x + a)" by (simp add: algebra_simps) | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 773 | thus "x \<in> range ((-) a)" by blast | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 774 | qed | 
| 69502 | 775 | |
| 69661 | 776 | lemma surj_diff_right [simp]: | 
| 777 | "surj (\<lambda>x. x - a)" | |
| 76252 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 778 | proof (standard, simp, standard, simp) | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 779 | fix x | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 780 | have "x = x + a - a" by simp | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 781 | thus "x \<in> range (\<lambda>x. x - a)" by fast | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 782 | qed | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 783 | |
| 76261 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 784 | lemma shows bij_plus: "bij ((+) a)" and bij_plus_right: "bij (\<lambda>x. x + a)" | 
| 76264 | 785 | and bij_uminus: "bij uminus" | 
| 76261 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 786 | and bij_diff: "bij ((-) a)" and bij_diff_right: "bij (\<lambda>x. x - a)" | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 787 | by(simp_all add: bij_def) | 
| 
26524d0b4395
added and reorganized lemmas (some suggested by Jeremy Sylvestre)
 nipkow parents: 
76260diff
changeset | 788 | |
| 76252 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 789 | lemma translation_subtract_Compl: | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 790 | "(\<lambda>x. x - a) ` (- t) = - ((\<lambda>x. x - a) ` t)" | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 791 | by(rule bij_image_Compl_eq) | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 792 | (auto simp add: bij_def surj_def inj_def diff_eq_eq intro!: add_diff_cancel[symmetric]) | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 793 | |
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 794 | lemma translation_diff: | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 795 | "(+) a ` (s - t) = ((+) a ` s) - ((+) a ` t)" | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 796 | by auto | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 797 | |
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 798 | lemma translation_subtract_diff: | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 799 | "(\<lambda>x. x - a) ` (s - t) = ((\<lambda>x. x - a) ` s) - ((\<lambda>x. x - a) ` t)" | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 800 | by(rule image_set_diff)(simp add: inj_on_def diff_eq_eq) | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 801 | |
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 802 | lemma translation_Int: | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 803 | "(+) a ` (s \<inter> t) = ((+) a ` s) \<inter> ((+) a ` t)" | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 804 | by auto | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 805 | |
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 806 | lemma translation_subtract_Int: | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 807 | "(\<lambda>x. x - a) ` (s \<inter> t) = ((\<lambda>x. x - a) ` s) \<inter> ((\<lambda>x. x - a) ` t)" | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 808 | by(rule image_Int)(simp add: inj_on_def diff_eq_eq) | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 809 | |
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 810 | end | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 811 | |
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 812 | (* TODO: prove in group_add *) | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 813 | context ab_group_add | 
| 
d123d9f67514
generalized type classes as suggested by Jeremy Sylvestre
 nipkow parents: 
76056diff
changeset | 814 | begin | 
| 69661 | 815 | |
| 816 | lemma translation_Compl: | |
| 817 | "(+) a ` (- t) = - ((+) a ` t)" | |
| 818 | proof (rule set_eqI) | |
| 819 | fix b | |
| 820 | show "b \<in> (+) a ` (- t) \<longleftrightarrow> b \<in> - (+) a ` t" | |
| 821 | by (auto simp: image_iff algebra_simps intro!: bexI [of _ "b - a"]) | |
| 822 | qed | |
| 823 | ||
| 69502 | 824 | end | 
| 825 | ||
| 41657 | 826 | |
| 63322 | 827 | subsection \<open>Function Updating\<close> | 
| 13585 | 828 | |
| 63322 | 829 | definition fun_upd :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> ('a \<Rightarrow> 'b)"
 | 
| 63324 | 830 | where "fun_upd f a b = (\<lambda>x. if x = a then b else f x)" | 
| 26147 | 831 | |
| 41229 
d797baa3d57c
replaced command 'nonterminals' by slightly modernized version 'nonterminal';
 wenzelm parents: 
40969diff
changeset | 832 | nonterminal updbinds and updbind | 
| 
d797baa3d57c
replaced command 'nonterminals' by slightly modernized version 'nonterminal';
 wenzelm parents: 
40969diff
changeset | 833 | |
| 26147 | 834 | syntax | 
| 63322 | 835 |   "_updbind" :: "'a \<Rightarrow> 'a \<Rightarrow> updbind"             ("(2_ :=/ _)")
 | 
| 836 |   ""         :: "updbind \<Rightarrow> updbinds"             ("_")
 | |
| 837 |   "_updbinds":: "updbind \<Rightarrow> updbinds \<Rightarrow> updbinds" ("_,/ _")
 | |
| 838 |   "_Update"  :: "'a \<Rightarrow> updbinds \<Rightarrow> 'a"            ("_/'((_)')" [1000, 0] 900)
 | |
| 26147 | 839 | |
| 840 | translations | |
| 63322 | 841 | "_Update f (_updbinds b bs)" \<rightleftharpoons> "_Update (_Update f b) bs" | 
| 842 | "f(x:=y)" \<rightleftharpoons> "CONST fun_upd f x y" | |
| 26147 | 843 | |
| 55414 
eab03e9cee8a
renamed '{prod,sum,bool,unit}_case' to 'case_...'
 blanchet parents: 
55066diff
changeset | 844 | (* Hint: to define the sum of two functions (or maps), use case_sum. | 
| 58111 | 845 | A nice infix syntax could be defined by | 
| 35115 | 846 | notation | 
| 55414 
eab03e9cee8a
renamed '{prod,sum,bool,unit}_case' to 'case_...'
 blanchet parents: 
55066diff
changeset | 847 | case_sum (infixr "'(+')"80) | 
| 26147 | 848 | *) | 
| 849 | ||
| 63322 | 850 | lemma fun_upd_idem_iff: "f(x:=y) = f \<longleftrightarrow> f x = y" | 
| 851 | unfolding fun_upd_def | |
| 852 | apply safe | |
| 63575 | 853 | apply (erule subst) | 
| 854 | apply auto | |
| 63322 | 855 | done | 
| 13585 | 856 | |
| 63322 | 857 | lemma fun_upd_idem: "f x = y \<Longrightarrow> f(x := y) = f" | 
| 45603 | 858 | by (simp only: fun_upd_idem_iff) | 
| 13585 | 859 | |
| 45603 | 860 | lemma fun_upd_triv [iff]: "f(x := f x) = f" | 
| 861 | by (simp only: fun_upd_idem) | |
| 13585 | 862 | |
| 63322 | 863 | lemma fun_upd_apply [simp]: "(f(x := y)) z = (if z = x then y else f z)" | 
| 864 | by (simp add: fun_upd_def) | |
| 13585 | 865 | |
| 63322 | 866 | (* fun_upd_apply supersedes these two, but they are useful | 
| 13585 | 867 | if fun_upd_apply is intentionally removed from the simpset *) | 
| 63322 | 868 | lemma fun_upd_same: "(f(x := y)) x = y" | 
| 869 | by simp | |
| 13585 | 870 | |
| 63322 | 871 | lemma fun_upd_other: "z \<noteq> x \<Longrightarrow> (f(x := y)) z = f z" | 
| 872 | by simp | |
| 13585 | 873 | |
| 63322 | 874 | lemma fun_upd_upd [simp]: "f(x := y, x := z) = f(x := z)" | 
| 875 | by (simp add: fun_eq_iff) | |
| 13585 | 876 | |
| 63322 | 877 | 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 | 878 | by auto | 
| 63322 | 879 | |
| 880 | 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 | 881 | by (auto simp: inj_on_def) | 
| 15303 | 882 | |
| 63322 | 883 | lemma fun_upd_image: "f(x := y) ` A = (if x \<in> A then insert y (f ` (A - {x})) else f ` A)"
 | 
| 884 | by auto | |
| 15510 | 885 | |
| 31080 | 886 | lemma fun_upd_comp: "f \<circ> (g(x := y)) = (f \<circ> g)(x := f y)" | 
| 44921 | 887 | by auto | 
| 31080 | 888 | |
| 61630 | 889 | lemma fun_upd_eqD: "f(x := y) = g(x := z) \<Longrightarrow> y = z" | 
| 63322 | 890 | by (simp add: fun_eq_iff split: if_split_asm) | 
| 891 | ||
| 26147 | 892 | |
| 61799 | 893 | subsection \<open>\<open>override_on\<close>\<close> | 
| 26147 | 894 | |
| 63322 | 895 | definition override_on :: "('a \<Rightarrow> 'b) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'a set \<Rightarrow> 'a \<Rightarrow> 'b"
 | 
| 896 | where "override_on f g A = (\<lambda>a. if a \<in> A then g a else f a)" | |
| 13910 | 897 | |
| 15691 | 898 | lemma override_on_emptyset[simp]: "override_on f g {} = f"
 | 
| 64965 | 899 | by (simp add: override_on_def) | 
| 13910 | 900 | |
| 63322 | 901 | lemma override_on_apply_notin[simp]: "a \<notin> A \<Longrightarrow> (override_on f g A) a = f a" | 
| 64965 | 902 | by (simp add: override_on_def) | 
| 13910 | 903 | |
| 63322 | 904 | lemma override_on_apply_in[simp]: "a \<in> A \<Longrightarrow> (override_on f g A) a = g a" | 
| 64965 | 905 | by (simp add: override_on_def) | 
| 13910 | 906 | |
| 63561 
fba08009ff3e
add lemmas contributed by Peter Gammie
 Andreas Lochbihler parents: 
63416diff
changeset | 907 | lemma override_on_insert: "override_on f g (insert x X) = (override_on f g X)(x:=g x)" | 
| 64965 | 908 | by (simp add: override_on_def fun_eq_iff) | 
| 63561 
fba08009ff3e
add lemmas contributed by Peter Gammie
 Andreas Lochbihler parents: 
63416diff
changeset | 909 | |
| 
fba08009ff3e
add lemmas contributed by Peter Gammie
 Andreas Lochbihler parents: 
63416diff
changeset | 910 | lemma override_on_insert': "override_on f g (insert x X) = (override_on (f(x:=g x)) g X)" | 
| 64965 | 911 | by (simp add: override_on_def fun_eq_iff) | 
| 63561 
fba08009ff3e
add lemmas contributed by Peter Gammie
 Andreas Lochbihler parents: 
63416diff
changeset | 912 | |
| 26147 | 913 | |
| 60758 | 914 | subsection \<open>Inversion of injective functions\<close> | 
| 31949 | 915 | |
| 63322 | 916 | definition the_inv_into :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> ('b \<Rightarrow> 'a)"
 | 
| 63324 | 917 | where "the_inv_into A f = (\<lambda>x. THE y. y \<in> A \<and> f y = x)" | 
| 63322 | 918 | |
| 919 | lemma the_inv_into_f_f: "inj_on f A \<Longrightarrow> x \<in> A \<Longrightarrow> the_inv_into A f (f x) = x" | |
| 920 | unfolding the_inv_into_def inj_on_def by blast | |
| 32961 | 921 | |
| 63322 | 922 | 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 | 923 | unfolding the_inv_into_def | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 924 | by (rule the1I2; blast dest: inj_onD) | 
| 32961 | 925 | |
| 72125 
cf8399df4d76
elimination of some needless assumptions
 paulson <lp15@cam.ac.uk> parents: 
71857diff
changeset | 926 | lemma f_the_inv_into_f_bij_betw: | 
| 
cf8399df4d76
elimination of some needless assumptions
 paulson <lp15@cam.ac.uk> parents: 
71857diff
changeset | 927 | "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 | 928 | 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 | 929 | |
| 63322 | 930 | 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 | 931 | unfolding the_inv_into_def | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 932 | by (rule the1I2; blast dest: inj_onD) | 
| 32961 | 933 | |
| 63322 | 934 | lemma the_inv_into_onto [simp]: "inj_on f A \<Longrightarrow> the_inv_into A f ` (f ` A) = A" | 
| 935 | by (fast intro: the_inv_into_into the_inv_into_f_f [symmetric]) | |
| 32961 | 936 | |
| 63322 | 937 | 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 | 938 | by (force simp add: the_inv_into_f_f) | 
| 32961 | 939 | |
| 33057 | 940 | lemma the_inv_into_comp: | 
| 63322 | 941 | "inj_on f (g ` A) \<Longrightarrow> inj_on g A \<Longrightarrow> x \<in> f ` g ` A \<Longrightarrow> | 
| 942 | the_inv_into A (f \<circ> g) x = (the_inv_into A g \<circ> the_inv_into (g ` A) f) x" | |
| 943 | apply (rule the_inv_into_f_eq) | |
| 944 | apply (fast intro: comp_inj_on) | |
| 945 | apply (simp add: f_the_inv_into_f the_inv_into_into) | |
| 946 | apply (simp add: the_inv_into_into) | |
| 947 | done | |
| 32961 | 948 | |
| 63322 | 949 | lemma inj_on_the_inv_into: "inj_on f A \<Longrightarrow> inj_on (the_inv_into A f) (f ` A)" | 
| 950 | by (auto intro: inj_onI simp: the_inv_into_f_f) | |
| 32961 | 951 | |
| 63322 | 952 | lemma bij_betw_the_inv_into: "bij_betw f A B \<Longrightarrow> bij_betw (the_inv_into A f) B A" | 
| 953 | by (auto simp add: bij_betw_def inj_on_the_inv_into the_inv_into_into) | |
| 32961 | 954 | |
| 71857 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 955 | lemma bij_betw_iff_bijections: | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 956 | "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 | 957 | (is "?lhs = ?rhs") | 
| 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 958 | proof | 
| 75669 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 959 | show "?lhs \<Longrightarrow> ?rhs" | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 960 | by (auto simp: bij_betw_def f_the_inv_into_f the_inv_into_f_f the_inv_into_into | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 961 | exI[where ?x="the_inv_into A f"]) | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 962 | next | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 963 | show "?rhs \<Longrightarrow> ?lhs" | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 964 | by (force intro: bij_betw_byWitness) | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 965 | qed | 
| 71857 
d73955442df5
a few new lemmas about functions
 paulson <lp15@cam.ac.uk> parents: 
71827diff
changeset | 966 | |
| 63322 | 967 | abbreviation the_inv :: "('a \<Rightarrow> 'b) \<Rightarrow> ('b \<Rightarrow> 'a)"
 | 
| 968 | 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 | 969 | |
| 64965 | 970 | lemma the_inv_f_f: "the_inv f (f x) = x" if "inj f" | 
| 971 | 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 | 972 | |
| 44277 
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
 haftmann parents: 
43991diff
changeset | 973 | |
| 76054 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 974 | subsection \<open>Monotonicity\<close> | 
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 975 | |
| 75582 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 976 | definition monotone_on :: "'a set \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> ('b \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> bool"
 | 
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 977 | where "monotone_on A orda ordb f \<longleftrightarrow> (\<forall>x\<in>A. \<forall>y\<in>A. orda x y \<longrightarrow> ordb (f x) (f y))" | 
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 978 | |
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 979 | abbreviation monotone :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> ('b \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> bool"
 | 
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 980 | where "monotone \<equiv> monotone_on UNIV" | 
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 981 | |
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 982 | lemma monotone_def[no_atp]: "monotone orda ordb f \<longleftrightarrow> (\<forall>x y. orda x y \<longrightarrow> ordb (f x) (f y))" | 
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 983 | by (simp add: monotone_on_def) | 
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 984 | |
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 985 | text \<open>Lemma @{thm [source] monotone_def} is provided for backward compatibility.\<close>
 | 
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 986 | |
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 987 | lemma monotone_onI: | 
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 988 | "(\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> orda x y \<Longrightarrow> ordb (f x) (f y)) \<Longrightarrow> monotone_on A orda ordb f" | 
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 989 | by (simp add: monotone_on_def) | 
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 990 | |
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 991 | lemma monotoneI[intro?]: "(\<And>x y. orda x y \<Longrightarrow> ordb (f x) (f y)) \<Longrightarrow> monotone orda ordb f" | 
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 992 | by (rule monotone_onI) | 
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 993 | |
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 994 | lemma monotone_onD: | 
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 995 | "monotone_on A orda ordb f \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> orda x y \<Longrightarrow> ordb (f x) (f y)" | 
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 996 | by (simp add: monotone_on_def) | 
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 997 | |
| 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 998 | lemma monotoneD[dest?]: "monotone orda ordb f \<Longrightarrow> orda x y \<Longrightarrow> ordb (f x) (f y)" | 
| 75607 
3c544d64c218
changed argument order of mono_on and strict_mono_on to uniformize with monotone_on and other predicates
 desharna parents: 
75583diff
changeset | 999 | by (rule monotone_onD[of UNIV, simplified]) | 
| 75582 
6fb4a0829cc4
added predicate monotone_on and redefined monotone to be an abbreviation.
 desharna parents: 
74123diff
changeset | 1000 | |
| 75583 
451e17e0ba9d
added lemmas monotone_on_empty[simp] and monotone_on_subset
 desharna parents: 
75582diff
changeset | 1001 | lemma monotone_on_subset: "monotone_on A orda ordb f \<Longrightarrow> B \<subseteq> A \<Longrightarrow> monotone_on B orda ordb f" | 
| 
451e17e0ba9d
added lemmas monotone_on_empty[simp] and monotone_on_subset
 desharna parents: 
75582diff
changeset | 1002 | by (auto intro: monotone_onI dest: monotone_onD) | 
| 
451e17e0ba9d
added lemmas monotone_on_empty[simp] and monotone_on_subset
 desharna parents: 
75582diff
changeset | 1003 | |
| 
451e17e0ba9d
added lemmas monotone_on_empty[simp] and monotone_on_subset
 desharna parents: 
75582diff
changeset | 1004 | lemma monotone_on_empty[simp]: "monotone_on {} orda ordb f"
 | 
| 
451e17e0ba9d
added lemmas monotone_on_empty[simp] and monotone_on_subset
 desharna parents: 
75582diff
changeset | 1005 | by (auto intro: monotone_onI dest: monotone_onD) | 
| 
451e17e0ba9d
added lemmas monotone_on_empty[simp] and monotone_on_subset
 desharna parents: 
75582diff
changeset | 1006 | |
| 75609 | 1007 | lemma monotone_on_o: | 
| 1008 | assumes | |
| 1009 | mono_f: "monotone_on A orda ordb f" and | |
| 1010 | mono_g: "monotone_on B ordc orda g" and | |
| 1011 | "g ` B \<subseteq> A" | |
| 1012 | shows "monotone_on B ordc ordb (f \<circ> g)" | |
| 1013 | proof (rule monotone_onI) | |
| 1014 | fix x y assume "x \<in> B" and "y \<in> B" and "ordc x y" | |
| 1015 | hence "orda (g x) (g y)" | |
| 1016 | by (rule mono_g[THEN monotone_onD]) | |
| 1017 | moreover from \<open>g ` B \<subseteq> A\<close> \<open>x \<in> B\<close> \<open>y \<in> B\<close> have "g x \<in> A" and "g y \<in> A" | |
| 1018 | unfolding image_subset_iff by simp_all | |
| 1019 | ultimately show "ordb ((f \<circ> g) x) ((f \<circ> g) y)" | |
| 1020 | using mono_f[THEN monotone_onD] by simp | |
| 1021 | qed | |
| 1022 | ||
| 76054 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1023 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1024 | subsubsection \<open>Specializations For @{class ord} Type Class And More\<close>
 | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1025 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1026 | context ord begin | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1027 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1028 | abbreviation mono_on :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b :: ord) \<Rightarrow> bool"
 | 
| 75608 
6c542e152b8a
redefined mono_on and strict_mono_on as an abbreviation of monotone_on
 desharna parents: 
75607diff
changeset | 1029 | where "mono_on A \<equiv> monotone_on A (\<le>) (\<le>)" | 
| 
6c542e152b8a
redefined mono_on and strict_mono_on as an abbreviation of monotone_on
 desharna parents: 
75607diff
changeset | 1030 | |
| 76054 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1031 | abbreviation strict_mono_on :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b :: ord) \<Rightarrow> bool"
 | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1032 | where "strict_mono_on A \<equiv> monotone_on A (<) (<)" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1033 | |
| 77934 | 1034 | abbreviation antimono_on :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b :: ord) \<Rightarrow> bool"
 | 
| 1035 | where "antimono_on A \<equiv> monotone_on A (\<le>) (\<ge>)" | |
| 1036 | ||
| 1037 | abbreviation strict_antimono_on :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b :: ord) \<Rightarrow> bool"
 | |
| 1038 | where "strict_antimono_on A \<equiv> monotone_on A (<) (>)" | |
| 1039 | ||
| 76054 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1040 | lemma mono_on_def[no_atp]: "mono_on A f \<longleftrightarrow> (\<forall>r s. r \<in> A \<and> s \<in> A \<and> r \<le> s \<longrightarrow> f r \<le> f s)" | 
| 75608 
6c542e152b8a
redefined mono_on and strict_mono_on as an abbreviation of monotone_on
 desharna parents: 
75607diff
changeset | 1041 | by (auto simp add: monotone_on_def) | 
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1042 | |
| 76054 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1043 | lemma strict_mono_on_def[no_atp]: | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1044 | "strict_mono_on A f \<longleftrightarrow> (\<forall>r s. r \<in> A \<and> s \<in> A \<and> r < s \<longrightarrow> f r < f s)" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1045 | by (auto simp add: monotone_on_def) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1046 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1047 | text \<open>Lemmas @{thm [source] mono_on_def} and @{thm [source] strict_mono_on_def} are provided for
 | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1048 | backward compatibility.\<close> | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1049 | |
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1050 | lemma mono_onI: | 
| 75607 
3c544d64c218
changed argument order of mono_on and strict_mono_on to uniformize with monotone_on and other predicates
 desharna parents: 
75583diff
changeset | 1051 | "(\<And>r s. r \<in> A \<Longrightarrow> s \<in> A \<Longrightarrow> r \<le> s \<Longrightarrow> f r \<le> f s) \<Longrightarrow> mono_on A f" | 
| 75608 
6c542e152b8a
redefined mono_on and strict_mono_on as an abbreviation of monotone_on
 desharna parents: 
75607diff
changeset | 1052 | by (rule monotone_onI) | 
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1053 | |
| 76054 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1054 | lemma strict_mono_onI: | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1055 | "(\<And>r s. r \<in> A \<Longrightarrow> s \<in> A \<Longrightarrow> r < s \<Longrightarrow> f r < f s) \<Longrightarrow> strict_mono_on A f" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1056 | by (rule monotone_onI) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1057 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1058 | lemma mono_onD: "\<lbrakk>mono_on A f; r \<in> A; s \<in> A; r \<le> s\<rbrakk> \<Longrightarrow> f r \<le> f s" | 
| 75608 
6c542e152b8a
redefined mono_on and strict_mono_on as an abbreviation of monotone_on
 desharna parents: 
75607diff
changeset | 1059 | by (rule monotone_onD) | 
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1060 | |
| 76054 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1061 | lemma strict_mono_onD: "\<lbrakk>strict_mono_on A f; r \<in> A; s \<in> A; r < s\<rbrakk> \<Longrightarrow> f r < f s" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1062 | by (rule monotone_onD) | 
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1063 | |
| 75607 
3c544d64c218
changed argument order of mono_on and strict_mono_on to uniformize with monotone_on and other predicates
 desharna parents: 
75583diff
changeset | 1064 | lemma mono_on_subset: "mono_on A f \<Longrightarrow> B \<subseteq> A \<Longrightarrow> mono_on B f" | 
| 75608 
6c542e152b8a
redefined mono_on and strict_mono_on as an abbreviation of monotone_on
 desharna parents: 
75607diff
changeset | 1065 | by (rule monotone_on_subset) | 
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1066 | |
| 76054 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1067 | end | 
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1068 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1069 | lemma mono_on_greaterD: | 
| 75607 
3c544d64c218
changed argument order of mono_on and strict_mono_on to uniformize with monotone_on and other predicates
 desharna parents: 
75583diff
changeset | 1070 | assumes "mono_on A g" "x \<in> A" "y \<in> A" "g x > (g (y::_::linorder) :: _ :: linorder)" | 
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1071 | shows "x > y" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1072 | proof (rule ccontr) | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1073 | assume "\<not>x > y" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1074 | 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 | 1075 | 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 | 1076 | 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 | 1077 | qed | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1078 | |
| 76054 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1079 | context order begin | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1080 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1081 | abbreviation mono :: "('a \<Rightarrow> 'b::order) \<Rightarrow> bool"
 | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1082 | where "mono \<equiv> mono_on UNIV" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1083 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1084 | abbreviation strict_mono :: "('a \<Rightarrow> 'b::order) \<Rightarrow> bool"
 | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1085 | where "strict_mono \<equiv> strict_mono_on UNIV" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1086 | |
| 76055 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1087 | abbreviation antimono :: "('a \<Rightarrow> 'b::order) \<Rightarrow> bool"
 | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1088 | where "antimono \<equiv> monotone (\<le>) (\<lambda>x y. y \<le> x)" | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1089 | |
| 76054 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1090 | lemma mono_def[no_atp]: "mono f \<longleftrightarrow> (\<forall>x y. x \<le> y \<longrightarrow> f x \<le> f y)" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1091 | by (simp add: monotone_on_def) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1092 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1093 | lemma strict_mono_def[no_atp]: "strict_mono f \<longleftrightarrow> (\<forall>x y. x < y \<longrightarrow> f x < f y)" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1094 | by (simp add: monotone_on_def) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1095 | |
| 76055 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1096 | lemma antimono_def[no_atp]: "antimono f \<longleftrightarrow> (\<forall>x y. x \<le> y \<longrightarrow> f x \<ge> f y)" | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1097 | by (simp add: monotone_on_def) | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1098 | |
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1099 | text \<open>Lemmas @{thm [source] mono_def}, @{thm [source] strict_mono_def}, and
 | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1100 | @{thm [source] antimono_def} are provided for backward compatibility.\<close>
 | 
| 76054 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1101 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1102 | lemma monoI [intro?]: "(\<And>x y. x \<le> y \<Longrightarrow> f x \<le> f y) \<Longrightarrow> mono f" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1103 | by (rule monotoneI) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1104 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1105 | lemma strict_monoI [intro?]: "(\<And>x y. x < y \<Longrightarrow> f x < f y) \<Longrightarrow> strict_mono f" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1106 | by (rule monotoneI) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1107 | |
| 76055 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1108 | lemma antimonoI [intro?]: "(\<And>x y. x \<le> y \<Longrightarrow> f x \<ge> f y) \<Longrightarrow> antimono f" | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1109 | by (rule monotoneI) | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1110 | |
| 76054 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1111 | lemma monoD [dest?]: "mono f \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1112 | by (rule monotoneD) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1113 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1114 | lemma strict_monoD [dest?]: "strict_mono f \<Longrightarrow> x < y \<Longrightarrow> f x < f y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1115 | by (rule monotoneD) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1116 | |
| 76055 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1117 | lemma antimonoD [dest?]: "antimono f \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<ge> f y" | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1118 | by (rule monotoneD) | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1119 | |
| 76054 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1120 | lemma monoE: | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1121 | assumes "mono f" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1122 | assumes "x \<le> y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1123 | obtains "f x \<le> f y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1124 | proof | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1125 | from assms show "f x \<le> f y" by (simp add: mono_def) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1126 | qed | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1127 | |
| 76055 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1128 | lemma antimonoE: | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1129 | fixes f :: "'a \<Rightarrow> 'b::order" | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1130 | assumes "antimono f" | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1131 | assumes "x \<le> y" | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1132 | obtains "f x \<ge> f y" | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1133 | proof | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1134 | from assms show "f x \<ge> f y" by (simp add: antimono_def) | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1135 | qed | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1136 | |
| 76054 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1137 | lemma mono_imp_mono_on: "mono f \<Longrightarrow> mono_on A f" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1138 | by (rule monotone_on_subset[OF _ subset_UNIV]) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1139 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1140 | lemma strict_mono_mono [dest?]: | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1141 | assumes "strict_mono f" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1142 | shows "mono f" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1143 | proof (rule monoI) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1144 | fix x y | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1145 | assume "x \<le> y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1146 | show "f x \<le> f y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1147 | proof (cases "x = y") | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1148 | case True then show ?thesis by simp | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1149 | next | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1150 | case False with \<open>x \<le> y\<close> have "x < y" by simp | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1151 | with assms strict_monoD have "f x < f y" by auto | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1152 | then show ?thesis by simp | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1153 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1154 | qed | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1155 | qed | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1156 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1157 | end | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1158 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1159 | context linorder begin | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1160 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1161 | lemma mono_invE: | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1162 | fixes f :: "'a \<Rightarrow> 'b::order" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1163 | assumes "mono f" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1164 | assumes "f x < f y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1165 | obtains "x \<le> y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1166 | proof | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1167 | show "x \<le> y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1168 | proof (rule ccontr) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1169 | assume "\<not> x \<le> y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1170 | then have "y \<le> x" by simp | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1171 | with \<open>mono f\<close> obtain "f y \<le> f x" by (rule monoE) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1172 | with \<open>f x < f y\<close> show False by simp | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1173 | qed | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1174 | qed | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1175 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1176 | lemma mono_strict_invE: | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1177 | fixes f :: "'a \<Rightarrow> 'b::order" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1178 | assumes "mono f" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1179 | assumes "f x < f y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1180 | obtains "x < y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1181 | proof | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1182 | show "x < y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1183 | proof (rule ccontr) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1184 | assume "\<not> x < y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1185 | then have "y \<le> x" by simp | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1186 | with \<open>mono f\<close> obtain "f y \<le> f x" by (rule monoE) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1187 | with \<open>f x < f y\<close> show False by simp | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1188 | qed | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1189 | qed | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1190 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1191 | lemma strict_mono_eq: | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1192 | assumes "strict_mono f" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1193 | shows "f x = f y \<longleftrightarrow> x = y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1194 | proof | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1195 | assume "f x = f y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1196 | show "x = y" proof (cases x y rule: linorder_cases) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1197 | case less with assms strict_monoD have "f x < f y" by auto | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1198 | with \<open>f x = f y\<close> show ?thesis by simp | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1199 | next | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1200 | case equal then show ?thesis . | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1201 | next | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1202 | case greater with assms strict_monoD have "f y < f x" by auto | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1203 | with \<open>f x = f y\<close> show ?thesis by simp | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1204 | qed | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1205 | qed simp | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1206 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1207 | lemma strict_mono_less_eq: | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1208 | assumes "strict_mono f" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1209 | shows "f x \<le> f y \<longleftrightarrow> x \<le> y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1210 | proof | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1211 | assume "x \<le> y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1212 | with assms strict_mono_mono monoD show "f x \<le> f y" by auto | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1213 | next | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1214 | assume "f x \<le> f y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1215 | show "x \<le> y" proof (rule ccontr) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1216 | assume "\<not> x \<le> y" then have "y < x" by simp | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1217 | with assms strict_monoD have "f y < f x" by auto | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1218 | with \<open>f x \<le> f y\<close> show False by simp | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1219 | qed | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1220 | qed | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1221 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1222 | lemma strict_mono_less: | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1223 | assumes "strict_mono f" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1224 | shows "f x < f y \<longleftrightarrow> x < y" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1225 | using assms | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1226 | by (auto simp add: less_le Orderings.less_le strict_mono_eq strict_mono_less_eq) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1227 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1228 | end | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1229 | |
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1230 | lemma strict_mono_inv: | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1231 |   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 | 1232 | 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 | 1233 | shows "strict_mono g" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1234 | proof | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1235 | 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 | 1236 | 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 | 1237 | 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 | 1238 | 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 | 1239 | qed | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1240 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1241 | lemma strict_mono_on_imp_inj_on: | 
| 75607 
3c544d64c218
changed argument order of mono_on and strict_mono_on to uniformize with monotone_on and other predicates
 desharna parents: 
75583diff
changeset | 1242 | assumes "strict_mono_on A (f :: (_ :: linorder) \<Rightarrow> (_ :: preorder))" | 
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1243 | shows "inj_on f A" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1244 | proof (rule inj_onI) | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1245 | 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 | 1246 | thus "x = y" | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1247 | 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 | 1248 | (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 | 1249 | qed | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1250 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1251 | lemma strict_mono_on_leD: | 
| 75607 
3c544d64c218
changed argument order of mono_on and strict_mono_on to uniformize with monotone_on and other predicates
 desharna parents: 
75583diff
changeset | 1252 | assumes "strict_mono_on A (f :: (_ :: linorder) \<Rightarrow> _ :: preorder)" "x \<in> A" "y \<in> A" "x \<le> y" | 
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1253 | shows "f x \<le> f y" | 
| 75669 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 1254 | proof (cases "x = y") | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 1255 | case True | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 1256 | then show ?thesis by simp | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 1257 | next | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 1258 | case False | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 1259 | with assms have "f x < f y" | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 1260 | using strict_mono_onD[OF assms(1)] by simp | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 1261 | then show ?thesis by (rule less_imp_le) | 
| 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 1262 | qed | 
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1263 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1264 | lemma strict_mono_on_eqD: | 
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1265 | fixes f :: "(_ :: linorder) \<Rightarrow> (_ :: preorder)" | 
| 75607 
3c544d64c218
changed argument order of mono_on and strict_mono_on to uniformize with monotone_on and other predicates
 desharna parents: 
75583diff
changeset | 1266 | assumes "strict_mono_on A f" "f x = f y" "x \<in> A" "y \<in> A" | 
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1267 | shows "y = x" | 
| 75669 
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
 Fabian Huch <huch@in.tum.de> parents: 
75624diff
changeset | 1268 | using assms by (cases rule: linorder_cases) (auto dest: strict_mono_onD) | 
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1269 | |
| 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1270 | lemma strict_mono_on_imp_mono_on: | 
| 75607 
3c544d64c218
changed argument order of mono_on and strict_mono_on to uniformize with monotone_on and other predicates
 desharna parents: 
75583diff
changeset | 1271 | "strict_mono_on A (f :: (_ :: linorder) \<Rightarrow> _ :: preorder) \<Longrightarrow> mono_on A f" | 
| 71472 
c213d067e60f
Moved a number of general-purpose lemmas into HOL
 paulson <lp15@cam.ac.uk> parents: 
71464diff
changeset | 1272 | 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 | 1273 | |
| 77934 | 1274 | lemma mono_imp_strict_mono: | 
| 1275 | fixes f :: "'a::order \<Rightarrow> 'b::order" | |
| 1276 | shows "\<lbrakk>mono_on S f; inj_on f S\<rbrakk> \<Longrightarrow> strict_mono_on S f" | |
| 1277 | by (auto simp add: monotone_on_def order_less_le inj_on_eq_iff) | |
| 1278 | ||
| 1279 | lemma strict_mono_iff_mono: | |
| 1280 | fixes f :: "'a::linorder \<Rightarrow> 'b::order" | |
| 1281 | shows "strict_mono_on S f \<longleftrightarrow> mono_on S f \<and> inj_on f S" | |
| 1282 | proof | |
| 1283 | show "strict_mono_on S f \<Longrightarrow> mono_on S f \<and> inj_on f S" | |
| 1284 | by (simp add: strict_mono_on_imp_inj_on strict_mono_on_imp_mono_on) | |
| 1285 | qed (auto intro: mono_imp_strict_mono) | |
| 1286 | ||
| 1287 | lemma antimono_imp_strict_antimono: | |
| 1288 | fixes f :: "'a::order \<Rightarrow> 'b::order" | |
| 1289 | shows "\<lbrakk>antimono_on S f; inj_on f S\<rbrakk> \<Longrightarrow> strict_antimono_on S f" | |
| 1290 | by (auto simp add: monotone_on_def order_less_le inj_on_eq_iff) | |
| 1291 | ||
| 1292 | lemma strict_antimono_iff_antimono: | |
| 1293 | fixes f :: "'a::linorder \<Rightarrow> 'b::order" | |
| 1294 | shows "strict_antimono_on S f \<longleftrightarrow> antimono_on S f \<and> inj_on f S" | |
| 1295 | proof | |
| 1296 | show "strict_antimono_on S f \<Longrightarrow> antimono_on S f \<and> inj_on f S" | |
| 1297 | by (force simp add: monotone_on_def intro: linorder_inj_onI) | |
| 1298 | qed (auto intro: antimono_imp_strict_antimono) | |
| 1299 | ||
| 76054 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1300 | lemma mono_compose: "mono Q \<Longrightarrow> mono (\<lambda>i x. Q i (f x))" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1301 | unfolding mono_def le_fun_def by auto | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1302 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1303 | lemma mono_add: | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1304 | fixes a :: "'a::ordered_ab_semigroup_add" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1305 | shows "mono ((+) a)" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1306 | by (simp add: add_left_mono monoI) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1307 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1308 | lemma (in semilattice_inf) mono_inf: "mono f \<Longrightarrow> f (A \<sqinter> B) \<le> f A \<sqinter> f B" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1309 | for f :: "'a \<Rightarrow> 'b::semilattice_inf" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1310 | by (auto simp add: mono_def intro: Lattices.inf_greatest) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1311 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1312 | lemma (in semilattice_sup) mono_sup: "mono f \<Longrightarrow> f A \<squnion> f B \<le> f (A \<squnion> B)" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1313 | for f :: "'a \<Rightarrow> 'b::semilattice_sup" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1314 | by (auto simp add: mono_def intro: Lattices.sup_least) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1315 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1316 | lemma (in linorder) min_of_mono: "mono f \<Longrightarrow> min (f m) (f n) = f (min m n)" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1317 | by (auto simp: mono_def Orderings.min_def min_def intro: Orderings.antisym) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1318 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1319 | lemma (in linorder) max_of_mono: "mono f \<Longrightarrow> max (f m) (f n) = f (max m n)" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1320 | by (auto simp: mono_def Orderings.max_def max_def intro: Orderings.antisym) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1321 | |
| 76055 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1322 | lemma (in linorder) | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1323 | max_of_antimono: "antimono f \<Longrightarrow> max (f x) (f y) = f (min x y)" and | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1324 | min_of_antimono: "antimono f \<Longrightarrow> min (f x) (f y) = f (max x y)" | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1325 | by (auto simp: antimono_def Orderings.max_def max_def Orderings.min_def min_def intro!: antisym) | 
| 
8d56461f85ec
moved antimono to Fun and redefined it as an abbreviation
 desharna parents: 
76054diff
changeset | 1326 | |
| 76054 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1327 | lemma (in linorder) strict_mono_imp_inj_on: "strict_mono f \<Longrightarrow> inj_on f A" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1328 | by (auto intro!: inj_onI dest: strict_mono_eq) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1329 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1330 | lemma mono_Int: "mono f \<Longrightarrow> f (A \<inter> B) \<subseteq> f A \<inter> f B" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1331 | by (fact mono_inf) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1332 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1333 | lemma mono_Un: "mono f \<Longrightarrow> f A \<union> f B \<subseteq> f (A \<union> B)" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1334 | by (fact mono_sup) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1335 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1336 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1337 | subsubsection \<open>Least value operator\<close> | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1338 | |
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1339 | lemma Least_mono: "mono f \<Longrightarrow> \<exists>x\<in>S. \<forall>y\<in>S. x \<le> y \<Longrightarrow> (LEAST y. y \<in> f ` S) = f (LEAST x. x \<in> S)" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1340 | for f :: "'a::order \<Rightarrow> 'b::order" | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1341 | \<comment> \<open>Courtesy of Stephan Merz\<close> | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1342 | apply clarify | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1343 | apply (erule_tac P = "\<lambda>x. x \<in> S" in LeastI2_order) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1344 | apply fast | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1345 | apply (rule LeastI2_order) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1346 | apply (auto elim: monoD intro!: order_antisym) | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1347 | done | 
| 
a4b47c684445
moved mono and strict_mono to Fun and redefined them as abbreviations
 desharna parents: 
75624diff
changeset | 1348 | |
| 63322 | 1349 | |
| 61204 | 1350 | subsection \<open>Setup\<close> | 
| 40969 | 1351 | |
| 60758 | 1352 | subsubsection \<open>Proof tools\<close> | 
| 22845 | 1353 | |
| 63400 | 1354 | 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 | 1355 | |
| 78099 
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
 wenzelm parents: 
77934diff
changeset | 1356 | simproc_setup fun_upd2 ("f(v := w, x := y)") = \<open>
 | 
| 63322 | 1357 | let | 
| 1358 | fun gen_fun_upd NONE T _ _ = NONE | |
| 69593 | 1359 | | gen_fun_upd (SOME f) T x y = SOME (Const (\<^const_name>\<open>fun_upd\<close>, T) $ f $ x $ y) | 
| 63322 | 1360 | fun dest_fun_T1 (Type (_, T :: Ts)) = T | 
| 69593 | 1361 | fun find_double (t as Const (\<^const_name>\<open>fun_upd\<close>,T) $ f $ x $ y) = | 
| 63322 | 1362 | let | 
| 69593 | 1363 | fun find (Const (\<^const_name>\<open>fun_upd\<close>,T) $ g $ v $ w) = | 
| 63322 | 1364 | if v aconv x then SOME g else gen_fun_upd (find g) T v w | 
| 1365 | | find t = NONE | |
| 1366 | in (dest_fun_T1 T, gen_fun_upd (find f) T x y) end | |
| 24017 | 1367 | |
| 69593 | 1368 | val ss = simpset_of \<^context> | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51598diff
changeset | 1369 | |
| 63322 | 1370 | fun proc ctxt ct = | 
| 1371 | let | |
| 1372 | val t = Thm.term_of ct | |
| 1373 | in | |
| 63400 | 1374 | (case find_double t of | 
| 63322 | 1375 | (T, NONE) => NONE | 
| 1376 | | (T, SOME rhs) => | |
| 1377 | SOME (Goal.prove ctxt [] [] (Logic.mk_equals (t, rhs)) | |
| 1378 | (fn _ => | |
| 1379 | resolve_tac ctxt [eq_reflection] 1 THEN | |
| 1380 |                 resolve_tac ctxt @{thms ext} 1 THEN
 | |
| 63400 | 1381 | simp_tac (put_simpset ss ctxt) 1))) | 
| 63322 | 1382 | end | 
| 78099 
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
 wenzelm parents: 
77934diff
changeset | 1383 | in K proc end | 
| 60758 | 1384 | \<close> | 
| 22845 | 1385 | |
| 1386 | ||
| 60758 | 1387 | subsubsection \<open>Functorial structure of types\<close> | 
| 40969 | 1388 | |
| 69605 | 1389 | ML_file \<open>Tools/functor.ML\<close> | 
| 40969 | 1390 | |
| 55467 
a5c9002bc54d
renamed 'enriched_type' to more informative 'functor' (following the renaming of enriched type constructors to bounded natural functors)
 blanchet parents: 
55414diff
changeset | 1391 | functor map_fun: map_fun | 
| 47488 
be6dd389639d
centralized enriched_type declaration, thanks to in-situ available Isar commands
 haftmann parents: 
46950diff
changeset | 1392 | by (simp_all add: fun_eq_iff) | 
| 
be6dd389639d
centralized enriched_type declaration, thanks to in-situ available Isar commands
 haftmann parents: 
46950diff
changeset | 1393 | |
| 55467 
a5c9002bc54d
renamed 'enriched_type' to more informative 'functor' (following the renaming of enriched type constructors to bounded natural functors)
 blanchet parents: 
55414diff
changeset | 1394 | functor vimage | 
| 49739 | 1395 | by (simp_all add: fun_eq_iff vimage_comp) | 
| 1396 | ||
| 63322 | 1397 | |
| 60758 | 1398 | text \<open>Legacy theorem names\<close> | 
| 49739 | 1399 | |
| 1400 | lemmas o_def = comp_def | |
| 1401 | lemmas o_apply = comp_apply | |
| 1402 | lemmas o_assoc = comp_assoc [symmetric] | |
| 1403 | lemmas id_o = id_comp | |
| 1404 | lemmas o_id = comp_id | |
| 1405 | lemmas o_eq_dest = comp_eq_dest | |
| 1406 | lemmas o_eq_elim = comp_eq_elim | |
| 55066 | 1407 | lemmas o_eq_dest_lhs = comp_eq_dest_lhs | 
| 1408 | 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 | 1409 | |
| 2912 | 1410 | end |