src/HOL/Fun.thy
author wenzelm
Sun, 15 Dec 2024 14:59:57 +0100
changeset 81595 ed264056f5dc
parent 81563 c4c983c5c7f2
child 82199 2ea9efde917c
permissions -rw-r--r--
more syntax bundles, e.g. to explore terms without notation;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 923
diff changeset
     1
(*  Title:      HOL/Fun.thy
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 923
diff changeset
     2
    Author:     Tobias Nipkow, Cambridge University Computer Laboratory
55019
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
     3
    Author:     Andrei Popescu, TU Muenchen
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
     4
    Copyright   1994, 2012
18154
0c05abaf6244 add header
huffman
parents: 17956
diff changeset
     5
*)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60303
diff changeset
     7
section \<open>Notions about functions\<close>
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
15510
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
     9
theory Fun
63575
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
    10
  imports Set
69913
ca515cf61651 more specific keyword kinds;
wenzelm
parents: 69768
diff changeset
    11
  keywords "functor" :: thy_goal_defn
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15111
diff changeset
    12
begin
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    13
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    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
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    15
  by auto
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    16
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    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: 58889
diff 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: 58889
diff changeset
    19
  by (force intro: theI')
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 58889
diff changeset
    20
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 58889
diff 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: 58889
diff changeset
    22
  by (force intro: theI')
12258
5da24e7e9aba got rid of theory Inverse_Image;
wenzelm
parents: 12114
diff changeset
    23
63400
249fa34faba2 misc tuning and modernization;
wenzelm
parents: 63365
diff changeset
    24
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
    25
subsection \<open>The Identity Function \<open>id\<close>\<close>
6171
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    26
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    27
definition id :: "'a \<Rightarrow> 'a"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    28
  where "id = (\<lambda>x. x)"
13910
f9a9ef16466f Added thms
nipkow
parents: 13637
diff changeset
    29
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    30
lemma id_apply [simp]: "id x = x"
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    31
  by (simp add: id_def)
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    32
47579
28f6f4ad69bf tuned lemmas (v)image_id;
huffman
parents: 47488
diff changeset
    33
lemma image_id [simp]: "image id = id"
28f6f4ad69bf tuned lemmas (v)image_id;
huffman
parents: 47488
diff changeset
    34
  by (simp add: id_def fun_eq_iff)
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    35
47579
28f6f4ad69bf tuned lemmas (v)image_id;
huffman
parents: 47488
diff changeset
    36
lemma vimage_id [simp]: "vimage id = id"
28f6f4ad69bf tuned lemmas (v)image_id;
huffman
parents: 47488
diff changeset
    37
  by (simp add: id_def fun_eq_iff)
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    38
62843
313d3b697c9a Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents: 62618
diff 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: 62618
diff 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: 62618
diff changeset
    41
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 51717
diff changeset
    42
code_printing
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 51717
diff 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: 51717
diff changeset
    44
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    45
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
    46
subsection \<open>The Composition Operator \<open>f \<circ> g\<close>\<close>
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
    47
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80760
diff changeset
    48
definition comp :: "('b \<Rightarrow> 'c) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'c"  (infixl \<open>\<circ>\<close> 55)
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
    49
  where "f \<circ> g = (\<lambda>x. f (g x))"
11123
15ffc08f905e removed whitespace
oheimb
parents: 10826
diff changeset
    50
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
    51
notation (ASCII)
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80760
diff changeset
    52
  comp  (infixl \<open>o\<close> 55)
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19536
diff changeset
    53
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    54
lemma comp_apply [simp]: "(f \<circ> g) x = f (g x)"
49739
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
    55
  by (simp add: comp_def)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    56
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    57
lemma comp_assoc: "(f \<circ> g) \<circ> h = f \<circ> (g \<circ> h)"
49739
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
    58
  by (simp add: fun_eq_iff)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    59
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    60
lemma id_comp [simp]: "id \<circ> g = g"
49739
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
    61
  by (simp add: fun_eq_iff)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
    62
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    63
lemma comp_id [simp]: "f \<circ> id = f"
49739
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
    64
  by (simp add: fun_eq_iff)
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
    65
63575
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
    66
lemma comp_eq_dest: "a \<circ> b = c \<circ> d \<Longrightarrow> a (b v) = c (d v)"
49739
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
    67
  by (simp add: fun_eq_iff)
34150
22acb8b38639 moved lemmas o_eq_dest, o_eq_elim here
haftmann
parents: 34101
diff changeset
    68
63575
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
    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
3e491e34a62e new lemmas and movement of lemmas into place
paulson
parents: 60929
diff changeset
    70
  by (simp add: fun_eq_iff)
34150
22acb8b38639 moved lemmas o_eq_dest, o_eq_elim here
haftmann
parents: 34101
diff changeset
    71
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    72
lemma comp_eq_dest_lhs: "a \<circ> b = c \<Longrightarrow> a (b v) = c v"
55066
blanchet
parents: 55019
diff changeset
    73
  by clarsimp
blanchet
parents: 55019
diff changeset
    74
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    75
lemma comp_eq_id_dest: "a \<circ> b = id \<circ> c \<Longrightarrow> a (b v) = c v"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    76
  by clarsimp
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    77
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    78
lemma image_comp: "f ` (g ` r) = (f \<circ> g) ` r"
33044
fd0a9c794ec1 Some new lemmas concerning sets
paulson
parents: 32998
diff changeset
    79
  by auto
fd0a9c794ec1 Some new lemmas concerning sets
paulson
parents: 32998
diff changeset
    80
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    81
lemma vimage_comp: "f -` (g -` x) = (g \<circ> f) -` x"
49739
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
    82
  by auto
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
    83
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    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: 58889
diff changeset
    85
  by (auto simp: comp_def elim!: equalityE)
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 58889
diff changeset
    86
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67226
diff changeset
    87
lemma image_bind: "f ` (Set.bind A g) = Set.bind A ((`) f \<circ> g)"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    88
  by (auto simp add: Set.bind_def)
59512
9bf568cc71a4 add lemmas about bind and image
Andreas Lochbihler
parents: 59507
diff changeset
    89
9bf568cc71a4 add lemmas about bind and image
Andreas Lochbihler
parents: 59507
diff changeset
    90
lemma bind_image: "Set.bind (f ` A) g = Set.bind A (g \<circ> f)"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    91
  by (auto simp add: Set.bind_def)
59512
9bf568cc71a4 add lemmas about bind and image
Andreas Lochbihler
parents: 59507
diff changeset
    92
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
    93
lemma (in group_add) minus_comp_minus [simp]: "uminus \<circ> uminus = id"
60929
bb3610d34e2e more lemmas
haftmann
parents: 60758
diff changeset
    94
  by (simp add: fun_eq_iff)
bb3610d34e2e more lemmas
haftmann
parents: 60758
diff changeset
    95
74123
7c5842b06114 clarified abstract and concrete boolean algebras
haftmann
parents: 74101
diff changeset
    96
lemma (in boolean_algebra) minus_comp_minus [simp]: "uminus \<circ> uminus = id"
60929
bb3610d34e2e more lemmas
haftmann
parents: 60758
diff changeset
    97
  by (simp add: fun_eq_iff)
bb3610d34e2e more lemmas
haftmann
parents: 60758
diff changeset
    98
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 51717
diff changeset
    99
code_printing
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 51717
diff 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: 51717
diff changeset
   101
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   102
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   103
subsection \<open>The Forward Composition Operator \<open>fcomp\<close>\<close>
26357
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
   104
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80760
diff changeset
   105
definition fcomp :: "('a \<Rightarrow> 'b) \<Rightarrow> ('b \<Rightarrow> 'c) \<Rightarrow> 'a \<Rightarrow> 'c"  (infixl \<open>\<circ>>\<close> 60)
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   106
  where "f \<circ>> g = (\<lambda>x. g (f x))"
26357
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
   107
37751
89e16802b6cc nicer xsymbol syntax for fcomp and scomp
haftmann
parents: 36176
diff changeset
   108
lemma fcomp_apply [simp]:  "(f \<circ>> g) x = g (f x)"
26357
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
   109
  by (simp add: fcomp_def)
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
   110
37751
89e16802b6cc nicer xsymbol syntax for fcomp and scomp
haftmann
parents: 36176
diff changeset
   111
lemma fcomp_assoc: "(f \<circ>> g) \<circ>> h = f \<circ>> (g \<circ>> h)"
26357
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
   112
  by (simp add: fcomp_def)
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
   113
37751
89e16802b6cc nicer xsymbol syntax for fcomp and scomp
haftmann
parents: 36176
diff changeset
   114
lemma id_fcomp [simp]: "id \<circ>> g = g"
26357
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
   115
  by (simp add: fcomp_def)
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
   116
37751
89e16802b6cc nicer xsymbol syntax for fcomp and scomp
haftmann
parents: 36176
diff changeset
   117
lemma fcomp_id [simp]: "f \<circ>> id = f"
26357
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
   118
  by (simp add: fcomp_def)
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
   119
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   120
lemma fcomp_comp: "fcomp f g = comp g f"
61699
a81dc5c4d6a9 New theorems mostly from Peter Gammie
paulson <lp15@cam.ac.uk>
parents: 61630
diff changeset
   121
  by (simp add: ext)
a81dc5c4d6a9 New theorems mostly from Peter Gammie
paulson <lp15@cam.ac.uk>
parents: 61630
diff changeset
   122
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 51717
diff changeset
   123
code_printing
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 51717
diff changeset
   124
  constant fcomp \<rightharpoonup> (Eval) infixl 1 "#>"
31202
52d332f8f909 pretty printing of functional combinators for evaluation code
haftmann
parents: 31080
diff changeset
   125
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80760
diff changeset
   126
no_notation fcomp (infixl \<open>\<circ>>\<close> 60)
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26357
diff changeset
   127
26357
19b153ebda0b added forward composition
haftmann
parents: 26342
diff changeset
   128
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60303
diff changeset
   129
subsection \<open>Mapping functions\<close>
40602
91e583511113 map_fun combinator in theory Fun
haftmann
parents: 39302
diff changeset
   130
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   131
definition map_fun :: "('c \<Rightarrow> 'a) \<Rightarrow> ('b \<Rightarrow> 'd) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'c \<Rightarrow> 'd"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   132
  where "map_fun f g h = g \<circ> h \<circ> f"
40602
91e583511113 map_fun combinator in theory Fun
haftmann
parents: 39302
diff changeset
   133
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   134
lemma map_fun_apply [simp]: "map_fun f g h x = g (h (f x))"
40602
91e583511113 map_fun combinator in theory Fun
haftmann
parents: 39302
diff changeset
   135
  by (simp add: map_fun_def)
91e583511113 map_fun combinator in theory Fun
haftmann
parents: 39302
diff changeset
   136
91e583511113 map_fun combinator in theory Fun
haftmann
parents: 39302
diff changeset
   137
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60303
diff changeset
   138
subsection \<open>Injectivity and Bijectivity\<close>
39076
b3a9b6734663 Introduce surj_on and replace surj and bij by abbreviations.
hoelzl
parents: 39075
diff changeset
   139
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   140
definition inj_on :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a set \<Rightarrow> bool"  \<comment> \<open>injective\<close>
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   141
  where "inj_on f A \<longleftrightarrow> (\<forall>x\<in>A. \<forall>y\<in>A. f x = f y \<longrightarrow> x = y)"
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   142
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   143
definition bij_betw :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a set \<Rightarrow> 'b set \<Rightarrow> bool"  \<comment> \<open>bijective\<close>
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   144
  where "bij_betw f A B \<longleftrightarrow> inj_on f A \<and> f ` A = B"
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   145
63575
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   146
text \<open>
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   147
  A common special case: functions injective, surjective or bijective over
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   148
  the entire domain type.
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   149
\<close>
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   150
65170
53675f36820d restored surj as output abbreviation, amending 6af79184bef3
haftmann
parents: 64966
diff changeset
   151
abbreviation inj :: "('a \<Rightarrow> 'b) \<Rightarrow> bool"
53675f36820d restored surj as output abbreviation, amending 6af79184bef3
haftmann
parents: 64966
diff changeset
   152
  where "inj f \<equiv> inj_on f UNIV"
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   153
65170
53675f36820d restored surj as output abbreviation, amending 6af79184bef3
haftmann
parents: 64966
diff changeset
   154
abbreviation surj :: "('a \<Rightarrow> 'b) \<Rightarrow> bool"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   155
  where "surj f \<equiv> range f = UNIV"
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   156
67226
ec32cdaab97b isabelle update_cartouches -c -t;
wenzelm
parents: 65170
diff changeset
   157
translations \<comment> \<open>The negated case:\<close>
65170
53675f36820d restored surj as output abbreviation, amending 6af79184bef3
haftmann
parents: 64966
diff changeset
   158
  "\<not> CONST surj f" \<leftharpoondown> "CONST range f \<noteq> CONST UNIV"
53675f36820d restored surj as output abbreviation, amending 6af79184bef3
haftmann
parents: 64966
diff changeset
   159
53675f36820d restored surj as output abbreviation, amending 6af79184bef3
haftmann
parents: 64966
diff changeset
   160
abbreviation bij :: "('a \<Rightarrow> 'b) \<Rightarrow> bool"
53675f36820d restored surj as output abbreviation, amending 6af79184bef3
haftmann
parents: 64966
diff changeset
   161
  where "bij f \<equiv> bij_betw f UNIV UNIV"
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   162
64966
d53d7ca3303e added inj_def (redundant, analogous to surj_def, bij_def);
wenzelm
parents: 64965
diff 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: 64965
diff changeset
   164
  unfolding inj_on_def by blast
d53d7ca3303e added inj_def (redundant, analogous to surj_def, bij_def);
wenzelm
parents: 64965
diff changeset
   165
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   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: 64965
diff changeset
   167
  unfolding inj_def by blast
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   168
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   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: 64965
diff 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: 40702
diff changeset
   171
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   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: 64965
diff changeset
   173
  by (simp add: inj_def)
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   174
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   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: 64965
diff changeset
   176
  by (auto simp: inj_on_def)
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   177
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   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: 64965
diff changeset
   179
  by (auto simp: inj_on_def)
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   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: 76264
diff changeset
   181
lemma image_strict_mono: "inj_on f B \<Longrightarrow> A \<subset> B \<Longrightarrow> f ` A \<subset> f ` B"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   182
  unfolding inj_on_def by blast
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   183
69700
7a92cbec7030 new material about summations and powers, along with some tweaks
paulson <lp15@cam.ac.uk>
parents: 69661
diff 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: 64965
diff changeset
   185
  by (simp add: inj_def)
38620
b40524b74f77 inj_comp and inj_fun
haftmann
parents: 37767
diff changeset
   186
b40524b74f77 inj_comp and inj_fun
haftmann
parents: 37767
diff changeset
   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: 64965
diff changeset
   188
  by (simp add: inj_def fun_eq_iff)
38620
b40524b74f77 inj_comp and inj_fun
haftmann
parents: 37767
diff changeset
   189
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   190
lemma inj_eq: "inj f \<Longrightarrow> f x = f y \<longleftrightarrow> x = y"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   191
  by (simp add: inj_on_eq_iff)
32988
d1d4d7a08a66 Inv -> inv_onto, inv abbr. inv_onto UNIV.
nipkow
parents: 32961
diff changeset
   192
71827
5e315defb038 the Uniq quantifier
paulson <lp15@cam.ac.uk>
parents: 71616
diff changeset
   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)"
5e315defb038 the Uniq quantifier
paulson <lp15@cam.ac.uk>
parents: 71616
diff changeset
   194
  by (auto simp: Uniq_def inj_on_def)
5e315defb038 the Uniq quantifier
paulson <lp15@cam.ac.uk>
parents: 71616
diff changeset
   195
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   196
lemma inj_on_id[simp]: "inj_on id A"
39076
b3a9b6734663 Introduce surj_on and replace surj and bij by abbreviations.
hoelzl
parents: 39075
diff changeset
   197
  by (simp add: inj_on_def)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   198
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   199
lemma inj_on_id2[simp]: "inj_on (\<lambda>x. x) A"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   200
  by (simp add: inj_on_def)
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   201
46586
abbec6fa25c8 generalizing inj_on_Int
bulwahn
parents: 46420
diff changeset
   202
lemma inj_on_Int: "inj_on f A \<or> inj_on f B \<Longrightarrow> inj_on f (A \<inter> B)"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   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: 40702
diff changeset
   204
40702
cf26dd7395e4 Replace surj by abbreviation; remove surj_on.
hoelzl
parents: 40602
diff changeset
   205
lemma surj_id: "surj id"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   206
  by simp
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   207
39101
606432dd1896 Revert bij_betw changes to simp set (Problem in afp/Ordinals_and_Cardinals)
hoelzl
parents: 39076
diff changeset
   208
lemma bij_id[simp]: "bij id"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   209
  by (simp add: bij_betw_def)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   210
76252
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   211
lemma bij_uminus: "bij (uminus :: 'a \<Rightarrow> 'a::group_add)"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   212
  unfolding bij_betw_def inj_on_def
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   213
  by (force intro: minus_minus [symmetric])
63072
eb5d493a9e03 renamings and refinements
paulson <lp15@cam.ac.uk>
parents: 62843
diff changeset
   214
72125
cf8399df4d76 elimination of some needless assumptions
paulson <lp15@cam.ac.uk>
parents: 71857
diff 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: 71857
diff changeset
   216
  unfolding bij_betw_def by auto
cf8399df4d76 elimination of some needless assumptions
paulson <lp15@cam.ac.uk>
parents: 71857
diff changeset
   217
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   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"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   219
  by (simp add: inj_on_def)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   220
78258
71366be2c647 The sym_diff operator (symmetric difference)
paulson <lp15@cam.ac.uk>
parents: 78099
diff changeset
   221
text \<open>For those frequent proofs by contradiction\<close>
71366be2c647 The sym_diff operator (symmetric difference)
paulson <lp15@cam.ac.uk>
parents: 78099
diff changeset
   222
lemma inj_onCI: "(\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> f x = f y \<Longrightarrow> x \<noteq> y \<Longrightarrow> False) \<Longrightarrow> inj_on f A"
71366be2c647 The sym_diff operator (symmetric difference)
paulson <lp15@cam.ac.uk>
parents: 78099
diff changeset
   223
  by (force simp: inj_on_def)
71366be2c647 The sym_diff operator (symmetric difference)
paulson <lp15@cam.ac.uk>
parents: 78099
diff changeset
   224
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   225
lemma inj_on_inverseI: "(\<And>x. x \<in> A \<Longrightarrow> g (f x) = x) \<Longrightarrow> inj_on f A"
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   226
  by (auto dest: arg_cong [of concl: g] simp add: inj_on_def)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   227
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   228
lemma inj_onD: "inj_on f A \<Longrightarrow> f x = f y \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> x = y"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   229
  unfolding inj_on_def by blast
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   230
63365
5340fb6633d0 more theorems
haftmann
parents: 63324
diff changeset
   231
lemma inj_on_subset:
5340fb6633d0 more theorems
haftmann
parents: 63324
diff changeset
   232
  assumes "inj_on f A"
63575
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   233
    and "B \<subseteq> A"
63365
5340fb6633d0 more theorems
haftmann
parents: 63324
diff changeset
   234
  shows "inj_on f B"
5340fb6633d0 more theorems
haftmann
parents: 63324
diff changeset
   235
proof (rule inj_onI)
5340fb6633d0 more theorems
haftmann
parents: 63324
diff changeset
   236
  fix a b
5340fb6633d0 more theorems
haftmann
parents: 63324
diff changeset
   237
  assume "a \<in> B" and "b \<in> B"
5340fb6633d0 more theorems
haftmann
parents: 63324
diff changeset
   238
  with assms have "a \<in> A" and "b \<in> A"
5340fb6633d0 more theorems
haftmann
parents: 63324
diff changeset
   239
    by auto
5340fb6633d0 more theorems
haftmann
parents: 63324
diff changeset
   240
  moreover assume "f a = f b"
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   241
  ultimately show "a = b"
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   242
    using assms by (auto dest: inj_onD)
63365
5340fb6633d0 more theorems
haftmann
parents: 63324
diff changeset
   243
qed
5340fb6633d0 more theorems
haftmann
parents: 63324
diff changeset
   244
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   245
lemma comp_inj_on: "inj_on f A \<Longrightarrow> inj_on g (f ` A) \<Longrightarrow> inj_on (g \<circ> f) A"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   246
  by (simp add: comp_def inj_on_def)
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   247
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   248
lemma inj_on_imageI: "inj_on (g \<circ> f) A \<Longrightarrow> inj_on g (f ` A)"
63072
eb5d493a9e03 renamings and refinements
paulson <lp15@cam.ac.uk>
parents: 62843
diff changeset
   249
  by (auto simp add: inj_on_def)
15303
eedbb8d22ca2 added lemmas
nipkow
parents: 15140
diff changeset
   250
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   251
lemma inj_on_image_iff:
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   252
  "\<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
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   253
  unfolding inj_on_def by blast
15439
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15303
diff changeset
   254
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   255
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"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   256
  unfolding inj_on_def by blast
12258
5da24e7e9aba got rid of theory Inverse_Image;
wenzelm
parents: 12114
diff changeset
   257
63072
eb5d493a9e03 renamings and refinements
paulson <lp15@cam.ac.uk>
parents: 62843
diff changeset
   258
lemma inj_singleton [simp]: "inj_on (\<lambda>x. {x}) A"
eb5d493a9e03 renamings and refinements
paulson <lp15@cam.ac.uk>
parents: 62843
diff changeset
   259
  by (simp add: inj_on_def)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   260
15111
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   261
lemma inj_on_empty[iff]: "inj_on f {}"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   262
  by (simp add: inj_on_def)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   263
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   264
lemma subset_inj_on: "inj_on f B \<Longrightarrow> A \<subseteq> B \<Longrightarrow> inj_on f A"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   265
  unfolding inj_on_def by blast
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   266
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   267
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) = {}"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   268
  unfolding inj_on_def by (blast intro: sym)
