src/HOL/Library/Multiset.thy
author blanchet
Wed, 06 Jan 2016 13:04:31 +0100
changeset 62082 614ef6d7a6b6
parent 61955 e96292f32c3c
child 62208 ad43b3ab06e4
permissions -rw-r--r--
nicer 'Spec_Rules' for size function
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
     1
(*  Title:      HOL/Library/Multiset.thy
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
     2
    Author:     Tobias Nipkow, Markus Wenzel, Lawrence C Paulson, Norbert Voelker
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
     3
    Author:     Andrei Popescu, TU Muenchen
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
     4
    Author:     Jasmin Blanchette, Inria, LORIA, MPII
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
     5
    Author:     Dmitriy Traytel, TU Muenchen
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
     6
    Author:     Mathias Fleury, MPII
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
     7
*)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
     8
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
     9
section \<open>(Finite) multisets\<close>
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    10
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15072
diff changeset
    11
theory Multiset
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents: 51548
diff changeset
    12
imports Main
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15072
diff changeset
    13
begin
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    14
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
    15
subsection \<open>The type of multisets\<close>
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    16
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
    17
definition "multiset = {f :: 'a \<Rightarrow> nat. finite {x. f x > 0}}"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
    18
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
    19
typedef 'a multiset = "multiset :: ('a \<Rightarrow> nat) set"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    20
  morphisms count Abs_multiset
45694
4a8743618257 prefer typedef without extra definition and alternative name;
wenzelm
parents: 45608
diff changeset
    21
  unfolding multiset_def
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    22
proof
45694
4a8743618257 prefer typedef without extra definition and alternative name;
wenzelm
parents: 45608
diff changeset
    23
  show "(\<lambda>x. 0::nat) \<in> {f. finite {x. f x > 0}}" by simp
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    24
qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    25
47429
ec64d94cbf9c multiset operations are defined with lift_definitions;
bulwahn
parents: 47308
diff changeset
    26
setup_lifting type_definition_multiset
19086
1b3780be6cc2 new-style definitions/abbreviations;
wenzelm
parents: 18730
diff changeset
    27
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
    28
abbreviation Melem :: "'a \<Rightarrow> 'a multiset \<Rightarrow> bool"  (infix "\<in>#" 50)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
    29
  where "a \<in># M \<equiv> 0 < count M a"
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
    30
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
    31
notation (ASCII)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
    32
  Melem  ("(_/ :# _)" [50, 51] 50)  (* FIXME !? *)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    33
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
    34
lemma multiset_eq_iff: "M = N \<longleftrightarrow> (\<forall>a. count M a = count N a)"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
    35
  by (simp only: count_inject [symmetric] fun_eq_iff)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    36
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
    37
lemma multiset_eqI: "(\<And>x. count A x = count B x) \<Longrightarrow> A = B"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
    38
  using multiset_eq_iff by auto
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    39
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
    40
text \<open>Preservation of the representing set @{term multiset}.\<close>
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
    41
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
    42
lemma const0_in_multiset: "(\<lambda>a. 0) \<in> multiset"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    43
  by (simp add: multiset_def)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    44
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
    45
lemma only1_in_multiset: "(\<lambda>b. if b = a then n else 0) \<in> multiset"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    46
  by (simp add: multiset_def)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    47
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
    48
lemma union_preserves_multiset: "M \<in> multiset \<Longrightarrow> N \<in> multiset \<Longrightarrow> (\<lambda>a. M a + N a) \<in> multiset"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    49
  by (simp add: multiset_def)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    50
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    51
lemma diff_preserves_multiset:
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    52
  assumes "M \<in> multiset"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    53
  shows "(\<lambda>a. M a - N a) \<in> multiset"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    54
proof -
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    55
  have "{x. N x < M x} \<subseteq> {x. 0 < M x}"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    56
    by auto
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    57
  with assms show ?thesis
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    58
    by (auto simp add: multiset_def intro: finite_subset)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    59
qed
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    60
41069
6fabc0414055 name filter operation just filter (c.f. List.filter and list comprehension syntax)
haftmann
parents: 40968
diff changeset
    61
lemma filter_preserves_multiset:
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    62
  assumes "M \<in> multiset"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    63
  shows "(\<lambda>x. if P x then M x else 0) \<in> multiset"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    64
proof -
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    65
  have "{x. (P x \<longrightarrow> 0 < M x) \<and> P x} \<subseteq> {x. 0 < M x}"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    66
    by auto
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    67
  with assms show ?thesis
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    68
    by (auto simp add: multiset_def intro: finite_subset)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    69
qed
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    70
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    71
lemmas in_multiset = const0_in_multiset only1_in_multiset
41069
6fabc0414055 name filter operation just filter (c.f. List.filter and list comprehension syntax)
haftmann
parents: 40968
diff changeset
    72
  union_preserves_multiset diff_preserves_multiset filter_preserves_multiset
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    73
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    74
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
    75
subsection \<open>Representing multisets\<close>
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
    76
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
    77
text \<open>Multiset enumeration\<close>
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    78
48008
846ff14337a4 use transfer method for instance proof
huffman
parents: 47429
diff changeset
    79
instantiation multiset :: (type) cancel_comm_monoid_add
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    80
begin
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    81
47429
ec64d94cbf9c multiset operations are defined with lift_definitions;
bulwahn
parents: 47308
diff changeset
    82
lift_definition zero_multiset :: "'a multiset" is "\<lambda>a. 0"
ec64d94cbf9c multiset operations are defined with lift_definitions;
bulwahn
parents: 47308
diff changeset
    83
by (rule const0_in_multiset)
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    84
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    85
abbreviation Mempty :: "'a multiset" ("{#}") where
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
    86
  "Mempty \<equiv> 0"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    87
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
    88
lift_definition plus_multiset :: "'a multiset \<Rightarrow> 'a multiset \<Rightarrow> 'a multiset" is "\<lambda>M N. (\<lambda>a. M a + N a)"
47429
ec64d94cbf9c multiset operations are defined with lift_definitions;
bulwahn
parents: 47308
diff changeset
    89
by (rule union_preserves_multiset)
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    90
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
    91
lift_definition minus_multiset :: "'a multiset \<Rightarrow> 'a multiset \<Rightarrow> 'a multiset" is "\<lambda> M N. \<lambda>a. M a - N a"
59815
cce82e360c2f explicit commutative additive inverse operation;
haftmann
parents: 59813
diff changeset
    92
by (rule diff_preserves_multiset)
cce82e360c2f explicit commutative additive inverse operation;
haftmann
parents: 59813
diff changeset
    93
48008
846ff14337a4 use transfer method for instance proof
huffman
parents: 47429
diff changeset
    94
instance
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
    95
  by (standard; transfer; simp add: fun_eq_iff)
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    96
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    97
end
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    98
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
    99
lift_definition single :: "'a \<Rightarrow> 'a multiset" is "\<lambda>a b. if b = a then 1 else 0"
47429
ec64d94cbf9c multiset operations are defined with lift_definitions;
bulwahn
parents: 47308
diff changeset
   100
by (rule only1_in_multiset)
15869
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   101
26145
95670b6e1fa3 tuned document;
wenzelm
parents: 26143
diff changeset
   102
syntax
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   103
  "_multiset" :: "args \<Rightarrow> 'a multiset"    ("{#(_)#}")
