src/HOL/Map.thy
author wenzelm
Mon, 03 Feb 2025 20:22:51 +0100
changeset 82073 879be333e939
parent 81595 ed264056f5dc
permissions -rw-r--r--
merged
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     1
(*  Title:      HOL/Map.thy
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     2
    Author:     Tobias Nipkow, based on a theory by David von Oheimb
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
     3
    Copyright   1997-2003 TU Muenchen
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     4
60838
2d7eea27ceec more symbols;
wenzelm
parents: 60758
diff changeset
     5
The datatype of "maps"; strongly resembles maps in VDM.
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     6
*)
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     7
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
     8
section \<open>Maps\<close>
13914
nipkow
parents: 13912
diff changeset
     9
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15110
diff changeset
    10
theory Map
67780
7655e6369c9f more abbrevs -- this makes "(=" ambiguous and thus simplifies input of "(=)" (within the context of Main HOL);
wenzelm
parents: 67091
diff changeset
    11
  imports List
7655e6369c9f more abbrevs -- this makes "(=" ambiguous and thus simplifies input of "(=)" (within the context of Main HOL);
wenzelm
parents: 67091
diff changeset
    12
  abbrevs "(=" = "\<subseteq>\<^sub>m"
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15110
diff changeset
    13
begin
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    14
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80760
diff changeset
    15
type_synonym ('a, 'b) "map" = "'a \<Rightarrow> 'b option" (infixr \<open>\<rightharpoonup>\<close> 0)
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19378
diff changeset
    16
77356
1f5428d66591 Map.empty no longer output abbreviation; %_. None is shorter and requires no explanation
nipkow
parents: 77307
diff changeset
    17
abbreviation (input)
60838
2d7eea27ceec more symbols;
wenzelm
parents: 60758
diff changeset
    18
  empty :: "'a \<rightharpoonup> 'b" where
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
    19
  "empty \<equiv> \<lambda>x. None"
19378
6cc9ac729eb5 Made "empty" an abbreviation.
nipkow
parents: 19323
diff changeset
    20
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19378
diff changeset
    21
definition
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80760
diff changeset
    22
  map_comp :: "('b \<rightharpoonup> 'c) \<Rightarrow> ('a \<rightharpoonup> 'b) \<Rightarrow> ('a \<rightharpoonup> 'c)"  (infixl \<open>\<circ>\<^sub>m\<close> 55) where
61069
aefe89038dd2 prefer symbols;
wenzelm
parents: 61032
diff changeset
    23
  "f \<circ>\<^sub>m g = (\<lambda>k. case g k of None \<Rightarrow> None | Some v \<Rightarrow> f v)"
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19378
diff changeset
    24
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
    25