15111
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   269
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   270
lemma inj_on_insert [iff]: "inj_on f (insert a A) \<longleftrightarrow> inj_on f A \<and> f a \<notin> f ` (A - {a})"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   271
  unfolding inj_on_def by (blast intro: sym)
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   272
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   273
lemma inj_on_diff: "inj_on f A \<Longrightarrow> inj_on f (A - B)"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   274
  unfolding inj_on_def by blast
15111
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   275
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   276
lemma comp_inj_on_iff: "inj_on f A \<Longrightarrow> inj_on f' (f ` A) \<longleftrightarrow> inj_on (f' \<circ> f) A"
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   277
  by (auto simp: comp_inj_on inj_on_def)
15111
c108189645f8 added some inj_on thms
nipkow
parents: 14565
diff changeset
   278
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   279
lemma inj_on_imageI2: "inj_on (f' \<circ> f) A \<Longrightarrow> inj_on f A"
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   280
  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: 40702
diff changeset
   281
51598
5dbe537087aa generalized lemma fold_image thanks to Peter Lammich
haftmann
parents: 49905
diff changeset
   282
lemma inj_img_insertE:
5dbe537087aa generalized lemma fold_image thanks to Peter Lammich
haftmann
parents: 49905
diff changeset
   283
  assumes "inj_on f A"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   284
  assumes "x \<notin> B"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   285
    and "insert x B = f ` A"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   286
  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: 49905
diff changeset
   287
proof -
5dbe537087aa generalized lemma fold_image thanks to Peter Lammich
haftmann
parents: 49905
diff changeset
   288
  from assms have "x \<in> f ` A" by auto
5dbe537087aa generalized lemma fold_image thanks to Peter Lammich
haftmann
parents: 49905
diff changeset
   289
  then obtain x' where *: "x' \<in> A" "x = f x'" by auto
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   290
  then have A: "A = insert x' (A - {x'})" by auto
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   291
  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: 49905
diff changeset
   292
  have "x' \<notin> A - {x'}" by simp
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   293
  from this A \<open>x = f x'\<close> B show ?thesis ..
51598
5dbe537087aa generalized lemma fold_image thanks to Peter Lammich
haftmann
parents: 49905
diff changeset
   294
qed
5dbe537087aa generalized lemma fold_image thanks to Peter Lammich
haftmann
parents: 49905
diff changeset
   295
71404
f2b783abfbe7 A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents: 69913
diff changeset
   296
lemma linorder_inj_onI:
f2b783abfbe7 A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents: 69913
diff changeset
   297
  fixes A :: "'a::order set"
f2b783abfbe7 A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents: 69913
diff changeset
   298
  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: 69913
diff changeset
   299
  shows "inj_on f A"
f2b783abfbe7 A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents: 69913
diff changeset
   300