25507
d13468d40131 added {#.,.,...#}
nipkow
parents: 25208
diff changeset
   104
translations
d13468d40131 added {#.,.,...#}
nipkow
parents: 25208
diff changeset
   105
  "{#x, xs#}" == "{#x#} + {#xs#}"
d13468d40131 added {#.,.,...#}
nipkow
parents: 25208
diff changeset
   106
  "{#x#}" == "CONST single x"
d13468d40131 added {#.,.,...#}
nipkow
parents: 25208
diff changeset
   107
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   108
lemma count_empty [simp]: "count {#} a = 0"
47429
ec64d94cbf9c multiset operations are defined with lift_definitions;
bulwahn
parents: 47308
diff changeset
   109
  by (simp add: zero_multiset.rep_eq)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   110
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   111
lemma count_single [simp]: "count {#b#} a = (if b = a then 1 else 0)"
47429
ec64d94cbf9c multiset operations are defined with lift_definitions;
bulwahn
parents: 47308
diff changeset
   112
  by (simp add: single.rep_eq)
29901
f4b3f8fbf599 finiteness lemmas
nipkow
parents: 29509
diff changeset
   113
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   114
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   115
subsection \<open>Basic operations\<close>
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   116
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   117
subsubsection \<open>Union\<close>
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   118
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   119
lemma count_union [simp]: "count (M + N) a = count M a + count N a"
47429
ec64d94cbf9c multiset operations are defined with lift_definitions;
bulwahn
parents: 47308
diff changeset
   120
  by (simp add: plus_multiset.rep_eq)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   121
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   122
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   123
subsubsection \<open>Difference\<close>
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   124
49388
1ffd5a055acf typeclass formalising bounded subtraction
haftmann
parents: 48040
diff changeset
   125
instantiation multiset :: (type) comm_monoid_diff
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   126
begin
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   127
49388
1ffd5a055acf typeclass formalising bounded subtraction
haftmann
parents: 48040
diff changeset
   128
instance
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   129
  by (standard; transfer; simp add: fun_eq_iff)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   130
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   131
end
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   132
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   133
lemma count_diff [simp]: "count (M - N) a = count M a - count N a"
47429
ec64d94cbf9c multiset operations are defined with lift_definitions;
bulwahn
parents: 47308
diff changeset
   134
  by (simp add: minus_multiset.rep_eq)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   135
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   136
lemma diff_empty [simp]: "M - {#} = M \<and> {#} - M = {#}"
52289
83ce5d2841e7 type class for confined subtraction
haftmann
parents: 51623
diff changeset
   137
  by rule (fact Groups.diff_zero, fact Groups.zero_diff)
36903
489c1fbbb028 Multiset: renamed, added and tuned lemmas;
nipkow
parents: 36867
diff changeset
   138
489c1fbbb028 Multiset: renamed, added and tuned lemmas;
nipkow
parents: 36867
diff changeset
   139
lemma diff_cancel[simp]: "A - A = {#}"
52289
83ce5d2841e7 type class for confined subtraction
haftmann
parents: 51623
diff changeset
   140
  by (fact Groups.diff_cancel)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   141
36903
489c1fbbb028 Multiset: renamed, added and tuned lemmas;
nipkow
parents: 36867
diff changeset
   142
lemma diff_union_cancelR [simp]: "M + N - N = (M::'a multiset)"
52289
83ce5d2841e7 type class for confined subtraction
haftmann
parents: 51623
diff changeset
   143
  by (fact add_diff_cancel_right')
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   144
36903
489c1fbbb028 Multiset: renamed, added and tuned lemmas;
nipkow
parents: 36867
diff changeset
   145
lemma diff_union_cancelL [simp]: "N + M - N = (M::'a multiset)"
52289
83ce5d2841e7 type class for confined subtraction
haftmann
parents: 51623
diff changeset
   146
  by (fact add_diff_cancel_left')
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   147
52289
83ce5d2841e7 type class for confined subtraction
haftmann
parents: 51623
diff changeset
   148
lemma diff_right_commute:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   149
  fixes M N Q :: "'a multiset"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   150
  shows "M - N - Q = M - Q - N"
52289
83ce5d2841e7 type class for confined subtraction
haftmann
parents: 51623
diff changeset
   151
  by (fact diff_right_commute)
83ce5d2841e7 type class for confined subtraction
haftmann
parents: 51623
diff changeset
   152
83ce5d2841e7 type class for confined subtraction
haftmann
parents: 51623
diff changeset
   153
lemma diff_add:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   154
  fixes M N Q :: "'a multiset"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   155
  shows "M - (N + Q) = M - N - Q"
52289
83ce5d2841e7 type class for confined subtraction
haftmann
parents: 51623
diff changeset
   156
  by (rule sym) (fact diff_diff_add)
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
   157
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   158
lemma insert_DiffM: "x \<in># M \<Longrightarrow> {#x#} + (M - {#x#}) = M"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
   159
  by (clarsimp simp: multiset_eq_iff)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   160
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   161
lemma insert_DiffM2 [simp]: "x \<in># M \<Longrightarrow> M - {#x#} + {#x#} = M"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
   162
  by (clarsimp simp: multiset_eq_iff)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   163
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   164
lemma diff_union_swap: "a \<noteq> b \<Longrightarrow> M - {#a#} + {#b#} = M + {#b#} - {#a#}"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
   165
  by (auto simp add: multiset_eq_iff)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   166
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   167
lemma diff_union_single_conv: "a \<in># J \<Longrightarrow> I + J - {#a#} = I + (J - {#a#})"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
   168
  by (simp add: multiset_eq_iff)
26143
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   169
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   170
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   171
subsubsection \<open>Equality of multisets\<close>
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   172
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   173
lemma single_not_empty [simp]: "{#a#} \<noteq> {#} \<and> {#} \<noteq> {#a#}"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
   174
  by (simp add: multiset_eq_iff)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   175
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   176
lemma single_eq_single [simp]: "{#a#} = {#b#} \<longleftrightarrow> a = b"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
   177
  by (auto simp add: multiset_eq_iff)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   178
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   179
lemma union_eq_empty [iff]: "M + N = {#} \<longleftrightarrow> M = {#} \<and> N = {#}"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
   180
  by (auto simp add: multiset_eq_iff)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   181
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   182
lemma empty_eq_union [iff]: "{#} = M + N \<longleftrightarrow> M = {#} \<and> N = {#}"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
   183
  by (auto simp add: multiset_eq_iff)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   184
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   185
lemma multi_self_add_other_not_self [simp]: "M = M + {#x#} \<longleftrightarrow> False"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
   186
  by (auto simp add: multiset_eq_iff)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   187
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   188
lemma diff_single_trivial: "\<not> x \<in># M \<Longrightarrow> M - {#x#} = M"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
   189
  by (auto simp add: multiset_eq_iff)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   190
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   191
lemma diff_single_eq_union: "x \<in># M \<Longrightarrow> M - {#x#} = N \<longleftrightarrow> M = N + {#x#}"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   192
  by auto
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   193
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   194
lemma union_single_eq_diff: "M + {#x#} = N \<Longrightarrow> M = N - {#x#}"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   195
  by (auto dest: sym)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   196
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   197
lemma union_single_eq_member: "M + {#x#} = N \<Longrightarrow> x \<in># N"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   198
  by auto
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   199
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   200
lemma union_is_single: "M + N = {#a#} \<longleftrightarrow> M = {#a#} \<and> N={#} \<or> M = {#} \<and> N = {#a#}"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   201
  (is "?lhs = ?rhs")
46730
e3b99d0231bc tuned proofs;
wenzelm
parents: 46394
diff changeset
   202
proof
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   203
  show ?lhs if ?rhs using that by auto
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   204
  show ?rhs if ?lhs
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   205
    using that by (simp add: multiset_eq_iff split: if_splits) (metis add_is_1)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   206
qed
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   207
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   208
lemma single_is_union: "{#a#} = M + N \<longleftrightarrow> {#a#} = M \<and> N = {#} \<or> M = {#} \<and> {#a#} = N"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   209
  by (auto simp add: eq_commute [of "{#a#}" "M + N"] union_is_single)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   210
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   211
lemma add_eq_conv_diff:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   212
  "M + {#a#} = N + {#b#} \<longleftrightarrow> M = N \<and> a = b \<or> M = N - {#a#} + {#b#} \<and> N = M - {#b#} + {#a#}"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   213
  (is "?lhs \<longleftrightarrow> ?rhs")
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44339
diff changeset
   214
(* shorter: by (simp add: multiset_eq_iff) fastforce *)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   215
proof
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   216
  show ?lhs if ?rhs
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   217
    using that
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   218
    by (auto simp add: add.assoc add.commute [of "{#b#}"])
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   219
      (drule sym, simp add: add.assoc [symmetric])
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   220
  show ?rhs if ?lhs
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   221
  proof (cases "a = b")
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   222
    case True with \<open>?lhs\<close> show ?thesis by simp
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   223
  next
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   224
    case False
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   225
    from \<open>?lhs\<close> have "a \<in># N + {#b#}" by (rule union_single_eq_member)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   226
    with False have "a \<in># N" by auto
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   227
    moreover from \<open>?lhs\<close> have "M = N + {#b#} - {#a#}" by (rule union_single_eq_diff)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   228
    moreover note False
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   229
    ultimately show ?thesis by (auto simp add: diff_right_commute [of _ "{#a#}"] diff_union_swap)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   230
  qed
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   231
qed
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   232
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
   233
lemma insert_noteq_member:
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   234
  assumes BC: "B + {#b#} = C + {#c#}"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   235
   and bnotc: "b \<noteq> c"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   236
  shows "c \<in># B"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   237
proof -
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   238
  have "c \<in># C + {#c#}" by simp
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   239
  have nc: "\<not> c \<in># {#b#}" using bnotc by simp
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   240
  then have "c \<in># B + {#b#}" using BC by simp
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   241
  then show "c \<in># B" using nc by simp
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   242
qed
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   243
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   244
lemma add_eq_conv_ex:
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   245
  "(M + {#a#} = N + {#b#}) =
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   246
    (M = N \<and> a = b \<or> (\<exists>K. M = K + {#b#} \<and> N = K + {#a#}))"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   247
  by (auto simp add: add_eq_conv_diff)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   248
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   249
lemma multi_member_split: "x \<in># M \<Longrightarrow> \<exists>A. M = A + {#x#}"
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   250
  by (rule exI [where x = "M - {#x#}"]) simp
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
   251
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
   252
lemma multiset_add_sub_el_shuffle:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   253
  assumes "c \<in># B"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   254
    and "b \<noteq> c"
58098
ff478d85129b inlined unused definition
haftmann
parents: 58035
diff changeset
   255
  shows "B - {#c#} + {#b#} = B + {#b#} - {#c#}"
ff478d85129b inlined unused definition
haftmann
parents: 58035
diff changeset
   256
proof -
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   257
  from \<open>c \<in># B\<close> obtain A where B: "B = A + {#c#}"
58098
ff478d85129b inlined unused definition
haftmann
parents: 58035
diff changeset
   258
    by (blast dest: multi_member_split)
ff478d85129b inlined unused definition
haftmann
parents: 58035
diff changeset
   259
  have "A + {#b#} = A + {#b#} + {#c#} - {#c#}" by simp
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
   260
  then have "A + {#b#} = A + {#c#} + {#b#} - {#c#}"
58098
ff478d85129b inlined unused definition
haftmann
parents: 58035
diff changeset
   261
    by (simp add: ac_simps)
ff478d85129b inlined unused definition
haftmann
parents: 58035
diff changeset
   262
  then show ?thesis using B by simp
ff478d85129b inlined unused definition
haftmann
parents: 58035
diff changeset
   263
qed
ff478d85129b inlined unused definition
haftmann
parents: 58035
diff changeset
   264
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   265
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   266
subsubsection \<open>Pointwise ordering induced by count\<close>
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   267
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   268
definition subseteq_mset :: "'a multiset \<Rightarrow> 'a multiset \<Rightarrow> bool"  (infix "\<subseteq>#" 50)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   269
  where "A \<subseteq># B = (\<forall>a. count A a \<le> count B a)"
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   270
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   271
definition subset_mset :: "'a multiset \<Rightarrow> 'a multiset \<Rightarrow> bool" (infix "\<subset>#" 50)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   272
  where "A \<subset># B = (A \<subseteq># B \<and> A \<noteq> B)"
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   273
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   274
notation (input)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   275
  subseteq_mset  (infix "\<le>#" 50)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   276
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   277
notation (ASCII)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   278
  subseteq_mset  (infix "<=#" 50) and
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   279
  subset_mset  (infix "<#" 50)
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   280
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   281
interpretation subset_mset: ordered_ab_semigroup_add_imp_le "op +" "op -" "op \<subseteq>#" "op \<subset>#"
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   282
  by standard (auto simp add: subset_mset_def subseteq_mset_def multiset_eq_iff intro: order_trans antisym)
59986
f38b94549dc8 introduced new abbreviations for multiset operations (in the hope of getting rid of the old names <, <=, etc.)
blanchet
parents: 59958
diff changeset
   283
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   284
lemma mset_less_eqI: "(\<And>x. count A x \<le> count B x) \<Longrightarrow> A \<le># B"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   285
  by (simp add: subseteq_mset_def)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   286
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   287
lemma mset_le_exists_conv: "(A::'a multiset) \<le># B \<longleftrightarrow> (\<exists>C. B = A + C)"
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   288
  unfolding subseteq_mset_def
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   289
  apply (rule iffI)
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   290
   apply (rule exI [where x = "B - A"])
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   291
   apply (auto intro: multiset_eq_iff [THEN iffD2])
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   292
  done
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   293
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   294
interpretation subset_mset: ordered_cancel_comm_monoid_diff  "op +" "op -" 0 "op \<le>#" "op <#"
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   295
  by standard (simp, fact mset_le_exists_conv)
52289
83ce5d2841e7 type class for confined subtraction
haftmann
parents: 51623
diff changeset
   296
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   297
lemma mset_le_mono_add_right_cancel [simp]: "(A::'a multiset) + C \<le># B + C \<longleftrightarrow> A \<le># B"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   298
  by (fact subset_mset.add_le_cancel_right)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   299
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   300
lemma mset_le_mono_add_left_cancel [simp]: "C + (A::'a multiset) \<le># C + B \<longleftrightarrow> A \<le># B"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   301
  by (fact subset_mset.add_le_cancel_left)
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   302
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   303
lemma mset_le_mono_add: "(A::'a multiset) \<le># B \<Longrightarrow> C \<le># D \<Longrightarrow> A + C \<le># B + D"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   304
  by (fact subset_mset.add_mono)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   305
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   306
lemma mset_le_add_left [simp]: "(A::'a multiset) \<le># A + B"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   307
  unfolding subseteq_mset_def by auto
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   308
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   309
lemma mset_le_add_right [simp]: "B \<le># (A::'a multiset) + B"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   310
  unfolding subseteq_mset_def by auto
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   311
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   312
lemma mset_le_single: "a \<in># B \<Longrightarrow> {#a#} \<le># B"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   313
  by (simp add: subseteq_mset_def)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   314
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   315
lemma multiset_diff_union_assoc:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   316
  fixes A B C D :: "'a multiset"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   317
  shows "C \<le># B \<Longrightarrow> A + B - C = A + (B - C)"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   318
  by (simp add: subset_mset.diff_add_assoc)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   319
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   320
lemma mset_le_multiset_union_diff_commute:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   321
  fixes A B C D :: "'a multiset"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   322
  shows "B \<le># A \<Longrightarrow> A - B + C = A + C - B"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   323
by (simp add: subset_mset.add_diff_assoc2)
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   324
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   325
lemma diff_le_self[simp]: "(M::'a multiset) - N \<le># M"
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   326
by(simp add: subseteq_mset_def)
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   327
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   328
lemma mset_lessD: "A <# B \<Longrightarrow> x \<in># A \<Longrightarrow> x \<in># B"
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   329
apply (clarsimp simp: subset_mset_def subseteq_mset_def)
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   330
apply (erule allE [where x = x])
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   331
apply auto
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   332
done
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   333
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   334
lemma mset_leD: "A \<le># B \<Longrightarrow> x \<in># A \<Longrightarrow> x \<in># B"
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   335
apply (clarsimp simp: subset_mset_def subseteq_mset_def)
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   336
apply (erule allE [where x = x])
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   337
apply auto
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   338
done
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
   339
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   340
lemma mset_less_insertD: "(A + {#x#} <# B) \<Longrightarrow> (x \<in># B \<and> A <# B)"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   341
apply (rule conjI)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   342
 apply (simp add: mset_lessD)
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   343
apply (clarsimp simp: subset_mset_def subseteq_mset_def)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   344
apply safe
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   345
 apply (erule_tac x = a in allE)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   346
 apply (auto split: split_if_asm)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   347
done
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   348
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   349
lemma mset_le_insertD: "(A + {#x#} \<le># B) \<Longrightarrow> (x \<in># B \<and> A \<le># B)"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   350
apply (rule conjI)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   351
 apply (simp add: mset_leD)
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   352
apply (force simp: subset_mset_def subseteq_mset_def split: split_if_asm)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   353
done
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   354
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   355
lemma mset_less_of_empty[simp]: "A <# {#} \<longleftrightarrow> False"
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   356
  by (auto simp add: subseteq_mset_def subset_mset_def multiset_eq_iff)
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   357
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   358
lemma empty_le[simp]: "{#} \<le># A"
55808
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
   359
  unfolding mset_le_exists_conv by auto
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
   360
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   361
lemma le_empty[simp]: "(M \<le># {#}) = (M = {#})"
55808
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
   362
  unfolding mset_le_exists_conv by auto
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
   363
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   364
lemma multi_psub_of_add_self[simp]: "A <# A + {#x#}"
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   365
  by (auto simp: subset_mset_def subseteq_mset_def)
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   366
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   367
lemma multi_psub_self[simp]: "(A::'a multiset) <# A = False"
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   368
  by simp
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   369
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   370
lemma mset_less_add_bothsides: "N + {#x#} <# M + {#x#} \<Longrightarrow> N <# M"
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   371
  by (fact subset_mset.add_less_imp_less_right)
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   372
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   373
lemma mset_less_empty_nonempty: "{#} <# S \<longleftrightarrow> S \<noteq> {#}"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   374
  by (auto simp: subset_mset_def subseteq_mset_def)
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   375
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   376
lemma mset_less_diff_self: "c \<in># B \<Longrightarrow> B - {#c#} <# B"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   377
  by (auto simp: subset_mset_def subseteq_mset_def multiset_eq_iff)
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   378
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   379
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   380
subsubsection \<open>Intersection\<close>
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   381
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   382
definition inf_subset_mset :: "'a multiset \<Rightarrow> 'a multiset \<Rightarrow> 'a multiset" (infixl "#\<inter>" 70) where
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   383
  multiset_inter_def: "inf_subset_mset A B = A - (A - B)"
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   384
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   385
interpretation subset_mset: semilattice_inf inf_subset_mset "op \<le>#" "op <#"
46921
aa862ff8a8a9 some proof indentation;
wenzelm
parents: 46756
diff changeset
   386
proof -
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   387
  have [simp]: "m \<le> n \<Longrightarrow> m \<le> q \<Longrightarrow> m \<le> n - (n - q)" for m n q :: nat
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   388
    by arith
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   389
  show "class.semilattice_inf op #\<inter> op \<le># op <#"
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   390
    by standard (auto simp add: multiset_inter_def subseteq_mset_def)
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   391
qed
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   392
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   393
41069
6fabc0414055 name filter operation just filter (c.f. List.filter and list comprehension syntax)
haftmann
parents: 40968
diff changeset
   394
lemma multiset_inter_count [simp]:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   395
  fixes A B :: "'a multiset"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   396
  shows "count (A #\<inter> B) x = min (count A x) (count B x)"
47429
ec64d94cbf9c multiset operations are defined with lift_definitions;
bulwahn
parents: 47308
diff changeset
   397
  by (simp add: multiset_inter_def)
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   398
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   399
lemma multiset_inter_single: "a \<noteq> b \<Longrightarrow> {#a#} #\<inter> {#b#} = {#}"
46730
e3b99d0231bc tuned proofs;
wenzelm
parents: 46394
diff changeset
   400
  by (rule multiset_eqI) auto
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   401
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   402
lemma multiset_union_diff_commute:
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   403
  assumes "B #\<inter> C = {#}"
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   404
  shows "A + B - C = A - C + B"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
   405
proof (rule multiset_eqI)
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   406
  fix x
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   407
  from assms have "min (count B x) (count C x) = 0"
46730
e3b99d0231bc tuned proofs;
wenzelm
parents: 46394
diff changeset
   408
    by (auto simp add: multiset_eq_iff)
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   409
  then have "count B x = 0 \<or> count C x = 0"
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   410
    by auto
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   411
  then show "count (A + B - C) x = count (A - C + B) x"
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   412
    by auto
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   413
qed
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   414
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   415
lemma empty_inter [simp]: "{#} #\<inter> M = {#}"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
   416
  by (simp add: multiset_eq_iff)
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
   417
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   418
lemma inter_empty [simp]: "M #\<inter> {#} = {#}"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
   419
  by (simp add: multiset_eq_iff)
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
   420
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   421
lemma inter_add_left1: "\<not> x \<in># N \<Longrightarrow> (M + {#x#}) #\<inter> N = M #\<inter> N"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
   422
  by (simp add: multiset_eq_iff)
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
   423
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   424
lemma inter_add_left2: "x \<in># N \<Longrightarrow> (M + {#x#}) #\<inter> N = (M #\<inter> (N - {#x#})) + {#x#}"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
   425
  by (simp add: multiset_eq_iff)
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
   426
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   427
lemma inter_add_right1: "\<not> x \<in># N \<Longrightarrow> N #\<inter> (M + {#x#}) = N #\<inter> M"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
   428
  by (simp add: multiset_eq_iff)
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
   429
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   430
lemma inter_add_right2: "x \<in># N \<Longrightarrow> N #\<inter> (M + {#x#}) = ((N - {#x#}) #\<inter> M) + {#x#}"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
   431
  by (simp add: multiset_eq_iff)
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
   432
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   433
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   434
subsubsection \<open>Bounded union\<close>
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   435
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   436
definition sup_subset_mset :: "'a multiset \<Rightarrow> 'a multiset \<Rightarrow> 'a multiset"(infixl "#\<union>" 70)
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   437
  where "sup_subset_mset A B = A + (B - A)"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   438
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   439
interpretation subset_mset: semilattice_sup sup_subset_mset "op \<le>#" "op <#"
51623
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   440
proof -
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   441
  have [simp]: "m \<le> n \<Longrightarrow> q \<le> n \<Longrightarrow> m + (q - m) \<le> n" for m n q :: nat
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   442
    by arith
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   443
  show "class.semilattice_sup op #\<union> op \<le># op <#"
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   444
    by standard (auto simp add: sup_subset_mset_def subseteq_mset_def)
51623
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   445
qed
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   446
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   447
lemma sup_subset_mset_count [simp]: "count (A #\<union> B) x = max (count A x) (count B x)"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   448
  by (simp add: sup_subset_mset_def)
51623
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   449
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   450
lemma empty_sup [simp]: "{#} #\<union> M = M"
51623
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   451
  by (simp add: multiset_eq_iff)
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   452
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   453
lemma sup_empty [simp]: "M #\<union> {#} = M"
51623
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   454
  by (simp add: multiset_eq_iff)
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   455
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   456
lemma sup_add_left1: "\<not> x \<in># N \<Longrightarrow> (M + {#x#}) #\<union> N = (M #\<union> N) + {#x#}"
51623
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   457
  by (simp add: multiset_eq_iff)
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   458
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   459
lemma sup_add_left2: "x \<in># N \<Longrightarrow> (M + {#x#}) #\<union> N = (M #\<union> (N - {#x#})) + {#x#}"
51623
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   460
  by (simp add: multiset_eq_iff)
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   461
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   462
lemma sup_add_right1: "\<not> x \<in># N \<Longrightarrow> N #\<union> (M + {#x#}) = (N #\<union> M) + {#x#}"
51623
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   463
  by (simp add: multiset_eq_iff)
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   464
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   465
lemma sup_add_right2: "x \<in># N \<Longrightarrow> N #\<union> (M + {#x#}) = ((N - {#x#}) #\<union> M) + {#x#}"
51623
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   466
  by (simp add: multiset_eq_iff)
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   467
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   468
subsubsection \<open>Subset is an order\<close>
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   469
interpretation subset_mset: order "op \<le>#" "op <#" by unfold_locales auto
51623
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
   470
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   471
subsubsection \<open>Filter (with comprehension syntax)\<close>
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   472
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   473
text \<open>Multiset comprehension\<close>
41069
6fabc0414055 name filter operation just filter (c.f. List.filter and list comprehension syntax)
haftmann
parents: 40968
diff changeset
   474
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
   475
lift_definition filter_mset :: "('a \<Rightarrow> bool) \<Rightarrow> 'a multiset \<Rightarrow> 'a multiset"
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
   476
is "\<lambda>P M. \<lambda>x. if P x then M x else 0"
47429
ec64d94cbf9c multiset operations are defined with lift_definitions;
bulwahn
parents: 47308
diff changeset
   477
by (rule filter_preserves_multiset)
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   478
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   479
lemma count_filter_mset [simp]: "count (filter_mset P M) a = (if P a then count M a else 0)"
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
   480
  by (simp add: filter_mset.rep_eq)
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
   481
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   482
lemma filter_empty_mset [simp]: "filter_mset P {#} = {#}"
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
   483
  by (rule multiset_eqI) simp
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
   484
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   485
lemma filter_single_mset [simp]: "filter_mset P {#x#} = (if P x then {#x#} else {#})"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
   486
  by (rule multiset_eqI) simp
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   487
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   488
lemma filter_union_mset [simp]: "filter_mset P (M + N) = filter_mset P M + filter_mset P N"
41069
6fabc0414055 name filter operation just filter (c.f. List.filter and list comprehension syntax)
haftmann
parents: 40968
diff changeset
   489
  by (rule multiset_eqI) simp
6fabc0414055 name filter operation just filter (c.f. List.filter and list comprehension syntax)
haftmann
parents: 40968
diff changeset
   490
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   491
lemma filter_diff_mset [simp]: "filter_mset P (M - N) = filter_mset P M - filter_mset P N"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
   492
  by (rule multiset_eqI) simp
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
   493
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   494
lemma filter_inter_mset [simp]: "filter_mset P (M #\<inter> N) = filter_mset P M #\<inter> filter_mset P N"
41069
6fabc0414055 name filter operation just filter (c.f. List.filter and list comprehension syntax)
haftmann
parents: 40968
diff changeset
   495
  by (rule multiset_eqI) simp
6fabc0414055 name filter operation just filter (c.f. List.filter and list comprehension syntax)
haftmann
parents: 40968
diff changeset
   496
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   497
lemma multiset_filter_subset[simp]: "filter_mset f M \<le># M"
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   498
  by (simp add: mset_less_eqI)
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   499
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   500
lemma multiset_filter_mono:
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   501
  assumes "A \<le># B"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   502
  shows "filter_mset f A \<le># filter_mset f B"
58035
177eeda93a8c added lemmas contributed by Rene Thiemann
blanchet
parents: 57966
diff changeset
   503
proof -
177eeda93a8c added lemmas contributed by Rene Thiemann
blanchet
parents: 57966
diff changeset
   504
  from assms[unfolded mset_le_exists_conv]
177eeda93a8c added lemmas contributed by Rene Thiemann
blanchet
parents: 57966
diff changeset
   505
  obtain C where B: "B = A + C" by auto
177eeda93a8c added lemmas contributed by Rene Thiemann
blanchet
parents: 57966
diff changeset
   506
  show ?thesis unfolding B by auto
177eeda93a8c added lemmas contributed by Rene Thiemann
blanchet
parents: 57966
diff changeset
   507
qed
177eeda93a8c added lemmas contributed by Rene Thiemann
blanchet
parents: 57966
diff changeset
   508
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   509
syntax (ASCII)
41069
6fabc0414055 name filter operation just filter (c.f. List.filter and list comprehension syntax)
haftmann
parents: 40968
diff changeset
   510
  "_MCollect" :: "pttrn \<Rightarrow> 'a multiset \<Rightarrow> bool \<Rightarrow> 'a multiset"    ("(1{# _ :# _./ _#})")
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   511
syntax
41069
6fabc0414055 name filter operation just filter (c.f. List.filter and list comprehension syntax)
haftmann
parents: 40968
diff changeset
   512
  "_MCollect" :: "pttrn \<Rightarrow> 'a multiset \<Rightarrow> bool \<Rightarrow> 'a multiset"    ("(1{# _ \<in># _./ _#})")
6fabc0414055 name filter operation just filter (c.f. List.filter and list comprehension syntax)
haftmann
parents: 40968
diff changeset
   513
translations
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
   514
  "{#x \<in># M. P#}" == "CONST filter_mset (\<lambda>x. P) M"
41069
6fabc0414055 name filter operation just filter (c.f. List.filter and list comprehension syntax)
haftmann
parents: 40968
diff changeset
   515
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   516
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   517
subsubsection \<open>Set of elements\<close>
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   518
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   519
definition set_mset :: "'a multiset \<Rightarrow> 'a set"
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   520
  where "set_mset M = {x. x \<in># M}"
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   521
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   522
lemma set_mset_empty [simp]: "set_mset {#} = {}"
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   523
by (simp add: set_mset_def)
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   524
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   525
lemma set_mset_single [simp]: "set_mset {#b#} = {b}"
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   526
by (simp add: set_mset_def)
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   527
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   528
lemma set_mset_union [simp]: "set_mset (M + N) = set_mset M \<union> set_mset N"
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   529
by (auto simp add: set_mset_def)
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   530
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   531
lemma set_mset_eq_empty_iff [simp]: "(set_mset M = {}) = (M = {#})"
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   532
by (auto simp add: set_mset_def multiset_eq_iff)
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   533
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   534
lemma mem_set_mset_iff [simp]: "(x \<in> set_mset M) = (x \<in># M)"
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   535
by (auto simp add: set_mset_def)
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   536
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   537
lemma set_mset_filter [simp]: "set_mset {# x\<in>#M. P x #} = set_mset M \<inter> {x. P x}"
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   538
by (auto simp add: set_mset_def)
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   539
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   540
lemma finite_set_mset [iff]: "finite (set_mset M)"
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   541
  using count [of M] by (simp add: multiset_def set_mset_def)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   542
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   543
lemma finite_Collect_mem [iff]: "finite {x. x \<in># M}"
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   544
  unfolding set_mset_def[symmetric] by simp
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   545
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   546
lemma set_mset_mono: "A \<le># B \<Longrightarrow> set_mset A \<subseteq> set_mset B"
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   547
  by (metis mset_leD subsetI mem_set_mset_iff)
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   548
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   549
lemma ball_set_mset_iff: "(\<forall>x \<in> set_mset M. P x) \<longleftrightarrow> (\<forall>x. x \<in># M \<longrightarrow> P x)"
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   550
  by auto
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   551
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   552
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   553
subsubsection \<open>Size\<close>
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   554
56656
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   555
definition wcount where "wcount f M = (\<lambda>x. count M x * Suc (f x))"
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   556
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   557
lemma wcount_union: "wcount f (M + N) a = wcount f M a + wcount f N a"
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   558
  by (auto simp: wcount_def add_mult_distrib)
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   559
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   560
definition size_multiset :: "('a \<Rightarrow> nat) \<Rightarrow> 'a multiset \<Rightarrow> nat" where
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   561
  "size_multiset f M = setsum (wcount f M) (set_mset M)"
56656
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   562
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   563
lemmas size_multiset_eq = size_multiset_def[unfolded wcount_def]
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   564
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   565
instantiation multiset :: (type) size
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   566
begin
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   567
56656
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   568
definition size_multiset where
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   569
  size_multiset_overloaded_def: "size_multiset = Multiset.size_multiset (\<lambda>_. 0)"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   570
instance ..
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   571
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   572
end
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   573
56656
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   574
lemmas size_multiset_overloaded_eq =
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   575
  size_multiset_overloaded_def[THEN fun_cong, unfolded size_multiset_eq, simplified]
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   576
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   577
lemma size_multiset_empty [simp]: "size_multiset f {#} = 0"
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   578
by (simp add: size_multiset_def)
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   579
28708
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28562
diff changeset
   580
lemma size_empty [simp]: "size {#} = 0"
56656
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   581
by (simp add: size_multiset_overloaded_def)
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   582
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   583
lemma size_multiset_single [simp]: "size_multiset f {#b#} = Suc (f b)"
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   584
by (simp add: size_multiset_eq)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   585
28708
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28562
diff changeset
   586
lemma size_single [simp]: "size {#b#} = 1"
56656
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   587
by (simp add: size_multiset_overloaded_def)
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   588
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   589
lemma setsum_wcount_Int:
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   590
  "finite A \<Longrightarrow> setsum (wcount f N) (A \<inter> set_mset N) = setsum (wcount f N) A"
26178
nipkow
parents: 26176
diff changeset
   591
apply (induct rule: finite_induct)
nipkow
parents: 26176
diff changeset
   592
 apply simp
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   593
apply (simp add: Int_insert_left set_mset_def wcount_def)
56656
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   594
done
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   595
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   596
lemma size_multiset_union [simp]:
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   597
  "size_multiset f (M + N::'a multiset) = size_multiset f M + size_multiset f N"
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56656
diff changeset
   598
apply (simp add: size_multiset_def setsum_Un_nat setsum.distrib setsum_wcount_Int wcount_union)
56656
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   599
apply (subst Int_commute)
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   600
apply (simp add: setsum_wcount_Int)
26178
nipkow
parents: 26176
diff changeset
   601
done
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   602
28708
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28562
diff changeset
   603
lemma size_union [simp]: "size (M + N::'a multiset) = size M + size N"
56656
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   604
by (auto simp add: size_multiset_overloaded_def)
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   605
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   606
lemma size_multiset_eq_0_iff_empty [iff]: "(size_multiset f M = 0) = (M = {#})"
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   607
by (auto simp add: size_multiset_eq multiset_eq_iff)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   608
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   609
lemma size_eq_0_iff_empty [iff]: "(size M = 0) = (M = {#})"
56656
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   610
by (auto simp add: size_multiset_overloaded_def)
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   611
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   612
lemma nonempty_has_size: "(S \<noteq> {#}) = (0 < size S)"
26178
nipkow
parents: 26176
diff changeset
   613
by (metis gr0I gr_implies_not0 size_empty size_eq_0_iff_empty)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   614
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   615
lemma size_eq_Suc_imp_elem: "size M = Suc n \<Longrightarrow> \<exists>a. a \<in># M"
56656
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
   616
apply (unfold size_multiset_overloaded_eq)
26178
nipkow
parents: 26176
diff changeset
   617
apply (drule setsum_SucD)
nipkow
parents: 26176
diff changeset
   618
apply auto
nipkow
parents: 26176
diff changeset
   619
done
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   620
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   621
lemma size_eq_Suc_imp_eq_union:
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   622
  assumes "size M = Suc n"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   623
  shows "\<exists>a N. M = N + {#a#}"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   624
proof -
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   625
  from assms obtain a where "a \<in># M"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   626
    by (erule size_eq_Suc_imp_elem [THEN exE])
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   627
  then have "M = M - {#a#} + {#a#}" by simp
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   628
  then show ?thesis by blast
23611
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   629
qed
15869
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   630
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   631
lemma size_mset_mono:
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   632
  fixes A B :: "'a multiset"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   633
  assumes "A \<le># B"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   634
  shows "size A \<le> size B"
59949
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
   635
proof -
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
   636
  from assms[unfolded mset_le_exists_conv]
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
   637
  obtain C where B: "B = A + C" by auto
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   638
  show ?thesis unfolding B by (induct C) auto
59949
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
   639
qed
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
   640
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
   641
lemma size_filter_mset_lesseq[simp]: "size (filter_mset f M) \<le> size M"
59949
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
   642
by (rule size_mset_mono[OF multiset_filter_subset])
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
   643
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
   644
lemma size_Diff_submset:
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   645
  "M \<le># M' \<Longrightarrow> size (M' - M) = size M' - size(M::'a multiset)"
59949
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
   646
by (metis add_diff_cancel_left' size_union mset_le_exists_conv)
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   647
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   648
subsection \<open>Induction and case splits\<close>
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   649
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   650
theorem multiset_induct [case_names empty add, induct type: multiset]:
48009
9b9150033b5a shortened some proofs
huffman
parents: 48008
diff changeset
   651
  assumes empty: "P {#}"
9b9150033b5a shortened some proofs
huffman
parents: 48008
diff changeset
   652
  assumes add: "\<And>M x. P M \<Longrightarrow> P (M + {#x#})"
9b9150033b5a shortened some proofs
huffman
parents: 48008
diff changeset
   653
  shows "P M"
9b9150033b5a shortened some proofs
huffman
parents: 48008
diff changeset
   654
proof (induct n \<equiv> "size M" arbitrary: M)
9b9150033b5a shortened some proofs
huffman
parents: 48008
diff changeset
   655
  case 0 thus "P M" by (simp add: empty)
9b9150033b5a shortened some proofs
huffman
parents: 48008
diff changeset
   656
next
9b9150033b5a shortened some proofs
huffman
parents: 48008
diff changeset
   657
  case (Suc k)
9b9150033b5a shortened some proofs
huffman
parents: 48008
diff changeset
   658
  obtain N x where "M = N + {#x#}"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   659
    using \<open>Suc k = size M\<close> [symmetric]
48009
9b9150033b5a shortened some proofs
huffman
parents: 48008
diff changeset
   660
    using size_eq_Suc_imp_eq_union by fast
9b9150033b5a shortened some proofs
huffman
parents: 48008
diff changeset
   661
  with Suc add show "P M" by simp
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   662
qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   663
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   664
lemma multi_nonempty_split: "M \<noteq> {#} \<Longrightarrow> \<exists>A a. M = A + {#a#}"
26178
nipkow
parents: 26176
diff changeset
   665
by (induct M) auto
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   666
55913
c1409c103b77 proper UTF-8;
wenzelm
parents: 55811
diff changeset
   667
lemma multiset_cases [cases type]:
c1409c103b77 proper UTF-8;
wenzelm
parents: 55811
diff changeset
   668
  obtains (empty) "M = {#}"
c1409c103b77 proper UTF-8;
wenzelm
parents: 55811
diff changeset
   669
    | (add) N x where "M = N + {#x#}"
c1409c103b77 proper UTF-8;
wenzelm
parents: 55811
diff changeset
   670
  using assms by (induct M) simp_all
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   671
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   672
lemma multi_drop_mem_not_eq: "c \<in># B \<Longrightarrow> B - {#c#} \<noteq> B"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   673
by (cases "B = {#}") (auto dest: multi_member_split)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   674
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   675
lemma multiset_partition: "M = {# x\<in>#M. P x #} + {# x\<in>#M. \<not> P x #}"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
   676
apply (subst multiset_eq_iff)
26178
nipkow
parents: 26176
diff changeset
   677
apply auto
nipkow
parents: 26176
diff changeset
   678
done
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   679
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   680
lemma mset_less_size: "(A::'a multiset) <# B \<Longrightarrow> size A < size B"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   681
proof (induct A arbitrary: B)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   682
  case (empty M)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   683
  then have "M \<noteq> {#}" by (simp add: mset_less_empty_nonempty)
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
   684
  then obtain M' x where "M = M' + {#x#}"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   685
    by (blast dest: multi_nonempty_split)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   686
  then show ?case by simp
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   687
next
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   688
  case (add S x T)
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   689
  have IH: "\<And>B. S <# B \<Longrightarrow> size S < size B" by fact
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   690
  have SxsubT: "S + {#x#} <# T" by fact
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   691
  then have "x \<in># T" and "S <# T" by (auto dest: mset_less_insertD)
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
   692
  then obtain T' where T: "T = T' + {#x#}"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   693
    by (blast dest: multi_member_split)
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   694
  then have "S <# T'" using SxsubT
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   695
    by (blast intro: mset_less_add_bothsides)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   696
  then have "size S < size T'" using IH by simp
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   697
  then show ?case using T by simp
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   698
qed
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   699
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   700
59949
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
   701
lemma size_1_singleton_mset: "size M = 1 \<Longrightarrow> \<exists>a. M = {#a#}"
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
   702
by (cases M) auto
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
   703
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   704
subsubsection \<open>Strong induction and subset induction for multisets\<close>
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   705
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   706
text \<open>Well-foundedness of strict subset relation\<close>
58098
ff478d85129b inlined unused definition
haftmann
parents: 58035
diff changeset
   707
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   708
lemma wf_less_mset_rel: "wf {(M, N :: 'a multiset). M <# N}"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   709
apply (rule wf_measure [THEN wf_subset, where f1=size])
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   710
apply (clarsimp simp: measure_def inv_image_def mset_less_size)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   711
done
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   712
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   713
lemma full_multiset_induct [case_names less]:
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   714
assumes ih: "\<And>B. \<forall>(A::'a multiset). A <# B \<longrightarrow> P A \<Longrightarrow> P B"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   715
shows "P B"
58098
ff478d85129b inlined unused definition
haftmann
parents: 58035
diff changeset
   716
apply (rule wf_less_mset_rel [THEN wf_induct])
ff478d85129b inlined unused definition
haftmann
parents: 58035
diff changeset
   717
apply (rule ih, auto)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   718
done
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   719
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   720
lemma multi_subset_induct [consumes 2, case_names empty add]:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   721
  assumes "F \<le># A"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   722
    and empty: "P {#}"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   723
    and insert: "\<And>a F. a \<in># A \<Longrightarrow> P F \<Longrightarrow> P (F + {#a#})"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   724
  shows "P F"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   725
proof -
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   726
  from \<open>F \<le># A\<close>
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   727
  show ?thesis
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   728
  proof (induct F)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   729
    show "P {#}" by fact
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   730
  next
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   731
    fix x F
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   732
    assume P: "F \<le># A \<Longrightarrow> P F" and i: "F + {#x#} \<le># A"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   733
    show "P (F + {#x#})"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   734
    proof (rule insert)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   735
      from i show "x \<in># A" by (auto dest: mset_le_insertD)
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
   736
      from i have "F \<le># A" by (auto dest: mset_le_insertD)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   737
      with P show "P F" .
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   738
    qed
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   739
  qed
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   740
qed
26145
95670b6e1fa3 tuned document;
wenzelm
parents: 26143
diff changeset
   741
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   742
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   743
subsection \<open>The fold combinator\<close>
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   744
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
   745
definition fold_mset :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'b \<Rightarrow> 'a multiset \<Rightarrow> 'b"
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   746
where
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   747
  "fold_mset f s M = Finite_Set.fold (\<lambda>x. f x ^^ count M x) s (set_mset M)"
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   748
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   749
lemma fold_mset_empty [simp]: "fold_mset f s {#} = s"
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
   750
  by (simp add: fold_mset_def)
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   751
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   752
context comp_fun_commute
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   753
begin
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   754
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   755
lemma fold_mset_insert: "fold_mset f s (M + {#x#}) = f x (fold_mset f s M)"
49822
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   756
proof -
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   757
  interpret mset: comp_fun_commute "\<lambda>y. f y ^^ count M y"
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   758
    by (fact comp_fun_commute_funpow)
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   759
  interpret mset_union: comp_fun_commute "\<lambda>y. f y ^^ count (M + {#x#}) y"
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   760
    by (fact comp_fun_commute_funpow)
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   761
  show ?thesis
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   762
  proof (cases "x \<in> set_mset M")
49822
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   763
    case False
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   764
    then have *: "count (M + {#x#}) x = 1" by simp
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   765
    from False have "Finite_Set.fold (\<lambda>y. f y ^^ count (M + {#x#}) y) s (set_mset M) =
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   766
      Finite_Set.fold (\<lambda>y. f y ^^ count M y) s (set_mset M)"
49822
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   767
      by (auto intro!: Finite_Set.fold_cong comp_fun_commute_funpow)
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   768
    with False * show ?thesis
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
   769
      by (simp add: fold_mset_def del: count_union)
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   770
  next
49822
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   771
    case True
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   772
    def N \<equiv> "set_mset M - {x}"
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   773
    from N_def True have *: "set_mset M = insert x N" "x \<notin> N" "finite N" by auto
49822
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   774
    then have "Finite_Set.fold (\<lambda>y. f y ^^ count (M + {#x#}) y) s N =
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   775
      Finite_Set.fold (\<lambda>y. f y ^^ count M y) s N"
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   776
      by (auto intro!: Finite_Set.fold_cong comp_fun_commute_funpow)
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
   777
    with * show ?thesis by (simp add: fold_mset_def del: count_union) simp
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   778
  qed
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   779
qed
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   780
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   781
corollary fold_mset_single [simp]: "fold_mset f s {#x#} = f x s"
49822
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   782
proof -
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
   783
  have "fold_mset f s ({#} + {#x#}) = f x s" by (simp only: fold_mset_insert) simp
49822
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   784
  then show ?thesis by simp
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   785
qed
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   786
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   787
lemma fold_mset_fun_left_comm: "f x (fold_mset f s M) = fold_mset f (f x s) M"
49822
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   788
  by (induct M) (simp_all add: fold_mset_insert fun_left_comm)
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   789
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   790
lemma fold_mset_union [simp]: "fold_mset f s (M + N) = fold_mset f (fold_mset f s M) N"
49822
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   791
proof (induct M)
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   792
  case empty then show ?case by simp
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   793
next
49822
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   794
  case (add M x)
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
   795
  have "M + {#x#} + N = (M + N) + {#x#}"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
   796
    by (simp add: ac_simps)
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
   797
  with add show ?case by (simp add: fold_mset_insert fold_mset_fun_left_comm)
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   798
qed
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   799
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   800
lemma fold_mset_fusion:
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   801
  assumes "comp_fun_commute g"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   802
    and *: "\<And>x y. h (g x y) = f x (h y)"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   803
  shows "h (fold_mset g w A) = fold_mset f (h w) A"
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   804
proof -
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   805
  interpret comp_fun_commute g by (fact assms)
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   806
  from * show ?thesis by (induct A) auto
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   807
qed
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   808
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   809
end
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   810
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   811
text \<open>
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   812
  A note on code generation: When defining some function containing a
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
   813
  subterm @{term "fold_mset F"}, code generation is not automatic. When
61585
a9599d3d7610 isabelle update_cartouches -c -t;
wenzelm
parents: 61566
diff changeset
   814
  interpreting locale \<open>left_commutative\<close> with \<open>F\<close>, the
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
   815
  would be code thms for @{const fold_mset} become thms like
61585
a9599d3d7610 isabelle update_cartouches -c -t;
wenzelm
parents: 61566
diff changeset
   816
  @{term "fold_mset F z {#} = z"} where \<open>F\<close> is not a pattern but
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   817
  contains defined symbols, i.e.\ is not a code thm. Hence a separate
61585
a9599d3d7610 isabelle update_cartouches -c -t;
wenzelm
parents: 61566
diff changeset
   818
  constant with its own code thms needs to be introduced for \<open>F\<close>. See the image operator below.
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   819
\<close>
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   820
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   821
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   822
subsection \<open>Image\<close>
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   823
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   824
definition image_mset :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a multiset \<Rightarrow> 'b multiset" where
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   825
  "image_mset f = fold_mset (plus \<circ> single \<circ> f) {#}"
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   826
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   827
lemma comp_fun_commute_mset_image: "comp_fun_commute (plus \<circ> single \<circ> f)"
49823
1c146fa7701e avoid global interpretation
haftmann
parents: 49822
diff changeset
   828
proof
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
   829
qed (simp add: ac_simps fun_eq_iff)
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   830
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   831
lemma image_mset_empty [simp]: "image_mset f {#} = {#}"
49823
1c146fa7701e avoid global interpretation
haftmann
parents: 49822
diff changeset
   832
  by (simp add: image_mset_def)
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   833
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   834
lemma image_mset_single [simp]: "image_mset f {#x#} = {#f x#}"
49823
1c146fa7701e avoid global interpretation
haftmann
parents: 49822
diff changeset
   835
proof -
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   836
  interpret comp_fun_commute "plus \<circ> single \<circ> f"
49823
1c146fa7701e avoid global interpretation
haftmann
parents: 49822
diff changeset
   837
    by (fact comp_fun_commute_mset_image)
1c146fa7701e avoid global interpretation
haftmann
parents: 49822
diff changeset
   838
  show ?thesis by (simp add: image_mset_def)
1c146fa7701e avoid global interpretation
haftmann
parents: 49822
diff changeset
   839
qed
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   840
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   841
lemma image_mset_union [simp]: "image_mset f (M + N) = image_mset f M + image_mset f N"
49823
1c146fa7701e avoid global interpretation
haftmann
parents: 49822
diff changeset
   842
proof -
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   843
  interpret comp_fun_commute "plus \<circ> single \<circ> f"
49823
1c146fa7701e avoid global interpretation
haftmann
parents: 49822
diff changeset
   844
    by (fact comp_fun_commute_mset_image)
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
   845
  show ?thesis by (induct N) (simp_all add: image_mset_def ac_simps)
49823
1c146fa7701e avoid global interpretation
haftmann
parents: 49822
diff changeset
   846
qed
1c146fa7701e avoid global interpretation
haftmann
parents: 49822
diff changeset
   847
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   848
corollary image_mset_insert: "image_mset f (M + {#a#}) = image_mset f M + {#f a#}"
49823
1c146fa7701e avoid global interpretation
haftmann
parents: 49822
diff changeset
   849
  by simp
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   850
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   851
lemma set_image_mset [simp]: "set_mset (image_mset f M) = image f (set_mset M)"
49823
1c146fa7701e avoid global interpretation
haftmann
parents: 49822
diff changeset
   852
  by (induct M) simp_all
48040
4caf6cd063be add lemma set_of_image_mset
huffman
parents: 48023
diff changeset
   853
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   854
lemma size_image_mset [simp]: "size (image_mset f M) = size M"
49823
1c146fa7701e avoid global interpretation
haftmann
parents: 49822
diff changeset
   855
  by (induct M) simp_all
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   856
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   857
lemma image_mset_is_empty_iff [simp]: "image_mset f M = {#} \<longleftrightarrow> M = {#}"
49823
1c146fa7701e avoid global interpretation
haftmann
parents: 49822
diff changeset
   858
  by (cases M) auto
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   859
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   860
syntax (ASCII)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   861
  "_comprehension_mset" :: "'a \<Rightarrow> 'b \<Rightarrow> 'b multiset \<Rightarrow> 'a multiset"  ("({#_/. _ :# _#})")
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   862
syntax
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   863
  "_comprehension_mset" :: "'a \<Rightarrow> 'b \<Rightarrow> 'b multiset \<Rightarrow> 'a multiset"  ("({#_/. _ \<in># _#})")
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   864
translations
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   865
  "{#e. x \<in># M#}" \<rightleftharpoons> "CONST image_mset (\<lambda>x. e) M"
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   866
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   867
syntax (ASCII)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   868
  "_comprehension_mset'" :: "'a \<Rightarrow> 'b \<Rightarrow> 'b multiset \<Rightarrow> bool \<Rightarrow> 'a multiset"  ("({#_/ | _ :# _./ _#})")
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   869
syntax
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
   870
  "_comprehension_mset'" :: "'a \<Rightarrow> 'b \<Rightarrow> 'b multiset \<Rightarrow> bool \<Rightarrow> 'a multiset"  ("({#_/ | _ \<in># _./ _#})")
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   871
translations
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   872
  "{#e | x\<in>#M. P#}" \<rightharpoonup> "{#e. x \<in># {# x\<in>#M. P#}#}"
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   873
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   874
text \<open>
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   875
  This allows to write not just filters like @{term "{#x\<in>#M. x<c#}"}
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   876
  but also images like @{term "{#x+x. x\<in>#M #}"} and @{term [source]
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   877
  "{#x+x|x\<in>#M. x<c#}"}, where the latter is currently displayed as
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   878
  @{term "{#x+x|x\<in>#M. x<c#}"}.
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   879
\<close>
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   880
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
   881
lemma in_image_mset: "y \<in># {#f x. x \<in># M#} \<longleftrightarrow> y \<in> f ` set_mset M"
60498
c8141ac6f03f more compact name
nipkow
parents: 60495
diff changeset
   882
by (metis mem_set_mset_iff set_image_mset)
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   883
55467
a5c9002bc54d renamed 'enriched_type' to more informative 'functor' (following the renaming of enriched type constructors to bounded natural functors)
blanchet
parents: 55417
diff changeset
   884
functor image_mset: image_mset
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   885
proof -
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   886
  fix f g show "image_mset f \<circ> image_mset g = image_mset (f \<circ> g)"
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   887
  proof
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   888
    fix A
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   889
    show "(image_mset f \<circ> image_mset g) A = image_mset (f \<circ> g) A"
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   890
      by (induct A) simp_all
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   891
  qed
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   892
  show "image_mset id = id"
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   893
  proof
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   894
    fix A
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   895
    show "image_mset id A = id A"
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   896
      by (induct A) simp_all
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   897
  qed
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   898
qed
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   899
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   900
declare
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   901
  image_mset.id [simp]
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   902
  image_mset.identity [simp]
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   903
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   904
lemma image_mset_id[simp]: "image_mset id x = x"
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   905
  unfolding id_def by auto
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   906
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   907
lemma image_mset_cong: "(\<And>x. x \<in># M \<Longrightarrow> f x = g x) \<Longrightarrow> {#f x. x \<in># M#} = {#g x. x \<in># M#}"
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   908
  by (induct M) auto
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   909
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   910
lemma image_mset_cong_pair:
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   911
  "(\<forall>x y. (x, y) \<in># M \<longrightarrow> f x y = g x y) \<Longrightarrow> {#f x y. (x, y) \<in># M#} = {#g x y. (x, y) \<in># M#}"
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   912
  by (metis image_mset_cong split_cong)
49717
56494eedf493 default simp rule for image under identity
haftmann
parents: 49394
diff changeset
   913
48023
6dfe5e774012 reordered sections
huffman
parents: 48012
diff changeset
   914
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
   915
subsection \<open>Further conversions\<close>
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   916
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   917
primrec mset :: "'a list \<Rightarrow> 'a multiset" where
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   918
  "mset [] = {#}" |
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   919
  "mset (a # x) = mset x + {# a #}"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   920
37107
1535aa1c943a more lemmas
haftmann
parents: 37074
diff changeset
   921
lemma in_multiset_in_set:
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   922
  "x \<in># mset xs \<longleftrightarrow> x \<in> set xs"
37107
1535aa1c943a more lemmas
haftmann
parents: 37074
diff changeset
   923
  by (induct xs) simp_all
1535aa1c943a more lemmas
haftmann
parents: 37074
diff changeset
   924
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   925
lemma count_mset:
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   926
  "count (mset xs) x = length (filter (\<lambda>y. x = y) xs)"
37107
1535aa1c943a more lemmas
haftmann
parents: 37074
diff changeset
   927
  by (induct xs) simp_all
1535aa1c943a more lemmas
haftmann
parents: 37074
diff changeset
   928
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   929
lemma mset_zero_iff[simp]: "(mset x = {#}) = (x = [])"
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
   930
  by (induct x) auto
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   931
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   932
lemma mset_zero_iff_right[simp]: "({#} = mset x) = (x = [])"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   933
by (induct x) auto
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   934
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   935
lemma set_mset_mset[simp]: "set_mset (mset x) = set x"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   936
by (induct x) auto
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   937
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   938
lemma mem_set_multiset_eq: "x \<in> set xs = (x \<in># mset xs)"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   939
by (induct xs) auto
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   940
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   941
lemma size_mset [simp]: "size (mset xs) = length xs"
48012
b6e5e86a7303 shortened yet more multiset proofs;
huffman
parents: 48011
diff changeset
   942
  by (induct xs) simp_all
b6e5e86a7303 shortened yet more multiset proofs;
huffman
parents: 48011
diff changeset
   943
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   944
lemma mset_append [simp]: "mset (xs @ ys) = mset xs + mset ys"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
   945
  by (induct xs arbitrary: ys) (auto simp: ac_simps)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   946
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   947
lemma mset_filter: "mset (filter P xs) = {#x \<in># mset xs. P x #}"
40303
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
   948
  by (induct xs) simp_all
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
   949
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   950
lemma mset_rev [simp]:
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   951
  "mset (rev xs) = mset xs"
40950
a370b0fb6f09 lemma multiset_of_rev
haftmann
parents: 40606
diff changeset
   952
  by (induct xs) simp_all
a370b0fb6f09 lemma multiset_of_rev
haftmann
parents: 40606
diff changeset
   953
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   954
lemma surj_mset: "surj mset"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   955
apply (unfold surj_def)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   956
apply (rule allI)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   957
apply (rule_tac M = y in multiset_induct)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   958
 apply auto
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   959
apply (rule_tac x = "x # xa" in exI)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   960
apply auto
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   961
done
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   962
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   963
lemma set_count_greater_0: "set x = {a. count (mset x) a > 0}"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   964
by (induct x) auto
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   965
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   966
lemma distinct_count_atmost_1:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   967
  "distinct x = (\<forall>a. count (mset x) a = (if a \<in> set x then 1 else 0))"
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   968
  apply (induct x, simp, rule iffI, simp_all)
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   969
  subgoal for a b
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   970
    apply (rule conjI)
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   971
    apply (simp_all add: set_mset_mset [symmetric] del: set_mset_mset)
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   972
    apply (erule_tac x = a in allE, simp)
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   973
    apply clarify
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   974
    apply (erule_tac x = aa in allE, simp)
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   975
    done
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   976
  done
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   977
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   978
lemma mset_eq_setD: "mset xs = mset ys \<Longrightarrow> set xs = set ys"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
   979
by (rule) (auto simp add:multiset_eq_iff set_count_greater_0)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   980
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   981
lemma set_eq_iff_mset_eq_distinct:
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   982
  "distinct x \<Longrightarrow> distinct y \<Longrightarrow>
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   983
    (set x = set y) = (mset x = mset y)"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
   984
by (auto simp: multiset_eq_iff distinct_count_atmost_1)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   985
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   986
lemma set_eq_iff_mset_remdups_eq:
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   987
   "(set x = set y) = (mset (remdups x) = mset (remdups y))"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   988
apply (rule iffI)
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   989
apply (simp add: set_eq_iff_mset_eq_distinct[THEN iffD1])
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   990
apply (drule distinct_remdups [THEN distinct_remdups
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
   991
      [THEN set_eq_iff_mset_eq_distinct [THEN iffD2]]])
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   992
apply simp
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   993
done
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   994
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
   995
lemma mset_compl_union [simp]: "mset [x\<leftarrow>xs. P x] + mset [x\<leftarrow>xs. \<not>P x] = mset xs"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
   996
  by (induct xs) (auto simp: ac_simps)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
   997
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
   998
lemma nth_mem_mset: "i < length ls \<Longrightarrow> (ls ! i) \<in># mset ls"
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
   999
proof (induct ls arbitrary: i)
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1000
  case Nil
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1001
  then show ?case by simp
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1002
next
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1003
  case Cons
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1004
  then show ?case by (cases i) auto
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1005
qed
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1006
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1007
lemma mset_remove1[simp]: "mset (remove1 a xs) = mset xs - {#a#}"
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1008
  by (induct xs) (auto simp add: multiset_eq_iff)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1009
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1010
lemma mset_eq_length:
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1011
  assumes "mset xs = mset ys"
37107
1535aa1c943a more lemmas
haftmann
parents: 37074
diff changeset
  1012
  shows "length xs = length ys"
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1013
  using assms by (metis size_mset)
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1014
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1015
lemma mset_eq_length_filter:
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1016
  assumes "mset xs = mset ys"
39533
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1017
  shows "length (filter (\<lambda>x. z = x) xs) = length (filter (\<lambda>y. z = y) ys)"
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1018
  using assms by (metis count_mset)
39533
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1019
45989
b39256df5f8a moved theorem requiring multisets from More_List to Multiset
haftmann
parents: 45866
diff changeset
  1020
lemma fold_multiset_equiv:
b39256df5f8a moved theorem requiring multisets from More_List to Multiset
haftmann
parents: 45866
diff changeset
  1021
  assumes f: "\<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> f x \<circ> f y = f y \<circ> f x"
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1022
    and equiv: "mset xs = mset ys"
49822
0cfc1651be25 simplified construction of fold combinator on multisets;
haftmann
parents: 49717
diff changeset
  1023
  shows "List.fold f xs = List.fold f ys"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1024
  using f equiv [symmetric]
46921
aa862ff8a8a9 some proof indentation;
wenzelm
parents: 46756
diff changeset
  1025
proof (induct xs arbitrary: ys)
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1026
  case Nil
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1027
  then show ?case by simp
45989
b39256df5f8a moved theorem requiring multisets from More_List to Multiset
haftmann
parents: 45866
diff changeset
  1028
next
b39256df5f8a moved theorem requiring multisets from More_List to Multiset
haftmann
parents: 45866
diff changeset
  1029
  case (Cons x xs)
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1030
  then have *: "set ys = set (x # xs)"
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1031
    by (blast dest: mset_eq_setD)
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
  1032
  have "\<And>x y. x \<in> set ys \<Longrightarrow> y \<in> set ys \<Longrightarrow> f x \<circ> f y = f y \<circ> f x"
45989
b39256df5f8a moved theorem requiring multisets from More_List to Multiset
haftmann
parents: 45866
diff changeset
  1033
    by (rule Cons.prems(1)) (simp_all add: *)
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1034
  moreover from * have "x \<in> set ys"
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1035
    by simp
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1036
  ultimately have "List.fold f ys = List.fold f (remove1 x ys) \<circ> f x"
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1037
    by (fact fold_remove1_split)
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1038
  moreover from Cons.prems have "List.fold f xs = List.fold f (remove1 x ys)"
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1039
    by (auto intro: Cons.hyps)
45989
b39256df5f8a moved theorem requiring multisets from More_List to Multiset
haftmann
parents: 45866
diff changeset
  1040
  ultimately show ?case by simp
b39256df5f8a moved theorem requiring multisets from More_List to Multiset
haftmann
parents: 45866
diff changeset
  1041
qed
b39256df5f8a moved theorem requiring multisets from More_List to Multiset
haftmann
parents: 45866
diff changeset
  1042
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1043
lemma mset_insort [simp]: "mset (insort x xs) = mset xs + {#x#}"
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1044
  by (induct xs) (simp_all add: ac_simps)
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1045
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1046
lemma mset_map: "mset (map f xs) = image_mset f (mset xs)"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  1047
  by (induct xs) simp_all
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  1048
61890
f6ded81f5690 abandoned attempt to unify sublocale and interpretation into global theories
haftmann
parents: 61832
diff changeset
  1049
global_interpretation mset_set: folding "\<lambda>x M. {#x#} + M" "{#}"
61832
e15880ba58ac modernized
haftmann
parents: 61605
diff changeset
  1050
  defines mset_set = "folding.F (\<lambda>x M. {#x#} + M) {#}"
e15880ba58ac modernized
haftmann
parents: 61605
diff changeset
  1051
  by standard (simp add: fun_eq_iff ac_simps)
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1052
60513
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1053
lemma count_mset_set [simp]:
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1054
  "finite A \<Longrightarrow> x \<in> A \<Longrightarrow> count (mset_set A) x = 1" (is "PROP ?P")
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1055
  "\<not> finite A \<Longrightarrow> count (mset_set A) x = 0" (is "PROP ?Q")
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1056
  "x \<notin> A \<Longrightarrow> count (mset_set A) x = 0" (is "PROP ?R")
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  1057
proof -
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1058
  have *: "count (mset_set A) x = 0" if "x \<notin> A" for A
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1059
  proof (cases "finite A")
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1060
    case False then show ?thesis by simp
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1061
  next
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1062
    case True from True \<open>x \<notin> A\<close> show ?thesis by (induct A) auto
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1063
  qed
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  1064
  then show "PROP ?P" "PROP ?Q" "PROP ?R"
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  1065
  by (auto elim!: Set.set_insert)
61585
a9599d3d7610 isabelle update_cartouches -c -t;
wenzelm
parents: 61566
diff changeset
  1066
qed \<comment> \<open>TODO: maybe define @{const mset_set} also in terms of @{const Abs_multiset}\<close>
60513
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1067
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1068
lemma elem_mset_set[simp, intro]: "finite A \<Longrightarrow> x \<in># mset_set A \<longleftrightarrow> x \<in> A"
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  1069
  by (induct A rule: finite_induct) simp_all
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  1070
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1071
context linorder
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1072
begin
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1073
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1074
definition sorted_list_of_multiset :: "'a multiset \<Rightarrow> 'a list"
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1075
where
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
  1076
  "sorted_list_of_multiset M = fold_mset insort [] M"
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1077
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1078
lemma sorted_list_of_multiset_empty [simp]:
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1079
  "sorted_list_of_multiset {#} = []"
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1080
  by (simp add: sorted_list_of_multiset_def)
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1081
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1082
lemma sorted_list_of_multiset_singleton [simp]:
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1083
  "sorted_list_of_multiset {#x#} = [x]"
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1084
proof -
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1085
  interpret comp_fun_commute insort by (fact comp_fun_commute_insort)
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1086
  show ?thesis by (simp add: sorted_list_of_multiset_def)
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1087
qed
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1088
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1089
lemma sorted_list_of_multiset_insert [simp]:
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1090
  "sorted_list_of_multiset (M + {#x#}) = List.insort x (sorted_list_of_multiset M)"
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1091
proof -
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1092
  interpret comp_fun_commute insort by (fact comp_fun_commute_insort)
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1093
  show ?thesis by (simp add: sorted_list_of_multiset_def)
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1094
qed
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1095
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1096
end
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1097
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1098
lemma mset_sorted_list_of_multiset [simp]:
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1099
  "mset (sorted_list_of_multiset M) = M"
60513
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1100
by (induct M) simp_all
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1101
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1102
lemma sorted_list_of_multiset_mset [simp]:
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1103
  "sorted_list_of_multiset (mset xs) = sort xs"
60513
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1104
by (induct xs) simp_all
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1105
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1106
lemma finite_set_mset_mset_set[simp]:
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1107
  "finite A \<Longrightarrow> set_mset (mset_set A) = A"
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1108
by (induct A rule: finite_induct) simp_all
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1109
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1110
lemma infinite_set_mset_mset_set:
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1111
  "\<not> finite A \<Longrightarrow> set_mset (mset_set A) = {}"
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1112
by simp
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1113
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1114
lemma set_sorted_list_of_multiset [simp]:
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1115
  "set (sorted_list_of_multiset M) = set_mset M"
60513
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1116
by (induct M) (simp_all add: set_insort)
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1117
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1118
lemma sorted_list_of_mset_set [simp]:
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1119
  "sorted_list_of_multiset (mset_set A) = sorted_list_of_set A"
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1120
by (cases "finite A") (induct A rule: finite_induct, simp_all add: ac_simps)
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1121
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1122
60804
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1123
subsection \<open>Replicate operation\<close>
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1124
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1125
definition replicate_mset :: "nat \<Rightarrow> 'a \<Rightarrow> 'a multiset" where
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1126
  "replicate_mset n x = ((op + {#x#}) ^^ n) {#}"
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1127
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1128
lemma replicate_mset_0[simp]: "replicate_mset 0 x = {#}"
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1129
  unfolding replicate_mset_def by simp
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1130
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1131
lemma replicate_mset_Suc[simp]: "replicate_mset (Suc n) x = replicate_mset n x + {#x#}"
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1132
  unfolding replicate_mset_def by (induct n) (auto intro: add.commute)
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1133
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1134
lemma in_replicate_mset[simp]: "x \<in># replicate_mset n y \<longleftrightarrow> n > 0 \<and> x = y"
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1135
  unfolding replicate_mset_def by (induct n) simp_all
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1136
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1137
lemma count_replicate_mset[simp]: "count (replicate_mset n x) y = (if y = x then n else 0)"
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1138
  unfolding replicate_mset_def by (induct n) simp_all
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1139
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1140
lemma set_mset_replicate_mset_subset[simp]: "set_mset (replicate_mset n x) = (if n = 0 then {} else {x})"
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1141
  by (auto split: if_splits)
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1142
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1143
lemma size_replicate_mset[simp]: "size (replicate_mset n M) = n"
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1144
  by (induct n, simp_all)
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1145
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1146
lemma count_le_replicate_mset_le: "n \<le> count M x \<longleftrightarrow> replicate_mset n x \<le># M"
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1147
  by (auto simp add: assms mset_less_eqI) (metis count_replicate_mset subseteq_mset_def)
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1148
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1149
lemma filter_eq_replicate_mset: "{#y \<in># D. y = x#} = replicate_mset (count D x) x"
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1150
  by (induct D) simp_all
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1151
61031
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1152
lemma replicate_count_mset_eq_filter_eq:
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1153
  "replicate (count (mset xs) k) k = filter (HOL.eq k) xs"
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1154
  by (induct xs) auto
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1155
60804
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1156
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1157
subsection \<open>Big operators\<close>
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1158
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1159
no_notation times (infixl "*" 70)
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1160
no_notation Groups.one ("1")
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1161
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1162
locale comm_monoid_mset = comm_monoid
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1163
begin
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1164
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1165
definition F :: "'a multiset \<Rightarrow> 'a"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1166
  where eq_fold: "F M = fold_mset f 1 M"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1167
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1168
lemma empty [simp]: "F {#} = 1"
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1169
  by (simp add: eq_fold)
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1170
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1171
lemma singleton [simp]: "F {#x#} = x"
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1172
proof -
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1173
  interpret comp_fun_commute
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1174
    by standard (simp add: fun_eq_iff left_commute)
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1175
  show ?thesis by (simp add: eq_fold)
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1176
qed
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1177
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1178
lemma union [simp]: "F (M + N) = F M * F N"
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1179
proof -
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1180
  interpret comp_fun_commute f
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1181
    by standard (simp add: fun_eq_iff left_commute)
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1182
  show ?thesis
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1183
    by (induct N) (simp_all add: left_commute eq_fold)
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1184
qed
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1185
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1186
end
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1187
61076
bdc1e2f0a86a eliminated \<Colon>;
wenzelm
parents: 61031
diff changeset
  1188
lemma comp_fun_commute_plus_mset[simp]: "comp_fun_commute (op + :: 'a multiset \<Rightarrow> _ \<Rightarrow> _)"
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1189
  by standard (simp add: add_ac comp_def)
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  1190
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  1191
declare comp_fun_commute.fold_mset_insert[OF comp_fun_commute_plus_mset, simp]
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  1192
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
  1193
lemma in_mset_fold_plus_iff[iff]: "x \<in># fold_mset (op +) M NN \<longleftrightarrow> x \<in># M \<or> (\<exists>N. N \<in># NN \<and> x \<in># N)"
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  1194
  by (induct NN) auto
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  1195
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1196
notation times (infixl "*" 70)
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1197
notation Groups.one ("1")
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1198
54868
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54295
diff changeset
  1199
context comm_monoid_add
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54295
diff changeset
  1200
begin
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54295
diff changeset
  1201
61605
1bf7b186542e qualifier is mandatory by default;
wenzelm
parents: 61585
diff changeset
  1202
sublocale msetsum: comm_monoid_mset plus 0
61832
e15880ba58ac modernized
haftmann
parents: 61605
diff changeset
  1203
  defines msetsum = msetsum.F ..
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1204
60804
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1205
lemma (in semiring_1) msetsum_replicate_mset [simp]:
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1206
  "msetsum (replicate_mset n a) = of_nat n * a"
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1207
  by (induct n) (simp_all add: algebra_simps)
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1208
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1209
lemma setsum_unfold_msetsum:
60513
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1210
  "setsum f A = msetsum (image_mset f (mset_set A))"
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1211
  by (cases "finite A") (induct A rule: finite_induct, simp_all)
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1212
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1213
end
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1214
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  1215
lemma msetsum_diff:
61076
bdc1e2f0a86a eliminated \<Colon>;
wenzelm
parents: 61031
diff changeset
  1216
  fixes M N :: "('a :: ordered_cancel_comm_monoid_diff) multiset"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
  1217
  shows "N \<le># M \<Longrightarrow> msetsum (M - N) = msetsum M - msetsum N"
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
  1218
  by (metis add_diff_cancel_right' msetsum.union subset_mset.diff_add)
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  1219
59949
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
  1220
lemma size_eq_msetsum: "size M = msetsum (image_mset (\<lambda>_. 1) M)"
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
  1221
proof (induct M)
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
  1222
  case empty then show ?case by simp
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
  1223
next
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
  1224
  case (add M x) then show ?case
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1225
    by (cases "x \<in> set_mset M")
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1226
      (simp_all del: mem_set_mset_iff add: size_multiset_overloaded_eq setsum.distrib setsum.delta' insert_absorb, simp)
59949
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
  1227
qed
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
  1228
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
  1229
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1230
abbreviation Union_mset :: "'a multiset multiset \<Rightarrow> 'a multiset"  ("\<Union>#_" [900] 900)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1231
  where "\<Union># MM \<equiv> msetsum MM"
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  1232
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1233
lemma set_mset_Union_mset[simp]: "set_mset (\<Union># MM) = (\<Union>M \<in> set_mset MM. set_mset M)"
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  1234
  by (induct MM) auto
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  1235
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  1236
lemma in_Union_mset_iff[iff]: "x \<in># \<Union># MM \<longleftrightarrow> (\<exists>M. M \<in># MM \<and> x \<in># M)"
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  1237
  by (induct MM) auto
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  1238
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1239
syntax (ASCII)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1240
  "_msetsum_image" :: "pttrn \<Rightarrow> 'b set \<Rightarrow> 'a \<Rightarrow> 'a::comm_monoid_add"  ("(3SUM _:#_. _)" [0, 51, 10] 10)
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1241
syntax
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1242
  "_msetsum_image" :: "pttrn \<Rightarrow> 'b set \<Rightarrow> 'a \<Rightarrow> 'a::comm_monoid_add"  ("(3\<Sum>_\<in>#_. _)" [0, 51, 10] 10)
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1243
translations
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1244
  "\<Sum>i \<in># A. b" \<rightleftharpoons> "CONST msetsum (CONST image_mset (\<lambda>i. b) A)"
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1245
54868
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54295
diff changeset
  1246
context comm_monoid_mult
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54295
diff changeset
  1247
begin
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54295
diff changeset
  1248
61605
1bf7b186542e qualifier is mandatory by default;
wenzelm
parents: 61585
diff changeset
  1249
sublocale msetprod: comm_monoid_mset times 1
61832
e15880ba58ac modernized
haftmann
parents: 61605
diff changeset
  1250
  defines msetprod = msetprod.F ..
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1251
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1252
lemma msetprod_empty:
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1253
  "msetprod {#} = 1"
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1254
  by (fact msetprod.empty)
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1255
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1256
lemma msetprod_singleton:
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1257
  "msetprod {#x#} = x"
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1258
  by (fact msetprod.singleton)
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1259
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1260
lemma msetprod_Un:
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
  1261
  "msetprod (A + B) = msetprod A * msetprod B"
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1262
  by (fact msetprod.union)
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1263
60804
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1264
lemma msetprod_replicate_mset [simp]:
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1265
  "msetprod (replicate_mset n a) = a ^ n"
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1266
  by (induct n) (simp_all add: ac_simps)
080a979a985b formal class for factorial (semi)rings
haftmann
parents: 60752
diff changeset
  1267
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1268
lemma setprod_unfold_msetprod:
60513
55c7316f76d6 multiset_of_set -> mset_set
nipkow
parents: 60503
diff changeset
  1269
  "setprod f A = msetprod (image_mset f (mset_set A))"
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1270
  by (cases "finite A") (induct A rule: finite_induct, simp_all)
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1271
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1272
lemma msetprod_multiplicity:
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1273
  "msetprod M = setprod (\<lambda>x. x ^ count M x) (set_mset M)"
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59986
diff changeset
  1274
  by (simp add: fold_mset_def setprod.eq_fold msetprod.eq_fold funpow_times_power comp_def)
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1275
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1276
end
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1277
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1278
syntax (ASCII)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1279
  "_msetprod_image" :: "pttrn \<Rightarrow> 'b set \<Rightarrow> 'a \<Rightarrow> 'a::comm_monoid_mult"  ("(3PROD _:#_. _)" [0, 51, 10] 10)
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1280
syntax
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1281
  "_msetprod_image" :: "pttrn \<Rightarrow> 'b set \<Rightarrow> 'a \<Rightarrow> 'a::comm_monoid_mult"  ("(3\<Prod>_\<in>#_. _)" [0, 51, 10] 10)
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1282
translations
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1283
  "\<Prod>i \<in># A. b" \<rightleftharpoons> "CONST msetprod (CONST image_mset (\<lambda>i. b) A)"
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1284
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1285
lemma (in comm_semiring_1) dvd_msetprod:
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1286
  assumes "x \<in># A"
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1287
  shows "x dvd msetprod A"
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1288
proof -
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1289
  from assms have "A = (A - {#x#}) + {#x#}" by simp
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1290
  then obtain B where "A = B + {#x#}" ..
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1291
  then show ?thesis by simp
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1292
qed
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1293
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1294
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1295
subsection \<open>Alternative representations\<close>
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1296
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1297
subsubsection \<open>Lists\<close>
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51161
diff changeset
  1298
39533
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1299
context linorder
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1300
begin
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1301
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1302
lemma mset_insort [simp]:
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1303
  "mset (insort_key k x xs) = {#x#} + mset xs"
37107
1535aa1c943a more lemmas
haftmann
parents: 37074
diff changeset
  1304
  by (induct xs) (simp_all add: ac_simps)
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
  1305
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1306
lemma mset_sort [simp]:
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1307
  "mset (sort_key k xs) = mset xs"
37107
1535aa1c943a more lemmas
haftmann
parents: 37074
diff changeset
  1308
  by (induct xs) (simp_all add: ac_simps)
1535aa1c943a more lemmas
haftmann
parents: 37074
diff changeset
  1309
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1310
text \<open>
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1311
  This lemma shows which properties suffice to show that a function
61585
a9599d3d7610 isabelle update_cartouches -c -t;
wenzelm
parents: 61566
diff changeset
  1312
  \<open>f\<close> with \<open>f xs = ys\<close> behaves like sort.
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1313
\<close>
37074
322d065ebef7 localized properties_for_sort
haftmann
parents: 36903
diff changeset
  1314
39533
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1315
lemma properties_for_sort_key:
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1316
  assumes "mset ys = mset xs"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1317
    and "\<And>k. k \<in> set ys \<Longrightarrow> filter (\<lambda>x. f k = f x) ys = filter (\<lambda>x. f k = f x) xs"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1318
    and "sorted (map f ys)"
39533
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1319
  shows "sort_key f xs = ys"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1320
  using assms
46921
aa862ff8a8a9 some proof indentation;
wenzelm
parents: 46756
diff changeset
  1321
proof (induct xs arbitrary: ys)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1322
  case Nil then show ?case by simp
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1323
next
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1324
  case (Cons x xs)
39533
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1325
  from Cons.prems(2) have
40305
41833242cc42 tuned lemma proposition of properties_for_sort_key
haftmann
parents: 40303
diff changeset
  1326
    "\<forall>k \<in> set ys. filter (\<lambda>x. f k = f x) (remove1 x ys) = filter (\<lambda>x. f k = f x) xs"
39533
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1327
    by (simp add: filter_remove1)
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1328
  with Cons.prems have "sort_key f xs = remove1 x ys"
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1329
    by (auto intro!: Cons.hyps simp add: sorted_map_remove1)
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1330
  moreover from Cons.prems have "x \<in> set ys"
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1331
    by (auto simp add: mem_set_multiset_eq intro!: ccontr)
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1332
  ultimately show ?case using Cons.prems by (simp add: insort_key_remove1)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1333
qed
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1334
39533
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1335
lemma properties_for_sort:
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1336
  assumes multiset: "mset ys = mset xs"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1337
    and "sorted ys"
39533
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1338
  shows "sort xs = ys"
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1339
proof (rule properties_for_sort_key)
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1340
  from multiset show "mset ys = mset xs" .
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1341
  from \<open>sorted ys\<close> show "sorted (map (\<lambda>x. x) ys)" by simp
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1342
  from multiset have "length (filter (\<lambda>y. k = y) ys) = length (filter (\<lambda>x. k = x) xs)" for k
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1343
    by (rule mset_eq_length_filter)
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1344
  then have "replicate (length (filter (\<lambda>y. k = y) ys)) k =
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1345
    replicate (length (filter (\<lambda>x. k = x) xs)) k" for k
39533
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1346
    by simp
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1347
  then show "k \<in> set ys \<Longrightarrow> filter (\<lambda>y. k = y) ys = filter (\<lambda>x. k = x) xs" for k
39533
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1348
    by (simp add: replicate_length_filter)
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1349
qed
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1350
61031
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1351
lemma sort_key_inj_key_eq:
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1352
  assumes mset_equal: "mset xs = mset ys"
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1353
    and "inj_on f (set xs)"
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1354
    and "sorted (map f ys)"
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1355
  shows "sort_key f xs = ys"
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1356
proof (rule properties_for_sort_key)
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1357
  from mset_equal
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1358
  show "mset ys = mset xs" by simp
61188
b34551d94934 isabelle update_cartouches;
wenzelm
parents: 61076
diff changeset
  1359
  from \<open>sorted (map f ys)\<close>
61031
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1360
  show "sorted (map f ys)" .
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1361
  show "[x\<leftarrow>ys . f k = f x] = [x\<leftarrow>xs . f k = f x]" if "k \<in> set ys" for k
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1362
  proof -
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1363
    from mset_equal
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1364
    have set_equal: "set xs = set ys" by (rule mset_eq_setD)
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1365
    with that have "insert k (set ys) = set ys" by auto
61188
b34551d94934 isabelle update_cartouches;
wenzelm
parents: 61076
diff changeset
  1366
    with \<open>inj_on f (set xs)\<close> have inj: "inj_on f (insert k (set ys))"
61031
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1367
      by (simp add: set_equal)
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1368
    from inj have "[x\<leftarrow>ys . f k = f x] = filter (HOL.eq k) ys"
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1369
      by (auto intro!: inj_on_filter_key_eq)
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1370
    also have "\<dots> = replicate (count (mset ys) k) k"
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1371
      by (simp add: replicate_count_mset_eq_filter_eq)
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1372
    also have "\<dots> = replicate (count (mset xs) k) k"
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1373
      using mset_equal by simp
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1374
    also have "\<dots> = filter (HOL.eq k) xs"
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1375
      by (simp add: replicate_count_mset_eq_filter_eq)
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1376
    also have "\<dots> = [x\<leftarrow>xs . f k = f x]"
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1377
      using inj by (auto intro!: inj_on_filter_key_eq [symmetric] simp add: set_equal)
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1378
    finally show ?thesis .
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1379
  qed
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1380
qed
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1381
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1382
lemma sort_key_eq_sort_key:
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1383
  assumes "mset xs = mset ys"
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1384
    and "inj_on f (set xs)"
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1385
  shows "sort_key f xs = sort_key f ys"
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1386
  by (rule sort_key_inj_key_eq) (simp_all add: assms)
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60804
diff changeset
  1387
40303
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
  1388
lemma sort_key_by_quicksort:
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
  1389
  "sort_key f xs = sort_key f [x\<leftarrow>xs. f x < f (xs ! (length xs div 2))]
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
  1390
    @ [x\<leftarrow>xs. f x = f (xs ! (length xs div 2))]
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
  1391
    @ sort_key f [x\<leftarrow>xs. f x > f (xs ! (length xs div 2))]" (is "sort_key f ?lhs = ?rhs")
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
  1392
proof (rule properties_for_sort_key)
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1393
  show "mset ?rhs = mset ?lhs"
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1394
    by (rule multiset_eqI) (auto simp add: mset_filter)
40303
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
  1395
  show "sorted (map f ?rhs)"
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
  1396
    by (auto simp add: sorted_append intro: sorted_map_same)
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
  1397
next
40305
41833242cc42 tuned lemma proposition of properties_for_sort_key
haftmann
parents: 40303
diff changeset
  1398
  fix l
41833242cc42 tuned lemma proposition of properties_for_sort_key
haftmann
parents: 40303
diff changeset
  1399
  assume "l \<in> set ?rhs"
40346
58af2b8327b7 tuned proof
haftmann
parents: 40307
diff changeset
  1400
  let ?pivot = "f (xs ! (length xs div 2))"
58af2b8327b7 tuned proof
haftmann
parents: 40307
diff changeset
  1401
  have *: "\<And>x. f l = f x \<longleftrightarrow> f x = f l" by auto
40306
e4461b9854a5 tuned proof
haftmann
parents: 40305
diff changeset
  1402
  have "[x \<leftarrow> sort_key f xs . f x = f l] = [x \<leftarrow> xs. f x = f l]"
40305
41833242cc42 tuned lemma proposition of properties_for_sort_key
haftmann
parents: 40303
diff changeset
  1403
    unfolding filter_sort by (rule properties_for_sort_key) (auto intro: sorted_map_same)
40346
58af2b8327b7 tuned proof
haftmann
parents: 40307
diff changeset
  1404
  with * have **: "[x \<leftarrow> sort_key f xs . f l = f x] = [x \<leftarrow> xs. f l = f x]" by simp
58af2b8327b7 tuned proof
haftmann
parents: 40307
diff changeset
  1405
  have "\<And>x P. P (f x) ?pivot \<and> f l = f x \<longleftrightarrow> P (f l) ?pivot \<and> f l = f x" by auto
58af2b8327b7 tuned proof
haftmann
parents: 40307
diff changeset
  1406
  then have "\<And>P. [x \<leftarrow> sort_key f xs . P (f x) ?pivot \<and> f l = f x] =
58af2b8327b7 tuned proof
haftmann
parents: 40307
diff changeset
  1407
    [x \<leftarrow> sort_key f xs. P (f l) ?pivot \<and> f l = f x]" by simp
58af2b8327b7 tuned proof
haftmann
parents: 40307
diff changeset
  1408
  note *** = this [of "op <"] this [of "op >"] this [of "op ="]
40306
e4461b9854a5 tuned proof
haftmann
parents: 40305
diff changeset
  1409
  show "[x \<leftarrow> ?rhs. f l = f x] = [x \<leftarrow> ?lhs. f l = f x]"
40305
41833242cc42 tuned lemma proposition of properties_for_sort_key
haftmann
parents: 40303
diff changeset
  1410
  proof (cases "f l" ?pivot rule: linorder_cases)
46730
e3b99d0231bc tuned proofs;
wenzelm
parents: 46394
diff changeset
  1411
    case less
e3b99d0231bc tuned proofs;
wenzelm
parents: 46394
diff changeset
  1412
    then have "f l \<noteq> ?pivot" and "\<not> f l > ?pivot" by auto
e3b99d0231bc tuned proofs;
wenzelm
parents: 46394
diff changeset
  1413
    with less show ?thesis
40346
58af2b8327b7 tuned proof
haftmann
parents: 40307
diff changeset
  1414
      by (simp add: filter_sort [symmetric] ** ***)
40305
41833242cc42 tuned lemma proposition of properties_for_sort_key
haftmann
parents: 40303
diff changeset
  1415
  next
40306
e4461b9854a5 tuned proof
haftmann
parents: 40305
diff changeset
  1416
    case equal then show ?thesis
40346
58af2b8327b7 tuned proof
haftmann
parents: 40307
diff changeset
  1417
      by (simp add: * less_le)
40305
41833242cc42 tuned lemma proposition of properties_for_sort_key
haftmann
parents: 40303
diff changeset
  1418
  next
46730
e3b99d0231bc tuned proofs;
wenzelm
parents: 46394
diff changeset
  1419
    case greater
e3b99d0231bc tuned proofs;
wenzelm
parents: 46394
diff changeset
  1420
    then have "f l \<noteq> ?pivot" and "\<not> f l < ?pivot" by auto
e3b99d0231bc tuned proofs;
wenzelm
parents: 46394
diff changeset
  1421
    with greater show ?thesis
40346
58af2b8327b7 tuned proof
haftmann
parents: 40307
diff changeset
  1422
      by (simp add: filter_sort [symmetric] ** ***)
40306
e4461b9854a5 tuned proof
haftmann
parents: 40305
diff changeset
  1423
  qed
40303
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
  1424
qed
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
  1425
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
  1426
lemma sort_by_quicksort:
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
  1427
  "sort xs = sort [x\<leftarrow>xs. x < xs ! (length xs div 2)]
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
  1428
    @ [x\<leftarrow>xs. x = xs ! (length xs div 2)]
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
  1429
    @ sort [x\<leftarrow>xs. x > xs ! (length xs div 2)]" (is "sort ?lhs = ?rhs")
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
  1430
  using sort_key_by_quicksort [of "\<lambda>x. x", symmetric] by simp
2d507370e879 lemmas multiset_of_filter, sort_key_by_quicksort
haftmann
parents: 40250
diff changeset
  1431
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1432
text \<open>A stable parametrized quicksort\<close>
40347
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1433
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1434
definition part :: "('b \<Rightarrow> 'a) \<Rightarrow> 'a \<Rightarrow> 'b list \<Rightarrow> 'b list \<times> 'b list \<times> 'b list" where
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1435
  "part f pivot xs = ([x \<leftarrow> xs. f x < pivot], [x \<leftarrow> xs. f x = pivot], [x \<leftarrow> xs. pivot < f x])"
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1436
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1437
lemma part_code [code]:
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1438
  "part f pivot [] = ([], [], [])"
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1439
  "part f pivot (x # xs) = (let (lts, eqs, gts) = part f pivot xs; x' = f x in
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1440
     if x' < pivot then (x # lts, eqs, gts)
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1441
     else if x' > pivot then (lts, eqs, x # gts)
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1442
     else (lts, x # eqs, gts))"
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1443
  by (auto simp add: part_def Let_def split_def)
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1444
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1445
lemma sort_key_by_quicksort_code [code]:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1446
  "sort_key f xs =
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1447
    (case xs of
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1448
      [] \<Rightarrow> []
40347
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1449
    | [x] \<Rightarrow> xs
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1450
    | [x, y] \<Rightarrow> (if f x \<le> f y then xs else [y, x])
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1451
    | _ \<Rightarrow>
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1452
        let (lts, eqs, gts) = part f (f (xs ! (length xs div 2))) xs
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1453
        in sort_key f lts @ eqs @ sort_key f gts)"
40347
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1454
proof (cases xs)
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1455
  case Nil then show ?thesis by simp
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1456
next
46921
aa862ff8a8a9 some proof indentation;
wenzelm
parents: 46756
diff changeset
  1457
  case (Cons _ ys) note hyps = Cons show ?thesis
aa862ff8a8a9 some proof indentation;
wenzelm
parents: 46756
diff changeset
  1458
  proof (cases ys)
40347
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1459
    case Nil with hyps show ?thesis by simp
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1460
  next
46921
aa862ff8a8a9 some proof indentation;
wenzelm
parents: 46756
diff changeset
  1461
    case (Cons _ zs) note hyps = hyps Cons show ?thesis
aa862ff8a8a9 some proof indentation;
wenzelm
parents: 46756
diff changeset
  1462
    proof (cases zs)
40347
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1463
      case Nil with hyps show ?thesis by auto
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1464
    next
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
  1465
      case Cons
40347
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1466
      from sort_key_by_quicksort [of f xs]
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1467
      have "sort_key f xs = (let (lts, eqs, gts) = part f (f (xs ! (length xs div 2))) xs
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1468
        in sort_key f lts @ eqs @ sort_key f gts)"
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1469
      by (simp only: split_def Let_def part_def fst_conv snd_conv)
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1470
      with hyps Cons show ?thesis by (simp only: list.cases)
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1471
    qed
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1472
  qed
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1473
qed
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1474
39533
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1475
end
91a0ff0ff237 generalized lemmas multiset_of_insort, multiset_of_sort, properties_for_sort for *_key variants
haftmann
parents: 39314
diff changeset
  1476
40347
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1477
hide_const (open) part
429bf4388b2f added code lemmas for stable parametrized quicksort
haftmann
parents: 40346
diff changeset
  1478
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1479
lemma mset_remdups_le: "mset (remdups xs) \<le># mset xs"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
  1480
  by (induct xs) (auto intro: subset_mset.order_trans)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1481
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1482
lemma mset_update:
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1483
  "i < length ls \<Longrightarrow> mset (ls[i := v]) = mset ls - {#ls ! i#} + {#v#}"
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1484
proof (induct ls arbitrary: i)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1485
  case Nil then show ?case by simp
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1486
next
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1487
  case (Cons x xs)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1488
  show ?case
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1489
  proof (cases i)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1490
    case 0 then show ?thesis by simp
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1491
  next
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1492
    case (Suc i')
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1493
    with Cons show ?thesis
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1494
      apply simp
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  1495
      apply (subst add.assoc)
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  1496
      apply (subst add.commute [of "{#v#}" "{#x#}"])
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  1497
      apply (subst add.assoc [symmetric])
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1498
      apply simp
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1499
      apply (rule mset_le_multiset_union_diff_commute)
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1500
      apply (simp add: mset_le_single nth_mem_mset)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1501
      done
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1502
  qed
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1503
qed
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1504
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1505
lemma mset_swap:
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1506
  "i < length ls \<Longrightarrow> j < length ls \<Longrightarrow>
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1507
    mset (ls[j := ls ! i, i := ls ! j]) = mset ls"
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  1508
  by (cases "i = j") (simp_all add: mset_update nth_mem_mset)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1509
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1510
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1511
subsection \<open>The multiset order\<close>
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1512
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1513
subsubsection \<open>Well-foundedness\<close>
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1514
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1515
definition mult1 :: "('a \<times> 'a) set \<Rightarrow> ('a multiset \<times> 'a multiset) set" where
37765
26bdfb7b680b dropped superfluous [code del]s
haftmann
parents: 37751
diff changeset
  1516
  "mult1 r = {(N, M). \<exists>a M0 K. M = M0 + {#a#} \<and> N = M0 + K \<and>
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
  1517
      (\<forall>b. b \<in># K \<longrightarrow> (b, a) \<in> r)}"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1518
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1519
definition mult :: "('a \<times> 'a) set \<Rightarrow> ('a multiset \<times> 'a multiset) set" where
37765
26bdfb7b680b dropped superfluous [code del]s
haftmann
parents: 37751
diff changeset
  1520
  "mult r = (mult1 r)\<^sup>+"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1521
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1522
lemma not_less_empty [iff]: "(M, {#}) \<notin> mult1 r"
26178
nipkow
parents: 26176
diff changeset
  1523
by (simp add: mult1_def)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1524
60608
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1525
lemma less_add:
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1526
  assumes mult1: "(N, M0 + {#a#}) \<in> mult1 r"
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1527
  shows
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1528
    "(\<exists>M. (M, M0) \<in> mult1 r \<and> N = M + {#a#}) \<or>
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1529
     (\<exists>K. (\<forall>b. b \<in># K \<longrightarrow> (b, a) \<in> r) \<and> N = M0 + K)"
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1530
proof -
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
  1531
  let ?r = "\<lambda>K a. \<forall>b. b \<in># K \<longrightarrow> (b, a) \<in> r"
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
  1532
  let ?R = "\<lambda>N M. \<exists>a M0 K. M = M0 + {#a#} \<and> N = M0 + K \<and> ?r K a"
60608
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1533
  obtain a' M0' K where M0: "M0 + {#a#} = M0' + {#a'#}"
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1534
    and N: "N = M0' + K"
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1535
    and r: "?r K a'"
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1536
    using mult1 unfolding mult1_def by auto
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1537
  show ?thesis (is "?case1 \<or> ?case2")
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1538
  proof -
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1539
    from M0 consider "M0 = M0'" "a = a'"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1540
      | K' where "M0 = K' + {#a'#}" "M0' = K' + {#a#}"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1541
      by atomize_elim (simp only: add_eq_conv_ex)
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
  1542
    then show ?thesis
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1543
    proof cases
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1544
      case 1
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
  1545
      with N r have "?r K a \<and> N = M0 + K" by simp
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1546
      then have ?case2 ..
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1547
      then show ?thesis ..
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1548
    next
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1549
      case 2
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1550
      from N 2(2) have n: "N = K' + K + {#a#}" by (simp add: ac_simps)
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1551
      with r 2(1) have "?R (K' + K) M0" by blast
60608
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1552
      with n have ?case1 by (simp add: mult1_def)
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1553
      then show ?thesis ..
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1554
    qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1555
  qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1556
qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1557
60608
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1558
lemma all_accessible:
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1559
  assumes "wf r"
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1560
  shows "\<forall>M. M \<in> Wellfounded.acc (mult1 r)"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1561
proof
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1562
  let ?R = "mult1 r"
54295
45a5523d4a63 qualifed popular user space names
haftmann
parents: 52289
diff changeset
  1563
  let ?W = "Wellfounded.acc ?R"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1564
  {
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1565
    fix M M0 a
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1566
    assume M0: "M0 \<in> ?W"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1567
      and wf_hyp: "\<And>b. (b, a) \<in> r \<Longrightarrow> (\<forall>M \<in> ?W. M + {#b#} \<in> ?W)"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1568
      and acc_hyp: "\<forall>M. (M, M0) \<in> ?R \<longrightarrow> M + {#a#} \<in> ?W"
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1569
    have "M0 + {#a#} \<in> ?W"
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1570
    proof (rule accI [of "M0 + {#a#}"])
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1571
      fix N
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1572
      assume "(N, M0 + {#a#}) \<in> ?R"
60608
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1573
      then consider M where "(M, M0) \<in> ?R" "N = M + {#a#}"
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1574
        | K where "\<forall>b. b \<in># K \<longrightarrow> (b, a) \<in> r" "N = M0 + K"
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1575
        by atomize_elim (rule less_add)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1576
      then show "N \<in> ?W"
60608
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1577
      proof cases
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1578
        case 1
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1579
        from acc_hyp have "(M, M0) \<in> ?R \<longrightarrow> M + {#a#} \<in> ?W" ..
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1580
        from this and \<open>(M, M0) \<in> ?R\<close> have "M + {#a#} \<in> ?W" ..
60608
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1581
        then show "N \<in> ?W" by (simp only: \<open>N = M + {#a#}\<close>)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1582
      next
60608
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1583
        case 2
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1584
        from this(1) have "M0 + K \<in> ?W"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1585
        proof (induct K)
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
  1586
          case empty
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1587
          from M0 show "M0 + {#} \<in> ?W" by simp
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
  1588
        next
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
  1589
          case (add K x)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1590
          from add.prems have "(x, a) \<in> r" by simp
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1591
          with wf_hyp have "\<forall>M \<in> ?W. M + {#x#} \<in> ?W" by blast
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1592
          moreover from add have "M0 + K \<in> ?W" by simp
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1593
          ultimately have "(M0 + K) + {#x#} \<in> ?W" ..
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  1594
          then show "M0 + (K + {#x#}) \<in> ?W" by (simp only: add.assoc)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1595
        qed
60608
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1596
        then show "N \<in> ?W" by (simp only: 2(2))
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1597
      qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1598
    qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1599
  } note tedious_reasoning = this
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1600
60608
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1601
  show "M \<in> ?W" for M
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1602
  proof (induct M)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1603
    show "{#} \<in> ?W"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1604
    proof (rule accI)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1605
      fix b assume "(b, {#}) \<in> ?R"
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1606
      with not_less_empty show "b \<in> ?W" by contradiction
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1607
    qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1608
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1609
    fix M a assume "M \<in> ?W"
60608
c5cbd90bd94e tuned proofs;
wenzelm
parents: 60607
diff changeset
  1610
    from \<open>wf r\<close> have "\<forall>M \<in> ?W. M + {#a#} \<in> ?W"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1611
    proof induct
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1612
      fix a
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1613
      assume r: "\<And>b. (b, a) \<in> r \<Longrightarrow> (\<forall>M \<in> ?W. M + {#b#} \<in> ?W)"
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1614
      show "\<forall>M \<in> ?W. M + {#a#} \<in> ?W"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1615
      proof
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1616
        fix M assume "M \<in> ?W"
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
  1617
        then show "M + {#a#} \<in> ?W"
23373
ead82c82da9e tuned proofs: avoid implicit prems;
wenzelm
parents: 23281
diff changeset
  1618
          by (rule acc_induct) (rule tedious_reasoning [OF _ r])
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1619
      qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1620
    qed
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1621
    from this and \<open>M \<in> ?W\<close> show "M + {#a#} \<in> ?W" ..
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1622
  qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1623
qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1624
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1625
theorem wf_mult1: "wf r \<Longrightarrow> wf (mult1 r)"
26178
nipkow
parents: 26176
diff changeset
  1626
by (rule acc_wfI) (rule all_accessible)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1627
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1628
theorem wf_mult: "wf r \<Longrightarrow> wf (mult r)"
26178
nipkow
parents: 26176
diff changeset
  1629
unfolding mult_def by (rule wf_trancl) (rule wf_mult1)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1630
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1631
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1632
subsubsection \<open>Closure-free presentation\<close>
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1633
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1634
text \<open>One direction.\<close>
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1635
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1636
lemma mult_implies_one_step:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1637
  "trans r \<Longrightarrow> (M, N) \<in> mult r \<Longrightarrow>
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
  1638
    \<exists>I J K. N = I + J \<and> M = I + K \<and> J \<noteq> {#} \<and>
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1639
    (\<forall>k \<in> set_mset K. \<exists>j \<in> set_mset J. (k, j) \<in> r)"
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1640
apply (unfold mult_def mult1_def set_mset_def)
26178
nipkow
parents: 26176
diff changeset
  1641
apply (erule converse_trancl_induct, clarify)
nipkow
parents: 26176
diff changeset
  1642
 apply (rule_tac x = M0 in exI, simp, clarify)
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
  1643
apply (case_tac "a \<in># K")
26178
nipkow
parents: 26176
diff changeset
  1644
 apply (rule_tac x = I in exI)
nipkow
parents: 26176
diff changeset
  1645
 apply (simp (no_asm))
nipkow
parents: 26176
diff changeset
  1646
 apply (rule_tac x = "(K - {#a#}) + Ka" in exI)
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  1647
 apply (simp (no_asm_simp) add: add.assoc [symmetric])
59807
22bc39064290 prefer local fixes;
wenzelm
parents: 59625
diff changeset
  1648
 apply (drule_tac f = "\<lambda>M. M - {#a#}" and x="S + T" for S T in arg_cong)
26178
nipkow
parents: 26176
diff changeset
  1649
 apply (simp add: diff_union_single_conv)
nipkow
parents: 26176
diff changeset
  1650
 apply (simp (no_asm_use) add: trans_def)
nipkow
parents: 26176
diff changeset
  1651
 apply blast
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
  1652
apply (subgoal_tac "a \<in># I")
26178
nipkow
parents: 26176
diff changeset
  1653
 apply (rule_tac x = "I - {#a#}" in exI)
nipkow
parents: 26176
diff changeset
  1654
 apply (rule_tac x = "J + {#a#}" in exI)
nipkow
parents: 26176
diff changeset
  1655
 apply (rule_tac x = "K + Ka" in exI)
nipkow
parents: 26176
diff changeset
  1656
 apply (rule conjI)
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
  1657
  apply (simp add: multiset_eq_iff split: nat_diff_split)
26178
nipkow
parents: 26176
diff changeset
  1658
 apply (rule conjI)
59807
22bc39064290 prefer local fixes;
wenzelm
parents: 59625
diff changeset
  1659
  apply (drule_tac f = "\<lambda>M. M - {#a#}" and x="S + T" for S T in arg_cong, simp)
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
  1660
  apply (simp add: multiset_eq_iff split: nat_diff_split)
26178
nipkow
parents: 26176
diff changeset
  1661
 apply (simp (no_asm_use) add: trans_def)
nipkow
parents: 26176
diff changeset
  1662
 apply blast
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
  1663
apply (subgoal_tac "a \<in># (M0 + {#a#})")
26178
nipkow
parents: 26176
diff changeset
  1664
 apply simp
nipkow
parents: 26176
diff changeset
  1665
apply (simp (no_asm))
nipkow
parents: 26176
diff changeset
  1666
done
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1667
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1668
lemma one_step_implies_mult_aux:
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1669
  "\<forall>I J K. size J = n \<and> J \<noteq> {#} \<and> (\<forall>k \<in> set_mset K. \<exists>j \<in> set_mset J. (k, j) \<in> r)
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1670
    \<longrightarrow> (I + K, I + J) \<in> mult r"
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1671
apply (induct n)
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1672
 apply auto
26178
nipkow
parents: 26176
diff changeset
  1673
apply (frule size_eq_Suc_imp_eq_union, clarify)
nipkow
parents: 26176
diff changeset
  1674
apply (rename_tac "J'", simp)
nipkow
parents: 26176
diff changeset
  1675
apply (erule notE, auto)
nipkow
parents: 26176
diff changeset
  1676
apply (case_tac "J' = {#}")
nipkow
parents: 26176
diff changeset
  1677
 apply (simp add: mult_def)
nipkow
parents: 26176
diff changeset
  1678
 apply (rule r_into_trancl)
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1679
 apply (simp add: mult1_def set_mset_def, blast)
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1680
txt \<open>Now we know @{term "J' \<noteq> {#}"}.\<close>
26178
nipkow
parents: 26176
diff changeset
  1681
apply (cut_tac M = K and P = "\<lambda>x. (x, a) \<in> r" in multiset_partition)
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1682
apply (erule_tac P = "\<forall>k \<in> set_mset K. P k" for P in rev_mp)
26178
nipkow
parents: 26176
diff changeset
  1683
apply (erule ssubst)
nipkow
parents: 26176
diff changeset
  1684
apply (simp add: Ball_def, auto)
nipkow
parents: 26176
diff changeset
  1685
apply (subgoal_tac
60607
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
  1686
  "((I + {# x \<in># K. (x, a) \<in> r #}) + {# x \<in># K. (x, a) \<notin> r #},
d440af2e584f more symbols;
wenzelm
parents: 60606
diff changeset
  1687
    (I + {# x \<in># K. (x, a) \<in> r #}) + J') \<in> mult r")
26178
nipkow
parents: 26176
diff changeset
  1688
 prefer 2
nipkow
parents: 26176
diff changeset
  1689
 apply force
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  1690
apply (simp (no_asm_use) add: add.assoc [symmetric] mult_def)
26178
nipkow
parents: 26176
diff changeset
  1691
apply (erule trancl_trans)
nipkow
parents: 26176
diff changeset
  1692
apply (rule r_into_trancl)
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1693
apply (simp add: mult1_def set_mset_def)
26178
nipkow
parents: 26176
diff changeset
  1694
apply (rule_tac x = a in exI)
nipkow
parents: 26176
diff changeset
  1695
apply (rule_tac x = "I + J'" in exI)
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1696
apply (simp add: ac_simps)
26178
nipkow
parents: 26176
diff changeset
  1697
done
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1698
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
  1699
lemma one_step_implies_mult:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1700
  "trans r \<Longrightarrow> J \<noteq> {#} \<Longrightarrow> \<forall>k \<in> set_mset K. \<exists>j \<in> set_mset J. (k, j) \<in> r
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1701
    \<Longrightarrow> (I + K, I + J) \<in> mult r"
26178
nipkow
parents: 26176
diff changeset
  1702
using one_step_implies_mult_aux by blast
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1703
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1704
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1705
subsubsection \<open>Partial-order properties\<close>
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1706
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1707
definition less_multiset :: "'a::order multiset \<Rightarrow> 'a multiset \<Rightarrow> bool"  (infix "#\<subset>#" 50)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1708
  where "M' #\<subset># M \<longleftrightarrow> (M', M) \<in> mult {(x', x). x' < x}"
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1709
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1710
definition le_multiset :: "'a::order multiset \<Rightarrow> 'a multiset \<Rightarrow> bool"  (infix "#\<subseteq>#" 50)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1711
  where "M' #\<subseteq># M \<longleftrightarrow> M' #\<subset># M \<or> M' = M"
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1712
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1713
notation (ASCII)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1714
  less_multiset (infix "#<#" 50) and
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61890
diff changeset
  1715
  le_multiset (infix "#<=#" 50)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1716
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1717
interpretation multiset_order: order le_multiset less_multiset
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1718
proof -
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1719
  have irrefl: "\<not> M #\<subset># M" for M :: "'a multiset"
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1720
  proof
59958
4538d41e8e54 renamed multiset ordering to free up nice <# etc. symbols for the standard subset
blanchet
parents: 59949
diff changeset
  1721
    assume "M #\<subset># M"
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1722
    then have MM: "(M, M) \<in> mult {(x, y). x < y}" by (simp add: less_multiset_def)
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1723
    have "trans {(x'::'a, x). x' < x}"
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1724
      by (rule transI) simp
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1725
    moreover note MM
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1726
    ultimately have "\<exists>I J K. M = I + J \<and> M = I + K
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1727
      \<and> J \<noteq> {#} \<and> (\<forall>k\<in>set_mset K. \<exists>j\<in>set_mset J. (k, j) \<in> {(x, y). x < y})"
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1728
      by (rule mult_implies_one_step)
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1729
    then obtain I J K where "M = I + J" and "M = I + K"
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1730
      and "J \<noteq> {#}" and "(\<forall>k\<in>set_mset K. \<exists>j\<in>set_mset J. (k, j) \<in> {(x, y). x < y})" by blast
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1731
    then have *: "K \<noteq> {#}" and **: "\<forall>k\<in>set_mset K. \<exists>j\<in>set_mset K. k < j" by auto
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1732
    have "finite (set_mset K)" by simp
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1733
    moreover note **
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1734
    ultimately have "set_mset K = {}"
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1735
      by (induct rule: finite_induct) (auto intro: order_less_trans)
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1736
    with * show False by simp
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1737
  qed
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1738
  have trans: "K #\<subset># M \<Longrightarrow> M #\<subset># N \<Longrightarrow> K #\<subset># N" for K M N :: "'a multiset"
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1739
    unfolding less_multiset_def mult_def by (blast intro: trancl_trans)
46921
aa862ff8a8a9 some proof indentation;
wenzelm
parents: 46756
diff changeset
  1740
  show "class.order (le_multiset :: 'a multiset \<Rightarrow> _) less_multiset"
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1741
    by standard (auto simp add: le_multiset_def irrefl dest: trans)
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1742
qed
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1743
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1744
lemma mult_less_irrefl [elim!]:
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1745
  fixes M :: "'a::order multiset"
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1746
  shows "M #\<subset># M \<Longrightarrow> R"
46730
e3b99d0231bc tuned proofs;
wenzelm
parents: 46394
diff changeset
  1747
  by simp
26567
7bcebb8c2d33 instantiation replacing primitive instance plus overloaded defs; more conservative type arities
haftmann
parents: 26178
diff changeset
  1748
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1749
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1750
subsubsection \<open>Monotonicity of multiset union\<close>
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1751
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1752
lemma mult1_union: "(B, D) \<in> mult1 r \<Longrightarrow> (C + B, C + D) \<in> mult1 r"
26178
nipkow
parents: 26176
diff changeset
  1753
apply (unfold mult1_def)
nipkow
parents: 26176
diff changeset
  1754
apply auto
nipkow
parents: 26176
diff changeset
  1755
apply (rule_tac x = a in exI)
nipkow
parents: 26176
diff changeset
  1756
apply (rule_tac x = "C + M0" in exI)
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  1757
apply (simp add: add.assoc)
26178
nipkow
parents: 26176
diff changeset
  1758
done
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1759
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1760
lemma union_less_mono2: "B #\<subset># D \<Longrightarrow> C + B #\<subset># C + (D::'a::order multiset)"
26178
nipkow
parents: 26176
diff changeset
  1761
apply (unfold less_multiset_def mult_def)
nipkow
parents: 26176
diff changeset
  1762
apply (erule trancl_induct)
40249
cd404ecb9107 Remove unnecessary premise of mult1_union
Lars Noschinski <noschinl@in.tum.de>
parents: 39533
diff changeset
  1763
 apply (blast intro: mult1_union)
cd404ecb9107 Remove unnecessary premise of mult1_union
Lars Noschinski <noschinl@in.tum.de>
parents: 39533
diff changeset
  1764
apply (blast intro: mult1_union trancl_trans)
26178
nipkow
parents: 26176
diff changeset
  1765
done
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1766
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1767
lemma union_less_mono1: "B #\<subset># D \<Longrightarrow> B + C #\<subset># D + (C::'a::order multiset)"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  1768
apply (subst add.commute [of B C])
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  1769
apply (subst add.commute [of D C])
26178
nipkow
parents: 26176
diff changeset
  1770
apply (erule union_less_mono2)
nipkow
parents: 26176
diff changeset
  1771
done
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1772
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
  1773
lemma union_less_mono:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1774
  fixes A B C D :: "'a::order multiset"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1775
  shows "A #\<subset># C \<Longrightarrow> B #\<subset># D \<Longrightarrow> A + B #\<subset># C + D"
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1776
  by (blast intro!: union_less_mono1 union_less_mono2 multiset_order.less_trans)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1777
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1778
interpretation multiset_order: ordered_ab_semigroup_add plus le_multiset less_multiset
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  1779
  by standard (auto simp add: le_multiset_def intro: union_less_mono2)
26145
95670b6e1fa3 tuned document;
wenzelm
parents: 26143
diff changeset
  1780
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
  1781
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1782
subsubsection \<open>Termination proofs with multiset orders\<close>
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1783
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1784
lemma multi_member_skip: "x \<in># XS \<Longrightarrow> x \<in># {# y #} + XS"
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1785
  and multi_member_this: "x \<in># {# x #} + XS"
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1786
  and multi_member_last: "x \<in># {# x #}"
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1787
  by auto
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1788
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1789
definition "ms_strict = mult pair_less"
37765
26bdfb7b680b dropped superfluous [code del]s
haftmann
parents: 37751
diff changeset
  1790
definition "ms_weak = ms_strict \<union> Id"
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1791
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1792
lemma ms_reduction_pair: "reduction_pair (ms_strict, ms_weak)"
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1793
unfolding reduction_pair_def ms_strict_def ms_weak_def pair_less_def
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1794
by (auto intro: wf_mult1 wf_trancl simp: mult_def)
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1795
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1796
lemma smsI:
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1797
  "(set_mset A, set_mset B) \<in> max_strict \<Longrightarrow> (Z + A, Z + B) \<in> ms_strict"
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1798
  unfolding ms_strict_def
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1799
by (rule one_step_implies_mult) (auto simp add: max_strict_def pair_less_def elim!:max_ext.cases)
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1800
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1801
lemma wmsI:
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1802
  "(set_mset A, set_mset B) \<in> max_strict \<or> A = {#} \<and> B = {#}
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1803
  \<Longrightarrow> (Z + A, Z + B) \<in> ms_weak"
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1804
unfolding ms_weak_def ms_strict_def
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1805
by (auto simp add: pair_less_def max_strict_def elim!:max_ext.cases intro: one_step_implies_mult)
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1806
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1807
inductive pw_leq
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1808
where
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1809
  pw_leq_empty: "pw_leq {#} {#}"
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1810
| pw_leq_step:  "\<lbrakk>(x,y) \<in> pair_leq; pw_leq X Y \<rbrakk> \<Longrightarrow> pw_leq ({#x#} + X) ({#y#} + Y)"
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1811
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1812
lemma pw_leq_lstep:
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1813
  "(x, y) \<in> pair_leq \<Longrightarrow> pw_leq {#x#} {#y#}"
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1814
by (drule pw_leq_step) (rule pw_leq_empty, simp)
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1815
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1816
lemma pw_leq_split:
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1817
  assumes "pw_leq X Y"
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1818
  shows "\<exists>A B Z. X = A + Z \<and> Y = B + Z \<and> ((set_mset A, set_mset B) \<in> max_strict \<or> (B = {#} \<and> A = {#}))"
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1819
  using assms
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1820
proof induct
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1821
  case pw_leq_empty thus ?case by auto
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1822
next
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1823
  case (pw_leq_step x y X Y)
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1824
  then obtain A B Z where
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
  1825
    [simp]: "X = A + Z" "Y = B + Z"
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1826
      and 1[simp]: "(set_mset A, set_mset B) \<in> max_strict \<or> (B = {#} \<and> A = {#})"
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1827
    by auto
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1828
  from pw_leq_step consider "x = y" | "(x, y) \<in> pair_less"
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1829
    unfolding pair_leq_def by auto
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1830
  thus ?case
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1831
  proof cases
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1832
    case [simp]: 1
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1833
    have "{#x#} + X = A + ({#y#}+Z) \<and> {#y#} + Y = B + ({#y#}+Z) \<and>
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1834
      ((set_mset A, set_mset B) \<in> max_strict \<or> (B = {#} \<and> A = {#}))"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1835
      by (auto simp: ac_simps)
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1836
    thus ?thesis by blast
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1837
  next
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1838
    case 2
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1839
    let ?A' = "{#x#} + A" and ?B' = "{#y#} + B"
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1840
    have "{#x#} + X = ?A' + Z"
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1841
      "{#y#} + Y = ?B' + Z"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1842
      by (auto simp add: ac_simps)
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
  1843
    moreover have
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1844
      "(set_mset ?A', set_mset ?B') \<in> max_strict"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1845
      using 1 2 unfolding max_strict_def
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1846
      by (auto elim!: max_ext.cases)
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1847
    ultimately show ?thesis by blast
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1848
  qed
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1849
qed
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1850
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
  1851
lemma
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1852
  assumes pwleq: "pw_leq Z Z'"
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1853
  shows ms_strictI: "(set_mset A, set_mset B) \<in> max_strict \<Longrightarrow> (Z + A, Z' + B) \<in> ms_strict"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1854
    and ms_weakI1:  "(set_mset A, set_mset B) \<in> max_strict \<Longrightarrow> (Z + A, Z' + B) \<in> ms_weak"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1855
    and ms_weakI2:  "(Z + {#}, Z' + {#}) \<in> ms_weak"
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1856
proof -
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
  1857
  from pw_leq_split[OF pwleq]
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1858
  obtain A' B' Z''
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1859
    where [simp]: "Z = A' + Z''" "Z' = B' + Z''"
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1860
    and mx_or_empty: "(set_mset A', set_mset B') \<in> max_strict \<or> (A' = {#} \<and> B' = {#})"
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1861
    by blast
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1862
  {
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1863
    assume max: "(set_mset A, set_mset B) \<in> max_strict"
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1864
    from mx_or_empty
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1865
    have "(Z'' + (A + A'), Z'' + (B + B')) \<in> ms_strict"
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1866
    proof
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1867
      assume max': "(set_mset A', set_mset B') \<in> max_strict"
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  1868
      with max have "(set_mset (A + A'), set_mset (B + B')) \<in> max_strict"
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1869
        by (auto simp: max_strict_def intro: max_ext_additive)
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
  1870
      thus ?thesis by (rule smsI)
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1871
    next
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1872
      assume [simp]: "A' = {#} \<and> B' = {#}"
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1873
      show ?thesis by (rule smsI) (auto intro: max)
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1874
    qed
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1875
    thus "(Z + A, Z' + B) \<in> ms_strict" by (simp add: ac_simps)
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1876
    thus "(Z + A, Z' + B) \<in> ms_weak" by (simp add: ms_weak_def)
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1877
  }
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1878
  from mx_or_empty
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1879
  have "(Z'' + A', Z'' + B') \<in> ms_weak" by (rule wmsI)
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1880
  thus "(Z + {#}, Z' + {#}) \<in> ms_weak" by (simp add:ac_simps)
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1881
qed
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1882
39301
e1bd8a54c40f added and renamed lemmas
nipkow
parents: 39198
diff changeset
  1883
lemma empty_neutral: "{#} + x = x" "x + {#} = x"
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1884
and nonempty_plus: "{# x #} + rs \<noteq> {#}"
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1885
and nonempty_single: "{# x #} \<noteq> {#}"
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1886
by auto
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1887
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1888
setup \<open>
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1889
  let
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1890
    fun msetT T = Type (@{type_name multiset}, [T]);
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1891
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1892
    fun mk_mset T [] = Const (@{const_abbrev Mempty}, msetT T)
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1893
      | mk_mset T [x] = Const (@{const_name single}, T --> msetT T) $ x
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1894
      | mk_mset T (x :: xs) =
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1895
            Const (@{const_name plus}, msetT T --> msetT T --> msetT T) $
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1896
                  mk_mset T [x] $ mk_mset T xs
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1897
60752
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60678
diff changeset
  1898
    fun mset_member_tac ctxt m i =
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1899
      if m <= 0 then
60752
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60678
diff changeset
  1900
        resolve_tac ctxt @{thms multi_member_this} i ORELSE
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60678
diff changeset
  1901
        resolve_tac ctxt @{thms multi_member_last} i
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1902
      else
60752
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60678
diff changeset
  1903
        resolve_tac ctxt @{thms multi_member_skip} i THEN mset_member_tac ctxt (m - 1) i
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60678
diff changeset
  1904
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60678
diff changeset
  1905
    fun mset_nonempty_tac ctxt =
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60678
diff changeset
  1906
      resolve_tac ctxt @{thms nonempty_plus} ORELSE'
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60678
diff changeset
  1907
      resolve_tac ctxt @{thms nonempty_single}
29125
d41182a8135c method "sizechange" proves termination of functions; added more infrastructure for termination proofs
krauss
parents: 28823
diff changeset
  1908
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1909
    fun regroup_munion_conv ctxt =
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1910
      Function_Lib.regroup_conv ctxt @{const_abbrev Mempty} @{const_name plus}
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1911
        (map (fn t => t RS eq_reflection) (@{thms ac_simps} @ @{thms empty_neutral}))
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1912
60752
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60678
diff changeset
  1913
    fun unfold_pwleq_tac ctxt i =
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60678
diff changeset
  1914
      (resolve_tac ctxt @{thms pw_leq_step} i THEN (fn st => unfold_pwleq_tac ctxt (i + 1) st))
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60678
diff changeset
  1915
        ORELSE (resolve_tac ctxt @{thms pw_leq_lstep} i)
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60678
diff changeset
  1916
        ORELSE (resolve_tac ctxt @{thms pw_leq_empty} i)
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1917
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1918
    val set_mset_simps = [@{thm set_mset_empty}, @{thm set_mset_single}, @{thm set_mset_union},
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1919
                        @{thm Un_insert_left}, @{thm Un_empty_left}]
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1920
  in
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1921
    ScnpReconstruct.multiset_setup (ScnpReconstruct.Multiset
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1922
    {
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1923
      msetT=msetT, mk_mset=mk_mset, mset_regroup_conv=regroup_munion_conv,
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1924
      mset_member_tac=mset_member_tac, mset_nonempty_tac=mset_nonempty_tac,
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1925
      mset_pwleq_tac=unfold_pwleq_tac, set_of_simps=set_mset_simps,
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1926
      smsI'= @{thm ms_strictI}, wmsI2''= @{thm ms_weakI2}, wmsI1= @{thm ms_weakI1},
60752
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60678
diff changeset
  1927
      reduction_pair = @{thm ms_reduction_pair}
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1928
    })
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1929
  end
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1930
\<close>
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1931
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1932
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1933
subsection \<open>Legacy theorem bindings\<close>
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1934
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39301
diff changeset
  1935
lemmas multi_count_eq = multiset_eq_iff [symmetric]
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1936
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1937
lemma union_commute: "M + N = N + (M::'a multiset)"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  1938
  by (fact add.commute)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1939
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1940
lemma union_assoc: "(M + N) + K = M + (N + (K::'a multiset))"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  1941
  by (fact add.assoc)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1942
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1943
lemma union_lcomm: "M + (N + K) = N + (M + (K::'a multiset))"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  1944
  by (fact add.left_commute)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1945
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1946
lemmas union_ac = union_assoc union_commute union_lcomm
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1947
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1948
lemma union_right_cancel: "M + K = N + K \<longleftrightarrow> M = (N::'a multiset)"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1949
  by (fact add_right_cancel)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1950
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1951
lemma union_left_cancel: "K + M = K + N \<longleftrightarrow> M = (N::'a multiset)"
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1952
  by (fact add_left_cancel)
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1953
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1954
lemma multi_union_self_other_eq: "(A::'a multiset) + X = A + Y \<Longrightarrow> X = Y"
59557
ebd8ecacfba6 establish unique preferred fact names
haftmann
parents: 58881
diff changeset
  1955
  by (fact add_left_imp_eq)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1956
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
  1957
lemma mset_less_trans: "(M::'a multiset) <# K \<Longrightarrow> K <# N \<Longrightarrow> M <# N"
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
  1958
  by (fact subset_mset.less_trans)
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1959
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1960
lemma multiset_inter_commute: "A #\<inter> B = B #\<inter> A"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
  1961
  by (fact subset_mset.inf.commute)
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1962
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1963
lemma multiset_inter_assoc: "A #\<inter> (B #\<inter> C) = A #\<inter> B #\<inter> C"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
  1964
  by (fact subset_mset.inf.assoc [symmetric])
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1965
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1966
lemma multiset_inter_left_commute: "A #\<inter> (B #\<inter> C) = B #\<inter> (A #\<inter> C)"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
  1967
  by (fact subset_mset.inf.left_commute)
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1968
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1969
lemmas multiset_inter_ac =
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1970
  multiset_inter_commute
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1971
  multiset_inter_assoc
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1972
  multiset_inter_left_commute
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1973
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1974
lemma mult_less_not_refl: "\<not> M #\<subset># (M::'a::order multiset)"
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1975
  by (fact multiset_order.less_irrefl)
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1976
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1977
lemma mult_less_trans: "K #\<subset># M \<Longrightarrow> M #\<subset># N \<Longrightarrow> K #\<subset># (N::'a::order multiset)"
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1978
  by (fact multiset_order.less_trans)
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
  1979
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1980
lemma mult_less_not_sym: "M #\<subset># N \<Longrightarrow> \<not> N #\<subset># (M::'a::order multiset)"
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1981
  by (fact multiset_order.less_not_sym)
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1982
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1983
lemma mult_less_asym: "M #\<subset># N \<Longrightarrow> (\<not> P \<Longrightarrow> N #\<subset># (M::'a::order multiset)) \<Longrightarrow> P"
35268
04673275441a switched notations for pointwise and multiset order
haftmann
parents: 35028
diff changeset
  1984
  by (fact multiset_order.less_asym)
34943
e97b22500a5c cleanup of Multiset.thy: less duplication, tuned and simplified a couple of proofs, less historical organization of sections, conversion from associations lists to multisets, rudimentary code generation
haftmann
parents: 33102
diff changeset
  1985
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  1986
declaration \<open>
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1987
  let
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1988
    fun multiset_postproc _ maybe_name all_values (T as Type (_, [elem_T])) (Const _ $ t') =
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1989
          let
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1990
            val (maybe_opt, ps) =
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1991
              Nitpick_Model.dest_plain_fun t'
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1992
              ||> op ~~
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1993
              ||> map (apsnd (snd o HOLogic.dest_number))
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1994
            fun elems_for t =
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1995
              (case AList.lookup (op =) ps t of
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1996
                SOME n => replicate n t
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1997
              | NONE => [Const (maybe_name, elem_T --> elem_T) $ t])
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1998
          in
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  1999
            (case maps elems_for (all_values elem_T) @
61333
24b5e7579fdd compile
blanchet
parents: 61188
diff changeset
  2000
                 (if maybe_opt then [Const (Nitpick_Model.unrep_mixfix (), elem_T)] else []) of
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2001
              [] => Const (@{const_name zero_class.zero}, T)
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2002
            | ts =>
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2003
                foldl1 (fn (t1, t2) =>
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2004
                    Const (@{const_name plus_class.plus}, T --> T --> T) $ t1 $ t2)
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2005
                  (map (curry (op $) (Const (@{const_name single}, elem_T --> T))) ts))
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2006
          end
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2007
      | multiset_postproc _ _ _ _ t = t
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2008
  in Nitpick_Model.register_term_postprocessor @{typ "'a multiset"} multiset_postproc end
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  2009
\<close>
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  2010
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  2011
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  2012
subsection \<open>Naive implementation using lists\<close>
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2013
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2014
code_datatype mset
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2015
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2016
lemma [code]: "{#} = mset []"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2017
  by simp
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2018
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2019
lemma [code]: "{#x#} = mset [x]"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2020
  by simp
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2021
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2022
lemma union_code [code]: "mset xs + mset ys = mset (xs @ ys)"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2023
  by simp
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2024
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2025
lemma [code]: "image_mset f (mset xs) = mset (map f xs)"
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2026
  by (simp add: mset_map)
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2027
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2028
lemma [code]: "filter_mset f (mset xs) = mset (filter f xs)"
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2029
  by (simp add: mset_filter)
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2030
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2031
lemma [code]: "mset xs - mset ys = mset (fold remove1 ys xs)"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2032
  by (rule sym, induct ys arbitrary: xs) (simp_all add: diff_add diff_right_commute)
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2033
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2034
lemma [code]:
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2035
  "mset xs #\<inter> mset ys =
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2036
    mset (snd (fold (\<lambda>x (ys, zs).
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2037
      if x \<in> set ys then (remove1 x ys, x # zs) else (ys, zs)) xs (ys, [])))"
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2038
proof -
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2039
  have "\<And>zs. mset (snd (fold (\<lambda>x (ys, zs).
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2040
    if x \<in> set ys then (remove1 x ys, x # zs) else (ys, zs)) xs (ys, zs))) =
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2041
      (mset xs #\<inter> mset ys) + mset zs"
51623
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
  2042
    by (induct xs arbitrary: ys)
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
  2043
      (auto simp add: mem_set_multiset_eq inter_add_right1 inter_add_right2 ac_simps)
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
  2044
  then show ?thesis by simp
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
  2045
qed
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
  2046
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
  2047
lemma [code]:
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2048
  "mset xs #\<union> mset ys =
61424
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61378
diff changeset
  2049
    mset (case_prod append (fold (\<lambda>x (ys, zs). (remove1 x ys, x # zs)) xs (ys, [])))"
51623
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
  2050
proof -
61424
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61378
diff changeset
  2051
  have "\<And>zs. mset (case_prod append (fold (\<lambda>x (ys, zs). (remove1 x ys, x # zs)) xs (ys, zs))) =
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2052
      (mset xs #\<union> mset ys) + mset zs"
51623
1194b438426a sup on multisets
haftmann
parents: 51600
diff changeset
  2053
    by (induct xs arbitrary: ys) (simp_all add: multiset_eq_iff)
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2054
  then show ?thesis by simp
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2055
qed
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2056
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  2057
declare in_multiset_in_set [code_unfold]
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2058
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2059
lemma [code]: "count (mset xs) x = fold (\<lambda>y. if x = y then Suc else id) xs 0"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2060
proof -
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2061
  have "\<And>n. fold (\<lambda>y. if x = y then Suc else id) xs n = count (mset xs) x + n"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2062
    by (induct xs) simp_all
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2063
  then show ?thesis by simp
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2064
qed
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2065
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2066
declare set_mset_mset [code]
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2067
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2068
declare sorted_list_of_multiset_mset [code]
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2069
61585
a9599d3d7610 isabelle update_cartouches -c -t;
wenzelm
parents: 61566
diff changeset
  2070
lemma [code]: \<comment> \<open>not very efficient, but representation-ignorant!\<close>
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2071
  "mset_set A = mset (sorted_list_of_set A)"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2072
  apply (cases "finite A")
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2073
  apply simp_all
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2074
  apply (induct A rule: finite_induct)
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  2075
  apply (simp_all add: add.commute)
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2076
  done
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2077
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2078
declare size_mset [code]
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2079
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
  2080
fun ms_lesseq_impl :: "'a list \<Rightarrow> 'a list \<Rightarrow> bool option" where
55808
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2081
  "ms_lesseq_impl [] ys = Some (ys \<noteq> [])"
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
  2082
| "ms_lesseq_impl (Cons x xs) ys = (case List.extract (op = x) ys of
55808
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2083
     None \<Rightarrow> None
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2084
   | Some (ys1,_,ys2) \<Rightarrow> ms_lesseq_impl xs (ys1 @ ys2))"
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2085
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2086
lemma ms_lesseq_impl: "(ms_lesseq_impl xs ys = None \<longleftrightarrow> \<not> mset xs \<le># mset ys) \<and>
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2087
  (ms_lesseq_impl xs ys = Some True \<longleftrightarrow> mset xs <# mset ys) \<and>
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2088
  (ms_lesseq_impl xs ys = Some False \<longrightarrow> mset xs = mset ys)"
55808
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2089
proof (induct xs arbitrary: ys)
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2090
  case (Nil ys)
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2091
  show ?case by (auto simp: mset_less_empty_nonempty)
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2092
next
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2093
  case (Cons x xs ys)
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2094
  show ?case
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2095
  proof (cases "List.extract (op = x) ys")
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2096
    case None
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2097
    hence x: "x \<notin> set ys" by (simp add: extract_None_iff)
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2098
    {
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2099
      assume "mset (x # xs) \<le># mset ys"
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  2100
      from set_mset_mono[OF this] x have False by simp
55808
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2101
    } note nle = this
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2102
    moreover
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2103
    {
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2104
      assume "mset (x # xs) <# mset ys"
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2105
      hence "mset (x # xs) \<le># mset ys" by auto
55808
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2106
      from nle[OF this] have False .
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2107
    }
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2108
    ultimately show ?thesis using None by auto
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2109
  next
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2110
    case (Some res)
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2111
    obtain ys1 y ys2 where res: "res = (ys1,y,ys2)" by (cases res, auto)
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2112
    note Some = Some[unfolded res]
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2113
    from extract_SomeE[OF Some] have "ys = ys1 @ x # ys2" by simp
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2114
    hence id: "mset ys = mset (ys1 @ ys2) + {#x#}"
55808
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2115
      by (auto simp: ac_simps)
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2116
    show ?thesis unfolding ms_lesseq_impl.simps
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2117
      unfolding Some option.simps split
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2118
      unfolding id
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2119
      using Cons[of "ys1 @ ys2"]
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59999
diff changeset
  2120
      unfolding subset_mset_def subseteq_mset_def by auto
55808
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2121
  qed
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2122
qed
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2123
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2124
lemma [code]: "mset xs \<le># mset ys \<longleftrightarrow> ms_lesseq_impl xs ys \<noteq> None"
55808
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2125
  using ms_lesseq_impl[of xs ys] by (cases "ms_lesseq_impl xs ys", auto)
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2126
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2127
lemma [code]: "mset xs <# mset ys \<longleftrightarrow> ms_lesseq_impl xs ys = Some True"
55808
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2128
  using ms_lesseq_impl[of xs ys] by (cases "ms_lesseq_impl xs ys", auto)
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2129
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2130
instantiation multiset :: (equal) equal
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2131
begin
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2132
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2133
definition
55808
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2134
  [code del]: "HOL.equal A (B :: 'a multiset) \<longleftrightarrow> A = B"
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2135
lemma [code]: "HOL.equal (mset xs) (mset ys) \<longleftrightarrow> ms_lesseq_impl xs ys = Some False"
55808
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2136
  unfolding equal_multiset_def
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 55565
diff changeset
  2137
  using ms_lesseq_impl[of xs ys] by (cases "ms_lesseq_impl xs ys", auto)
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2138
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2139
instance
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2140
  by standard (simp add: equal_multiset_def)
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2141
37169
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 37107
diff changeset
  2142
end
49388
1ffd5a055acf typeclass formalising bounded subtraction
haftmann
parents: 48040
diff changeset
  2143
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2144
lemma [code]: "msetsum (mset xs) = listsum xs"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2145
  by (induct xs) (simp_all add: add.commute)
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2146
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2147
lemma [code]: "msetprod (mset xs) = fold times xs 1"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2148
proof -
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2149
  have "\<And>x. fold times xs x = msetprod (mset xs) * x"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2150
    by (induct xs) (simp_all add: mult.assoc)
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2151
  then show ?thesis by simp
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2152
qed
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2153
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  2154
text \<open>
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2155
  Exercise for the casual reader: add implementations for @{const le_multiset}
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2156
  and @{const less_multiset} (multiset order).
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  2157
\<close>
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  2158
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  2159
text \<open>Quickcheck generators\<close>
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2160
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2161
definition (in term_syntax)
61076
bdc1e2f0a86a eliminated \<Colon>;
wenzelm
parents: 61031
diff changeset
  2162
  msetify :: "'a::typerep list \<times> (unit \<Rightarrow> Code_Evaluation.term)
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2163
    \<Rightarrow> 'a multiset \<times> (unit \<Rightarrow> Code_Evaluation.term)" where
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2164
  [code_unfold]: "msetify xs = Code_Evaluation.valtermify mset {\<cdot>} xs"
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2165
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2166
notation fcomp (infixl "\<circ>>" 60)
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2167
notation scomp (infixl "\<circ>\<rightarrow>" 60)
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2168
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2169
instantiation multiset :: (random) random
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2170
begin
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2171
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2172
definition
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2173
  "Quickcheck_Random.random i = Quickcheck_Random.random i \<circ>\<rightarrow> (\<lambda>xs. Pair (msetify xs))"
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2174
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2175
instance ..
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2176
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2177
end
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2178
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2179
no_notation fcomp (infixl "\<circ>>" 60)
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2180
no_notation scomp (infixl "\<circ>\<rightarrow>" 60)
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2181
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2182
instantiation multiset :: (full_exhaustive) full_exhaustive
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2183
begin
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2184
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2185
definition full_exhaustive_multiset :: "('a multiset \<times> (unit \<Rightarrow> term) \<Rightarrow> (bool \<times> term list) option) \<Rightarrow> natural \<Rightarrow> (bool \<times> term list) option"
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2186
where
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2187
  "full_exhaustive_multiset f i = Quickcheck_Exhaustive.full_exhaustive (\<lambda>xs. f (msetify xs)) i"
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2188
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2189
instance ..
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2190
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2191
end
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2192
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2193
hide_const (open) msetify
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
  2194
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2195
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  2196
subsection \<open>BNF setup\<close>
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2197
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2198
definition rel_mset where
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2199
  "rel_mset R X Y \<longleftrightarrow> (\<exists>xs ys. mset xs = X \<and> mset ys = Y \<and> list_all2 R xs ys)"
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2200
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2201
lemma mset_zip_take_Cons_drop_twice:
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2202
  assumes "length xs = length ys" "j \<le> length xs"
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2203
  shows "mset (zip (take j xs @ x # drop j xs) (take j ys @ y # drop j ys)) =
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2204
    mset (zip xs ys) + {#(x, y)#}"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2205
  using assms
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2206
proof (induct xs ys arbitrary: x y j rule: list_induct2)
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2207
  case Nil
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2208
  thus ?case
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2209
    by simp
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2210
next
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2211
  case (Cons x xs y ys)
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2212
  thus ?case
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2213
  proof (cases "j = 0")
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2214
    case True
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2215
    thus ?thesis
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2216
      by simp
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2217
  next
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2218
    case False
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2219
    then obtain k where k: "j = Suc k"
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2220
      by (cases j) simp
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2221
    hence "k \<le> length xs"
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2222
      using Cons.prems by auto
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2223
    hence "mset (zip (take k xs @ x # drop k xs) (take k ys @ y # drop k ys)) =
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2224
      mset (zip xs ys) + {#(x, y)#}"
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2225
      by (rule Cons.hyps(2))
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2226
    thus ?thesis
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2227
      unfolding k by (auto simp: add.commute union_lcomm)
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
  2228
  qed
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2229
qed
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2230
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2231
lemma ex_mset_zip_left:
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2232
  assumes "length xs = length ys" "mset xs' = mset xs"
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2233
  shows "\<exists>ys'. length ys' = length xs' \<and> mset (zip xs' ys') = mset (zip xs ys)"
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
  2234
using assms
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2235
proof (induct xs ys arbitrary: xs' rule: list_induct2)
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2236
  case Nil
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2237
  thus ?case
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2238
    by auto
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2239
next
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2240
  case (Cons x xs y ys xs')
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2241
  obtain j where j_len: "j < length xs'" and nth_j: "xs' ! j = x"
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2242
    by (metis Cons.prems in_set_conv_nth list.set_intros(1) mset_eq_setD)
58425
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
  2243
246985c6b20b simpler proof
blanchet
parents: 58247
diff changeset
  2244
  def xsa \<equiv> "take j xs' @ drop (Suc j) xs'"
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2245
  have "mset xs' = {#x#} + mset xsa"
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2246
    unfolding xsa_def using j_len nth_j
58247
98d0f85d247f enamed drop_Suc_conv_tl and nth_drop' to Cons_nth_drop_Suc
nipkow
parents: 58098
diff changeset
  2247
    by (metis (no_types) ab_semigroup_add_class.add_ac(1) append_take_drop_id Cons_nth_drop_Suc
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2248
      mset.simps(2) union_code add.commute)
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2249
  hence ms_x: "mset xsa = mset xs"
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2250
    by (metis Cons.prems add.commute add_right_imp_eq mset.simps(2))
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2251
  then obtain ysa where
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2252
    len_a: "length ysa = length xsa" and ms_a: "mset (zip xsa ysa) = mset (zip xs ys)"
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2253
    using Cons.hyps(2) by blast
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2254
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2255
  def ys' \<equiv> "take j ysa @ y # drop j ysa"
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2256
  have xs': "xs' = take j xsa @ x # drop j xsa"
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2257
    using ms_x j_len nth_j Cons.prems xsa_def
58247
98d0f85d247f enamed drop_Suc_conv_tl and nth_drop' to Cons_nth_drop_Suc
nipkow
parents: 58098
diff changeset
  2258
    by (metis append_eq_append_conv append_take_drop_id diff_Suc_Suc Cons_nth_drop_Suc length_Cons
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2259
      length_drop size_mset)
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2260
  have j_len': "j \<le> length xsa"
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2261
    using j_len xs' xsa_def
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2262
    by (metis add_Suc_right append_take_drop_id length_Cons length_append less_eq_Suc_le not_less)
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2263
  have "length ys' = length xs'"
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2264
    unfolding ys'_def using Cons.prems len_a ms_x
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2265
    by (metis add_Suc_right append_take_drop_id length_Cons length_append mset_eq_length)
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2266
  moreover have "mset (zip xs' ys') = mset (zip (x # xs) (y # ys))"
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2267
    unfolding xs' ys'_def
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2268
    by (rule trans[OF mset_zip_take_Cons_drop_twice])
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2269
      (auto simp: len_a ms_a j_len' add.commute)
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2270
  ultimately show ?case
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2271
    by blast
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2272
qed
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2273
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2274
lemma list_all2_reorder_left_invariance:
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2275
  assumes rel: "list_all2 R xs ys" and ms_x: "mset xs' = mset xs"
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2276
  shows "\<exists>ys'. list_all2 R xs' ys' \<and> mset ys' = mset ys"
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2277
proof -
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2278
  have len: "length xs = length ys"
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2279
    using rel list_all2_conv_all_nth by auto
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2280
  obtain ys' where
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2281
    len': "length xs' = length ys'" and ms_xy: "mset (zip xs' ys') = mset (zip xs ys)"
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2282
    using len ms_x by (metis ex_mset_zip_left)
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2283
  have "list_all2 R xs' ys'"
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2284
    using assms(1) len' ms_xy unfolding list_all2_iff by (blast dest: mset_eq_setD)
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2285
  moreover have "mset ys' = mset ys"
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2286
    using len len' ms_xy map_snd_zip mset_map by metis
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2287
  ultimately show ?thesis
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2288
    by blast
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2289
qed
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2290
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2291
lemma ex_mset: "\<exists>xs. mset xs = X"
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2292
  by (induct X) (simp, metis mset.simps(2))
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2293
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2294
bnf "'a multiset"
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2295
  map: image_mset
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  2296
  sets: set_mset
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2297
  bd: natLeq
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2298
  wits: "{#}"
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2299
  rel: rel_mset
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2300
proof -
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2301
  show "image_mset id = id"
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2302
    by (rule image_mset.id)
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2303
  show "image_mset (g \<circ> f) = image_mset g \<circ> image_mset f" for f g
59813
6320064f22bb more multiset theorems
blanchet
parents: 59807
diff changeset
  2304
    unfolding comp_def by (rule ext) (simp add: comp_def image_mset.compositionality)
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2305
  show "(\<And>z. z \<in> set_mset X \<Longrightarrow> f z = g z) \<Longrightarrow> image_mset f X = image_mset g X" for f g X
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2306
    by (induct X) (simp_all (no_asm),
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  2307
      metis One_nat_def Un_iff count_single mem_set_mset_iff set_mset_union zero_less_Suc)
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2308
  show "set_mset \<circ> image_mset f = op ` f \<circ> set_mset" for f
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2309
    by auto
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2310
  show "card_order natLeq"
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2311
    by (rule natLeq_card_order)
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2312
  show "BNF_Cardinal_Arithmetic.cinfinite natLeq"
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2313
    by (rule natLeq_cinfinite)
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2314
  show "ordLeq3 (card_of (set_mset X)) natLeq" for X
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2315
    by transfer
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2316
      (auto intro!: ordLess_imp_ordLeq simp: finite_iff_ordLess_natLeq[symmetric] multiset_def)
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2317
  show "rel_mset R OO rel_mset S \<le> rel_mset (R OO S)" for R S
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2318
    unfolding rel_mset_def[abs_def] OO_def
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2319
    apply clarify
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2320
    subgoal for X Z Y xs ys' ys zs
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2321
      apply (drule list_all2_reorder_left_invariance [where xs = ys' and ys = zs and xs' = ys])
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2322
      apply (auto intro: list_all2_trans)
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2323
      done
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2324
    done
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2325
  show "rel_mset R =
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60400
diff changeset
  2326
    (BNF_Def.Grp {x. set_mset x \<subseteq> {(x, y). R x y}} (image_mset fst))\<inverse>\<inverse> OO
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2327
    BNF_Def.Grp {x. set_mset x \<subseteq> {(x, y). R x y}} (image_mset snd)" for R
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2328
    unfolding rel_mset_def[abs_def] BNF_Def.Grp_def OO_def
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2329
    apply (rule ext)+
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2330
    apply auto
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2331
     apply (rule_tac x = "mset (zip xs ys)" in exI; auto)
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2332
        apply (metis list_all2_lengthD map_fst_zip mset_map)
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2333
       apply (auto simp: list_all2_iff)[1]
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2334
      apply (metis list_all2_lengthD map_snd_zip mset_map)
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2335
     apply (auto simp: list_all2_iff)[1]
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2336
    apply (rename_tac XY)
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2337
    apply (cut_tac X = XY in ex_mset)
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2338
    apply (erule exE)
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2339
    apply (rename_tac xys)
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2340
    apply (rule_tac x = "map fst xys" in exI)
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2341
    apply (auto simp: mset_map)
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2342
    apply (rule_tac x = "map snd xys" in exI)
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60513
diff changeset
  2343
    apply (auto simp: mset_map list_all2I subset_eq zip_map_fst_snd)
59997
90fb391a15c1 tuned proofs;
wenzelm
parents: 59986
diff changeset
  2344
    done
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2345
  show "z \<in> set_mset {#} \<Longrightarrow> False" for z
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2346
    by auto
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2347
qed
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2348
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2349
inductive rel_mset'
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2350
where
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2351
  Zero[intro]: "rel_mset' R {#} {#}"
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2352
| Plus[intro]: "\<lbrakk>R a b; rel_mset' R M N\<rbrakk> \<Longrightarrow> rel_mset' R (M + {#a#}) (N + {#b#})"
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2353
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2354
lemma rel_mset_Zero: "rel_mset R {#} {#}"
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2355
unfolding rel_mset_def Grp_def by auto
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2356
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2357
declare multiset.count[simp]
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2358
declare Abs_multiset_inverse[simp]
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2359
declare multiset.count_inverse[simp]
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2360
declare union_preserves_multiset[simp]
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2361
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2362
lemma rel_mset_Plus:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2363
  assumes ab: "R a b"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2364
    and MN: "rel_mset R M N"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2365
  shows "rel_mset R (M + {#a#}) (N + {#b#})"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2366
proof -
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2367
  have "\<exists>ya. image_mset fst y + {#a#} = image_mset fst ya \<and>
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2368
    image_mset snd y + {#b#} = image_mset snd ya \<and>
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2369
    set_mset ya \<subseteq> {(x, y). R x y}"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2370
    if "R a b" and "set_mset y \<subseteq> {(x, y). R x y}" for y
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2371
    using that by (intro exI[of _ "y + {#(a,b)#}"]) auto
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2372
  thus ?thesis
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2373
  using assms
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2374
  unfolding multiset.rel_compp_Grp Grp_def by blast
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2375
qed
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2376
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2377
lemma rel_mset'_imp_rel_mset: "rel_mset' R M N \<Longrightarrow> rel_mset R M N"
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2378
  by (induct rule: rel_mset'.induct) (auto simp: rel_mset_Zero rel_mset_Plus)
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2379
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2380
lemma rel_mset_size: "rel_mset R M N \<Longrightarrow> size M = size N"
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2381
  unfolding multiset.rel_compp_Grp Grp_def by auto
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2382
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2383
lemma multiset_induct2[case_names empty addL addR]:
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2384
  assumes empty: "P {#} {#}"
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2385
    and addL: "\<And>M N a. P M N \<Longrightarrow> P (M + {#a#}) N"
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2386
    and addR: "\<And>M N a. P M N \<Longrightarrow> P M (N + {#a#})"
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2387
  shows "P M N"
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2388
apply(induct N rule: multiset_induct)
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2389
  apply(induct M rule: multiset_induct, rule empty, erule addL)
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2390
  apply(induct M rule: multiset_induct, erule addR, erule addR)
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2391
done
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2392
59949
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
  2393
lemma multiset_induct2_size[consumes 1, case_names empty add]:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2394
  assumes c: "size M = size N"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2395
    and empty: "P {#} {#}"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2396
    and add: "\<And>M N a b. P M N \<Longrightarrow> P (M + {#a#}) (N + {#b#})"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2397
  shows "P M N"
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2398
  using c
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2399
proof (induct M arbitrary: N rule: measure_induct_rule[of size])
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2400
  case (less M)
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2401
  show ?case
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2402
  proof(cases "M = {#}")
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2403
    case True hence "N = {#}" using less.prems by auto
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2404
    thus ?thesis using True empty by auto
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2405
  next
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2406
    case False then obtain M1 a where M: "M = M1 + {#a#}" by (metis multi_nonempty_split)
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2407
    have "N \<noteq> {#}" using False less.prems by auto
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2408
    then obtain N1 b where N: "N = N1 + {#b#}" by (metis multi_nonempty_split)
59949
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
  2409
    have "size M1 = size N1" using less.prems unfolding M N by auto
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2410
    thus ?thesis using M N less.hyps add by auto
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2411
  qed
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2412
qed
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2413
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2414
lemma msed_map_invL:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2415
  assumes "image_mset f (M + {#a#}) = N"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2416
  shows "\<exists>N1. N = N1 + {#f a#} \<and> image_mset f M = N1"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2417
proof -
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2418
  have "f a \<in># N"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2419
    using assms multiset.set_map[of f "M + {#a#}"] by auto
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2420
  then obtain N1 where N: "N = N1 + {#f a#}" using multi_member_split by metis
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2421
  have "image_mset f M = N1" using assms unfolding N by simp
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2422
  thus ?thesis using N by blast
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2423
qed
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2424
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2425
lemma msed_map_invR:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2426
  assumes "image_mset f M = N + {#b#}"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2427
  shows "\<exists>M1 a. M = M1 + {#a#} \<and> f a = b \<and> image_mset f M1 = N"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2428
proof -
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2429
  obtain a where a: "a \<in># M" and fa: "f a = b"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2430
    using multiset.set_map[of f M] unfolding assms
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2431
    by (metis image_iff mem_set_mset_iff union_single_eq_member)
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2432
  then obtain M1 where M: "M = M1 + {#a#}" using multi_member_split by metis
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2433
  have "image_mset f M1 = N" using assms unfolding M fa[symmetric] by simp
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2434
  thus ?thesis using M fa by blast
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2435
qed
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2436
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2437
lemma msed_rel_invL:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2438
  assumes "rel_mset R (M + {#a#}) N"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2439
  shows "\<exists>N1 b. N = N1 + {#b#} \<and> R a b \<and> rel_mset R M N1"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2440
proof -
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2441
  obtain K where KM: "image_mset fst K = M + {#a#}"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2442
    and KN: "image_mset snd K = N" and sK: "set_mset K \<subseteq> {(a, b). R a b}"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2443
    using assms
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2444
    unfolding multiset.rel_compp_Grp Grp_def by auto
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2445
  obtain K1 ab where K: "K = K1 + {#ab#}" and a: "fst ab = a"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2446
    and K1M: "image_mset fst K1 = M" using msed_map_invR[OF KM] by auto
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2447
  obtain N1 where N: "N = N1 + {#snd ab#}" and K1N1: "image_mset snd K1 = N1"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2448
    using msed_map_invL[OF KN[unfolded K]] by auto
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2449
  have Rab: "R a (snd ab)" using sK a unfolding K by auto
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2450
  have "rel_mset R M N1" using sK K1M K1N1
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2451
    unfolding K multiset.rel_compp_Grp Grp_def by auto
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2452
  thus ?thesis using N Rab by auto
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2453
qed
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2454
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2455
lemma msed_rel_invR:
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2456
  assumes "rel_mset R M (N + {#b#})"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2457
  shows "\<exists>M1 a. M = M1 + {#a#} \<and> R a b \<and> rel_mset R M1 N"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2458
proof -
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2459
  obtain K where KN: "image_mset snd K = N + {#b#}"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2460
    and KM: "image_mset fst K = M" and sK: "set_mset K \<subseteq> {(a, b). R a b}"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2461
    using assms
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2462
    unfolding multiset.rel_compp_Grp Grp_def by auto
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2463
  obtain K1 ab where K: "K = K1 + {#ab#}" and b: "snd ab = b"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2464
    and K1N: "image_mset snd K1 = N" using msed_map_invR[OF KN] by auto
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2465
  obtain M1 where M: "M = M1 + {#fst ab#}" and K1M1: "image_mset fst K1 = M1"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2466
    using msed_map_invL[OF KM[unfolded K]] by auto
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2467
  have Rab: "R (fst ab) b" using sK b unfolding K by auto
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2468
  have "rel_mset R M1 N" using sK K1N K1M1
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2469
    unfolding K multiset.rel_compp_Grp Grp_def by auto
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2470
  thus ?thesis using M Rab by auto
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2471
qed
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2472
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2473
lemma rel_mset_imp_rel_mset':
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2474
  assumes "rel_mset R M N"
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2475
  shows "rel_mset' R M N"
59949
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
  2476
using assms proof(induct M arbitrary: N rule: measure_induct_rule[of size])
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2477
  case (less M)
59949
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 59815
diff changeset
  2478
  have c: "size M = size N" using rel_mset_size[OF less.prems] .
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2479
  show ?case
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2480
  proof(cases "M = {#}")
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2481
    case True hence "N = {#}" using c by simp
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2482
    thus ?thesis using True rel_mset'.Zero by auto
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2483
  next
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2484
    case False then obtain M1 a where M: "M = M1 + {#a#}" by (metis multi_nonempty_split)
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2485
    obtain N1 b where N: "N = N1 + {#b#}" and R: "R a b" and ms: "rel_mset R M1 N1"
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2486
      using msed_rel_invL[OF less.prems[unfolded M]] by auto
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2487
    have "rel_mset' R M1 N1" using less.hyps[of M1 N1] ms unfolding M by simp
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2488
    thus ?thesis using rel_mset'.Plus[of R a b, OF R] unfolding M N by simp
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2489
  qed
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2490
qed
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2491
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2492
lemma rel_mset_rel_mset': "rel_mset R M N = rel_mset' R M N"
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2493
  using rel_mset_imp_rel_mset' rel_mset'_imp_rel_mset by auto
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2494
60613
f11e9fd70b7d fix tex-output for rel_mset
hoelzl
parents: 60608
diff changeset
  2495
text \<open>The main end product for @{const rel_mset}: inductive characterization:\<close>
61337
4645502c3c64 fewer aliases for toplevel theorem statements;
wenzelm
parents: 61188
diff changeset
  2496
lemmas rel_mset_induct[case_names empty add, induct pred: rel_mset] =
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2497
  rel_mset'.induct[unfolded rel_mset_rel_mset'[symmetric]]
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2498
56656
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
  2499
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  2500
subsection \<open>Size setup\<close>
56656
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
  2501
57966
6fab7e95587d use 'image_mset' as BNF map function
blanchet
parents: 57518
diff changeset
  2502
lemma multiset_size_o_map: "size_multiset g \<circ> image_mset f = size_multiset (g \<circ> f)"
60678
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2503
  apply (rule ext)
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2504
  subgoal for x by (induct x) auto
17ba2df56dee tuned proofs;
wenzelm
parents: 60613
diff changeset
  2505
  done
56656
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
  2506
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  2507
setup \<open>
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2508
  BNF_LFP_Size.register_size_global @{type_name multiset} @{const_name size_multiset}
62082
614ef6d7a6b6 nicer 'Spec_Rules' for size function
blanchet
parents: 61955
diff changeset
  2509
    @{thm size_multiset_overloaded_def}
60606
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2510
    @{thms size_multiset_empty size_multiset_single size_multiset_union size_empty size_single
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2511
      size_union}
e5cb9271e339 more symbols;
wenzelm
parents: 60515
diff changeset
  2512
    @{thms multiset_size_o_map}
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60400
diff changeset
  2513
\<close>
56656
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
  2514
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
  2515
hide_const (open) wcount
7f9b686bf30a size function for multisets
blanchet
parents: 55945
diff changeset
  2516
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54868
diff changeset
  2517
end