definition
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80760
diff changeset
    26
  map_add :: "('a \<rightharpoonup> 'b) \<Rightarrow> ('a \<rightharpoonup> 'b) \<Rightarrow> ('a \<rightharpoonup> 'b)"  (infixl \<open>++\<close> 100) where
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
    27
  "m1 ++ m2 = (\<lambda>x. case m2 x of None \<Rightarrow> m1 x | Some y \<Rightarrow> Some y)"
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
    28
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    29
definition
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80760
diff changeset
    30
  restrict_map :: "('a \<rightharpoonup> 'b) \<Rightarrow> 'a set \<Rightarrow> ('a \<rightharpoonup> 'b)"  (infixl \<open>|`\<close>  110) where
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
    31
  "m|`A = (\<lambda>x. if x \<in> A then m x else None)"
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
    32
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 20800
diff changeset
    33
notation (latex output)
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80760
diff changeset
    34
  restrict_map  (\<open>_\<restriction>\<^bsub>_\<^esub>\<close> [111,110] 110)
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19378
diff changeset
    35
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
    36
definition
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
    37
  dom :: "('a \<rightharpoonup> 'b) \<Rightarrow> 'a set" where
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
    38
  "dom m = {a. m a \<noteq> None}"
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
    39
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    40
definition
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
    41
  ran :: "('a \<rightharpoonup> 'b) \<Rightarrow> 'b set" where
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
    42
  "ran m = {b. \<exists>a. m a = Some b}"
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
    43
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    44
definition
73832
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
    45
  graph :: "('a \<rightharpoonup> 'b) \<Rightarrow> ('a \<times> 'b) set" where
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
    46
  "graph m = {(a, b) | a b. m a = Some b}"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
    47
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
    48
definition
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80760
diff changeset
    49
  map_le :: "('a \<rightharpoonup> 'b) \<Rightarrow> ('a \<rightharpoonup> 'b) \<Rightarrow> bool"  (infix \<open>\<subseteq>\<^sub>m\<close> 50) where
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
    50
  "(m\<^sub>1 \<subseteq>\<^sub>m m\<^sub>2) \<longleftrightarrow> (\<forall>a \<in> dom m\<^sub>1. m\<^sub>1 a = m\<^sub>2 a)"
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
    51
77671
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    52
text \<open>Function update syntax \<open>f(x := y, \<dots>)\<close> is extended with \<open>x \<mapsto> y\<close>, which is short for
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    53
\<open>x := Some y\<close>. \<open>:=\<close> and \<open>\<mapsto>\<close> can be mixed freely.
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    54
The syntax \<open>[x \<mapsto> y, \<dots>]\<close> is short for \<open>Map.empty(x \<mapsto> y, \<dots>)\<close>
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    55
but must only contain \<open>\<mapsto>\<close>, not \<open>:=\<close>, because \<open>[x:=y]\<close> clashes with the list update syntax \<open>xs[i:=x]\<close>.\<close>
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    56
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    57
nonterminal maplet and maplets
14180
d2e550609c40 Introduced new syntax for maplets x |-> y
nipkow
parents: 14134
diff changeset
    58
81595
ed264056f5dc more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents: 81125
diff changeset
    59
open_bundle maplet_syntax
ed264056f5dc more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents: 81125
diff changeset
    60
begin
ed264056f5dc more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents: 81125
diff changeset
    61
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    62
syntax
81125
ec121999a9cb more inner-syntax markup;
wenzelm
parents: 80934
diff changeset
    63
  "_maplet"  :: "['a, 'a] \<Rightarrow> maplet"  (\<open>(\<open>open_block notation=\<open>mixfix maplet\<close>\<close>_ /\<mapsto>/ _)\<close>)
ec121999a9cb more inner-syntax markup;
wenzelm
parents: 80934
diff changeset
    64
  ""         :: "maplet \<Rightarrow> updbind"  (\<open>_\<close>)
ec121999a9cb more inner-syntax markup;
wenzelm
parents: 80934
diff changeset
    65
  ""         :: "maplet \<Rightarrow> maplets"  (\<open>_\<close>)
ec121999a9cb more inner-syntax markup;
wenzelm
parents: 80934
diff changeset
    66
  "_Maplets" :: "[maplet, maplets] \<Rightarrow> maplets"  (\<open>_,/ _\<close>)
ec121999a9cb more inner-syntax markup;
wenzelm
parents: 80934
diff changeset
    67
  "_Map"     :: "maplets \<Rightarrow> 'a \<rightharpoonup> 'b"  (\<open>(\<open>indent=1 notation=\<open>mixfix map\<close>\<close>[_])\<close>)
77671
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    68
(* Syntax forbids \<open>[\<dots>, x := y, \<dots>]\<close> by introducing \<open>maplets\<close> in addition to \<open>updbinds\<close> *)
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    69
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
    70
syntax (ASCII)
81125
ec121999a9cb more inner-syntax markup;
wenzelm
parents: 80934
diff changeset
    71
  "_maplet"  :: "['a, 'a] \<Rightarrow> maplet"  (\<open>(\<open>open_block notation=\<open>mixfix maplet\<close>\<close>_ /|->/ _)\<close>)
14180
d2e550609c40 Introduced new syntax for maplets x |-> y
nipkow
parents: 14134
diff changeset
    72
80760
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 77671
diff changeset
    73
syntax_consts
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 77671
diff changeset
    74
  "_maplet" "_Maplets" "_Map" \<rightleftharpoons> fun_upd
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 77671
diff changeset
    75
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    76
translations
77671
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    77
  "_Update f (_maplet x y)" \<rightleftharpoons> "f(x := CONST Some y)"
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    78
  "_Maplets m ms" \<rightharpoonup> "_updbinds m ms"
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    79
  "_Map ms" \<rightharpoonup> "_Update (CONST empty) ms"
14180
d2e550609c40 Introduced new syntax for maplets x |-> y
nipkow
parents: 14134
diff changeset
    80
77671
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    81
(* Printing must create \<open>_Map\<close> only for \<open>_maplet\<close> *)
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    82
  "_Map (_maplet x y)"  \<leftharpoondown> "_Update (\<lambda>u. CONST None) (_maplet x y)"
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    83
  "_Map (_updbinds m (_maplet x y))"  \<leftharpoondown> "_Update (_Map m) (_maplet x y)"
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    84
81595
ed264056f5dc more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents: 81125
diff changeset
    85
end
ed264056f5dc more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents: 81125
diff changeset
    86
80760
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 77671
diff changeset
    87
77671
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    88
text \<open>Updating with lists:\<close>
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    89
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    90
primrec map_of :: "('a \<times> 'b) list \<Rightarrow> 'a \<rightharpoonup> 'b" where
77307
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
    91
  "map_of [] = empty"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
    92
| "map_of (p # ps) = (map_of ps)(fst p \<mapsto> snd p)"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
    93
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
    94
lemma map_of_Cons_code [code]:
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
    95
  "map_of [] k = None"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
    96
  "map_of ((l, v) # ps) k = (if l = k then Some v else map_of ps k)"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
    97
  by simp_all
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
    98
77671
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
    99
definition map_upds :: "('a \<rightharpoonup> 'b) \<Rightarrow> 'a list \<Rightarrow> 'b list \<Rightarrow> 'a \<rightharpoonup> 'b" where
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
   100
"map_upds m xs ys = m ++ map_of (rev (zip xs ys))"
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
   101
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
   102
text \<open>There is also the more specialized update syntax \<open>xs [\<mapsto>] ys\<close> for lists \<open>xs\<close> and \<open>ys\<close>.\<close>
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
   103
81595
ed264056f5dc more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents: 81125
diff changeset
   104
open_bundle list_maplet_syntax
ed264056f5dc more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents: 81125
diff changeset
   105
begin
ed264056f5dc more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents: 81125
diff changeset
   106
77671
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
   107
syntax
81125
ec121999a9cb more inner-syntax markup;
wenzelm
parents: 80934
diff changeset
   108
  "_maplets"  :: "['a, 'a] \<Rightarrow> maplet"  (\<open>(\<open>open_block notation=\<open>mixfix maplet\<close>\<close>_ /[\<mapsto>]/ _)\<close>)
77671
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
   109
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
   110
syntax (ASCII)
81125
ec121999a9cb more inner-syntax markup;
wenzelm
parents: 80934
diff changeset
   111
  "_maplets" :: "['a, 'a] \<Rightarrow> maplet"  (\<open>(\<open>open_block notation=\<open>mixfix maplet\<close>\<close>_ /[|->]/ _)\<close>)
77671
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
   112
80760
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 77671
diff changeset
   113
syntax_consts
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 77671
diff changeset
   114
  "_maplets" \<rightleftharpoons> map_upds
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 77671
diff changeset
   115
77671
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
   116
translations
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
   117
  "_Update m (_maplets xs ys)" \<rightleftharpoons> "CONST map_upds m xs ys"
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
   118
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
   119
  "_Map (_maplets xs ys)"  \<leftharpoondown> "_Update (\<lambda>u. CONST None) (_maplets xs ys)"
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
   120
  "_Map (_updbinds m (_maplets xs ys))"  \<leftharpoondown> "_Update (_Map m) (_maplets xs ys)"
8a6a79ed5a83 unified function update and map update syntaxes
nipkow
parents: 77644
diff changeset
   121
81595
ed264056f5dc more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents: 81125
diff changeset
   122
end
ed264056f5dc more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents: 81125
diff changeset
   123
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   124
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   125
subsection \<open>@{term [source] empty}\<close>
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   126
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   127
lemma empty_upd_none [simp]: "empty(x := None) = empty"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   128
  by (rule ext) simp
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   129
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   130
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   131
subsection \<open>@{term [source] map_upd}\<close>
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   132
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   133
lemma map_upd_triv: "t k = Some x \<Longrightarrow> t(k\<mapsto>x) = t"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   134
  by (rule ext) simp
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   135
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   136
lemma map_upd_nonempty [simp]: "t(k\<mapsto>x) \<noteq> empty"
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   137
proof
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   138
  assume "t(k \<mapsto> x) = empty"
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   139
  then have "(t(k \<mapsto> x)) k = None" by simp
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   140
  then show False by simp
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   141
qed
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   142
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   143
lemma map_upd_eqD1:
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   144
  assumes "m(a\<mapsto>x) = n(a\<mapsto>y)"
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   145
  shows "x = y"
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   146
proof -
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 41229
diff changeset
   147
  from assms have "(m(a\<mapsto>x)) a = (n(a\<mapsto>y)) a" by simp
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   148
  then show ?thesis by simp
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   149
qed
14100
804be4c4b642 added map_image, restrict_map, some thms
oheimb
parents: 14033
diff changeset
   150
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   151
lemma map_upd_Some_unfold:
60838
2d7eea27ceec more symbols;
wenzelm
parents: 60758
diff changeset
   152
  "((m(a\<mapsto>b)) x = Some y) = (x = a \<and> b = y \<or> x \<noteq> a \<and> m x = Some y)"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   153
  by auto
14100
804be4c4b642 added map_image, restrict_map, some thms
oheimb
parents: 14033
diff changeset
   154
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   155
lemma image_map_upd [simp]: "x \<notin> A \<Longrightarrow> m(x \<mapsto> y) ` A = m ` A"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   156
  by auto
15303
eedbb8d22ca2 added lemmas
nipkow
parents: 15251
diff changeset
   157
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   158
lemma finite_range_updI:
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   159
  assumes "finite (range f)" shows "finite (range (f(a\<mapsto>b)))"
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   160
proof -
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   161
  have "range (f(a\<mapsto>b)) \<subseteq> insert (Some b) (range f)"
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   162
    by auto
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   163
  then show ?thesis
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   164
    by (rule finite_subset) (use assms in auto)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   165
qed
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   166
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   167
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   168
subsection \<open>@{term [source] map_of}\<close>
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   169
68454
f35aa0e7255d moved lemmas from AFP
nipkow
parents: 68450
diff changeset
   170
lemma map_of_eq_empty_iff [simp]:
f35aa0e7255d moved lemmas from AFP
nipkow
parents: 68450
diff changeset
   171
  "map_of xys = empty \<longleftrightarrow> xys = []"
f35aa0e7255d moved lemmas from AFP
nipkow
parents: 68450
diff changeset
   172
proof
f35aa0e7255d moved lemmas from AFP
nipkow
parents: 68450
diff changeset
   173
  show "map_of xys = empty \<Longrightarrow> xys = []"
f35aa0e7255d moved lemmas from AFP
nipkow
parents: 68450
diff changeset
   174
    by (induction xys) simp_all
f35aa0e7255d moved lemmas from AFP
nipkow
parents: 68450
diff changeset
   175
qed simp
f35aa0e7255d moved lemmas from AFP
nipkow
parents: 68450
diff changeset
   176
68460
b047339bd11c added simp rules
nipkow
parents: 68454
diff changeset
   177
lemma empty_eq_map_of_iff [simp]:
b047339bd11c added simp rules
nipkow
parents: 68454
diff changeset
   178
  "empty = map_of xys \<longleftrightarrow> xys = []"
b047339bd11c added simp rules
nipkow
parents: 68454
diff changeset
   179
by(subst eq_commute) simp
b047339bd11c added simp rules
nipkow
parents: 68454
diff changeset
   180
77307
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   181
lemma map_of_eq_None_iff:
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   182
  "(map_of xys x = None) = (x \<notin> fst ` (set xys))"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   183
by (induct xys) simp_all
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   184
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   185
lemma map_of_eq_Some_iff [simp]:
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   186
  "distinct(map fst xys) \<Longrightarrow> (map_of xys x = Some y) = ((x,y) \<in> set xys)"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   187
proof (induct xys)
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   188
  case (Cons xy xys)
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   189
  then show ?case
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   190
    by (cases xy) (auto simp flip: map_of_eq_None_iff)
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   191
qed auto
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   192
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   193
lemma Some_eq_map_of_iff [simp]:
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   194
  "distinct(map fst xys) \<Longrightarrow> (Some y = map_of xys x) = ((x,y) \<in> set xys)"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   195
by (auto simp del: map_of_eq_Some_iff simp: map_of_eq_Some_iff [symmetric])
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   196
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   197
lemma map_of_is_SomeI [simp]: 
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   198
  "\<lbrakk>distinct(map fst xys); (x,y) \<in> set xys\<rbrakk> \<Longrightarrow> map_of xys x = Some y"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   199
  by simp
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   200
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   201
lemma map_of_zip_is_None [simp]:
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   202
  "length xs = length ys \<Longrightarrow> (map_of (zip xs ys) x = None) = (x \<notin> set xs)"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   203
by (induct rule: list_induct2) simp_all
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   204
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   205
lemma map_of_zip_is_Some:
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   206
  assumes "length xs = length ys"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   207
  shows "x \<in> set xs \<longleftrightarrow> (\<exists>y. map_of (zip xs ys) x = Some y)"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   208
using assms by (induct rule: list_induct2) simp_all
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   209
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   210
lemma map_of_zip_upd:
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   211
  fixes x :: 'a and xs :: "'a list" and ys zs :: "'b list"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   212
  assumes "length ys = length xs"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   213
    and "length zs = length xs"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   214
    and "x \<notin> set xs"
77644
48b4e0cd94cd bring priority in line with ordinary function update notation
nipkow
parents: 77361
diff changeset
   215
    and "(map_of (zip xs ys))(x \<mapsto> y) = (map_of (zip xs zs))(x \<mapsto> z)"
77307
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   216
  shows "map_of (zip xs ys) = map_of (zip xs zs)"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   217
proof
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   218
  fix x' :: 'a
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   219
  show "map_of (zip xs ys) x' = map_of (zip xs zs) x'"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   220
  proof (cases "x = x'")
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   221
    case True
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   222
    from assms True map_of_zip_is_None [of xs ys x']
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   223
      have "map_of (zip xs ys) x' = None" by simp
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   224
    moreover from assms True map_of_zip_is_None [of xs zs x']
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   225
      have "map_of (zip xs zs) x' = None" by simp
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   226
    ultimately show ?thesis by simp
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   227
  next
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   228
    case False from assms
77644
48b4e0cd94cd bring priority in line with ordinary function update notation
nipkow
parents: 77361
diff changeset
   229
      have "((map_of (zip xs ys))(x \<mapsto> y)) x' = ((map_of (zip xs zs))(x \<mapsto> z)) x'" by auto
77307
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   230
    with False show ?thesis by simp
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   231
  qed
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   232
qed
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   233
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   234
lemma map_of_zip_inject:
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   235
  assumes "length ys = length xs"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   236
    and "length zs = length xs"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   237
    and dist: "distinct xs"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   238
    and map_of: "map_of (zip xs ys) = map_of (zip xs zs)"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   239
  shows "ys = zs"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   240
  using assms(1) assms(2)[symmetric]
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   241
  using dist map_of
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   242
proof (induct ys xs zs rule: list_induct3)
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   243
  case Nil show ?case by simp
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   244
next
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   245
  case (Cons y ys x xs z zs)
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   246
  from \<open>map_of (zip (x#xs) (y#ys)) = map_of (zip (x#xs) (z#zs))\<close>
77644
48b4e0cd94cd bring priority in line with ordinary function update notation
nipkow
parents: 77361
diff changeset
   247
    have map_of: "(map_of (zip xs ys))(x \<mapsto> y) = (map_of (zip xs zs))(x \<mapsto> z)" by simp
77307
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   248
  from Cons have "length ys = length xs" and "length zs = length xs"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   249
    and "x \<notin> set xs" by simp_all
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   250
  then have "map_of (zip xs ys) = map_of (zip xs zs)" using map_of by (rule map_of_zip_upd)
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   251
  with Cons.hyps \<open>distinct (x # xs)\<close> have "ys = zs" by simp
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   252
  moreover from map_of have "y = z" by (rule map_upd_eqD1)
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   253
  ultimately show ?case by simp
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   254
qed
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   255
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   256
lemma map_of_zip_nth:
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   257
  assumes "length xs = length ys"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   258
  assumes "distinct xs"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   259
  assumes "i < length ys"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   260
  shows "map_of (zip xs ys) (xs ! i) = Some (ys ! i)"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   261
using assms proof (induct arbitrary: i rule: list_induct2)
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   262
  case Nil
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   263
  then show ?case by simp
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   264
next
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   265
  case (Cons x xs y ys)
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   266
  then show ?case
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   267
    using less_Suc_eq_0_disj by auto
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   268
qed
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   269
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   270
lemma map_of_zip_map:
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   271
  "map_of (zip xs (map f xs)) = (\<lambda>x. if x \<in> set xs then Some (f x) else None)"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   272
  by (induct xs) (simp_all add: fun_eq_iff)
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   273
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 14739
diff changeset
   274
lemma finite_range_map_of: "finite (range (map_of xys))"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   275
proof (induct xys)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   276
  case (Cons a xys)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   277
  then show ?case
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   278
    using finite_range_updI by fastforce
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   279
qed auto
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 14739
diff changeset
   280
77307
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   281
lemma map_of_SomeD: "map_of xs k = Some y \<Longrightarrow> (k, y) \<in> set xs"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   282
  by (induct xs) (auto split: if_splits)
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   283
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   284
lemma map_of_mapk_SomeI:
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   285
  "inj f \<Longrightarrow> map_of t k = Some x \<Longrightarrow>
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   286
   map_of (map (case_prod (\<lambda>k. Pair (f k))) t) (f k) = Some x"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   287
by (induct t) (auto simp: inj_eq)
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   288
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   289
lemma weak_map_of_SomeI: "(k, x) \<in> set l \<Longrightarrow> \<exists>x. map_of l k = Some x"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   290
by (induct l) auto
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   291
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   292
lemma map_of_filter_in:
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   293
  "map_of xs k = Some z \<Longrightarrow> P k z \<Longrightarrow> map_of (filter (case_prod P) xs) k = Some z"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   294
by (induct xs) auto
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   295
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   296
lemma map_of_map:
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   297
  "map_of (map (\<lambda>(k, v). (k, f v)) xs) = map_option f \<circ> map_of xs"
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   298
  by (induct xs) (auto simp: fun_eq_iff)
f02c8a45c4c1 Backed out changeset bafdc56654cf
nipkow
parents: 77265
diff changeset
   299
55466
786edc984c98 merged 'Option.map' and 'Option.map_option'
blanchet
parents: 53820
diff changeset
   300
lemma dom_map_option:
786edc984c98 merged 'Option.map' and 'Option.map_option'
blanchet
parents: 53820
diff changeset
   301
  "dom (\<lambda>k. map_option (f k) (m k)) = dom m"
35607
896f01fe825b added dom_option_map, map_of_map_keys
haftmann
parents: 35565
diff changeset
   302
  by (simp add: dom_def)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   303
56545
8f1e7596deb7 more operations and lemmas
haftmann
parents: 55466
diff changeset
   304
lemma dom_map_option_comp [simp]:
8f1e7596deb7 more operations and lemmas
haftmann
parents: 55466
diff changeset
   305
  "dom (map_option g \<circ> m) = dom m"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 55466
diff changeset
   306
  using dom_map_option [of "\<lambda>_. g" m] by (simp add: comp_def)
8f1e7596deb7 more operations and lemmas
haftmann
parents: 55466
diff changeset
   307
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   308
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 68460
diff changeset
   309
subsection \<open>\<^const>\<open>map_option\<close> related\<close>
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   310
67091
1393c2340eec more symbols;
wenzelm
parents: 67051
diff changeset
   311
lemma map_option_o_empty [simp]: "map_option f \<circ> empty = empty"
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   312
by (rule ext) simp
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   313
55466
786edc984c98 merged 'Option.map' and 'Option.map_option'
blanchet
parents: 53820
diff changeset
   314
lemma map_option_o_map_upd [simp]:
67091
1393c2340eec more symbols;
wenzelm
parents: 67051
diff changeset
   315
  "map_option f \<circ> m(a\<mapsto>b) = (map_option f \<circ> m)(a\<mapsto>f b)"
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   316
by (rule ext) simp
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   317
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   318
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   319
subsection \<open>@{term [source] map_comp} related\<close>
17391
c6338ed6caf8 removed syntax fun_map_comp;
schirmer
parents: 15695
diff changeset
   320
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   321
lemma map_comp_empty [simp]:
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   322
  "m \<circ>\<^sub>m empty = empty"
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   323
  "empty \<circ>\<^sub>m m = empty"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   324
by (auto simp: map_comp_def split: option.splits)
17391
c6338ed6caf8 removed syntax fun_map_comp;
schirmer
parents: 15695
diff changeset
   325
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   326
lemma map_comp_simps [simp]:
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   327
  "m2 k = None \<Longrightarrow> (m1 \<circ>\<^sub>m m2) k = None"
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   328
  "m2 k = Some k' \<Longrightarrow> (m1 \<circ>\<^sub>m m2) k = m1 k'"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   329
by (auto simp: map_comp_def)
17391
c6338ed6caf8 removed syntax fun_map_comp;
schirmer
parents: 15695
diff changeset
   330
c6338ed6caf8 removed syntax fun_map_comp;
schirmer
parents: 15695
diff changeset
   331
lemma map_comp_Some_iff:
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   332
  "((m1 \<circ>\<^sub>m m2) k = Some v) = (\<exists>k'. m2 k = Some k' \<and> m1 k' = Some v)"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   333
by (auto simp: map_comp_def split: option.splits)
17391
c6338ed6caf8 removed syntax fun_map_comp;
schirmer
parents: 15695
diff changeset
   334
c6338ed6caf8 removed syntax fun_map_comp;
schirmer
parents: 15695
diff changeset
   335
lemma map_comp_None_iff:
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   336
  "((m1 \<circ>\<^sub>m m2) k = None) = (m2 k = None \<or> (\<exists>k'. m2 k = Some k' \<and> m1 k' = None)) "
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   337
by (auto simp: map_comp_def split: option.splits)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   338
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   339
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61069
diff changeset
   340
subsection \<open>\<open>++\<close>\<close>
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   341
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13937
diff changeset
   342
lemma map_add_empty[simp]: "m ++ empty = m"
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   343
by(simp add: map_add_def)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   344
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13937
diff changeset
   345
lemma empty_map_add[simp]: "empty ++ m = m"
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   346
by (rule ext) (simp add: map_add_def split: option.split)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   347
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13937
diff changeset
   348
lemma map_add_assoc[simp]: "m1 ++ (m2 ++ m3) = (m1 ++ m2) ++ m3"
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   349
by (rule ext) (simp add: map_add_def split: option.split)
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   350
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   351
lemma map_add_Some_iff:
67091
1393c2340eec more symbols;
wenzelm
parents: 67051
diff changeset
   352
  "((m ++ n) k = Some x) = (n k = Some x \<or> n k = None \<and> m k = Some x)"
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   353
by (simp add: map_add_def split: option.split)
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13937
diff changeset
   354
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   355
lemma map_add_SomeD [dest!]:
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   356
  "(m ++ n) k = Some x \<Longrightarrow> n k = Some x \<or> n k = None \<and> m k = Some x"
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   357
by (rule map_add_Some_iff [THEN iffD1])
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   358
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   359
lemma map_add_find_right [simp]: "n k = Some xx \<Longrightarrow> (m ++ n) k = Some xx"
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   360
by (subst map_add_Some_iff) fast
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   361
67091
1393c2340eec more symbols;
wenzelm
parents: 67051
diff changeset
   362
lemma map_add_None [iff]: "((m ++ n) k = None) = (n k = None \<and> m k = None)"
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   363
by (simp add: map_add_def split: option.split)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   364
60838
2d7eea27ceec more symbols;
wenzelm
parents: 60758
diff changeset
   365
lemma map_add_upd[simp]: "f ++ g(x\<mapsto>y) = (f ++ g)(x\<mapsto>y)"
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   366
by (rule ext) (simp add: map_add_def)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   367
14186
6d2a494e33be Added a number of thms about map restriction.
nipkow
parents: 14180
diff changeset
   368
lemma map_add_upds[simp]: "m1 ++ (m2(xs[\<mapsto>]ys)) = (m1++m2)(xs[\<mapsto>]ys)"
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   369
by (simp add: map_upds_def)
14186
6d2a494e33be Added a number of thms about map restriction.
nipkow
parents: 14180
diff changeset
   370
32236
0203e1006f1b some lemmas about maps (contributed by Peter Lammich)
krauss
parents: 31380
diff changeset
   371
lemma map_add_upd_left: "m\<notin>dom e2 \<Longrightarrow> e1(m \<mapsto> u1) ++ e2 = (e1 ++ e2)(m \<mapsto> u1)"
0203e1006f1b some lemmas about maps (contributed by Peter Lammich)
krauss
parents: 31380
diff changeset
   372
by (rule ext) (auto simp: map_add_def dom_def split: option.split)
0203e1006f1b some lemmas about maps (contributed by Peter Lammich)
krauss
parents: 31380
diff changeset
   373
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   374
lemma map_of_append[simp]: "map_of (xs @ ys) = map_of ys ++ map_of xs"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   375
  unfolding map_add_def
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   376
proof (induct xs)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   377
  case (Cons a xs)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   378
  then show ?case
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   379
    by (force split: option.split)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   380
qed auto
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   381
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13937
diff changeset
   382
lemma finite_range_map_of_map_add:
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   383
  "finite (range f) \<Longrightarrow> finite (range (f ++ map_of l))"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   384
proof (induct l)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   385
case (Cons a l)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   386
  then show ?case
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   387
    by (metis finite_range_updI map_add_upd map_of.simps(2))
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   388
qed auto
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   389
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   390
lemma inj_on_map_add_dom [iff]:
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   391
  "inj_on (m ++ m') (dom m') = inj_on m' (dom m')"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   392
  by (fastforce simp: map_add_def dom_def inj_on_def split: option.splits)
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   393
34979
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   394
lemma map_upds_fold_map_upd:
35552
364cb98a3e4e more uniform naming conventions
haftmann
parents: 35159
diff changeset
   395
  "m(ks[\<mapsto>]vs) = foldl (\<lambda>m (k, v). m(k \<mapsto> v)) m (zip ks vs)"
34979
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   396
unfolding map_upds_def proof (rule sym, rule zip_obtain_same_length)
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   397
  fix ks :: "'a list" and vs :: "'b list"
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   398
  assume "length ks = length vs"
35552
364cb98a3e4e more uniform naming conventions
haftmann
parents: 35159
diff changeset
   399
  then show "foldl (\<lambda>m (k, v). m(k\<mapsto>v)) m (zip ks vs) = m ++ map_of (rev (zip ks vs))"
364cb98a3e4e more uniform naming conventions
haftmann
parents: 35159
diff changeset
   400
    by(induct arbitrary: m rule: list_induct2) simp_all
34979
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   401
qed
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   402
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   403
lemma map_add_map_of_foldr:
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   404
  "m ++ map_of ps = foldr (\<lambda>(k, v) m. m(k \<mapsto> v)) ps m"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   405
  by (induct ps) (auto simp: fun_eq_iff map_add_def)
34979
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   406
15304
3514ca74ac54 Added more lemmas
nipkow
parents: 15303
diff changeset
   407
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   408
subsection \<open>@{term [source] restrict_map}\<close>
14100
804be4c4b642 added map_image, restrict_map, some thms
oheimb
parents: 14033
diff changeset
   409
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   410
lemma restrict_map_to_empty [simp]: "m|`{} = empty"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   411
  by (simp add: restrict_map_def)
14186
6d2a494e33be Added a number of thms about map restriction.
nipkow
parents: 14180
diff changeset
   412
31380
f25536c0bb80 added/moved lemmas by Andreas Lochbihler
haftmann
parents: 31080
diff changeset
   413
lemma restrict_map_insert: "f |` (insert a A) = (f |` A)(a := f a)"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   414
  by (auto simp: restrict_map_def)
31380
f25536c0bb80 added/moved lemmas by Andreas Lochbihler
haftmann
parents: 31080
diff changeset
   415
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   416
lemma restrict_map_empty [simp]: "empty|`D = empty"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   417
  by (simp add: restrict_map_def)
14186
6d2a494e33be Added a number of thms about map restriction.
nipkow
parents: 14180
diff changeset
   418
15693
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15691
diff changeset
   419
lemma restrict_in [simp]: "x \<in> A \<Longrightarrow> (m|`A) x = m x"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   420
  by (simp add: restrict_map_def)
14100
804be4c4b642 added map_image, restrict_map, some thms
oheimb
parents: 14033
diff changeset
   421
15693
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15691
diff changeset
   422
lemma restrict_out [simp]: "x \<notin> A \<Longrightarrow> (m|`A) x = None"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   423
  by (simp add: restrict_map_def)
14100
804be4c4b642 added map_image, restrict_map, some thms
oheimb
parents: 14033
diff changeset
   424
15693
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15691
diff changeset
   425
lemma ran_restrictD: "y \<in> ran (m|`A) \<Longrightarrow> \<exists>x\<in>A. m x = Some y"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   426
  by (auto simp: restrict_map_def ran_def split: if_split_asm)
14100
804be4c4b642 added map_image, restrict_map, some thms
oheimb
parents: 14033
diff changeset
   427
15693
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15691
diff changeset
   428
lemma dom_restrict [simp]: "dom (m|`A) = dom m \<inter> A"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   429
  by (auto simp: restrict_map_def dom_def split: if_split_asm)
14100
804be4c4b642 added map_image, restrict_map, some thms
oheimb
parents: 14033
diff changeset
   430
15693
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15691
diff changeset
   431
lemma restrict_upd_same [simp]: "m(x\<mapsto>y)|`(-{x}) = m|`(-{x})"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   432
  by (rule ext) (auto simp: restrict_map_def)
14100
804be4c4b642 added map_image, restrict_map, some thms
oheimb
parents: 14033
diff changeset
   433
15693
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15691
diff changeset
   434
lemma restrict_restrict [simp]: "m|`A|`B = m|`(A\<inter>B)"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   435
  by (rule ext) (auto simp: restrict_map_def)
14100
804be4c4b642 added map_image, restrict_map, some thms
oheimb
parents: 14033
diff changeset
   436
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   437
lemma restrict_fun_upd [simp]:
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   438
  "m(x := y)|`D = (if x \<in> D then (m|`(D-{x}))(x := y) else m|`D)"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   439
  by (simp add: restrict_map_def fun_eq_iff)
14186
6d2a494e33be Added a number of thms about map restriction.
nipkow
parents: 14180
diff changeset
   440
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   441
lemma fun_upd_None_restrict [simp]:
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   442
  "(m|`D)(x := None) = (if x \<in> D then m|`(D - {x}) else m|`D)"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   443
  by (simp add: restrict_map_def fun_eq_iff)
14186
6d2a494e33be Added a number of thms about map restriction.
nipkow
parents: 14180
diff changeset
   444
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   445
lemma fun_upd_restrict: "(m|`D)(x := y) = (m|`(D-{x}))(x := y)"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   446
  by (simp add: restrict_map_def fun_eq_iff)
14186
6d2a494e33be Added a number of thms about map restriction.
nipkow
parents: 14180
diff changeset
   447
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   448
lemma fun_upd_restrict_conv [simp]:
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   449
  "x \<in> D \<Longrightarrow> (m|`D)(x := y) = (m|`(D-{x}))(x := y)"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   450
  by (rule fun_upd_restrict)
14186
6d2a494e33be Added a number of thms about map restriction.
nipkow
parents: 14180
diff changeset
   451
35159
df38e92af926 added lemma map_of_map_restrict; generalized lemma dom_const
haftmann
parents: 35115
diff changeset
   452
lemma map_of_map_restrict:
df38e92af926 added lemma map_of_map_restrict; generalized lemma dom_const
haftmann
parents: 35115
diff changeset
   453
  "map_of (map (\<lambda>k. (k, f k)) ks) = (Some \<circ> f) |` set ks"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
   454
  by (induct ks) (simp_all add: fun_eq_iff restrict_map_insert)
35159
df38e92af926 added lemma map_of_map_restrict; generalized lemma dom_const
haftmann
parents: 35115
diff changeset
   455
35619
b5f6481772f3 lemma restrict_complement_singleton_eq
haftmann
parents: 35607
diff changeset
   456
lemma restrict_complement_singleton_eq:
b5f6481772f3 lemma restrict_complement_singleton_eq
haftmann
parents: 35607
diff changeset
   457
  "f |` (- {x}) = f(x := None)"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   458
  by auto
35619
b5f6481772f3 lemma restrict_complement_singleton_eq
haftmann
parents: 35607
diff changeset
   459
14100
804be4c4b642 added map_image, restrict_map, some thms
oheimb
parents: 14033
diff changeset
   460
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   461
subsection \<open>@{term [source] map_upds}\<close>
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13937
diff changeset
   462
60838
2d7eea27ceec more symbols;
wenzelm
parents: 60758
diff changeset
   463
lemma map_upds_Nil1 [simp]: "m([] [\<mapsto>] bs) = m"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   464
  by (simp add: map_upds_def)
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13937
diff changeset
   465
60838
2d7eea27ceec more symbols;
wenzelm
parents: 60758
diff changeset
   466
lemma map_upds_Nil2 [simp]: "m(as [\<mapsto>] []) = m"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   467
  by (simp add:map_upds_def)
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   468
60838
2d7eea27ceec more symbols;
wenzelm
parents: 60758
diff changeset
   469
lemma map_upds_Cons [simp]: "m(a#as [\<mapsto>] b#bs) = (m(a\<mapsto>b))(as[\<mapsto>]bs)"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   470
  by (simp add:map_upds_def)
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13937
diff changeset
   471
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   472
lemma map_upds_append1 [simp]:
77644
48b4e0cd94cd bring priority in line with ordinary function update notation
nipkow
parents: 77361
diff changeset
   473
  "size xs < size ys \<Longrightarrow> m(xs@[x] [\<mapsto>] ys) = m(xs [\<mapsto>] ys, x \<mapsto> ys!size xs)"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   474
proof (induct xs arbitrary: ys m)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   475
  case Nil
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   476
  then show ?case
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   477
    by (auto simp: neq_Nil_conv)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   478
next
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   479
  case (Cons a xs)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   480
  then show ?case
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   481
    by (cases ys) auto
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   482
qed
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14186
diff changeset
   483
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   484
lemma map_upds_list_update2_drop [simp]:
46588
4895d7f1be42 removing some unnecessary premises from Map theory
bulwahn
parents: 44921
diff changeset
   485
  "size xs \<le> i \<Longrightarrow> m(xs[\<mapsto>]ys[i:=y]) = m(xs[\<mapsto>]ys)"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   486
proof (induct xs arbitrary: m ys i)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   487
  case Nil
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   488
  then show ?case
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   489
    by auto
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   490
next
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   491
  case (Cons a xs)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   492
  then show ?case
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   493
    by (cases ys) (use Cons in \<open>auto split: nat.split\<close>)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   494
qed
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13937
diff changeset
   495
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   496
text \<open>Something weirdly sensitive about this proof, which needs only four lines in apply style\<close>
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   497
lemma map_upd_upds_conv_if:
60838
2d7eea27ceec more symbols;
wenzelm
parents: 60758
diff changeset
   498
  "(f(x\<mapsto>y))(xs [\<mapsto>] ys) =
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   499
   (if x \<in> set(take (length ys) xs) then f(xs [\<mapsto>] ys)
60838
2d7eea27ceec more symbols;
wenzelm
parents: 60758
diff changeset
   500
                                    else (f(xs [\<mapsto>] ys))(x\<mapsto>y))"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   501
proof (induct xs arbitrary: x y ys f)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   502
  case (Cons a xs)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   503
  show ?case
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   504
  proof (cases ys)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   505
    case (Cons z zs)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   506
    then show ?thesis
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   507
      using Cons.hyps
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   508
      apply (auto split: if_split simp: fun_upd_twist)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   509
      using Cons.hyps apply fastforce+
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   510
      done
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   511
  qed auto
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   512
qed auto
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   513
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13937
diff changeset
   514
d9b155757dc8 *** empty log message ***
nipkow
parents: 13937
diff changeset
   515
lemma map_upds_twist [simp]:
77644
48b4e0cd94cd bring priority in line with ordinary function update notation
nipkow
parents: 77361
diff changeset
   516
  "a \<notin> set as \<Longrightarrow> m(a\<mapsto>b, as[\<mapsto>]bs) = m(as[\<mapsto>]bs, a\<mapsto>b)"
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 42163
diff changeset
   517
using set_take_subset by (fastforce simp add: map_upd_upds_conv_if)
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13937
diff changeset
   518
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   519
lemma map_upds_apply_nontin [simp]:
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   520
  "x \<notin> set xs \<Longrightarrow> (f(xs[\<mapsto>]ys)) x = f x"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   521
proof (induct xs arbitrary: ys)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   522
  case (Cons a xs)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   523
  then show ?case
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   524
    by (cases ys) (auto simp: map_upd_upds_conv_if)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   525
qed auto
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13937
diff changeset
   526
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   527
lemma fun_upds_append_drop [simp]:
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   528
  "size xs = size ys \<Longrightarrow> m(xs@zs[\<mapsto>]ys) = m(xs[\<mapsto>]ys)"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   529
proof (induct xs arbitrary: ys)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   530
  case (Cons a xs)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   531
  then show ?case
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   532
    by (cases ys) (auto simp: map_upd_upds_conv_if)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   533
qed auto
14300
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14208
diff changeset
   534
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   535
lemma fun_upds_append2_drop [simp]:
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 22744
diff changeset
   536
  "size xs = size ys \<Longrightarrow> m(xs[\<mapsto>]ys@zs) = m(xs[\<mapsto>]ys)"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   537
proof (induct xs arbitrary: ys)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   538
  case (Cons a xs)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   539
  then show ?case
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   540
    by (cases ys) (auto simp: map_upd_upds_conv_if)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   541
qed auto
14300
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14208
diff changeset
   542
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   543
lemma restrict_map_upds[simp]:
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   544
  "\<lbrakk> length xs = length ys; set xs \<subseteq> D \<rbrakk>
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   545
    \<Longrightarrow> m(xs [\<mapsto>] ys)|`D = (m|`(D - set xs))(xs [\<mapsto>] ys)"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   546
proof (induct xs arbitrary: m ys)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   547
  case (Cons a xs)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   548
  then show ?case
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   549
  proof (cases ys)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   550
    case (Cons z zs)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   551
    with Cons.hyps Cons.prems show ?thesis
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   552
      apply (simp add: insert_absorb flip: Diff_insert)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   553
      apply (auto simp add: map_upd_upds_conv_if)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   554
      done
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   555
  qed auto
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   556
qed auto
14186
6d2a494e33be Added a number of thms about map restriction.
nipkow
parents: 14180
diff changeset
   557
6d2a494e33be Added a number of thms about map restriction.
nipkow
parents: 14180
diff changeset
   558
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   559
subsection \<open>@{term [source] dom}\<close>
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   560
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 30935
diff changeset
   561
lemma dom_eq_empty_conv [simp]: "dom f = {} \<longleftrightarrow> f = empty"
44921
58eef4843641 tuned proofs
huffman
parents: 44890
diff changeset
   562
  by (auto simp: dom_def)
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 30935
diff changeset
   563
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   564
lemma domI: "m a = Some b \<Longrightarrow> a \<in> dom m"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   565
  by (simp add: dom_def)
14100
804be4c4b642 added map_image, restrict_map, some thms
oheimb
parents: 14033
diff changeset
   566
(* declare domI [intro]? *)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   567
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   568
lemma domD: "a \<in> dom m \<Longrightarrow> \<exists>b. m a = Some b"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   569
  by (cases "m a") (auto simp add: dom_def)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   570
66010
2f7d39285a1a executable domain membership checks
haftmann
parents: 63834
diff changeset
   571
lemma domIff [iff, simp del, code_unfold]: "a \<in> dom m \<longleftrightarrow> m a \<noteq> None"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   572
  by (simp add: dom_def)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   573
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   574
lemma dom_empty [simp]: "dom empty = {}"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   575
  by (simp add: dom_def)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   576
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   577
lemma dom_fun_upd [simp]:
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   578
  "dom(f(x := y)) = (if y = None then dom f - {x} else insert x (dom f))"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   579
  by (auto simp: dom_def)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   580
34979
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   581
lemma dom_if:
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   582
  "dom (\<lambda>x. if P x then f x else g x) = dom f \<inter> {x. P x} \<union> dom g \<inter> {x. \<not> P x}"
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   583
  by (auto split: if_splits)
13937
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
   584
15304
3514ca74ac54 Added more lemmas
nipkow
parents: 15303
diff changeset
   585
lemma dom_map_of_conv_image_fst:
34979
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   586
  "dom (map_of xys) = fst ` set xys"
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   587
  by (induct xys) (auto simp add: dom_if)
15304
3514ca74ac54 Added more lemmas
nipkow
parents: 15303
diff changeset
   588
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   589
lemma dom_map_of_zip [simp]: "length xs = length ys \<Longrightarrow> dom (map_of (zip xs ys)) = set xs"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   590
  by (induct rule: list_induct2) (auto simp: dom_if)
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 14739
diff changeset
   591
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   592
lemma finite_dom_map_of: "finite (dom (map_of l))"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   593
  by (induct l) (auto simp: dom_def insert_Collect [symmetric])
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   594
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   595
lemma dom_map_upds [simp]:
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   596
  "dom(m(xs[\<mapsto>]ys)) = set(take (length ys) xs) \<union> dom m"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   597
proof (induct xs arbitrary: ys)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   598
  case (Cons a xs)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   599
  then show ?case
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   600
    by (cases ys) (auto simp: map_upd_upds_conv_if)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   601
qed auto
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   602
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   603
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   604
lemma dom_map_add [simp]: "dom (m ++ n) = dom n \<union> dom m"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   605
  by (auto simp: dom_def)
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   606
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   607
lemma dom_override_on [simp]:
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   608
  "dom (override_on f g A) =
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   609
    (dom f  - {a. a \<in> A - dom g}) \<union> {a. a \<in> A \<inter> dom g}"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   610
  by (auto simp: dom_def override_on_def)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   611
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   612
lemma map_add_comm: "dom m1 \<inter> dom m2 = {} \<Longrightarrow> m1 ++ m2 = m2 ++ m1"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   613
  by (rule ext) (force simp: map_add_def dom_def split: option.split)
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   614
32236
0203e1006f1b some lemmas about maps (contributed by Peter Lammich)
krauss
parents: 31380
diff changeset
   615
lemma map_add_dom_app_simps:
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   616
  "m \<in> dom l2 \<Longrightarrow> (l1 ++ l2) m = l2 m"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   617
  "m \<notin> dom l1 \<Longrightarrow> (l1 ++ l2) m = l2 m"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   618
  "m \<notin> dom l2 \<Longrightarrow> (l1 ++ l2) m = l1 m"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   619
  by (auto simp add: map_add_def split: option.split_asm)
32236
0203e1006f1b some lemmas about maps (contributed by Peter Lammich)
krauss
parents: 31380
diff changeset
   620
29622
2eeb09477ed3 lemmas dom_const, dom_if
haftmann
parents: 28790
diff changeset
   621
lemma dom_const [simp]:
35159
df38e92af926 added lemma map_of_map_restrict; generalized lemma dom_const
haftmann
parents: 35115
diff changeset
   622
  "dom (\<lambda>x. Some (f x)) = UNIV"
29622
2eeb09477ed3 lemmas dom_const, dom_if
haftmann
parents: 28790
diff changeset
   623
  by auto
2eeb09477ed3 lemmas dom_const, dom_if
haftmann
parents: 28790
diff changeset
   624
22230
bdec4a82f385 a few additions and deletions
nipkow
parents: 21404
diff changeset
   625
(* Due to John Matthews - could be rephrased with dom *)
bdec4a82f385 a few additions and deletions
nipkow
parents: 21404
diff changeset
   626
lemma finite_map_freshness:
bdec4a82f385 a few additions and deletions
nipkow
parents: 21404
diff changeset
   627
  "finite (dom (f :: 'a \<rightharpoonup> 'b)) \<Longrightarrow> \<not> finite (UNIV :: 'a set) \<Longrightarrow>
bdec4a82f385 a few additions and deletions
nipkow
parents: 21404
diff changeset
   628
   \<exists>x. f x = None"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   629
  by (bestsimp dest: ex_new_if_finite)
14027
68d247b7b14b *** empty log message ***
nipkow
parents: 14026
diff changeset
   630
28790
2efba7b18c5b lemmas about dom and minus / insert
haftmann
parents: 28562
diff changeset
   631
lemma dom_minus:
2efba7b18c5b lemmas about dom and minus / insert
haftmann
parents: 28562
diff changeset
   632
  "f x = None \<Longrightarrow> dom f - insert x A = dom f - A"
2efba7b18c5b lemmas about dom and minus / insert
haftmann
parents: 28562
diff changeset
   633
  unfolding dom_def by simp
2efba7b18c5b lemmas about dom and minus / insert
haftmann
parents: 28562
diff changeset
   634
2efba7b18c5b lemmas about dom and minus / insert
haftmann
parents: 28562
diff changeset
   635
lemma insert_dom:
2efba7b18c5b lemmas about dom and minus / insert
haftmann
parents: 28562
diff changeset
   636
  "f x = Some y \<Longrightarrow> insert x (dom f) = dom f"
2efba7b18c5b lemmas about dom and minus / insert
haftmann
parents: 28562
diff changeset
   637
  unfolding dom_def by auto
2efba7b18c5b lemmas about dom and minus / insert
haftmann
parents: 28562
diff changeset
   638
35607
896f01fe825b added dom_option_map, map_of_map_keys
haftmann
parents: 35565
diff changeset
   639
lemma map_of_map_keys:
896f01fe825b added dom_option_map, map_of_map_keys
haftmann
parents: 35565
diff changeset
   640
  "set xs = dom m \<Longrightarrow> map_of (map (\<lambda>k. (k, the (m k))) xs) = m"
896f01fe825b added dom_option_map, map_of_map_keys
haftmann
parents: 35565
diff changeset
   641
  by (rule ext) (auto simp add: map_of_map_restrict restrict_map_def)
896f01fe825b added dom_option_map, map_of_map_keys
haftmann
parents: 35565
diff changeset
   642
39379
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   643
lemma map_of_eqI:
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   644
  assumes set_eq: "set (map fst xs) = set (map fst ys)"
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   645
  assumes map_eq: "\<forall>k\<in>set (map fst xs). map_of xs k = map_of ys k"
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   646
  shows "map_of xs = map_of ys"
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   647
proof (rule ext)
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   648
  fix k show "map_of xs k = map_of ys k"
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   649
  proof (cases "map_of xs k")
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   650
    case None
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   651
    then have "k \<notin> set (map fst xs)" by (simp add: map_of_eq_None_iff)
39379
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   652
    with set_eq have "k \<notin> set (map fst ys)" by simp
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   653
    then have "map_of ys k = None" by (simp add: map_of_eq_None_iff)
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   654
    with None show ?thesis by simp
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   655
  next
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   656
    case (Some v)
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   657
    then have "k \<in> set (map fst xs)" by (auto simp add: dom_map_of_conv_image_fst [symmetric])
39379
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   658
    with map_eq show ?thesis by auto
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   659
  qed
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   660
qed
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   661
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   662
lemma map_of_eq_dom:
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   663
  assumes "map_of xs = map_of ys"
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   664
  shows "fst ` set xs = fst ` set ys"
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   665
proof -
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   666
  from assms have "dom (map_of xs) = dom (map_of ys)" by simp
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   667
  then show ?thesis by (simp add: dom_map_of_conv_image_fst)
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   668
qed
ab1b070aa412 moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
haftmann
parents: 39302
diff changeset
   669
53820
9c7e97d67b45 added lemmas
nipkow
parents: 53374
diff changeset
   670
lemma finite_set_of_finite_maps:
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   671
  assumes "finite A" "finite B"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   672
  shows "finite {m. dom m = A \<and> ran m \<subseteq> B}" (is "finite ?S")
53820
9c7e97d67b45 added lemmas
nipkow
parents: 53374
diff changeset
   673
proof -
9c7e97d67b45 added lemmas
nipkow
parents: 53374
diff changeset
   674
  let ?S' = "{m. \<forall>x. (x \<in> A \<longrightarrow> m x \<in> Some ` B) \<and> (x \<notin> A \<longrightarrow> m x = None)}"
9c7e97d67b45 added lemmas
nipkow
parents: 53374
diff changeset
   675
  have "?S = ?S'"
9c7e97d67b45 added lemmas
nipkow
parents: 53374
diff changeset
   676
  proof
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   677
    show "?S \<subseteq> ?S'" by (auto simp: dom_def ran_def image_def)
53820
9c7e97d67b45 added lemmas
nipkow
parents: 53374
diff changeset
   678
    show "?S' \<subseteq> ?S"
9c7e97d67b45 added lemmas
nipkow
parents: 53374
diff changeset
   679
    proof
9c7e97d67b45 added lemmas
nipkow
parents: 53374
diff changeset
   680
      fix m assume "m \<in> ?S'"
9c7e97d67b45 added lemmas
nipkow
parents: 53374
diff changeset
   681
      hence 1: "dom m = A" by force
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   682
      hence 2: "ran m \<subseteq> B" using \<open>m \<in> ?S'\<close> by (auto simp: dom_def ran_def)
53820
9c7e97d67b45 added lemmas
nipkow
parents: 53374
diff changeset
   683
      from 1 2 show "m \<in> ?S" by blast
9c7e97d67b45 added lemmas
nipkow
parents: 53374
diff changeset
   684
    qed
9c7e97d67b45 added lemmas
nipkow
parents: 53374
diff changeset
   685
  qed
9c7e97d67b45 added lemmas
nipkow
parents: 53374
diff changeset
   686
  with assms show ?thesis by(simp add: finite_set_of_finite_funs)
9c7e97d67b45 added lemmas
nipkow
parents: 53374
diff changeset
   687
qed
28790
2efba7b18c5b lemmas about dom and minus / insert
haftmann
parents: 28562
diff changeset
   688
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   689
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   690
subsection \<open>@{term [source] ran}\<close>
14100
804be4c4b642 added map_image, restrict_map, some thms
oheimb
parents: 14033
diff changeset
   691
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   692
lemma ranI: "m a = Some b \<Longrightarrow> b \<in> ran m"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   693
  by (auto simp: ran_def)
14100
804be4c4b642 added map_image, restrict_map, some thms
oheimb
parents: 14033
diff changeset
   694
(* declare ranI [intro]? *)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   695
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   696
lemma ran_empty [simp]: "ran empty = {}"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   697
  by (auto simp: ran_def)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   698
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   699
lemma ran_map_upd [simp]:  "m a = None \<Longrightarrow> ran(m(a\<mapsto>b)) = insert b (ran m)"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   700
  unfolding ran_def
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   701
  by force
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   702
73832
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   703
lemma fun_upd_None_if_notin_dom[simp]: "k \<notin> dom m \<Longrightarrow> m(k := None) = m"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   704
  by auto
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   705
74802
b61bd2c12de3 added lemmas
nipkow
parents: 74157
diff changeset
   706
lemma ran_map_upd_Some:
b61bd2c12de3 added lemmas
nipkow
parents: 74157
diff changeset
   707
  "\<lbrakk> m x = Some y; inj_on m (dom m); z \<notin> ran m \<rbrakk> \<Longrightarrow> ran(m(x := Some z)) = ran m - {y} \<union> {z}"
b61bd2c12de3 added lemmas
nipkow
parents: 74157
diff changeset
   708
by(force simp add: ran_def domI inj_onD)
b61bd2c12de3 added lemmas
nipkow
parents: 74157
diff changeset
   709
66583
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   710
lemma ran_map_add:
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   711
  assumes "dom m1 \<inter> dom m2 = {}"
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   712
  shows "ran (m1 ++ m2) = ran m1 \<union> ran m2"
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   713
proof
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   714
  show "ran (m1 ++ m2) \<subseteq> ran m1 \<union> ran m2"
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   715
    unfolding ran_def by auto
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   716
next
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   717
  show "ran m1 \<union> ran m2 \<subseteq> ran (m1 ++ m2)"
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   718
  proof -
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   719
    have "(m1 ++ m2) x = Some y" if "m1 x = Some y" for x y
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   720
      using assms map_add_comm that by fastforce
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   721
    moreover have "(m1 ++ m2) x = Some y" if "m2 x = Some y" for x y
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   722
      using assms that by auto
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   723
    ultimately show ?thesis
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   724
      unfolding ran_def by blast
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   725
  qed
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   726
qed
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   727
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   728
lemma finite_ran:
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   729
  assumes "finite (dom p)"
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   730
  shows "finite (ran p)"
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   731
proof -
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   732
  have "ran p = (\<lambda>x. the (p x)) ` dom p"
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   733
    unfolding ran_def by force
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   734
  from this \<open>finite (dom p)\<close> show ?thesis by auto
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   735
qed
ac183ddc9fef more facts on Map.ran
bulwahn
parents: 66010
diff changeset
   736
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   737
lemma ran_distinct:
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   738
  assumes dist: "distinct (map fst al)"
34979
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   739
  shows "ran (map_of al) = snd ` set al"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   740
  using assms
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   741
proof (induct al)
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   742
  case Nil
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   743
  then show ?case by simp
34979
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   744
next
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   745
  case (Cons kv al)
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   746
  then have "ran (map_of al) = snd ` set al" by simp
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   747
  moreover from Cons.prems have "map_of al (fst kv) = None"
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   748
    by (simp add: map_of_eq_None_iff)
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   749
  ultimately show ?case by (simp only: map_of.simps ran_map_upd) simp
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   750
qed
8cb6e7a42e9c more correspondence lemmas between related operations
haftmann
parents: 34941
diff changeset
   751
66584
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66583
diff changeset
   752
lemma ran_map_of_zip:
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66583
diff changeset
   753
  assumes "length xs = length ys" "distinct xs"
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66583
diff changeset
   754
  shows "ran (map_of (zip xs ys)) = set ys"
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66583
diff changeset
   755
using assms by (simp add: ran_distinct set_map[symmetric])
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66583
diff changeset
   756
60057
86fa63ce8156 add lemmas
Andreas Lochbihler
parents: 58889
diff changeset
   757
lemma ran_map_option: "ran (\<lambda>x. map_option f (m x)) = f ` ran m"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   758
  by (auto simp add: ran_def)
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   759
73832
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   760
subsection \<open>@{term [source] graph}\<close>
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   761
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   762
lemma graph_empty[simp]: "graph empty = {}"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   763
  unfolding graph_def by simp
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   764
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   765
lemma in_graphI: "m k = Some v \<Longrightarrow> (k, v) \<in> graph m"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   766
  unfolding graph_def by blast
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   767
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   768
lemma in_graphD: "(k, v) \<in> graph m \<Longrightarrow> m k = Some v"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   769
  unfolding graph_def by blast
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   770
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   771
lemma graph_map_upd[simp]: "graph (m(k \<mapsto> v)) = insert (k, v) (graph (m(k := None)))"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   772
  unfolding graph_def by (auto split: if_splits)
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   773
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   774
lemma graph_fun_upd_None: "graph (m(k := None)) = {e \<in> graph m. fst e \<noteq> k}"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   775
  unfolding graph_def by (auto split: if_splits)
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   776
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   777
lemma graph_restrictD:
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   778
  assumes "(k, v) \<in> graph (m |` A)"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   779
  shows "k \<in> A" and "m k = Some v"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   780
  using assms unfolding graph_def
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   781
  by (auto simp: restrict_map_def split: if_splits)
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   782
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   783
lemma graph_map_comp[simp]: "graph (m1 \<circ>\<^sub>m m2) = graph m2 O graph m1"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   784
  unfolding graph_def by (auto simp: map_comp_Some_iff relcomp_unfold)
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   785
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   786
lemma graph_map_add: "dom m1 \<inter> dom m2 = {} \<Longrightarrow> graph (m1 ++ m2) = graph m1 \<union> graph m2"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   787
  unfolding graph_def using map_add_comm by force
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   788
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   789
lemma graph_eq_to_snd_dom: "graph m = (\<lambda>x. (x, the (m x))) ` dom m"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   790
  unfolding graph_def dom_def by force
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   791
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   792
lemma fst_graph_eq_dom: "fst ` graph m = dom m"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   793
  unfolding graph_eq_to_snd_dom by force
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   794
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   795
lemma graph_domD: "x \<in> graph m \<Longrightarrow> fst x \<in> dom m"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   796
  using fst_graph_eq_dom by (metis imageI)
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   797
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   798
lemma snd_graph_ran: "snd ` graph m = ran m"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   799
  unfolding graph_def ran_def by force
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   800
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   801
lemma graph_ranD: "x \<in> graph m \<Longrightarrow> snd x \<in> ran m"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   802
  using snd_graph_ran by (metis imageI)
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   803
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   804
lemma finite_graph_map_of: "finite (graph (map_of al))"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   805
  unfolding graph_eq_to_snd_dom finite_dom_map_of
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   806
  using finite_dom_map_of by blast
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   807
74157
8e2355ddce1b add/rename some theorems about Map(pings)
Lukas Stevens <mail@lukas-stevens.de>
parents: 73832
diff changeset
   808
lemma graph_map_of_if_distinct_dom: "distinct (map fst al) \<Longrightarrow> graph (map_of al) = set al"
73832
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   809
  unfolding graph_def by auto
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   810
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   811
lemma finite_graph_iff_finite_dom[simp]: "finite (graph m) = finite (dom m)"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   812
  by (metis graph_eq_to_snd_dom finite_imageI fst_graph_eq_dom)
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   813
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   814
lemma inj_on_fst_graph: "inj_on fst (graph m)"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   815
  unfolding graph_def inj_on_def by force
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   816
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61069
diff changeset
   817
subsection \<open>\<open>map_le\<close>\<close>
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   818
13912
3c0a340be514 fixed document
kleing
parents: 13910
diff changeset
   819
lemma map_le_empty [simp]: "empty \<subseteq>\<^sub>m g"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   820
  by (simp add: map_le_def)
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   821
17724
e969fc0a4925 simprules need names
paulson
parents: 17399
diff changeset
   822
lemma upd_None_map_le [simp]: "f(x := None) \<subseteq>\<^sub>m f"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   823
  by (force simp add: map_le_def)
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14186
diff changeset
   824
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   825
lemma map_le_upd[simp]: "f \<subseteq>\<^sub>m g ==> f(a := b) \<subseteq>\<^sub>m g(a := b)"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   826
  by (fastforce simp add: map_le_def)
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   827
17724
e969fc0a4925 simprules need names
paulson
parents: 17399
diff changeset
   828
lemma map_le_imp_upd_le [simp]: "m1 \<subseteq>\<^sub>m m2 \<Longrightarrow> m1(x := None) \<subseteq>\<^sub>m m2(x \<mapsto> y)"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   829
  by (force simp add: map_le_def)
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14186
diff changeset
   830
20800
69c82605efcf tuned specifications and proofs;
wenzelm
parents: 19947
diff changeset
   831
lemma map_le_upds [simp]:
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   832
  "f \<subseteq>\<^sub>m g \<Longrightarrow> f(as [\<mapsto>] bs) \<subseteq>\<^sub>m g(as [\<mapsto>] bs)"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   833
proof (induct as arbitrary: f g bs)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   834
  case (Cons a as)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   835
  then show ?case
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   836
    by (cases bs) (use Cons in auto)
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   837
qed auto
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   838
14033
bc723de8ec95 Added a few lemmas about map_le
webertj
parents: 14027
diff changeset
   839
lemma map_le_implies_dom_le: "(f \<subseteq>\<^sub>m g) \<Longrightarrow> (dom f \<subseteq> dom g)"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   840
  by (fastforce simp add: map_le_def dom_def)
14033
bc723de8ec95 Added a few lemmas about map_le
webertj
parents: 14027
diff changeset
   841
bc723de8ec95 Added a few lemmas about map_le
webertj
parents: 14027
diff changeset
   842
lemma map_le_refl [simp]: "f \<subseteq>\<^sub>m f"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   843
  by (simp add: map_le_def)
14033
bc723de8ec95 Added a few lemmas about map_le
webertj
parents: 14027
diff changeset
   844
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14186
diff changeset
   845
lemma map_le_trans[trans]: "\<lbrakk> m1 \<subseteq>\<^sub>m m2; m2 \<subseteq>\<^sub>m m3\<rbrakk> \<Longrightarrow> m1 \<subseteq>\<^sub>m m3"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   846
  by (auto simp add: map_le_def dom_def)
14033
bc723de8ec95 Added a few lemmas about map_le
webertj
parents: 14027
diff changeset
   847
bc723de8ec95 Added a few lemmas about map_le
webertj
parents: 14027
diff changeset
   848
lemma map_le_antisym: "\<lbrakk> f \<subseteq>\<^sub>m g; g \<subseteq>\<^sub>m f \<rbrakk> \<Longrightarrow> f = g"
71616
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   849
  unfolding map_le_def
a9de39608b1a more tidying up of old apply-proofs
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   850
  by (metis ext domIff)
14033
bc723de8ec95 Added a few lemmas about map_le
webertj
parents: 14027
diff changeset
   851
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   852
lemma map_le_map_add [simp]: "f \<subseteq>\<^sub>m g ++ f"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   853
  by (fastforce simp: map_le_def)
14033
bc723de8ec95 Added a few lemmas about map_le
webertj
parents: 14027
diff changeset
   854
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   855
lemma map_le_iff_map_add_commute: "f \<subseteq>\<^sub>m f ++ g \<longleftrightarrow> f ++ g = g ++ f"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   856
  by (fastforce simp: map_add_def map_le_def fun_eq_iff split: option.splits)
15304
3514ca74ac54 Added more lemmas
nipkow
parents: 15303
diff changeset
   857
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   858
lemma map_add_le_mapE: "f ++ g \<subseteq>\<^sub>m h \<Longrightarrow> g \<subseteq>\<^sub>m h"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   859
  by (fastforce simp: map_le_def map_add_def dom_def)
15303
eedbb8d22ca2 added lemmas
nipkow
parents: 15251
diff changeset
   860
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   861
lemma map_add_le_mapI: "\<lbrakk> f \<subseteq>\<^sub>m h; g \<subseteq>\<^sub>m h \<rbrakk> \<Longrightarrow> f ++ g \<subseteq>\<^sub>m h"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   862
  by (auto simp: map_le_def map_add_def dom_def split: option.splits)
15303
eedbb8d22ca2 added lemmas
nipkow
parents: 15251
diff changeset
   863
63828
ca467e73f912 added lemmas
nipkow
parents: 63648
diff changeset
   864
lemma map_add_subsumed1: "f \<subseteq>\<^sub>m g \<Longrightarrow> f++g = g"
ca467e73f912 added lemmas
nipkow
parents: 63648
diff changeset
   865
by (simp add: map_add_le_mapI map_le_antisym)
ca467e73f912 added lemmas
nipkow
parents: 63648
diff changeset
   866
ca467e73f912 added lemmas
nipkow
parents: 63648
diff changeset
   867
lemma map_add_subsumed2: "f \<subseteq>\<^sub>m g \<Longrightarrow> g++f = g"
ca467e73f912 added lemmas
nipkow
parents: 63648
diff changeset
   868
by (metis map_add_subsumed1 map_le_iff_map_add_commute)
ca467e73f912 added lemmas
nipkow
parents: 63648
diff changeset
   869
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 30935
diff changeset
   870
lemma dom_eq_singleton_conv: "dom f = {x} \<longleftrightarrow> (\<exists>v. f = [x \<mapsto> v])"
63834
6a757f36997e tuned proofs;
wenzelm
parents: 63828
diff changeset
   871
  (is "?lhs \<longleftrightarrow> ?rhs")
6a757f36997e tuned proofs;
wenzelm
parents: 63828
diff changeset
   872
proof
6a757f36997e tuned proofs;
wenzelm
parents: 63828
diff changeset
   873
  assume ?rhs
6a757f36997e tuned proofs;
wenzelm
parents: 63828
diff changeset
   874
  then show ?lhs by (auto split: if_split_asm)
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 30935
diff changeset
   875
next
63834
6a757f36997e tuned proofs;
wenzelm
parents: 63828
diff changeset
   876
  assume ?lhs
6a757f36997e tuned proofs;
wenzelm
parents: 63828
diff changeset
   877
  then obtain v where v: "f x = Some v" by auto
6a757f36997e tuned proofs;
wenzelm
parents: 63828
diff changeset
   878
  show ?rhs
6a757f36997e tuned proofs;
wenzelm
parents: 63828
diff changeset
   879
  proof
6a757f36997e tuned proofs;
wenzelm
parents: 63828
diff changeset
   880
    show "f = [x \<mapsto> v]"
6a757f36997e tuned proofs;
wenzelm
parents: 63828
diff changeset
   881
    proof (rule map_le_antisym)
6a757f36997e tuned proofs;
wenzelm
parents: 63828
diff changeset
   882
      show "[x \<mapsto> v] \<subseteq>\<^sub>m f"
6a757f36997e tuned proofs;
wenzelm
parents: 63828
diff changeset
   883
        using v by (auto simp add: map_le_def)
6a757f36997e tuned proofs;
wenzelm
parents: 63828
diff changeset
   884
      show "f \<subseteq>\<^sub>m [x \<mapsto> v]"
6a757f36997e tuned proofs;
wenzelm
parents: 63828
diff changeset
   885
        using \<open>dom f = {x}\<close> \<open>f x = Some v\<close> by (auto simp add: map_le_def)
6a757f36997e tuned proofs;
wenzelm
parents: 63828
diff changeset
   886
    qed
6a757f36997e tuned proofs;
wenzelm
parents: 63828
diff changeset
   887
  qed
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 30935
diff changeset
   888
qed
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 30935
diff changeset
   889
68454
f35aa0e7255d moved lemmas from AFP
nipkow
parents: 68450
diff changeset
   890
lemma map_add_eq_empty_iff[simp]:
f35aa0e7255d moved lemmas from AFP
nipkow
parents: 68450
diff changeset
   891
  "(f++g = empty) \<longleftrightarrow> f = empty \<and> g = empty"
f35aa0e7255d moved lemmas from AFP
nipkow
parents: 68450
diff changeset
   892
by (metis map_add_None)
f35aa0e7255d moved lemmas from AFP
nipkow
parents: 68450
diff changeset
   893
f35aa0e7255d moved lemmas from AFP
nipkow
parents: 68450
diff changeset
   894
lemma empty_eq_map_add_iff[simp]:
f35aa0e7255d moved lemmas from AFP
nipkow
parents: 68450
diff changeset
   895
  "(empty = f++g) \<longleftrightarrow> f = empty \<and> g = empty"
f35aa0e7255d moved lemmas from AFP
nipkow
parents: 68450
diff changeset
   896
by(subst map_add_eq_empty_iff[symmetric])(rule eq_commute)
f35aa0e7255d moved lemmas from AFP
nipkow
parents: 68450
diff changeset
   897
35565
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   898
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   899
subsection \<open>Various\<close>
35565
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   900
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   901
lemma set_map_of_compr:
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   902
  assumes distinct: "distinct (map fst xs)"
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   903
  shows "set xs = {(k, v). map_of xs k = Some v}"
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   904
  using assms
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   905
proof (induct xs)
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   906
  case Nil
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   907
  then show ?case by simp
35565
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   908
next
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   909
  case (Cons x xs)
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   910
  obtain k v where "x = (k, v)" by (cases x) blast
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   911
  with Cons.prems have "k \<notin> dom (map_of xs)"
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   912
    by (simp add: dom_map_of_conv_image_fst)
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   913
  then have *: "insert (k, v) {(k, v). map_of xs k = Some v} =
77644
48b4e0cd94cd bring priority in line with ordinary function update notation
nipkow
parents: 77361
diff changeset
   914
    {(k', v'). ((map_of xs)(k \<mapsto> v)) k' = Some v'}"
35565
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   915
    by (auto split: if_splits)
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   916
  from Cons have "set xs = {(k, v). map_of xs k = Some v}" by simp
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   917
  with * \<open>x = (k, v)\<close> show ?case by simp
35565
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   918
qed
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   919
67051
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66584
diff changeset
   920
lemma eq_key_imp_eq_value:
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66584
diff changeset
   921
  "v1 = v2"
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66584
diff changeset
   922
  if "distinct (map fst xs)" "(k, v1) \<in> set xs" "(k, v2) \<in> set xs"
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66584
diff changeset
   923
proof -
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66584
diff changeset
   924
  from that have "inj_on fst (set xs)"
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66584
diff changeset
   925
    by (simp add: distinct_map)
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66584
diff changeset
   926
  moreover have "fst (k, v1) = fst (k, v2)"
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66584
diff changeset
   927
    by simp
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66584
diff changeset
   928
  ultimately have "(k, v1) = (k, v2)"
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66584
diff changeset
   929
    by (rule inj_onD) (fact that)+
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66584
diff changeset
   930
  then show ?thesis
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66584
diff changeset
   931
    by simp
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66584
diff changeset
   932
qed
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66584
diff changeset
   933
35565
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   934
lemma map_of_inject_set:
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   935
  assumes distinct: "distinct (map fst xs)" "distinct (map fst ys)"
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   936
  shows "map_of xs = map_of ys \<longleftrightarrow> set xs = set ys" (is "?lhs \<longleftrightarrow> ?rhs")
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   937
proof
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   938
  assume ?lhs
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   939
  moreover from \<open>distinct (map fst xs)\<close> have "set xs = {(k, v). map_of xs k = Some v}"
35565
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   940
    by (rule set_map_of_compr)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   941
  moreover from \<open>distinct (map fst ys)\<close> have "set ys = {(k, v). map_of ys k = Some v}"
35565
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   942
    by (rule set_map_of_compr)
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   943
  ultimately show ?rhs by simp
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   944
next
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53015
diff changeset
   945
  assume ?rhs show ?lhs
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53015
diff changeset
   946
  proof
35565
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   947
    fix k
60839
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   948
    show "map_of xs k = map_of ys k"
422ec7a3c18a more symbols;
wenzelm
parents: 60838
diff changeset
   949
    proof (cases "map_of xs k")
35565
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   950
      case None
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   951
      with \<open>?rhs\<close> have "map_of ys k = None"
35565
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   952
        by (simp add: map_of_eq_None_iff)
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53015
diff changeset
   953
      with None show ?thesis by simp
35565
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   954
    next
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   955
      case (Some v)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   956
      with distinct \<open>?rhs\<close> have "map_of ys k = Some v"
35565
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   957
        by simp
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53015
diff changeset
   958
      with Some show ?thesis by simp
35565
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   959
    qed
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   960
  qed
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   961
qed
56b070cd7ab3 lemmas set_map_of_compr, map_of_inject_set
haftmann
parents: 35553
diff changeset
   962
73832
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   963
lemma finite_Map_induct[consumes 1, case_names empty update]:
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   964
  assumes "finite (dom m)"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   965
  assumes "P Map.empty"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   966
  assumes "\<And>k v m. finite (dom m) \<Longrightarrow> k \<notin> dom m \<Longrightarrow> P m \<Longrightarrow> P (m(k \<mapsto> v))"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   967
  shows "P m"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   968
  using assms(1)
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   969
proof(induction "dom m" arbitrary: m rule: finite_induct)
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   970
  case empty
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   971
  then show ?case using assms(2) unfolding dom_def by simp
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   972
next
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   973
  case (insert x F) 
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   974
  then have "finite (dom (m(x:=None)))" "x \<notin> dom (m(x:=None))" "P (m(x:=None))"
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   975
    by (metis Diff_insert_absorb dom_fun_upd)+
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   976
  with assms(3)[OF this] show ?case
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   977
    by (metis fun_upd_triv fun_upd_upd option.exhaust)
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   978
qed
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   979
9db620f007fa More general fold function for maps
nipkow
parents: 71616
diff changeset
   980
hide_const (open) Map.empty Map.graph
68450
41de07c7a0f3 Map.empty now qualified to avoid name clashes
nipkow
parents: 67780
diff changeset
   981
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   982
end