proof (rule inj_onI)
f2b783abfbe7 A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents: 69913
diff changeset
   301
  fix x y
f2b783abfbe7 A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents: 69913
diff changeset
   302
  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: 69913
diff changeset
   303
  then show "x = y"
f2b783abfbe7 A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents: 69913
diff changeset
   304
    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: 69913
diff changeset
   305
qed
f2b783abfbe7 A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents: 69913
diff changeset
   306
76722
b1d57dd345e1 First round of moving material from the number theory development
paulson <lp15@cam.ac.uk>
parents: 76281
diff changeset
   307
lemma linorder_inj_onI':
b1d57dd345e1 First round of moving material from the number theory development
paulson <lp15@cam.ac.uk>
parents: 76281
diff changeset
   308
  fixes A :: "'a :: linorder set"
b1d57dd345e1 First round of moving material from the number theory development
paulson <lp15@cam.ac.uk>
parents: 76281
diff changeset
   309
  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: 76281
diff changeset
   310
  shows   "inj_on f A"
b1d57dd345e1 First round of moving material from the number theory development
paulson <lp15@cam.ac.uk>
parents: 76281
diff changeset
   311
  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: 76281
diff changeset
   312
54578
9387251b6a46 eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
traytel
parents: 54147
diff changeset
   313
lemma linorder_injI:
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   314
  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: 54147
diff changeset
   315
  shows "inj f"
71404
f2b783abfbe7 A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents: 69913
diff changeset
   316
    \<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: 76281
diff changeset
   317
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: 69700
diff changeset
   318
8230dca028eb the theory of Equipollence, and moving Fpow from Cardinals into Main
paulson <lp15@cam.ac.uk>
parents: 69700
diff changeset
   319
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: 69700
diff changeset
   320
  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: 69700
diff changeset
   321
8230dca028eb the theory of Equipollence, and moving Fpow from Cardinals into Main
paulson <lp15@cam.ac.uk>
parents: 69700
diff changeset
   322
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: 69700
diff changeset
   323
  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: 69700
diff changeset
   324
40702
cf26dd7395e4 Replace surj by abbreviation; remove surj_on.
hoelzl
parents: 40602
diff changeset
   325
lemma surj_def: "surj f \<longleftrightarrow> (\<forall>y. \<exists>x. y = f x)"
cf26dd7395e4 Replace surj by abbreviation; remove surj_on.
hoelzl
parents: 40602
diff changeset
   326
  by auto
39076
b3a9b6734663 Introduce surj_on and replace surj and bij by abbreviations.
hoelzl
parents: 39075
diff changeset
   327
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   328
lemma surjI:
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   329
  assumes "\<And>x. g (f x) = x"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   330
  shows "surj g"
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   331
  using assms [symmetric] by auto
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   332
39076
b3a9b6734663 Introduce surj_on and replace surj and bij by abbreviations.
hoelzl
parents: 39075
diff changeset
   333
lemma surjD: "surj f \<Longrightarrow> \<exists>x. y = f x"
b3a9b6734663 Introduce surj_on and replace surj and bij by abbreviations.
hoelzl
parents: 39075
diff changeset
   334
  by (simp add: surj_def)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   335
39076
b3a9b6734663 Introduce surj_on and replace surj and bij by abbreviations.
hoelzl
parents: 39075
diff changeset
   336
lemma surjE: "surj f \<Longrightarrow> (\<And>x. y = f x \<Longrightarrow> C) \<Longrightarrow> C"
63575
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   337
  by (simp add: surj_def) blast
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   338
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   339
lemma comp_surj: "surj f \<Longrightarrow> surj g \<Longrightarrow> surj (g \<circ> f)"
69768
7e4966eaf781 proper congruence rule for image operator
haftmann
parents: 69735
diff changeset
   340
  using image_comp [of g f UNIV] by simp
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   341
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   342
lemma bij_betw_imageI: "inj_on f A \<Longrightarrow> f ` A = B \<Longrightarrow> bij_betw f A B"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   343
  unfolding bij_betw_def by clarify
57282
7da3e398804c Two basic lemmas on bij_betw.
ballarin
parents: 56608
diff changeset
   344
7da3e398804c Two basic lemmas on bij_betw.
ballarin
parents: 56608
diff changeset
   345
lemma bij_betw_imp_surj_on: "bij_betw f A B \<Longrightarrow> f ` A = B"
7da3e398804c Two basic lemmas on bij_betw.
ballarin
parents: 56608
diff changeset
   346
  unfolding bij_betw_def by clarify
7da3e398804c Two basic lemmas on bij_betw.
ballarin
parents: 56608
diff changeset
   347
39074
211e4f6aad63 bij <--> bij_betw
hoelzl
parents: 38620
diff changeset
   348
lemma bij_betw_imp_surj: "bij_betw f A UNIV \<Longrightarrow> surj f"
40702
cf26dd7395e4 Replace surj by abbreviation; remove surj_on.
hoelzl
parents: 40602
diff changeset
   349
  unfolding bij_betw_def by auto
39074
211e4f6aad63 bij <--> bij_betw
hoelzl
parents: 38620
diff changeset
   350
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   351
lemma bij_betw_empty1: "bij_betw f {} A \<Longrightarrow> A = {}"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   352
  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: 40702
diff changeset
   353
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   354
lemma bij_betw_empty2: "bij_betw f A {} \<Longrightarrow> A = {}"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   355
  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: 40702
diff changeset
   356
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   357
lemma inj_on_imp_bij_betw: "inj_on f A \<Longrightarrow> bij_betw f A (f ` A)"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   358
  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: 40702
diff changeset
   359
77138
c8597292cd41 Moved in a large number of highly useful library lemmas, mostly due to Manuel Eberl
paulson <lp15@cam.ac.uk>
parents: 76722
diff changeset
   360
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: 76722
diff changeset
   361
  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: 76722
diff changeset
   362
  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: 76722
diff changeset
   363
  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: 76722
diff changeset
   364
c8597292cd41 Moved in a large number of highly useful library lemmas, mostly due to Manuel Eberl
paulson <lp15@cam.ac.uk>
parents: 76722
diff changeset
   365
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: 76722
diff changeset
   366
  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: 76722
diff changeset
   367
c8597292cd41 Moved in a large number of highly useful library lemmas, mostly due to Manuel Eberl
paulson <lp15@cam.ac.uk>
parents: 76722
diff changeset
   368
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: 76722
diff changeset
   369
  by auto
c8597292cd41 Moved in a large number of highly useful library lemmas, mostly due to Manuel Eberl
paulson <lp15@cam.ac.uk>
parents: 76722
diff changeset
   370
71464
4a04b6bd628b a few new lemmas
paulson <lp15@cam.ac.uk>
parents: 71404
diff changeset
   371
lemma bij_betw_apply: "\<lbrakk>bij_betw f A B; a \<in> A\<rbrakk> \<Longrightarrow> f a \<in> B"
4a04b6bd628b a few new lemmas
paulson <lp15@cam.ac.uk>
parents: 71404
diff changeset
   372
  unfolding bij_betw_def by auto
4a04b6bd628b a few new lemmas
paulson <lp15@cam.ac.uk>
parents: 71404
diff changeset
   373
39076
b3a9b6734663 Introduce surj_on and replace surj and bij by abbreviations.
hoelzl
parents: 39075
diff changeset
   374
lemma bij_def: "bij f \<longleftrightarrow> inj f \<and> surj f"
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   375
  by (rule bij_betw_def)
39074
211e4f6aad63 bij <--> bij_betw
hoelzl
parents: 38620
diff changeset
   376
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   377
lemma bijI: "inj f \<Longrightarrow> surj f \<Longrightarrow> bij f"
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   378
  by (rule bij_betw_imageI)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   379
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   380
lemma bij_is_inj: "bij f \<Longrightarrow> inj f"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   381
  by (simp add: bij_def)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   382
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   383
lemma bij_is_surj: "bij f \<Longrightarrow> surj f"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   384
  by (simp add: bij_def)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   385
26105
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   386
lemma bij_betw_imp_inj_on: "bij_betw f A B \<Longrightarrow> inj_on f A"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   387
  by (simp add: bij_betw_def)
26105
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   388
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   389
lemma bij_betw_trans: "bij_betw f A B \<Longrightarrow> bij_betw g B C \<Longrightarrow> bij_betw (g \<circ> f) A C"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   390
  by (auto simp add:bij_betw_def comp_inj_on)
31438
a1c4c1500abe A few finite lemmas
nipkow
parents: 31202
diff changeset
   391
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   392
lemma bij_comp: "bij f \<Longrightarrow> bij g \<Longrightarrow> bij (g \<circ> f)"
40702
cf26dd7395e4 Replace surj by abbreviation; remove surj_on.
hoelzl
parents: 40602
diff changeset
   393
  by (rule bij_betw_trans)
cf26dd7395e4 Replace surj by abbreviation; remove surj_on.
hoelzl
parents: 40602
diff changeset
   394
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   395
lemma bij_betw_comp_iff: "bij_betw f A A' \<Longrightarrow> bij_betw f' A' A'' \<longleftrightarrow> bij_betw (f' \<circ> f) A A''"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   396
  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: 40702
diff changeset
   397
79597
76a1c0ea6777 A few lemmas brought in from AFP entries
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   398
lemma bij_betw_Collect:
76a1c0ea6777 A few lemmas brought in from AFP entries
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   399
  assumes "bij_betw f A B" "\<And>x. x \<in> A \<Longrightarrow> Q (f x) \<longleftrightarrow> P x"
76a1c0ea6777 A few lemmas brought in from AFP entries
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   400
  shows   "bij_betw f {x\<in>A. P x} {y\<in>B. Q y}"
76a1c0ea6777 A few lemmas brought in from AFP entries
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   401
  using assms by (auto simp add: bij_betw_def inj_on_def)
76a1c0ea6777 A few lemmas brought in from AFP entries
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   402
40703
d1fc454d6735 Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents: 40702
diff changeset
   403
lemma bij_betw_comp_iff2:
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   404
  assumes bij: "bij_betw f' A' A''"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   405
    and img: "f ` A \<le> A'"
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   406
  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: 75624
diff changeset
   407
proof
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   408
  assume "?L"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   409
  then show "?R"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   410
    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: 40702
diff changeset
   411
  next
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   412
    assume *: "?R"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   413
    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: 75624
diff changeset
   414
      using inj_on_imageI2 by blast
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   415
    moreover have "A' \<subseteq> f ` A"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   416
    proof
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   417
      fix a'
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   418
      assume **: "a' \<in> A'"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   419
      with bij have "f' a' \<in> A''"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   420
        unfolding bij_betw_def by auto
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   421
      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: 75624
diff changeset
   422
        unfolding bij_betw_def by force
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   423
      with img have "f a \<in> A'" by auto
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   424
      with bij ** 1 have "f a = a'"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   425
        unfolding bij_betw_def inj_on_def by auto
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   426
      with 1 show "a' \<in> f ` A" by auto
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   427
    qed
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   428
    ultimately show "?L"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   429
      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: 40702
diff changeset
   430
qed
d1fc454d6735 Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents: 40702
diff changeset
   431
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   432
lemma bij_betw_inv:
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   433
  assumes "bij_betw f A B"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   434
  shows "\<exists>g. bij_betw g B A"
26105
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   435
proof -
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   436
  have i: "inj_on f A" and s: "f ` A = B"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   437
    using assms by (auto simp: bij_betw_def)
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   438
  let ?P = "\<lambda>b a. a \<in> A \<and> f a = b"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   439
  let ?g = "\<lambda>b. The (?P b)"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   440
  have g: "?g b = a" if P: "?P b a" for a b
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   441
  proof -
63575
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   442
    from that s have ex1: "\<exists>a. ?P b a" by blast
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   443
    then have uex1: "\<exists>!a. ?P b a" by (blast dest:inj_onD[OF i])
63575
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   444
    then show ?thesis
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   445
      using the1_equality[OF uex1, OF P] P by simp
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   446
  qed
26105
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   447
  have "inj_on ?g B"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   448
  proof (rule inj_onI)
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   449
    fix x y
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   450
    assume "x \<in> B" "y \<in> B" "?g x = ?g y"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   451
    from s \<open>x \<in> B\<close> obtain a1 where a1: "?P x a1" by blast
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   452
    from s \<open>y \<in> B\<close> obtain a2 where a2: "?P y a2" by blast
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   453
    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: 25886
diff changeset
   454
  qed
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   455
  moreover have "?g ` B = A"
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   456
  proof safe
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   457
    fix b
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   458
    assume "b \<in> B"
56077
d397030fb27e tuned proofs
haftmann
parents: 56015
diff changeset
   459
    with s obtain a where P: "?P b a" by blast
63575
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   460
    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: 25886
diff changeset
   461
  next
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   462
    fix a
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   463
    assume "a \<in> A"
63575
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   464
    with s obtain b where P: "?P b a" by blast
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   465
    with s have "b \<in> B" by blast
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   466
    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: 75624
diff changeset
   467
    then show "a \<in> ?g ` B"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   468
      by auto
26105
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   469
  qed
63575
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   470
  ultimately show ?thesis
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   471
    by (auto simp: bij_betw_def)
26105
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   472
qed
ae06618225ec moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents: 25886
diff changeset
   473
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63575
diff changeset
   474
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
8d20875f1290 tuned proof;
wenzelm
parents: 63588
diff changeset
   475
  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: 40702
diff changeset
   476
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   477
lemma bij_betw_id[intro, simp]: "bij_betw id A A"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   478
  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: 40702
diff changeset
   479
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   480
lemma bij_betw_id_iff: "bij_betw id A B \<longleftrightarrow> A = B"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   481
  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: 40702
diff changeset
   482
39075
a18e5946d63c Permutation implies bij function
hoelzl
parents: 39074
diff changeset
   483
lemma bij_betw_combine:
63400
249fa34faba2 misc tuning and modernization;
wenzelm
parents: 63365
diff changeset
   484
  "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)"
249fa34faba2 misc tuning and modernization;
wenzelm
parents: 63365
diff changeset
   485
  unfolding bij_betw_def inj_on_Un image_Un by auto
39075
a18e5946d63c Permutation implies bij function
hoelzl
parents: 39074
diff changeset
   486
64966
d53d7ca3303e added inj_def (redundant, analogous to surj_def, bij_def);
wenzelm
parents: 64965
diff changeset
   487
lemma bij_betw_subset: "bij_betw f A A' \<Longrightarrow> B \<subseteq> A \<Longrightarrow> f ` B = B' \<Longrightarrow> bij_betw f B B'"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   488
  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: 40702
diff changeset
   489
75624
22d1c5f2b9f4 strict bounds for BNFs (by Jan van Brügge)
traytel
parents: 75609
diff changeset
   490
lemma bij_betw_ball: "bij_betw f A B \<Longrightarrow> (\<forall>b \<in> B. phi b) = (\<forall>a \<in> A. phi (f a))"
22d1c5f2b9f4 strict bounds for BNFs (by Jan van Brügge)
traytel
parents: 75609
diff changeset
   491
  unfolding bij_betw_def inj_on_def by blast
22d1c5f2b9f4 strict bounds for BNFs (by Jan van Brügge)
traytel
parents: 75609
diff changeset
   492
58195
1fee63e0377d added various facts
haftmann
parents: 58111
diff changeset
   493
lemma bij_pointE:
1fee63e0377d added various facts
haftmann
parents: 58111
diff changeset
   494
  assumes "bij f"
1fee63e0377d added various facts
haftmann
parents: 58111
diff changeset
   495
  obtains x where "y = f x" and "\<And>x'. y = f x' \<Longrightarrow> x' = x"
1fee63e0377d added various facts
haftmann
parents: 58111
diff changeset
   496
proof -
1fee63e0377d added various facts
haftmann
parents: 58111
diff changeset
   497
  from assms have "inj f" by (rule bij_is_inj)
1fee63e0377d added various facts
haftmann
parents: 58111
diff changeset
   498
  moreover from assms have "surj f" by (rule bij_is_surj)
1fee63e0377d added various facts
haftmann
parents: 58111
diff changeset
   499
  then have "y \<in> range f" by simp
1fee63e0377d added various facts
haftmann
parents: 58111
diff changeset
   500
  ultimately have "\<exists>!x. y = f x" by (simp add: range_ex1_eq)
1fee63e0377d added various facts
haftmann
parents: 58111
diff changeset
   501
  with that show thesis by blast
1fee63e0377d added various facts
haftmann
parents: 58111
diff changeset
   502
qed
1fee63e0377d added various facts
haftmann
parents: 58111
diff changeset
   503
73326
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   504
lemma bij_iff: \<^marker>\<open>contributor \<open>Amine Chaieb\<close>\<close>
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   505
  \<open>bij f \<longleftrightarrow> (\<forall>x. \<exists>!y. f y = x)\<close>  (is \<open>?P \<longleftrightarrow> ?Q\<close>)
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   506
proof
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   507
  assume ?P
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   508
  then have \<open>inj f\<close> \<open>surj f\<close>
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   509
    by (simp_all add: bij_def)
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   510
  show ?Q
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   511
  proof
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   512
    fix y
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   513
    from \<open>surj f\<close> obtain x where \<open>y = f x\<close>
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   514
      by (auto simp add: surj_def)
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   515
    with \<open>inj f\<close> show \<open>\<exists>!x. f x = y\<close>
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   516
      by (auto simp add: inj_def)
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   517
  qed
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   518
next
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   519
  assume ?Q
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   520
  then have \<open>inj f\<close>
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   521
    by (auto simp add: inj_def)
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   522
  moreover have \<open>\<exists>x. y = f x\<close> for y
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   523
  proof -
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   524
    from \<open>?Q\<close> obtain x where \<open>f x = y\<close>
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   525
      by blast
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   526
    then have \<open>y = f x\<close>
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   527
      by simp
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   528
    then show ?thesis ..
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   529
  qed
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   530
  then have \<open>surj f\<close>
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   531
    by (auto simp add: surj_def)
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   532
  ultimately show ?P
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   533
    by (rule bijI)
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   534
qed
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72125
diff changeset
   535
73466
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   536
lemma bij_betw_partition:
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   537
  \<open>bij_betw f A B\<close>
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   538
  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>
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   539
proof -
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   540
  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>
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   541
    by (simp_all add: bij_betw_def)
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   542
  then have \<open>inj_on f A\<close> and \<open>f ` (A - C) \<inter> f ` (C - A) = {}\<close>
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   543
    by (simp_all add: inj_on_Un)
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   544
  with \<open>A \<inter> C = {}\<close> have \<open>f ` A \<inter> f ` C = {}\<close>
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   545
    by auto
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   546
  with \<open>f ` (A \<union> C) = B \<union> D\<close> \<open>f ` C = D\<close>  \<open>B \<inter> D = {}\<close>
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   547
  have \<open>f ` A = B\<close>
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   548
    by blast
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   549
  with \<open>inj_on f A\<close> show ?thesis
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   550
    by (simp add: bij_betw_def)
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   551
qed
ee1c4962671c more lemmas
haftmann
parents: 73328
diff changeset
   552
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   553
lemma surj_image_vimage_eq: "surj f \<Longrightarrow> f ` (f -` A) = A"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   554
  by simp
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   555
42903
ec9eb1fbfcb8 add surj_vimage_empty
hoelzl
parents: 42238
diff changeset
   556
lemma surj_vimage_empty:
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   557
  assumes "surj f"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   558
  shows "f -` A = {} \<longleftrightarrow> A = {}"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   559
  using surj_image_vimage_eq [OF \<open>surj f\<close>, of A]
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44860
diff changeset
   560
  by (intro iffI) fastforce+
42903
ec9eb1fbfcb8 add surj_vimage_empty
hoelzl
parents: 42238
diff changeset
   561
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   562
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: 64965
diff changeset
   563
  unfolding inj_def by blast
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   564
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   565
lemma vimage_subsetD: "surj f \<Longrightarrow> f -` B \<subseteq> A \<Longrightarrow> B \<subseteq> f ` A"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   566
  by (blast intro: sym)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   567
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   568
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: 64965
diff changeset
   569
  unfolding inj_def by blast
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   570
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   571
lemma vimage_subset_eq: "bij f \<Longrightarrow> f -` B \<subseteq> A \<longleftrightarrow> B \<subseteq> f ` A"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   572
  unfolding bij_def by (blast del: subsetI intro: vimage_subsetI vimage_subsetD)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   573
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   574
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
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   575
  by (fastforce simp: inj_on_def)
53927
abe2b313f0e5 add lemmas
Andreas Lochbihler
parents: 52435
diff changeset
   576
31438
a1c4c1500abe A few finite lemmas
nipkow
parents: 31202
diff changeset
   577
lemma inj_on_Un_image_eq_iff: "inj_on f (A \<union> B) \<Longrightarrow> f ` A = f ` B \<longleftrightarrow> A = B"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   578
  by (erule inj_on_image_eq_iff) simp_all
31438
a1c4c1500abe A few finite lemmas
nipkow
parents: 31202
diff changeset
   579
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   580
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"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   581
  unfolding inj_on_def by blast
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   582
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   583
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"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   584
  unfolding inj_on_def by blast
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   585
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   586
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: 64965
diff changeset
   587
  unfolding inj_def by blast
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   588
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   589
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: 64965
diff changeset
   590
  unfolding inj_def by blast
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   591
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   592
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: 58889
diff changeset
   593
  by (auto simp: inj_on_def)
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 58889
diff changeset
   594
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   595
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: 58889
diff changeset
   596
  by (blast dest: injD)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   597
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   598
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: 58889
diff changeset
   599
  by (blast dest: injD)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   600
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   601
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: 58889
diff changeset
   602
  by (blast dest: injD)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   603
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   604
lemma surj_Compl_image_subset: "surj f \<Longrightarrow> - (f ` A) \<subseteq> f ` (- A)"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   605
  by auto
5852
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
   606
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   607
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: 64965
diff changeset
   608
  by (auto simp: inj_def)
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   609
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   610
lemma bij_image_Compl_eq: "bij f \<Longrightarrow> f ` (- A) = - (f ` A)"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   611
  by (simp add: bij_def inj_image_Compl_subset surj_Compl_image_subset equalityI)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   612
41657
89451110ba8e moved theorem
haftmann
parents: 41505
diff changeset
   613
lemma inj_vimage_singleton: "inj f \<Longrightarrow> f -` {a} \<subseteq> {THE x. f x = a}"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   614
  \<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: 64965
diff changeset
   615
  by (simp add: inj_def) (blast intro: the_equality [symmetric])
41657
89451110ba8e moved theorem
haftmann
parents: 41505
diff changeset
   616
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   617
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
f4a7697011c5 finite vimage on arbitrary domains
hoelzl
parents: 43874
diff changeset
   618
  by (auto simp add: inj_on_def intro: the_equality [symmetric])
f4a7697011c5 finite vimage on arbitrary domains
hoelzl
parents: 43874
diff changeset
   619
55019
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   620
lemma bij_betw_byWitness:
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   621
  assumes left: "\<forall>a \<in> A. f' (f a) = a"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   622
    and right: "\<forall>a' \<in> A'. f (f' a') = a'"
63575
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   623
    and "f ` A \<subseteq> A'"
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   624
    and img2: "f' ` A' \<subseteq> A"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   625
  shows "bij_betw f A A'"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   626
  using assms
63400
249fa34faba2 misc tuning and modernization;
wenzelm
parents: 63365
diff changeset
   627
  unfolding bij_betw_def inj_on_def
249fa34faba2 misc tuning and modernization;
wenzelm
parents: 63365
diff changeset
   628
proof safe
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   629
  fix a b
63575
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   630
  assume "a \<in> A" "b \<in> A"
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   631
  with left have "a = f' (f a) \<and> b = f' (f b)" by simp
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   632
  moreover assume "f a = f b"
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   633
  ultimately show "a = b" by simp
55019
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   634
next
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   635
  fix a' assume *: "a' \<in> A'"
63575
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   636
  with img2 have "f' a' \<in> A" by blast
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   637
  moreover from * right have "a' = f (f' a')" by simp
55019
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   638
  ultimately show "a' \<in> f ` A" by blast
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   639
qed
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   640
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   641
corollary notIn_Un_bij_betw:
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   642
  assumes "b \<notin> A"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   643
    and "f b \<notin> A'"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   644
    and "bij_betw f A A'"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   645
  shows "bij_betw f (A \<union> {b}) (A' \<union> {f b})"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   646
proof -
55019
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   647
  have "bij_betw f {b} {f b}"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   648
    unfolding bij_betw_def inj_on_def by simp
55019
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   649
  with assms show ?thesis
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   650
    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: 54578
diff changeset
   651
qed
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   652
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   653
lemma notIn_Un_bij_betw3:
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   654
  assumes "b \<notin> A"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   655
    and "f b \<notin> A'"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   656
  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: 54578
diff changeset
   657
proof
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   658
  assume "bij_betw f A A'"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   659
  then show "bij_betw f (A \<union> {b}) (A' \<union> {f b})"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   660
    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: 54578
diff changeset
   661
next
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   662
  assume *: "bij_betw f (A \<union> {b}) (A' \<union> {f b})"
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   663
  have "f ` A = A'"
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   664
  proof safe
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   665
    fix a
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   666
    assume **: "a \<in> A"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   667
    then have "f a \<in> A' \<union> {f b}"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   668
      using * unfolding bij_betw_def by blast
55019
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   669
    moreover
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   670
    have False if "f a = f b"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   671
    proof -
63575
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   672
      have "a = b"
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   673
        using * ** that unfolding bij_betw_def inj_on_def by blast
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   674
      with \<open>b \<notin> A\<close> ** show ?thesis by blast
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   675
    qed
55019
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   676
    ultimately show "f a \<in> A'" by blast
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   677
  next
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   678
    fix a'
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   679
    assume **: "a' \<in> A'"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   680
    then have "a' \<in> f ` (A \<union> {b})"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   681
      using * by (auto simp add: bij_betw_def)
55019
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   682
    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: 54578
diff changeset
   683
    moreover
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   684
    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: 54578
diff changeset
   685
    ultimately have "a \<in> A" by blast
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   686
    with 1 show "a' \<in> f ` A" by blast
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   687
  qed
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   688
  then show "bij_betw f A A'"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   689
    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: 54578
diff changeset
   690
qed
0d5e831175de moved lemmas from 'Fun_More_FP' to where they belong
blanchet
parents: 54578
diff changeset
   691
71857
d73955442df5 a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
   692
lemma inj_on_disjoint_Un:
d73955442df5 a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
   693
  assumes "inj_on f A" and "inj_on g B" 
d73955442df5 a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
   694
  and "f ` A \<inter> g ` B = {}"
d73955442df5 a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
   695
  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: 71827
diff changeset
   696
  using assms by (simp add: inj_on_def disjoint_iff) (blast)
d73955442df5 a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
   697
d73955442df5 a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
   698
lemma bij_betw_disjoint_Un:
d73955442df5 a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
   699
  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: 71827
diff changeset
   700
  and "A \<inter> B = {}"
d73955442df5 a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
   701
  and "C \<inter> D = {}"
d73955442df5 a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
   702
  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: 71827
diff changeset
   703
  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: 71827
diff changeset
   704
73594
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   705
lemma involuntory_imp_bij:
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   706
  \<open>bij f\<close> if \<open>\<And>x. f (f x) = x\<close>
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   707
proof (rule bijI)
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   708
  from that show \<open>surj f\<close>
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   709
    by (rule surjI)
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   710
  show \<open>inj f\<close>
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   711
  proof (rule injI)
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   712
    fix x y
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   713
    assume \<open>f x = f y\<close>
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   714
    then have \<open>f (f x) = f (f y)\<close>
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   715
      by simp
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   716
    then show \<open>x = y\<close>
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   717
      by (simp add: that)
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   718
  qed
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   719
qed
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   720
5c4a09c4bc9c collecting more lemmas concerning multisets
haftmann
parents: 73466
diff changeset
   721
76261
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   722
subsubsection \<open>Inj/surj/bij of Algebraic Operations\<close>
69502
0cf906072e20 more rules
haftmann
parents: 67399
diff changeset
   723
0cf906072e20 more rules
haftmann
parents: 67399
diff changeset
   724
context cancel_semigroup_add
0cf906072e20 more rules
haftmann
parents: 67399
diff changeset
   725
begin
0cf906072e20 more rules
haftmann
parents: 67399
diff changeset
   726
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   727
lemma inj_on_add [simp]:
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   728
  "inj_on ((+) a) A"
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   729
  by (rule inj_onI) simp
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   730
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   731
lemma inj_on_add' [simp]:
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   732
  "inj_on (\<lambda>b. b + a) A"
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   733
  by (rule inj_onI) simp
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   734
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   735
lemma bij_betw_add [simp]:
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   736
  "bij_betw ((+) a) A B \<longleftrightarrow> (+) a ` A = B"
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   737
  by (simp add: bij_betw_def)
69502
0cf906072e20 more rules
haftmann
parents: 67399
diff changeset
   738
0cf906072e20 more rules
haftmann
parents: 67399
diff changeset
   739
end
0cf906072e20 more rules
haftmann
parents: 67399
diff changeset
   740
76252
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   741
context group_add
69502
0cf906072e20 more rules
haftmann
parents: 67399
diff changeset
   742
begin
0cf906072e20 more rules
haftmann
parents: 67399
diff changeset
   743
76261
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   744
lemma diff_left_imp_eq: "a - b = a - c \<Longrightarrow> b = c"
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   745
unfolding add_uminus_conv_diff[symmetric]
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   746
by(drule local.add_left_imp_eq) simp
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   747
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   748
lemma inj_uminus[simp, intro]: "inj_on uminus A"
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   749
  by (auto intro!: inj_onI)
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   750
76264
60511708a650 one more lemma
nipkow
parents: 76261
diff changeset
   751
lemma surj_uminus[simp]: "surj uminus"
60511708a650 one more lemma
nipkow
parents: 76261
diff changeset
   752
using surjI minus_minus by blast
60511708a650 one more lemma
nipkow
parents: 76261
diff changeset
   753
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   754
lemma surj_plus [simp]:
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   755
  "surj ((+) a)"
76252
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   756
proof (standard, simp, standard, simp)
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   757
  fix x
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   758
  have "x = a + (-a + x)" by (simp add: add.assoc)
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   759
  thus "x \<in> range ((+) a)" by blast
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   760
qed
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   761
76261
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   762
lemma surj_plus_right [simp]:
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   763
  "surj (\<lambda>b. b+a)"
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   764
proof (standard, simp, standard, simp)
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   765
  fix b show "b \<in> range (\<lambda>b. b+a)"
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   766
    using diff_add_cancel[of b a, symmetric] by blast
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   767
qed
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   768
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   769
lemma inj_on_diff_left [simp]:
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   770
  \<open>inj_on ((-) a) A\<close>
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   771
by (auto intro: inj_onI dest!: diff_left_imp_eq)
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   772
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   773
lemma inj_on_diff_right [simp]:
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   774
  \<open>inj_on (\<lambda>b. b - a) A\<close>
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   775
by (auto intro: inj_onI simp add: algebra_simps)
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   776
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   777
lemma surj_diff [simp]:
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   778
  "surj ((-) a)"
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   779
proof (standard, simp, standard, simp)
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   780
  fix x
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   781
  have "x = a - (- x + a)" by (simp add: algebra_simps)
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   782
  thus "x \<in> range ((-) a)" by blast
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   783
qed
69502
0cf906072e20 more rules
haftmann
parents: 67399
diff changeset
   784
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   785
lemma surj_diff_right [simp]:
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   786
  "surj (\<lambda>x. x - a)"
76252
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   787
proof (standard, simp, standard, simp)
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   788
  fix x
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   789
  have "x = x + a - a" by simp
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   790
  thus "x \<in> range (\<lambda>x. x - a)" by fast
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   791
qed
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   792
76261
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   793
lemma shows bij_plus: "bij ((+) a)" and bij_plus_right: "bij (\<lambda>x. x + a)"
76264
60511708a650 one more lemma
nipkow
parents: 76261
diff changeset
   794
  and bij_uminus: "bij uminus"
76261
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   795
  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: 76260
diff changeset
   796
by(simp_all add: bij_def)
26524d0b4395 added and reorganized lemmas (some suggested by Jeremy Sylvestre)
nipkow
parents: 76260
diff changeset
   797
76252
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   798
lemma translation_subtract_Compl:
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   799
  "(\<lambda>x. x - a) ` (- t) = - ((\<lambda>x. x - a) ` t)"
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   800
by(rule bij_image_Compl_eq)
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   801
  (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: 76056
diff changeset
   802
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   803
lemma translation_diff:
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   804
  "(+) a ` (s - t) = ((+) a ` s) - ((+) a ` t)"
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   805
  by auto
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   806
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   807
lemma translation_subtract_diff:
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   808
  "(\<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: 76056
diff changeset
   809
by(rule image_set_diff)(simp add: inj_on_def diff_eq_eq)
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   810
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   811
lemma translation_Int:
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   812
  "(+) a ` (s \<inter> t) = ((+) a ` s) \<inter> ((+) a ` t)"
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   813
  by auto
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   814
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   815
lemma translation_subtract_Int:
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   816
  "(\<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: 76056
diff changeset
   817
by(rule image_Int)(simp add: inj_on_def diff_eq_eq)
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   818
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   819
end
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   820
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   821
(* TODO: prove in group_add *)
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   822
context ab_group_add
d123d9f67514 generalized type classes as suggested by Jeremy Sylvestre
nipkow
parents: 76056
diff changeset
   823
begin
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   824
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   825
lemma translation_Compl:
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   826
  "(+) a ` (- t) = - ((+) a ` t)"
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   827
proof (rule set_eqI)
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   828
  fix b
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   829
  show "b \<in> (+) a ` (- t) \<longleftrightarrow> b \<in> - (+) a ` t"
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   830
    by (auto simp: image_iff algebra_simps intro!: bexI [of _ "b - a"])
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   831
qed
a03a63b81f44 tuned proofs
haftmann
parents: 69605
diff changeset
   832
69502
0cf906072e20 more rules
haftmann
parents: 67399
diff changeset
   833
end
0cf906072e20 more rules
haftmann
parents: 67399
diff changeset
   834
41657
89451110ba8e moved theorem
haftmann
parents: 41505
diff changeset
   835
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   836
subsection \<open>Function Updating\<close>
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   837
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   838
definition fun_upd :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> ('a \<Rightarrow> 'b)"
63324
1e98146f3581 prefer HOL definitions;
wenzelm
parents: 63323
diff changeset
   839
  where "fun_upd f a b = (\<lambda>x. if x = a then b else f x)"
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   840
41229
d797baa3d57c replaced command 'nonterminals' by slightly modernized version 'nonterminal';
wenzelm
parents: 40969
diff changeset
   841
nonterminal updbinds and updbind
d797baa3d57c replaced command 'nonterminals' by slightly modernized version 'nonterminal';
wenzelm
parents: 40969
diff changeset
   842
81595
ed264056f5dc more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents: 81563
diff changeset
   843
open_bundle update_syntax
ed264056f5dc more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents: 81563
diff changeset
   844
begin
ed264056f5dc more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents: 81563
diff changeset
   845
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   846
syntax
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   847
  "_updbind" :: "'a \<Rightarrow> 'a \<Rightarrow> updbind"             (\<open>(\<open>indent=2 notation=\<open>mixfix update\<close>\<close>_ :=/ _)\<close>)
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80760
diff changeset
   848
  ""         :: "updbind \<Rightarrow> updbinds"             (\<open>_\<close>)
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80760
diff changeset
   849
  "_updbinds":: "updbind \<Rightarrow> updbinds \<Rightarrow> updbinds" (\<open>_,/ _\<close>)
81125
ec121999a9cb more inner-syntax markup;
wenzelm
parents: 81091
diff changeset
   850
  "_Update"  :: "'a \<Rightarrow> updbinds \<Rightarrow> 'a"
ec121999a9cb more inner-syntax markup;
wenzelm
parents: 81091
diff changeset
   851
    (\<open>(\<open>open_block notation=\<open>mixfix function update\<close>\<close>_/'((2_)'))\<close> [1000, 0] 900)
81182
fc5066122e68 more inner-syntax markup;
wenzelm
parents: 81125
diff changeset
   852
syntax_consts
fc5066122e68 more inner-syntax markup;
wenzelm
parents: 81125
diff changeset
   853
  "_Update" \<rightleftharpoons> fun_upd
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   854
translations
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   855
  "_Update f (_updbinds b bs)" \<rightleftharpoons> "_Update (_Update f b) bs"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   856
  "f(x:=y)" \<rightleftharpoons> "CONST fun_upd f x y"
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   857
81595
ed264056f5dc more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents: 81563
diff changeset
   858
end
ed264056f5dc more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents: 81563
diff changeset
   859
55414
eab03e9cee8a renamed '{prod,sum,bool,unit}_case' to 'case_...'
blanchet
parents: 55066
diff changeset
   860
(* Hint: to define the sum of two functions (or maps), use case_sum.
58111
82db9ad610b9 tuned structure inclusion
blanchet
parents: 57282
diff changeset
   861
         A nice infix syntax could be defined by
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34209
diff changeset
   862
notation
55414
eab03e9cee8a renamed '{prod,sum,bool,unit}_case' to 'case_...'
blanchet
parents: 55066
diff changeset
   863
  case_sum  (infixr "'(+')"80)
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   864
*)
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   865
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   866
lemma fun_upd_idem_iff: "f(x:=y) = f \<longleftrightarrow> f x = y"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   867
  unfolding fun_upd_def
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   868
  apply safe
63575
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   869
   apply (erule subst)
b9bd9e61fd63 misc tuning and modernization;
wenzelm
parents: 63561
diff changeset
   870
   apply auto
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   871
  done
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   872
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   873
lemma fun_upd_idem: "f x = y \<Longrightarrow> f(x := y) = f"
45603
d2d9ef16ccaf explicit is better than implicit;
wenzelm
parents: 45174
diff changeset
   874
  by (simp only: fun_upd_idem_iff)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   875
45603
d2d9ef16ccaf explicit is better than implicit;
wenzelm
parents: 45174
diff changeset
   876
lemma fun_upd_triv [iff]: "f(x := f x) = f"
d2d9ef16ccaf explicit is better than implicit;
wenzelm
parents: 45174
diff changeset
   877
  by (simp only: fun_upd_idem)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   878
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   879
lemma fun_upd_apply [simp]: "(f(x := y)) z = (if z = x then y else f z)"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   880
  by (simp add: fun_upd_def)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   881
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   882
(* fun_upd_apply supersedes these two, but they are useful
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   883
   if fun_upd_apply is intentionally removed from the simpset *)
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   884
lemma fun_upd_same: "(f(x := y)) x = y"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   885
  by simp
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   886
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   887
lemma fun_upd_other: "z \<noteq> x \<Longrightarrow> (f(x := y)) z = f z"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   888
  by simp
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   889
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   890
lemma fun_upd_upd [simp]: "f(x := y, x := z) = f(x := z)"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   891
  by (simp add: fun_eq_iff)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12460
diff changeset
   892
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   893
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: 71472
diff changeset
   894
  by auto
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   895
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   896
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: 64965
diff changeset
   897
  by (auto simp: inj_on_def)
15303
eedbb8d22ca2 added lemmas
nipkow
parents: 15140
diff changeset
   898
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   899
lemma fun_upd_image: "f(x := y) ` A = (if x \<in> A then insert y (f ` (A - {x})) else f ` A)"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   900
  by auto
15510
9de204d7b699 new foldSet proofs
paulson
parents: 15439
diff changeset
   901
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 30301
diff changeset
   902
lemma fun_upd_comp: "f \<circ> (g(x := y)) = (f \<circ> g)(x := f y)"
44921
58eef4843641 tuned proofs
huffman
parents: 44890
diff changeset
   903
  by auto
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 30301
diff changeset
   904
61630
608520e0e8e2 add various lemmas
Andreas Lochbihler
parents: 61520
diff changeset
   905
lemma fun_upd_eqD: "f(x := y) = g(x := z) \<Longrightarrow> y = z"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   906
  by (simp add: fun_eq_iff split: if_split_asm)
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   907
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   908
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   909
subsection \<open>\<open>override_on\<close>\<close>
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   910
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   911
definition override_on :: "('a \<Rightarrow> 'b) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'a set \<Rightarrow> 'a \<Rightarrow> 'b"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   912
  where "override_on f g A = (\<lambda>a. if a \<in> A then g a else f a)"
13910
f9a9ef16466f Added thms
nipkow
parents: 13637
diff changeset
   913
15691
900cf45ff0a6 _(_|_) is now override_on
nipkow
parents: 15531
diff changeset
   914
lemma override_on_emptyset[simp]: "override_on f g {} = f"
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   915
  by (simp add: override_on_def)
13910
f9a9ef16466f Added thms
nipkow
parents: 13637
diff changeset
   916
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   917
lemma override_on_apply_notin[simp]: "a \<notin> A \<Longrightarrow> (override_on f g A) a = f a"
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   918
  by (simp add: override_on_def)
13910
f9a9ef16466f Added thms
nipkow
parents: 13637
diff changeset
   919
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   920
lemma override_on_apply_in[simp]: "a \<in> A \<Longrightarrow> (override_on f g A) a = g a"
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   921
  by (simp add: override_on_def)
13910
f9a9ef16466f Added thms
nipkow
parents: 13637
diff changeset
   922
63561
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63416
diff changeset
   923
lemma override_on_insert: "override_on f g (insert x X) = (override_on f g X)(x:=g x)"
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   924
  by (simp add: override_on_def fun_eq_iff)
63561
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63416
diff changeset
   925
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63416
diff changeset
   926
lemma override_on_insert': "override_on f g (insert x X) = (override_on (f(x:=g x)) g X)"
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   927
  by (simp add: override_on_def fun_eq_iff)
63561
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63416
diff changeset
   928
26147
ae2bf929e33c moved some set lemmas to Set.thy
haftmann
parents: 26105
diff changeset
   929
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60303
diff changeset
   930
subsection \<open>Inversion of injective functions\<close>
31949
3f933687fae9 moved Inductive.myinv to Fun.inv; tuned
haftmann
parents: 31775
diff changeset
   931
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   932
definition the_inv_into :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> ('b \<Rightarrow> 'a)"
63324
1e98146f3581 prefer HOL definitions;
wenzelm
parents: 63323
diff changeset
   933
  where "the_inv_into A f = (\<lambda>x. THE y. y \<in> A \<and> f y = x)"
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   934
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   935
lemma the_inv_into_f_f: "inj_on f A \<Longrightarrow> x \<in> A \<Longrightarrow> the_inv_into A f (f x) = x"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   936
  unfolding the_inv_into_def inj_on_def by blast
32961
61431a41ddd5 added the_inv_onto
nipkow
parents: 32740
diff changeset
   937
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   938
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: 71827
diff changeset
   939
  unfolding the_inv_into_def
d73955442df5 a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
   940
  by (rule the1I2; blast dest: inj_onD)
32961
61431a41ddd5 added the_inv_onto
nipkow
parents: 32740
diff changeset
   941
72125
cf8399df4d76 elimination of some needless assumptions
paulson <lp15@cam.ac.uk>
parents: 71857
diff changeset
   942
lemma f_the_inv_into_f_bij_betw:
cf8399df4d76 elimination of some needless assumptions
paulson <lp15@cam.ac.uk>
parents: 71857
diff changeset
   943
  "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: 71857
diff changeset
   944
  unfolding bij_betw_def by (blast intro: f_the_inv_into_f)
cf8399df4d76 elimination of some needless assumptions
paulson <lp15@cam.ac.uk>
parents: 71857
diff changeset
   945
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   946
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: 71827
diff changeset
   947
  unfolding the_inv_into_def
d73955442df5 a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
   948
  by (rule the1I2; blast dest: inj_onD)
32961
61431a41ddd5 added the_inv_onto
nipkow
parents: 32740
diff changeset
   949
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   950
lemma the_inv_into_onto [simp]: "inj_on f A \<Longrightarrow> the_inv_into A f ` (f ` A) = A"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   951
  by (fast intro: the_inv_into_into the_inv_into_f_f [symmetric])
32961
61431a41ddd5 added the_inv_onto
nipkow
parents: 32740
diff changeset
   952
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   953
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: 71827
diff changeset
   954
  by (force simp add: the_inv_into_f_f)
32961
61431a41ddd5 added the_inv_onto
nipkow
parents: 32740
diff changeset
   955
33057
764547b68538 inv_onto -> inv_into
nipkow
parents: 33044
diff changeset
   956
lemma the_inv_into_comp:
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   957
  "inj_on f (g ` A) \<Longrightarrow> inj_on g A \<Longrightarrow> x \<in> f ` g ` A \<Longrightarrow>
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   958
    the_inv_into A (f \<circ> g) x = (the_inv_into A g \<circ> the_inv_into (g ` A) f) x"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   959
  apply (rule the_inv_into_f_eq)
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   960
    apply (fast intro: comp_inj_on)
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   961
   apply (simp add: f_the_inv_into_f the_inv_into_into)
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   962
  apply (simp add: the_inv_into_into)
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   963
  done
32961
61431a41ddd5 added the_inv_onto
nipkow
parents: 32740
diff changeset
   964
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   965
lemma inj_on_the_inv_into: "inj_on f A \<Longrightarrow> inj_on (the_inv_into A f) (f ` A)"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   966
  by (auto intro: inj_onI simp: the_inv_into_f_f)
32961
61431a41ddd5 added the_inv_onto
nipkow
parents: 32740
diff changeset
   967
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   968
lemma bij_betw_the_inv_into: "bij_betw f A B \<Longrightarrow> bij_betw (the_inv_into A f) B A"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   969
  by (auto simp add: bij_betw_def inj_on_the_inv_into the_inv_into_into)
32961
61431a41ddd5 added the_inv_onto
nipkow
parents: 32740
diff changeset
   970
71857
d73955442df5 a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
   971
lemma bij_betw_iff_bijections:
d73955442df5 a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
   972
  "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: 71827
diff changeset
   973
  (is "?lhs = ?rhs")
d73955442df5 a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
   974
proof
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   975
  show "?lhs \<Longrightarrow> ?rhs"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   976
    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: 75624
diff changeset
   977
        exI[where ?x="the_inv_into A f"])
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   978
next
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   979
  show "?rhs \<Longrightarrow> ?lhs"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   980
    by (force intro: bij_betw_byWitness)
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
   981
qed
71857
d73955442df5 a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
   982
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   983
abbreviation the_inv :: "('a \<Rightarrow> 'b) \<Rightarrow> ('b \<Rightarrow> 'a)"
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
   984
  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: 32988
diff changeset
   985
64965
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   986
lemma the_inv_f_f: "the_inv f (f x) = x" if "inj f"
d55d743c45a2 tuned proofs;
wenzelm
parents: 63591
diff changeset
   987
  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: 32988
diff changeset
   988
44277
bcb696533579 moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
haftmann
parents: 43991
diff changeset
   989
76054
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
   990
subsection \<open>Monotonicity\<close>
71472
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
   991
75582
6fb4a0829cc4 added predicate monotone_on and redefined monotone to be an abbreviation.
desharna
parents: 74123
diff changeset
   992
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: 74123
diff changeset
   993
  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: 74123
diff changeset
   994
6fb4a0829cc4 added predicate monotone_on and redefined monotone to be an abbreviation.
desharna
parents: 74123
diff changeset
   995
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: 74123
diff changeset
   996
  where "monotone \<equiv> monotone_on UNIV"
6fb4a0829cc4 added predicate monotone_on and redefined monotone to be an abbreviation.
desharna
parents: 74123
diff changeset
   997
6fb4a0829cc4 added predicate monotone_on and redefined monotone to be an abbreviation.
desharna
parents: 74123
diff changeset
   998
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: 74123
diff changeset
   999
  by (simp add: monotone_on_def)
6fb4a0829cc4 added predicate monotone_on and redefined monotone to be an abbreviation.
desharna
parents: 74123
diff changeset
  1000
6fb4a0829cc4 added predicate monotone_on and redefined monotone to be an abbreviation.
desharna
parents: 74123
diff changeset
  1001
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: 74123
diff changeset
  1002
6fb4a0829cc4 added predicate monotone_on and redefined monotone to be an abbreviation.
desharna
parents: 74123
diff changeset
  1003
lemma monotone_onI:
6fb4a0829cc4 added predicate monotone_on and redefined monotone to be an abbreviation.
desharna
parents: 74123
diff changeset
  1004
  "(\<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: 74123
diff changeset
  1005
  by (simp add: monotone_on_def)
6fb4a0829cc4 added predicate monotone_on and redefined monotone to be an abbreviation.
desharna
parents: 74123
diff changeset
  1006
6fb4a0829cc4 added predicate monotone_on and redefined monotone to be an abbreviation.
desharna
parents: 74123
diff changeset
  1007
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: 74123
diff changeset
  1008
  by (rule monotone_onI)
6fb4a0829cc4 added predicate monotone_on and redefined monotone to be an abbreviation.
desharna
parents: 74123
diff changeset
  1009
6fb4a0829cc4 added predicate monotone_on and redefined monotone to be an abbreviation.
desharna
parents: 74123
diff changeset
  1010
lemma monotone_onD:
6fb4a0829cc4 added predicate monotone_on and redefined monotone to be an abbreviation.
desharna
parents: 74123
diff changeset
  1011
  "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: 74123
diff changeset
  1012
  by (simp add: monotone_on_def)
6fb4a0829cc4 added predicate monotone_on and redefined monotone to be an abbreviation.
desharna
parents: 74123
diff changeset
  1013
6fb4a0829cc4 added predicate monotone_on and redefined monotone to be an abbreviation.
desharna
parents: 74123
diff changeset
  1014
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: 75583
diff changeset
  1015
  by (rule monotone_onD[of UNIV, simplified])
75582
6fb4a0829cc4 added predicate monotone_on and redefined monotone to be an abbreviation.
desharna
parents: 74123
diff changeset
  1016
75583
451e17e0ba9d added lemmas monotone_on_empty[simp] and monotone_on_subset
desharna
parents: 75582
diff changeset
  1017
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: 75582
diff changeset
  1018
  by (auto intro: monotone_onI dest: monotone_onD)
451e17e0ba9d added lemmas monotone_on_empty[simp] and monotone_on_subset
desharna
parents: 75582
diff changeset
  1019
451e17e0ba9d added lemmas monotone_on_empty[simp] and monotone_on_subset
desharna
parents: 75582
diff changeset
  1020
lemma monotone_on_empty[simp]: "monotone_on {} orda ordb f"
451e17e0ba9d added lemmas monotone_on_empty[simp] and monotone_on_subset
desharna
parents: 75582
diff changeset
  1021
  by (auto intro: monotone_onI dest: monotone_onD)
451e17e0ba9d added lemmas monotone_on_empty[simp] and monotone_on_subset
desharna
parents: 75582
diff changeset
  1022
75609
19ec8f844e08 added lemma monotone_on_o
desharna
parents: 75608
diff changeset
  1023
lemma monotone_on_o:
19ec8f844e08 added lemma monotone_on_o
desharna
parents: 75608
diff changeset
  1024
  assumes
19ec8f844e08 added lemma monotone_on_o
desharna
parents: 75608
diff changeset
  1025
    mono_f: "monotone_on A orda ordb f" and
19ec8f844e08 added lemma monotone_on_o
desharna
parents: 75608
diff changeset
  1026
    mono_g: "monotone_on B ordc orda g" and
19ec8f844e08 added lemma monotone_on_o
desharna
parents: 75608
diff changeset
  1027
    "g ` B \<subseteq> A"
19ec8f844e08 added lemma monotone_on_o
desharna
parents: 75608
diff changeset
  1028
  shows "monotone_on B ordc ordb (f \<circ> g)"
19ec8f844e08 added lemma monotone_on_o
desharna
parents: 75608
diff changeset
  1029
proof (rule monotone_onI)
19ec8f844e08 added lemma monotone_on_o
desharna
parents: 75608
diff changeset
  1030
  fix x y assume "x \<in> B" and "y \<in> B" and "ordc x y"
19ec8f844e08 added lemma monotone_on_o
desharna
parents: 75608
diff changeset
  1031
  hence "orda (g x) (g y)"
19ec8f844e08 added lemma monotone_on_o
desharna
parents: 75608
diff changeset
  1032
    by (rule mono_g[THEN monotone_onD])
19ec8f844e08 added lemma monotone_on_o
desharna
parents: 75608
diff changeset
  1033
  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"
19ec8f844e08 added lemma monotone_on_o
desharna
parents: 75608
diff changeset
  1034
    unfolding image_subset_iff by simp_all
19ec8f844e08 added lemma monotone_on_o
desharna
parents: 75608
diff changeset
  1035
  ultimately show "ordb ((f \<circ> g) x) ((f \<circ> g) y)"
19ec8f844e08 added lemma monotone_on_o
desharna
parents: 75608
diff changeset
  1036
    using mono_f[THEN monotone_onD] by simp
19ec8f844e08 added lemma monotone_on_o
desharna
parents: 75608
diff changeset
  1037
qed
19ec8f844e08 added lemma monotone_on_o
desharna
parents: 75608
diff changeset
  1038
76054
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1039
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: 75624
diff changeset
  1040
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1041
context ord begin
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1042
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1043
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: 75607
diff changeset
  1044
  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: 75607
diff changeset
  1045
76054
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1046
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: 75624
diff changeset
  1047
  where "strict_mono_on A \<equiv> monotone_on A (<) (<)"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1048
77934
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1049
abbreviation antimono_on :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b :: ord) \<Rightarrow> bool"
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1050
  where "antimono_on A \<equiv> monotone_on A (\<le>) (\<ge>)"
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1051
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1052
abbreviation strict_antimono_on :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b :: ord) \<Rightarrow> bool"
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1053
  where "strict_antimono_on A \<equiv> monotone_on A (<) (>)"
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1054
76054
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1055
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: 75607
diff changeset
  1056
  by (auto simp add: monotone_on_def)
71472
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1057
76054
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1058
lemma strict_mono_on_def[no_atp]:
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1059
  "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: 75624
diff changeset
  1060
  by (auto simp add: monotone_on_def)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1061
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1062
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: 75624
diff changeset
  1063
backward compatibility.\<close>
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1064
71472
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1065
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: 75583
diff changeset
  1066
  "(\<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: 75607
diff changeset
  1067
  by (rule monotone_onI)
71472
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1068
76054
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1069
lemma strict_mono_onI:
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1070
  "(\<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: 75624
diff changeset
  1071
  by (rule monotone_onI)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1072
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1073
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: 75607
diff changeset
  1074
  by (rule monotone_onD)
71472
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1075
76054
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1076
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: 75624
diff changeset
  1077
  by (rule monotone_onD)
71472
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1078
75607
3c544d64c218 changed argument order of mono_on and strict_mono_on to uniformize with monotone_on and other predicates
desharna
parents: 75583
diff changeset
  1079
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: 75607
diff changeset
  1080
  by (rule monotone_on_subset)
71472
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1081
76054
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1082
end
71472
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1083
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1084
lemma mono_on_greaterD:
81563
c4c983c5c7f2 tuned: prefer explicit names of inferred types;
wenzelm
parents: 81182
diff changeset
  1085
  fixes g :: "'a::linorder \<Rightarrow> 'b::linorder"
c4c983c5c7f2 tuned: prefer explicit names of inferred types;
wenzelm
parents: 81182
diff changeset
  1086
  assumes "mono_on A g" "x \<in> A" "y \<in> A" "g x > g y"
71472
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1087
  shows "x > y"
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1088
proof (rule ccontr)
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1089
  assume "\<not>x > y"
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1090
  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: 71464
diff changeset
  1091
  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: 71464
diff changeset
  1092
  with assms(4) show False by simp
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1093
qed
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1094
76054
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1095
context order begin
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1096
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1097
abbreviation mono :: "('a \<Rightarrow> 'b::order) \<Rightarrow> bool"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1098
  where "mono \<equiv> mono_on UNIV"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1099
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1100
abbreviation strict_mono :: "('a \<Rightarrow> 'b::order) \<Rightarrow> bool"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1101
  where "strict_mono \<equiv> strict_mono_on UNIV"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1102
76055
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1103
abbreviation antimono :: "('a \<Rightarrow> 'b::order) \<Rightarrow> bool"
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1104
  where "antimono \<equiv> monotone (\<le>) (\<lambda>x y. y \<le> x)"
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1105
76054
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1106
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: 75624
diff changeset
  1107
  by (simp add: monotone_on_def)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1108
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1109
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: 75624
diff changeset
  1110
  by (simp add: monotone_on_def)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1111
76055
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1112
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: 76054
diff changeset
  1113
  by (simp add: monotone_on_def)
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1114
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1115
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: 76054
diff changeset
  1116
@{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: 75624
diff changeset
  1117
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1118
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: 75624
diff changeset
  1119
  by (rule monotoneI)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1120
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1121
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: 75624
diff changeset
  1122
  by (rule monotoneI)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1123
76055
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1124
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: 76054
diff changeset
  1125
  by (rule monotoneI)
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1126
76054
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1127
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: 75624
diff changeset
  1128
  by (rule monotoneD)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1129
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1130
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: 75624
diff changeset
  1131
  by (rule monotoneD)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1132
76055
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1133
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: 76054
diff changeset
  1134
  by (rule monotoneD)
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1135
76054
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1136
lemma monoE:
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1137
  assumes "mono f"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1138
  assumes "x \<le> y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1139
  obtains "f x \<le> f y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1140
proof
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1141
  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: 75624
diff changeset
  1142
qed
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1143
76055
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1144
lemma antimonoE:
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1145
  fixes f :: "'a \<Rightarrow> 'b::order"
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1146
  assumes "antimono f"
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1147
  assumes "x \<le> y"
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1148
  obtains "f x \<ge> f y"
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1149
proof
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1150
  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: 76054
diff changeset
  1151
qed
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1152
76054
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1153
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: 75624
diff changeset
  1154
  by (rule monotone_on_subset[OF _ subset_UNIV])
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1155
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1156
lemma strict_mono_mono [dest?]:
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1157
  assumes "strict_mono f"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1158
  shows "mono f"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1159
proof (rule monoI)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1160
  fix x y
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1161
  assume "x \<le> y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1162
  show "f x \<le> f y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1163
  proof (cases "x = y")
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1164
    case True then show ?thesis by simp
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1165
  next
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1166
    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: 75624
diff changeset
  1167
    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: 75624
diff changeset
  1168
    then show ?thesis by simp
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1169
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1170
  qed
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1171
qed
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1172
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 78258
diff changeset
  1173
lemma mono_on_ident: "mono_on S (\<lambda>x. x)"
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 78258
diff changeset
  1174
  by (simp add: monotone_on_def)
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 78258
diff changeset
  1175
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 78258
diff changeset
  1176
lemma strict_mono_on_ident: "strict_mono_on S (\<lambda>x. x)"
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 78258
diff changeset
  1177
  by (simp add: monotone_on_def)
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 78258
diff changeset
  1178
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 78258
diff changeset
  1179
lemma mono_on_const:
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 78258
diff changeset
  1180
  fixes a :: "'b::order" shows "mono_on S (\<lambda>x. a)"
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 78258
diff changeset
  1181
  by (simp add: mono_on_def)
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 78258
diff changeset
  1182
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 78258
diff changeset
  1183
lemma antimono_on_const:
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 78258
diff changeset
  1184
  fixes a :: "'b::order" shows "antimono_on S (\<lambda>x. a)"
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 78258
diff changeset
  1185
  by (simp add: monotone_on_def)
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 78258
diff changeset
  1186
76054
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1187
end
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1188
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1189
context linorder begin
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1190
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1191
lemma mono_invE:
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1192
  fixes f :: "'a \<Rightarrow> 'b::order"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1193
  assumes "mono f"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1194
  assumes "f x < f y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1195
  obtains "x \<le> y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1196
proof
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1197
  show "x \<le> y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1198
  proof (rule ccontr)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1199
    assume "\<not> x \<le> y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1200
    then have "y \<le> x" by simp
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1201
    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: 75624
diff changeset
  1202
    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: 75624
diff changeset
  1203
  qed
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1204
qed
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1205
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1206
lemma mono_strict_invE:
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1207
  fixes f :: "'a \<Rightarrow> 'b::order"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1208
  assumes "mono f"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1209
  assumes "f x < f y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1210
  obtains "x < y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1211
proof
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1212
  show "x < y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1213
  proof (rule ccontr)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1214
    assume "\<not> x < y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1215
    then have "y \<le> x" by simp
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1216
    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: 75624
diff changeset
  1217
    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: 75624
diff changeset
  1218
  qed
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1219
qed
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1220
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1221
lemma strict_mono_eq:
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1222
  assumes "strict_mono f"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1223
  shows "f x = f y \<longleftrightarrow> x = y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1224
proof
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1225
  assume "f x = f y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1226
  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: 75624
diff changeset
  1227
    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: 75624
diff changeset
  1228
    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: 75624
diff changeset
  1229
  next
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1230
    case equal then show ?thesis .
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1231
  next
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1232
    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: 75624
diff changeset
  1233
    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: 75624
diff changeset
  1234
  qed
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1235
qed simp
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1236
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1237
lemma strict_mono_less_eq:
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1238
  assumes "strict_mono f"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1239
  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: 75624
diff changeset
  1240
proof
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1241
  assume "x \<le> y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1242
  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: 75624
diff changeset
  1243
next
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1244
  assume "f x \<le> f y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1245
  show "x \<le> y" proof (rule ccontr)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1246
    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: 75624
diff changeset
  1247
    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: 75624
diff changeset
  1248
    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: 75624
diff changeset
  1249
  qed
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1250
qed
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1251
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1252
lemma strict_mono_less:
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1253
  assumes "strict_mono f"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1254
  shows "f x < f y \<longleftrightarrow> x < y"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1255
  using assms
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1256
    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: 75624
diff changeset
  1257
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1258
end
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1259
71472
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1260
lemma strict_mono_inv:
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1261
  fixes f :: "('a::linorder) \<Rightarrow> ('b::linorder)"
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1262
  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: 71464
diff changeset
  1263
  shows "strict_mono g"
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1264
proof
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1265
  fix x y :: 'b assume "x < y"
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1266
  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: 71464
diff changeset
  1267
  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: 71464
diff changeset
  1268
  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: 71464
diff changeset
  1269
qed
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1270
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1271
lemma strict_mono_on_imp_inj_on:
81563
c4c983c5c7f2 tuned: prefer explicit names of inferred types;
wenzelm
parents: 81182
diff changeset
  1272
  fixes f :: "'a::linorder \<Rightarrow> 'b::preorder"
c4c983c5c7f2 tuned: prefer explicit names of inferred types;
wenzelm
parents: 81182
diff changeset
  1273
  assumes "strict_mono_on A f"
71472
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1274
  shows "inj_on f A"
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1275
proof (rule inj_onI)
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1276
  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: 71464
diff changeset
  1277
  thus "x = y"
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1278
    by (cases x y rule: linorder_cases)
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1279
       (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: 71464
diff changeset
  1280
qed
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1281
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1282
lemma strict_mono_on_leD:
81563
c4c983c5c7f2 tuned: prefer explicit names of inferred types;
wenzelm
parents: 81182
diff changeset
  1283
  fixes f :: "'a::linorder \<Rightarrow> 'b::preorder"
c4c983c5c7f2 tuned: prefer explicit names of inferred types;
wenzelm
parents: 81182
diff changeset
  1284
  assumes "strict_mono_on A f" "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: 71464
diff changeset
  1285
  shows "f x \<le> f y"
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
  1286
proof (cases "x = y")
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
  1287
  case True
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
  1288
  then show ?thesis by simp
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
  1289
next
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
  1290
  case False
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
  1291
  with assms have "f x < f y"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
  1292
    using strict_mono_onD[OF assms(1)] by simp
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
  1293
  then show ?thesis by (rule less_imp_le)
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
  1294
qed
71472
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1295
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1296
lemma strict_mono_on_eqD:
81563
c4c983c5c7f2 tuned: prefer explicit names of inferred types;
wenzelm
parents: 81182
diff changeset
  1297
  fixes f :: "'c::linorder \<Rightarrow> 'd::preorder"
75607
3c544d64c218 changed argument order of mono_on and strict_mono_on to uniformize with monotone_on and other predicates
desharna
parents: 75583
diff changeset
  1298
  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: 71464
diff changeset
  1299
  shows "y = x"
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75624
diff changeset
  1300
  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: 71464
diff changeset
  1301
81563
c4c983c5c7f2 tuned: prefer explicit names of inferred types;
wenzelm
parents: 81182
diff changeset
  1302
lemma strict_mono_on_imp_mono_on: "strict_mono_on A f \<Longrightarrow> mono_on A f"
c4c983c5c7f2 tuned: prefer explicit names of inferred types;
wenzelm
parents: 81182
diff changeset
  1303
  for f :: "'a::linorder \<Rightarrow> 'b::preorder"
71472
c213d067e60f Moved a number of general-purpose lemmas into HOL
paulson <lp15@cam.ac.uk>
parents: 71464
diff changeset
  1304
  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: 71464
diff changeset
  1305
77934
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1306
lemma mono_imp_strict_mono:
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1307
  fixes f :: "'a::order \<Rightarrow> 'b::order"
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1308
  shows "\<lbrakk>mono_on S f; inj_on f S\<rbrakk> \<Longrightarrow> strict_mono_on S f"
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1309
  by (auto simp add: monotone_on_def order_less_le inj_on_eq_iff)
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1310
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1311
lemma strict_mono_iff_mono:
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1312
  fixes f :: "'a::linorder \<Rightarrow> 'b::order"
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1313
  shows "strict_mono_on S f \<longleftrightarrow> mono_on S f \<and> inj_on f S"
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1314
proof
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1315
  show "strict_mono_on S f \<Longrightarrow> mono_on S f \<and> inj_on f S"
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1316
    by (simp add: strict_mono_on_imp_inj_on strict_mono_on_imp_mono_on)
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1317
qed (auto intro: mono_imp_strict_mono)
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1318
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1319
lemma antimono_imp_strict_antimono:
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1320
  fixes f :: "'a::order \<Rightarrow> 'b::order"
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1321
  shows "\<lbrakk>antimono_on S f; inj_on f S\<rbrakk> \<Longrightarrow> strict_antimono_on S f"
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1322
  by (auto simp add: monotone_on_def order_less_le inj_on_eq_iff)
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1323
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1324
lemma strict_antimono_iff_antimono:
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1325
  fixes f :: "'a::linorder \<Rightarrow> 'b::order"
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1326
  shows "strict_antimono_on S f \<longleftrightarrow> antimono_on S f \<and> inj_on f S"
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1327
proof
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1328
  show "strict_antimono_on S f \<Longrightarrow> antimono_on S f \<and> inj_on f S"
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1329
    by (force simp add: monotone_on_def intro: linorder_inj_onI)
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1330
qed (auto intro: antimono_imp_strict_antimono)
01c88cf514fc A few new theorems
paulson <lp15@cam.ac.uk>
parents: 77138
diff changeset
  1331
76054
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1332
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: 75624
diff changeset
  1333
  unfolding mono_def le_fun_def by auto
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1334
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1335
lemma mono_add:
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1336
  fixes a :: "'a::ordered_ab_semigroup_add" 
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1337
  shows "mono ((+) a)"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1338
  by (simp add: add_left_mono monoI)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1339
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1340
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: 75624
diff changeset
  1341
  for f :: "'a \<Rightarrow> 'b::semilattice_inf"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1342
  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: 75624
diff changeset
  1343
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1344
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: 75624
diff changeset
  1345
  for f :: "'a \<Rightarrow> 'b::semilattice_sup"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1346
  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: 75624
diff changeset
  1347
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1348
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: 75624
diff changeset
  1349
  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: 75624
diff changeset
  1350
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1351
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: 75624
diff changeset
  1352
  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: 75624
diff changeset
  1353
76055
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1354
lemma (in linorder)
8d56461f85ec moved antimono to Fun and redefined it as an abbreviation
desharna
parents: 76054
diff changeset
  1355
  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: 76054
diff changeset
  1356
  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: 76054
diff changeset
  1357
  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: 76054
diff changeset
  1358
76054
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1359
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: 75624
diff changeset
  1360
  by (auto intro!: inj_onI dest: strict_mono_eq)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1361
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1362
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: 75624
diff changeset
  1363
  by (fact mono_inf)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1364
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1365
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: 75624
diff changeset
  1366
  by (fact mono_sup)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1367
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1368
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1369
subsubsection \<open>Least value operator\<close>
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1370
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1371
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: 75624
diff changeset
  1372
  for f :: "'a::order \<Rightarrow> 'b::order"
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1373
  \<comment> \<open>Courtesy of Stephan Merz\<close>
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1374
  apply clarify
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1375
  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: 75624
diff changeset
  1376
   apply fast
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1377
  apply (rule LeastI2_order)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1378
    apply (auto elim: monoD intro!: order_antisym)
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1379
  done
a4b47c684445 moved mono and strict_mono to Fun and redefined them as abbreviations
desharna
parents: 75624
diff changeset
  1380
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
  1381
61204
3e491e34a62e new lemmas and movement of lemmas into place
paulson
parents: 60929
diff changeset
  1382
subsection \<open>Setup\<close>
40969
fb2d3ccda5a7 moved bootstrap of type_lifting to Fun
haftmann
parents: 40968
diff changeset
  1383
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60303
diff changeset
  1384
subsubsection \<open>Proof tools\<close>
22845
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
  1385
63400
249fa34faba2 misc tuning and modernization;
wenzelm
parents: 63365
diff changeset
  1386
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
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
  1387
78099
4d9349989d94 more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents: 77934
diff changeset
  1388
simproc_setup fun_upd2 ("f(v := w, x := y)") = \<open>
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
  1389
  let
80665
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1390
    fun gen_fun_upd _ _ _ _ NONE = NONE
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1391
      | gen_fun_upd A B x y (SOME f) = SOME \<^Const>\<open>fun_upd A B for f x y\<close>
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1392
    fun find_double (t as \<^Const_>\<open>fun_upd A B for f x y\<close>) =
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
  1393
      let
80665
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1394
        fun find \<^Const_>\<open>fun_upd _ _ for g v w\<close> =
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1395
              if v aconv x then SOME g
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1396
              else gen_fun_upd A B v w (find g)
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
  1397
          | find t = NONE
80665
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1398
      in gen_fun_upd A B x y (find f) end
24017
363287741ebe simproc_setup fun_upd2;
wenzelm
parents: 23878
diff changeset
  1399
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69502
diff changeset
  1400
    val ss = simpset_of \<^context>
80665
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1401
  in
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1402
    fn _ => fn ctxt => fn ct =>
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1403
      let val t = Thm.term_of ct in
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1404
        find_double t |> Option.map (fn rhs =>
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1405
          Goal.prove ctxt [] [] (Logic.mk_equals (t, rhs))
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1406
            (fn _ =>
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1407
              resolve_tac ctxt [eq_reflection] 1 THEN
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1408
              resolve_tac ctxt @{thms ext} 1 THEN
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1409
              simp_tac (put_simpset ss ctxt) 1))
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
  1410
      end
80665
294f3734411c tuned: more antiquotations;
wenzelm
parents: 79597
diff changeset
  1411
  end
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60303
diff changeset
  1412
\<close>
22845
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
  1413
5f9138bcb3d7 changed code generator invocation syntax
haftmann
parents: 22744
diff changeset
  1414
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60303
diff changeset
  1415
subsubsection \<open>Functorial structure of types\<close>
40969
fb2d3ccda5a7 moved bootstrap of type_lifting to Fun
haftmann
parents: 40968
diff changeset
  1416
69605
a96320074298 isabelle update -u path_cartouches;
wenzelm
parents: 69593
diff changeset
  1417
ML_file \<open>Tools/functor.ML\<close>
40969
fb2d3ccda5a7 moved bootstrap of type_lifting to Fun
haftmann
parents: 40968
diff changeset
  1418
55467
a5c9002bc54d renamed 'enriched_type' to more informative 'functor' (following the renaming of enriched type constructors to bounded natural functors)
blanchet
parents: 55414
diff changeset
  1419
functor map_fun: map_fun
47488
be6dd389639d centralized enriched_type declaration, thanks to in-situ available Isar commands
haftmann
parents: 46950
diff changeset
  1420
  by (simp_all add: fun_eq_iff)
be6dd389639d centralized enriched_type declaration, thanks to in-situ available Isar commands
haftmann
parents: 46950
diff changeset
  1421
55467
a5c9002bc54d renamed 'enriched_type' to more informative 'functor' (following the renaming of enriched type constructors to bounded natural functors)
blanchet
parents: 55414
diff changeset
  1422
functor vimage
49739
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
  1423
  by (simp_all add: fun_eq_iff vimage_comp)
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
  1424
63322
bc1f17d45e91 misc tuning and modernization;
wenzelm
parents: 63072
diff changeset
  1425
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60303
diff changeset
  1426
text \<open>Legacy theorem names\<close>
49739
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
  1427
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
  1428
lemmas o_def = comp_def
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
  1429
lemmas o_apply = comp_apply
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
  1430
lemmas o_assoc = comp_assoc [symmetric]
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
  1431
lemmas id_o = id_comp
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
  1432
lemmas o_id = comp_id
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
  1433
lemmas o_eq_dest = comp_eq_dest
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
  1434
lemmas o_eq_elim = comp_eq_elim
55066
blanchet
parents: 55019
diff changeset
  1435
lemmas o_eq_dest_lhs = comp_eq_dest_lhs
blanchet
parents: 55019
diff changeset
  1436
lemmas o_eq_id_dest = comp_eq_id_dest
47488
be6dd389639d centralized enriched_type declaration, thanks to in-situ available Isar commands
haftmann
parents: 46950
diff changeset
  1437
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
  1438
end