src/HOL/Library/Multiset.thy
author bulwahn
Tue, 26 Feb 2008 11:18:43 +0100
changeset 26143 314c0bcb7df7
parent 26033 278025d5282d
child 26145 95670b6e1fa3
permissions -rw-r--r--
Added useful general lemmas from the work with the HeapMonad
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
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
     3
    Author:     Tobias Nipkow, Markus Wenzel, Lawrence C Paulson, Norbert Voelker
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
     4
*)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
     5
14706
71590b7733b7 tuned document;
wenzelm
parents: 14691
diff changeset
     6
header {* Multisets *}
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
     7
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15072
diff changeset
     8
theory Multiset
25595
6c48275f9c76 switched import from Main to List
haftmann
parents: 25571
diff changeset
     9
imports List
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15072
diff changeset
    10
begin
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    11
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    12
subsection {* The type of multisets *}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    13
25162
ad4d5365d9d8 went back to >0
nipkow
parents: 25140
diff changeset
    14
typedef 'a multiset = "{f::'a => nat. finite {x . f x > 0}}"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    15
proof
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
    16
  show "(\<lambda>x. 0::nat) \<in> ?multiset" by simp
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    17
qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    18
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    19
lemmas multiset_typedef [simp] =
10277
081c8641aa11 improved typedef;
wenzelm
parents: 10249
diff changeset
    20
    Abs_multiset_inverse Rep_multiset_inverse Rep_multiset
081c8641aa11 improved typedef;
wenzelm
parents: 10249
diff changeset
    21
  and [simp] = Rep_multiset_inject [symmetric]
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    22
19086
1b3780be6cc2 new-style definitions/abbreviations;
wenzelm
parents: 18730
diff changeset
    23
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21214
diff changeset
    24
  Mempty :: "'a multiset"  ("{#}") where
19086
1b3780be6cc2 new-style definitions/abbreviations;
wenzelm
parents: 18730
diff changeset
    25
  "{#} = Abs_multiset (\<lambda>a. 0)"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    26
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21214
diff changeset
    27
definition
25507
d13468d40131 added {#.,.,...#}
nipkow
parents: 25208
diff changeset
    28
  single :: "'a => 'a multiset" where
d13468d40131 added {#.,.,...#}
nipkow
parents: 25208
diff changeset
    29
  "single a = Abs_multiset (\<lambda>b. if b = a then 1 else 0)"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    30
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
    31
declare
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
    32
  Mempty_def[code func del] single_def[code func del]
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
    33
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21214
diff changeset
    34
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21214
diff changeset
    35
  count :: "'a multiset => 'a => nat" where
19086
1b3780be6cc2 new-style definitions/abbreviations;
wenzelm
parents: 18730
diff changeset
    36
  "count = Rep_multiset"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    37
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21214
diff changeset
    38
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21214
diff changeset
    39
  MCollect :: "'a multiset => ('a => bool) => 'a multiset" where
19086
1b3780be6cc2 new-style definitions/abbreviations;
wenzelm
parents: 18730
diff changeset
    40
  "MCollect M P = Abs_multiset (\<lambda>x. if P x then Rep_multiset M x else 0)"
1b3780be6cc2 new-style definitions/abbreviations;
wenzelm
parents: 18730
diff changeset
    41
19363
667b5ea637dd refined 'abbreviation';
wenzelm
parents: 19086
diff changeset
    42
abbreviation
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21214
diff changeset
    43
  Melem :: "'a => 'a multiset => bool"  ("(_/ :# _)" [50, 51] 50) where
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
    44
  "a :# M == 0 < count M a"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
    45
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
    46
notation (xsymbols) Melem (infix "\<in>#" 50)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    47
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    48
syntax
26033
278025d5282d modified MCollect syntax
nipkow
parents: 26016
diff changeset
    49
  "_MCollect" :: "pttrn => 'a multiset => bool => 'a multiset"    ("(1{# _ :# _./ _#})")
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    50
translations
26033
278025d5282d modified MCollect syntax
nipkow
parents: 26016
diff changeset
    51
  "{#x :# M. P#}" == "CONST MCollect M (\<lambda>x. P)"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    52
19086
1b3780be6cc2 new-style definitions/abbreviations;
wenzelm
parents: 18730
diff changeset
    53
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21214
diff changeset
    54
  set_of :: "'a multiset => 'a set" where
19086
1b3780be6cc2 new-style definitions/abbreviations;
wenzelm
parents: 18730
diff changeset
    55
  "set_of M = {x. x :# M}"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    56
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    57
instantiation multiset :: (type) "{plus, minus, zero, size}" 
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    58
begin
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    59
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    60
definition
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
    61
  union_def[code func del]:
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
    62
  "M + N == Abs_multiset (\<lambda>a. Rep_multiset M a + Rep_multiset N a)"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    63
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    64
definition
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
    65
  diff_def: "M - N == Abs_multiset (\<lambda>a. Rep_multiset M a - Rep_multiset N a)"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    66
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    67
definition
11701
3d51fbf81c17 sane numerals (stage 1): added generic 1, removed 1' and 2 on nat,
wenzelm
parents: 11655
diff changeset
    68
  Zero_multiset_def [simp]: "0 == {#}"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    69
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    70
definition
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
    71
  size_def[code func del]: "size M == setsum (count M) (set_of M)"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    72
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    73
instance ..
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    74
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25507
diff changeset
    75
end
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    76
19086
1b3780be6cc2 new-style definitions/abbreviations;
wenzelm
parents: 18730
diff changeset
    77
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21214
diff changeset
    78
  multiset_inter :: "'a multiset \<Rightarrow> 'a multiset \<Rightarrow> 'a multiset"  (infixl "#\<inter>" 70) where
19086
1b3780be6cc2 new-style definitions/abbreviations;
wenzelm
parents: 18730
diff changeset
    79
  "multiset_inter A B = A - (A - B)"
15869
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
    80
25507
d13468d40131 added {#.,.,...#}
nipkow
parents: 25208
diff changeset
    81
syntax -- "Multiset Enumeration"
d13468d40131 added {#.,.,...#}
nipkow
parents: 25208
diff changeset
    82
  "@multiset" :: "args => 'a multiset"    ("{#(_)#}")
d13468d40131 added {#.,.,...#}
nipkow
parents: 25208
diff changeset
    83
d13468d40131 added {#.,.,...#}
nipkow
parents: 25208
diff changeset
    84
translations
d13468d40131 added {#.,.,...#}
nipkow
parents: 25208
diff changeset
    85
  "{#x, xs#}" == "{#x#} + {#xs#}"
d13468d40131 added {#.,.,...#}
nipkow
parents: 25208
diff changeset
    86
  "{#x#}" == "CONST single x"
d13468d40131 added {#.,.,...#}
nipkow
parents: 25208
diff changeset
    87
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    88
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    89
text {*
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    90
 \medskip Preservation of the representing set @{term multiset}.
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    91
*}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    92
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
    93
lemma const0_in_multiset: "(\<lambda>a. 0) \<in> multiset"
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
    94
  by (simp add: multiset_def)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    95
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
    96
lemma only1_in_multiset: "(\<lambda>b. if b = a then 1 else 0) \<in> multiset"
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
    97
  by (simp add: multiset_def)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
    98
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
    99
lemma union_preserves_multiset:
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   100
    "M \<in> multiset ==> N \<in> multiset ==> (\<lambda>a. M a + N a) \<in> multiset"
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   101
  apply (simp add: multiset_def)
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   102
  apply (drule (1) finite_UnI)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   103
  apply (simp del: finite_Un add: Un_def)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   104
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   105
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   106
lemma diff_preserves_multiset:
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   107
    "M \<in> multiset ==> (\<lambda>a. M a - N a) \<in> multiset"
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   108
  apply (simp add: multiset_def)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   109
  apply (rule finite_subset)
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   110
   apply auto
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   111
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   112
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   113
lemma MCollect_preserves_multiset:
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   114
    "M \<in> multiset ==> (\<lambda>x. if P x then M x else 0) \<in> multiset"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   115
  apply (simp add: multiset_def)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   116
  apply (rule finite_subset, auto)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   117
  done
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   118
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   119
lemmas in_multiset = const0_in_multiset only1_in_multiset
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   120
  union_preserves_multiset diff_preserves_multiset MCollect_preserves_multiset
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   121
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   122
subsection {* Algebraic properties *}
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   123
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   124
subsubsection {* Union *}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   125
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   126
lemma union_empty [simp]: "M + {#} = M \<and> {#} + M = M"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   127
by (simp add: union_def Mempty_def in_multiset)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   128
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   129
lemma union_commute: "M + N = N + (M::'a multiset)"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   130
by (simp add: union_def add_ac in_multiset)
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   131
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   132
lemma union_assoc: "(M + N) + K = M + (N + (K::'a multiset))"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   133
by (simp add: union_def add_ac in_multiset)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   134
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   135
lemma union_lcomm: "M + (N + K) = N + (M + (K::'a multiset))"
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   136
proof -
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   137
  have "M + (N + K) = (N + K) + M"
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   138
    by (rule union_commute)
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   139
  also have "\<dots> = N + (K + M)"
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   140
    by (rule union_assoc)
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   141
  also have "K + M = M + K"
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   142
    by (rule union_commute)
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   143
  finally show ?thesis .
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   144
qed
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   145
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   146
lemmas union_ac = union_assoc union_commute union_lcomm
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   147
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14722
diff changeset
   148
instance multiset :: (type) comm_monoid_add
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   149
proof
14722
8e739a6eaf11 replaced apply-style proof for instance Multiset :: plus_ac0 by recommended Isar proof style
obua
parents: 14706
diff changeset
   150
  fix a b c :: "'a multiset"
8e739a6eaf11 replaced apply-style proof for instance Multiset :: plus_ac0 by recommended Isar proof style
obua
parents: 14706
diff changeset
   151
  show "(a + b) + c = a + (b + c)" by (rule union_assoc)
8e739a6eaf11 replaced apply-style proof for instance Multiset :: plus_ac0 by recommended Isar proof style
obua
parents: 14706
diff changeset
   152
  show "a + b = b + a" by (rule union_commute)
8e739a6eaf11 replaced apply-style proof for instance Multiset :: plus_ac0 by recommended Isar proof style
obua
parents: 14706
diff changeset
   153
  show "0 + a = a" by simp
8e739a6eaf11 replaced apply-style proof for instance Multiset :: plus_ac0 by recommended Isar proof style
obua
parents: 14706
diff changeset
   154
qed
10277
081c8641aa11 improved typedef;
wenzelm
parents: 10249
diff changeset
   155
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   156
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   157
subsubsection {* Difference *}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   158
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   159
lemma diff_empty [simp]: "M - {#} = M \<and> {#} - M = {#}"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   160
by (simp add: Mempty_def diff_def in_multiset)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   161
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   162
lemma diff_union_inverse2 [simp]: "M + {#a#} - {#a#} = M"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   163
by (simp add: union_def diff_def in_multiset)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   164
26143
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   165
lemma diff_cancel: "A - A = {#}"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   166
by (simp add: diff_def Mempty_def)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   167
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   168
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   169
subsubsection {* Count of elements *}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   170
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   171
lemma count_empty [simp]: "count {#} a = 0"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   172
by (simp add: count_def Mempty_def in_multiset)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   173
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   174
lemma count_single [simp]: "count {#b#} a = (if b = a then 1 else 0)"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   175
by (simp add: count_def single_def in_multiset)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   176
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   177
lemma count_union [simp]: "count (M + N) a = count M a + count N a"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   178
by (simp add: count_def union_def in_multiset)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   179
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   180
lemma count_diff [simp]: "count (M - N) a = count M a - count N a"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   181
by (simp add: count_def diff_def in_multiset)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   182
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   183
lemma count_MCollect [simp]:
26033
278025d5282d modified MCollect syntax
nipkow
parents: 26016
diff changeset
   184
  "count {# x:#M. P x #} a = (if P a then count M a else 0)"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   185
by (simp add: count_def MCollect_def in_multiset)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   186
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   187
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   188
subsubsection {* Set of elements *}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   189
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   190
lemma set_of_empty [simp]: "set_of {#} = {}"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   191
by (simp add: set_of_def)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   192
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   193
lemma set_of_single [simp]: "set_of {#b#} = {b}"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   194
by (simp add: set_of_def)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   195
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   196
lemma set_of_union [simp]: "set_of (M + N) = set_of M \<union> set_of N"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   197
by (auto simp add: set_of_def)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   198
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   199
lemma set_of_eq_empty_iff [simp]: "(set_of M = {}) = (M = {#})"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   200
by(auto simp: set_of_def Mempty_def in_multiset count_def expand_fun_eq)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   201
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   202
lemma mem_set_of_iff [simp]: "(x \<in> set_of M) = (x :# M)"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   203
by (auto simp add: set_of_def)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   204
26033
278025d5282d modified MCollect syntax
nipkow
parents: 26016
diff changeset
   205
lemma set_of_MCollect [simp]: "set_of {# x:#M. P x #} = set_of M \<inter> {x. P x}"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   206
by (auto simp add: set_of_def)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   207
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   208
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   209
subsubsection {* Size *}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   210
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   211
lemma size_empty [simp,code func]: "size {#} = 0"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   212
by (simp add: size_def)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   213
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   214
lemma size_single [simp,code func]: "size {#b#} = 1"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   215
by (simp add: size_def)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   216
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   217
lemma finite_set_of [iff]: "finite (set_of M)"
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   218
  using Rep_multiset [of M]
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   219
  by (simp add: multiset_def set_of_def count_def)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   220
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   221
lemma setsum_count_Int:
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   222
    "finite A ==> setsum (count N) (A \<inter> set_of N) = setsum (count N) A"
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   223
  apply (induct rule: finite_induct)
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   224
   apply simp
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   225
  apply (simp add: Int_insert_left set_of_def)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   226
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   227
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   228
lemma size_union[simp,code func]: "size (M + N::'a multiset) = size M + size N"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   229
  apply (unfold size_def)
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   230
  apply (subgoal_tac "count (M + N) = (\<lambda>a. count M a + count N a)")
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   231
   prefer 2
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   232
   apply (rule ext, simp)
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15316
diff changeset
   233
  apply (simp (no_asm_simp) add: setsum_Un_nat setsum_addf setsum_count_Int)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   234
  apply (subst Int_commute)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   235
  apply (simp (no_asm_simp) add: setsum_count_Int)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   236
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   237
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   238
lemma size_eq_0_iff_empty [iff]: "(size M = 0) = (M = {#})"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   239
apply (unfold size_def Mempty_def count_def, auto simp: in_multiset)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   240
apply (simp add: set_of_def count_def in_multiset expand_fun_eq)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   241
done
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   242
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   243
lemma nonempty_has_size: "(S \<noteq> {#}) = (0 < size S)"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   244
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
   245
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   246
lemma size_eq_Suc_imp_elem: "size M = Suc n ==> \<exists>a. a :# M"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   247
  apply (unfold size_def)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   248
  apply (drule setsum_SucD, auto)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   249
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   250
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   251
subsubsection {* Equality of multisets *}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   252
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   253
lemma multiset_eq_conv_count_eq: "(M = N) = (\<forall>a. count M a = count N a)"
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   254
  by (simp add: count_def expand_fun_eq)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   255
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   256
lemma single_not_empty [simp]: "{#a#} \<noteq> {#} \<and> {#} \<noteq> {#a#}"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   257
by (simp add: single_def Mempty_def in_multiset expand_fun_eq)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   258
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   259
lemma single_eq_single [simp]: "({#a#} = {#b#}) = (a = b)"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   260
by (auto simp add: single_def in_multiset expand_fun_eq)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   261
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   262
lemma union_eq_empty [iff]: "(M + N = {#}) = (M = {#} \<and> N = {#})"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   263
by (auto simp add: union_def Mempty_def in_multiset expand_fun_eq)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   264
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   265
lemma empty_eq_union [iff]: "({#} = M + N) = (M = {#} \<and> N = {#})"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   266
by (auto simp add: union_def Mempty_def in_multiset expand_fun_eq)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   267
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   268
lemma union_right_cancel [simp]: "(M + K = N + K) = (M = (N::'a multiset))"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   269
by (simp add: union_def in_multiset expand_fun_eq)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   270
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   271
lemma union_left_cancel [simp]: "(K + M = K + N) = (M = (N::'a multiset))"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   272
by (simp add: union_def in_multiset expand_fun_eq)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   273
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   274
lemma union_is_single:
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   275
  "(M + N = {#a#}) = (M = {#a#} \<and> N={#} \<or> M = {#} \<and> N = {#a#})"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   276
apply (simp add: Mempty_def single_def union_def in_multiset add_is_1 expand_fun_eq)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   277
apply blast
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   278
done
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   279
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   280
lemma single_is_union:
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   281
     "({#a#} = M + N) = ({#a#} = M \<and> N = {#} \<or> M = {#} \<and> {#a#} = N)"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   282
apply (unfold Mempty_def single_def union_def)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   283
apply (simp add: add_is_1 one_is_add in_multiset expand_fun_eq)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   284
apply (blast dest: sym)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   285
done
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   286
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   287
lemma add_eq_conv_diff:
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   288
  "(M + {#a#} = N + {#b#}) =
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   289
   (M = N \<and> a = b \<or> M = N - {#a#} + {#b#} \<and> N = M - {#b#} + {#a#})"
24035
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23751
diff changeset
   290
  using [[simproc del: neq]]
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   291
  apply (unfold single_def union_def diff_def)
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   292
  apply (simp (no_asm) add: in_multiset expand_fun_eq)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   293
  apply (rule conjI, force, safe, simp_all)
13601
fd3e3d6b37b2 Adapted to new simplifier.
berghofe
parents: 13596
diff changeset
   294
  apply (simp add: eq_sym_conv)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   295
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   296
15869
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   297
declare Rep_multiset_inject [symmetric, simp del]
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   298
23611
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   299
instance multiset :: (type) cancel_ab_semigroup_add
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   300
proof
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   301
  fix a b c :: "'a multiset"
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   302
  show "a + b = a + c \<Longrightarrow> b = c" by simp
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   303
qed
15869
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   304
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   305
lemma insert_DiffM:
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   306
  "x \<in># M \<Longrightarrow> {#x#} + (M - {#x#}) = M"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   307
  by (clarsimp simp: multiset_eq_conv_count_eq)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   308
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   309
lemma insert_DiffM2[simp]:
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   310
  "x \<in># M \<Longrightarrow> M - {#x#} + {#x#} = M"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   311
  by (clarsimp simp: multiset_eq_conv_count_eq)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   312
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   313
lemma multi_union_self_other_eq: 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   314
  "(A::'a multiset) + X = A + Y \<Longrightarrow> X = Y"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   315
  by (induct A arbitrary: X Y, auto)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   316
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   317
lemma multi_self_add_other_not_self[simp]: "(A = A + {#x#}) = False"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   318
by (metis single_not_empty union_empty union_left_cancel)
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   319
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   320
lemma insert_noteq_member: 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   321
  assumes BC: "B + {#b#} = C + {#c#}"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   322
   and bnotc: "b \<noteq> c"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   323
  shows "c \<in># B"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   324
proof -
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   325
  have "c \<in># C + {#c#}" by simp
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   326
  have nc: "\<not> c \<in># {#b#}" using bnotc by simp
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   327
  hence "c \<in># B + {#b#}" using BC by simp
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   328
  thus "c \<in># B" using nc by simp
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   329
qed
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   330
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   331
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   332
lemma add_eq_conv_ex:
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   333
  "(M + {#a#} = N + {#b#}) =
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   334
    (M = N \<and> a = b \<or> (\<exists>K. M = K + {#b#} \<and> N = K + {#a#}))"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   335
by (auto simp add: add_eq_conv_diff)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   336
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   337
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   338
lemma empty_multiset_count:
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   339
  "(\<forall>x. count A x = 0) = (A = {#})"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   340
by(metis count_empty multiset_eq_conv_count_eq)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   341
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   342
15869
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   343
subsubsection {* Intersection *}
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   344
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   345
lemma multiset_inter_count:
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   346
  "count (A #\<inter> B) x = min (count A x) (count B x)"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   347
by (simp add: multiset_inter_def min_def)
15869
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   348
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   349
lemma multiset_inter_commute: "A #\<inter> B = B #\<inter> A"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   350
by (simp add: multiset_eq_conv_count_eq multiset_inter_count
21214
a91bab12b2bd adjusted two lemma names due to name change in interpretation
haftmann
parents: 20770
diff changeset
   351
    min_max.inf_commute)
15869
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   352
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   353
lemma multiset_inter_assoc: "A #\<inter> (B #\<inter> C) = A #\<inter> B #\<inter> C"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   354
by (simp add: multiset_eq_conv_count_eq multiset_inter_count
21214
a91bab12b2bd adjusted two lemma names due to name change in interpretation
haftmann
parents: 20770
diff changeset
   355
    min_max.inf_assoc)
15869
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   356
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   357
lemma multiset_inter_left_commute: "A #\<inter> (B #\<inter> C) = B #\<inter> (A #\<inter> C)"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   358
by (simp add: multiset_eq_conv_count_eq multiset_inter_count min_def)
15869
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   359
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   360
lemmas multiset_inter_ac =
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   361
  multiset_inter_commute
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   362
  multiset_inter_assoc
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   363
  multiset_inter_left_commute
15869
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   364
26143
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   365
lemma multiset_inter_single: "a \<noteq> b \<Longrightarrow> {#a#} #\<inter> {#b#} = {#}"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   366
by (simp add: multiset_eq_conv_count_eq multiset_inter_count)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   367
15869
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   368
lemma multiset_union_diff_commute: "B #\<inter> C = {#} \<Longrightarrow> A + B - C = A - C + B"
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   369
  apply (simp add: multiset_eq_conv_count_eq multiset_inter_count min_def
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   370
    split: split_if_asm)
15869
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   371
  apply clarsimp
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   372
  apply (erule_tac x = a in allE)
15869
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   373
  apply auto
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   374
  done
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   375
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   376
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   377
subsubsection {* Comprehension (filter) *}
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   378
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   379
lemma MCollect_empty[simp, code func]: "MCollect {#} P = {#}"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   380
by(simp add:MCollect_def Mempty_def Abs_multiset_inject in_multiset expand_fun_eq)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   381
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   382
lemma MCollect_single[simp, code func]:
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   383
  "MCollect {#x#} P = (if P x then {#x#} else {#})"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   384
by(simp add:MCollect_def Mempty_def single_def Abs_multiset_inject in_multiset expand_fun_eq)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   385
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   386
lemma MCollect_union[simp, code func]:
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   387
  "MCollect (M+N) f = MCollect M f + MCollect N f"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   388
by(simp add:MCollect_def union_def Abs_multiset_inject in_multiset expand_fun_eq)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   389
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   390
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   391
subsection {* Induction and case splits *}
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   392
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   393
lemma setsum_decr:
11701
3d51fbf81c17 sane numerals (stage 1): added generic 1, removed 1' and 2 on nat,
wenzelm
parents: 11655
diff changeset
   394
  "finite F ==> (0::nat) < f a ==>
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   395
    setsum (f (a := f a - 1)) F = (if a\<in>F then setsum f F - 1 else setsum f F)"
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   396
  apply (induct rule: finite_induct)
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   397
   apply auto
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   398
  apply (drule_tac a = a in mk_disjoint_insert, auto)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   399
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   400
10313
51e830bb7abe intro_classes by default;
wenzelm
parents: 10277
diff changeset
   401
lemma rep_multiset_induct_aux:
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   402
  assumes 1: "P (\<lambda>a. (0::nat))"
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   403
    and 2: "!!f b. f \<in> multiset ==> P f ==> P (f (b := f b + 1))"
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 24035
diff changeset
   404
  shows "\<forall>f. f \<in> multiset --> setsum f {x. f x \<noteq> 0} = n --> P f"
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   405
  apply (unfold multiset_def)
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   406
  apply (induct_tac n, simp, clarify)
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   407
   apply (subgoal_tac "f = (\<lambda>a.0)")
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   408
    apply simp
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   409
    apply (rule 1)
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   410
   apply (rule ext, force, clarify)
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   411
  apply (frule setsum_SucD, clarify)
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   412
  apply (rename_tac a)
25162
ad4d5365d9d8 went back to >0
nipkow
parents: 25140
diff changeset
   413
  apply (subgoal_tac "finite {x. (f (a := f a - 1)) x > 0}")
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   414
   prefer 2
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   415
   apply (rule finite_subset)
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   416
    prefer 2
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   417
    apply assumption
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   418
   apply simp
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   419
   apply blast
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   420
  apply (subgoal_tac "f = (f (a := f a - 1))(a := (f (a := f a - 1)) a + 1)")
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   421
   prefer 2
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   422
   apply (rule ext)
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   423
   apply (simp (no_asm_simp))
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   424
   apply (erule ssubst, rule 2 [unfolded multiset_def], blast)
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   425
  apply (erule allE, erule impE, erule_tac [2] mp, blast)
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   426
  apply (simp (no_asm_simp) add: setsum_decr del: fun_upd_apply One_nat_def)
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 24035
diff changeset
   427
  apply (subgoal_tac "{x. x \<noteq> a --> f x \<noteq> 0} = {x. f x \<noteq> 0}")
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   428
   prefer 2
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   429
   apply blast
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 24035
diff changeset
   430
  apply (subgoal_tac "{x. x \<noteq> a \<and> f x \<noteq> 0} = {x. f x \<noteq> 0} - {a}")
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   431
   prefer 2
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   432
   apply blast
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   433
  apply (simp add: le_imp_diff_is_add setsum_diff1_nat cong: conj_cong)
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   434
  done
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   435
10313
51e830bb7abe intro_classes by default;
wenzelm
parents: 10277
diff changeset
   436
theorem rep_multiset_induct:
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   437
  "f \<in> multiset ==> P (\<lambda>a. 0) ==>
11701
3d51fbf81c17 sane numerals (stage 1): added generic 1, removed 1' and 2 on nat,
wenzelm
parents: 11655
diff changeset
   438
    (!!f b. f \<in> multiset ==> P f ==> P (f (b := f b + 1))) ==> P f"
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   439
  using rep_multiset_induct_aux by blast
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   440
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   441
theorem multiset_induct [case_names empty add, induct type: multiset]:
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   442
  assumes empty: "P {#}"
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   443
    and add: "!!M x. P M ==> P (M + {#x#})"
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   444
  shows "P M"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   445
proof -
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   446
  note defns = union_def single_def Mempty_def
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   447
  show ?thesis
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   448
    apply (rule Rep_multiset_inverse [THEN subst])
10313
51e830bb7abe intro_classes by default;
wenzelm
parents: 10277
diff changeset
   449
    apply (rule Rep_multiset [THEN rep_multiset_induct])
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   450
     apply (rule empty [unfolded defns])
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   451
    apply (subgoal_tac "f(b := f b + 1) = (\<lambda>a. f a + (if a=b then 1 else 0))")
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   452
     prefer 2
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   453
     apply (simp add: expand_fun_eq)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   454
    apply (erule ssubst)
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   455
    apply (erule Abs_multiset_inverse [THEN subst])
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   456
    apply (drule add [unfolded defns, simplified])
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   457
    apply(simp add:in_multiset)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   458
    done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   459
qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   460
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   461
lemma multi_nonempty_split: "M \<noteq> {#} \<Longrightarrow> \<exists>A a. M = A + {#a#}"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   462
  by (induct M, auto)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   463
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   464
lemma multiset_cases [cases type, case_names empty add]:
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   465
  assumes em:  "M = {#} \<Longrightarrow> P"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   466
  assumes add: "\<And>N x. M = N + {#x#} \<Longrightarrow> P"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   467
  shows "P"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   468
proof (cases "M = {#}")
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   469
  assume "M = {#}" thus ?thesis using em by simp
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   470
next
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   471
  assume "M \<noteq> {#}"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   472
  then obtain M' m where "M = M' + {#m#}" 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   473
    by (blast dest: multi_nonempty_split)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   474
  thus ?thesis using add by simp
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   475
qed
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   476
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   477
lemma multi_member_split: "x \<in># M \<Longrightarrow> \<exists>A. M = A + {#x#}"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   478
  apply (cases M, simp)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   479
  apply (rule_tac x="M - {#x#}" in exI, simp)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   480
  done
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   481
26033
278025d5282d modified MCollect syntax
nipkow
parents: 26016
diff changeset
   482
lemma multiset_partition: "M = {# x:#M. P x #} + {# x:#M. \<not> P x #}"
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   483
  by (subst multiset_eq_conv_count_eq, auto)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   484
15869
3aca7f05cd12 intersection
kleing
parents: 15867
diff changeset
   485
declare multiset_typedef [simp del]
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   486
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   487
lemma multi_drop_mem_not_eq: "c \<in># B \<Longrightarrow> B - {#c#} \<noteq> B"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   488
  by (cases "B={#}", auto dest: multi_member_split)
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   489
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   490
subsection {* Orderings *}
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   491
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   492
subsubsection {* Well-foundedness *}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   493
19086
1b3780be6cc2 new-style definitions/abbreviations;
wenzelm
parents: 18730
diff changeset
   494
definition
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   495
  mult1 :: "('a \<times> 'a) set => ('a multiset \<times> 'a multiset) set" where
19086
1b3780be6cc2 new-style definitions/abbreviations;
wenzelm
parents: 18730
diff changeset
   496
  "mult1 r =
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   497
    {(N, M). \<exists>a M0 K. M = M0 + {#a#} \<and> N = M0 + K \<and>
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   498
      (\<forall>b. b :# K --> (b, a) \<in> r)}"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   499
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21214
diff changeset
   500
definition
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   501
  mult :: "('a \<times> 'a) set => ('a multiset \<times> 'a multiset) set" where
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   502
  "mult r = (mult1 r)\<^sup>+"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   503
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   504
lemma not_less_empty [iff]: "(M, {#}) \<notin> mult1 r"
10277
081c8641aa11 improved typedef;
wenzelm
parents: 10249
diff changeset
   505
  by (simp add: mult1_def)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   506
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   507
lemma less_add: "(N, M0 + {#a#}) \<in> mult1 r ==>
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   508
    (\<exists>M. (M, M0) \<in> mult1 r \<and> N = M + {#a#}) \<or>
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   509
    (\<exists>K. (\<forall>b. b :# K --> (b, a) \<in> r) \<and> N = M0 + K)"
19582
a669c98b9c24 get rid of 'concl is';
wenzelm
parents: 19564
diff changeset
   510
  (is "_ \<Longrightarrow> ?case1 (mult1 r) \<or> ?case2")
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   511
proof (unfold mult1_def)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   512
  let ?r = "\<lambda>K a. \<forall>b. b :# K --> (b, a) \<in> r"
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   513
  let ?R = "\<lambda>N M. \<exists>a M0 K. M = M0 + {#a#} \<and> N = M0 + K \<and> ?r K a"
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   514
  let ?case1 = "?case1 {(N, M). ?R N M}"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   515
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   516
  assume "(N, M0 + {#a#}) \<in> {(N, M). ?R N M}"
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   517
  then have "\<exists>a' M0' K.
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   518
      M0 + {#a#} = M0' + {#a'#} \<and> N = M0' + K \<and> ?r K a'" by simp
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   519
  then show "?case1 \<or> ?case2"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   520
  proof (elim exE conjE)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   521
    fix a' M0' K
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   522
    assume N: "N = M0' + K" and r: "?r K a'"
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   523
    assume "M0 + {#a#} = M0' + {#a'#}"
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   524
    then have "M0 = M0' \<and> a = a' \<or>
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   525
        (\<exists>K'. M0 = K' + {#a'#} \<and> M0' = K' + {#a#})"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   526
      by (simp only: add_eq_conv_ex)
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   527
    then show ?thesis
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   528
    proof (elim disjE conjE exE)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   529
      assume "M0 = M0'" "a = a'"
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   530
      with N r have "?r K a \<and> N = M0 + K" by simp
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   531
      then have ?case2 .. then show ?thesis ..
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   532
    next
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   533
      fix K'
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   534
      assume "M0' = K' + {#a#}"
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   535
      with N have n: "N = K' + K + {#a#}" by (simp add: union_ac)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   536
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   537
      assume "M0 = K' + {#a'#}"
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   538
      with r have "?R (K' + K) M0" by blast
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   539
      with n have ?case1 by simp then show ?thesis ..
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   540
    qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   541
  qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   542
qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   543
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   544
lemma all_accessible: "wf r ==> \<forall>M. M \<in> acc (mult1 r)"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   545
proof
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   546
  let ?R = "mult1 r"
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   547
  let ?W = "acc ?R"
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   548
  {
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   549
    fix M M0 a
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   550
    assume M0: "M0 \<in> ?W"
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   551
      and wf_hyp: "!!b. (b, a) \<in> r ==> (\<forall>M \<in> ?W. M + {#b#} \<in> ?W)"
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   552
      and acc_hyp: "\<forall>M. (M, M0) \<in> ?R --> M + {#a#} \<in> ?W"
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   553
    have "M0 + {#a#} \<in> ?W"
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   554
    proof (rule accI [of "M0 + {#a#}"])
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   555
      fix N
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   556
      assume "(N, M0 + {#a#}) \<in> ?R"
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   557
      then have "((\<exists>M. (M, M0) \<in> ?R \<and> N = M + {#a#}) \<or>
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   558
          (\<exists>K. (\<forall>b. b :# K --> (b, a) \<in> r) \<and> N = M0 + K))"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   559
        by (rule less_add)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   560
      then show "N \<in> ?W"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   561
      proof (elim exE disjE conjE)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   562
        fix M assume "(M, M0) \<in> ?R" and N: "N = M + {#a#}"
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   563
        from acc_hyp have "(M, M0) \<in> ?R --> M + {#a#} \<in> ?W" ..
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   564
        from this and `(M, M0) \<in> ?R` have "M + {#a#} \<in> ?W" ..
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   565
        then show "N \<in> ?W" by (simp only: N)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   566
      next
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   567
        fix K
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   568
        assume N: "N = M0 + K"
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   569
        assume "\<forall>b. b :# K --> (b, a) \<in> r"
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   570
        then have "M0 + K \<in> ?W"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   571
        proof (induct K)
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   572
          case empty
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   573
          from M0 show "M0 + {#} \<in> ?W" by simp
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   574
        next
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   575
          case (add K x)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   576
          from add.prems have "(x, a) \<in> r" by simp
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   577
          with wf_hyp have "\<forall>M \<in> ?W. M + {#x#} \<in> ?W" by blast
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   578
          moreover from add have "M0 + K \<in> ?W" by simp
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   579
          ultimately have "(M0 + K) + {#x#} \<in> ?W" ..
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   580
          then show "M0 + (K + {#x#}) \<in> ?W" by (simp only: union_assoc)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   581
        qed
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   582
        then show "N \<in> ?W" by (simp only: N)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   583
      qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   584
    qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   585
  } note tedious_reasoning = this
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   586
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   587
  assume wf: "wf r"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   588
  fix M
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   589
  show "M \<in> ?W"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   590
  proof (induct M)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   591
    show "{#} \<in> ?W"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   592
    proof (rule accI)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   593
      fix b assume "(b, {#}) \<in> ?R"
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   594
      with not_less_empty show "b \<in> ?W" by contradiction
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   595
    qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   596
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   597
    fix M a assume "M \<in> ?W"
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   598
    from wf have "\<forall>M \<in> ?W. M + {#a#} \<in> ?W"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   599
    proof induct
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   600
      fix a
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   601
      assume r: "!!b. (b, a) \<in> r ==> (\<forall>M \<in> ?W. M + {#b#} \<in> ?W)"
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   602
      show "\<forall>M \<in> ?W. M + {#a#} \<in> ?W"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   603
      proof
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   604
        fix M assume "M \<in> ?W"
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   605
        then show "M + {#a#} \<in> ?W"
23373
ead82c82da9e tuned proofs: avoid implicit prems;
wenzelm
parents: 23281
diff changeset
   606
          by (rule acc_induct) (rule tedious_reasoning [OF _ r])
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   607
      qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   608
    qed
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   609
    from this and `M \<in> ?W` show "M + {#a#} \<in> ?W" ..
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   610
  qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   611
qed
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   612
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   613
theorem wf_mult1: "wf r ==> wf (mult1 r)"
23373
ead82c82da9e tuned proofs: avoid implicit prems;
wenzelm
parents: 23281
diff changeset
   614
  by (rule acc_wfI) (rule all_accessible)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   615
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   616
theorem wf_mult: "wf r ==> wf (mult r)"
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   617
  unfolding mult_def by (rule wf_trancl) (rule wf_mult1)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   618
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   619
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   620
subsubsection {* Closure-free presentation *}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   621
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   622
(*Badly needed: a linear arithmetic procedure for multisets*)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   623
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   624
lemma diff_union_single_conv: "a :# J ==> I + J - {#a#} = I + (J - {#a#})"
23373
ead82c82da9e tuned proofs: avoid implicit prems;
wenzelm
parents: 23281
diff changeset
   625
  by (simp add: multiset_eq_conv_count_eq)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   626
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   627
text {* One direction. *}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   628
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   629
lemma mult_implies_one_step:
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   630
  "trans r ==> (M, N) \<in> mult r ==>
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   631
    \<exists>I J K. N = I + J \<and> M = I + K \<and> J \<noteq> {#} \<and>
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   632
    (\<forall>k \<in> set_of K. \<exists>j \<in> set_of J. (k, j) \<in> r)"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   633
  apply (unfold mult_def mult1_def set_of_def)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   634
  apply (erule converse_trancl_induct, clarify)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   635
   apply (rule_tac x = M0 in exI, simp, clarify)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   636
  apply (case_tac "a :# K")
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   637
   apply (rule_tac x = I in exI)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   638
   apply (simp (no_asm))
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   639
   apply (rule_tac x = "(K - {#a#}) + Ka" in exI)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   640
   apply (simp (no_asm_simp) add: union_assoc [symmetric])
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   641
   apply (drule_tac f = "\<lambda>M. M - {#a#}" in arg_cong)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   642
   apply (simp add: diff_union_single_conv)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   643
   apply (simp (no_asm_use) add: trans_def)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   644
   apply blast
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   645
  apply (subgoal_tac "a :# I")
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   646
   apply (rule_tac x = "I - {#a#}" in exI)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   647
   apply (rule_tac x = "J + {#a#}" in exI)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   648
   apply (rule_tac x = "K + Ka" in exI)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   649
   apply (rule conjI)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   650
    apply (simp add: multiset_eq_conv_count_eq split: nat_diff_split)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   651
   apply (rule conjI)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   652
    apply (drule_tac f = "\<lambda>M. M - {#a#}" in arg_cong, simp)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   653
    apply (simp add: multiset_eq_conv_count_eq split: nat_diff_split)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   654
   apply (simp (no_asm_use) add: trans_def)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   655
   apply blast
10277
081c8641aa11 improved typedef;
wenzelm
parents: 10249
diff changeset
   656
  apply (subgoal_tac "a :# (M0 + {#a#})")
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   657
   apply simp
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   658
  apply (simp (no_asm))
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   659
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   660
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   661
lemma elem_imp_eq_diff_union: "a :# M ==> M = M - {#a#} + {#a#}"
23373
ead82c82da9e tuned proofs: avoid implicit prems;
wenzelm
parents: 23281
diff changeset
   662
  by (simp add: multiset_eq_conv_count_eq)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   663
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   664
lemma size_eq_Suc_imp_eq_union: "size M = Suc n ==> \<exists>a N. M = N + {#a#}"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   665
  apply (erule size_eq_Suc_imp_elem [THEN exE])
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   666
  apply (drule elem_imp_eq_diff_union, auto)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   667
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   668
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   669
lemma one_step_implies_mult_aux:
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   670
  "trans r ==>
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   671
    \<forall>I J K. (size J = n \<and> J \<noteq> {#} \<and> (\<forall>k \<in> set_of K. \<exists>j \<in> set_of J. (k, j) \<in> r))
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   672
      --> (I + K, I + J) \<in> mult r"
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   673
  apply (induct_tac n, auto)
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   674
  apply (frule size_eq_Suc_imp_eq_union, clarify)
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   675
  apply (rename_tac "J'", simp)
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   676
  apply (erule notE, auto)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   677
  apply (case_tac "J' = {#}")
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   678
   apply (simp add: mult_def)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   679
   apply (rule r_into_trancl)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   680
   apply (simp add: mult1_def set_of_def, blast)
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   681
  txt {* Now we know @{term "J' \<noteq> {#}"}. *}
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   682
  apply (cut_tac M = K and P = "\<lambda>x. (x, a) \<in> r" in multiset_partition)
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   683
  apply (erule_tac P = "\<forall>k \<in> set_of K. ?P k" in rev_mp)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   684
  apply (erule ssubst)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   685
  apply (simp add: Ball_def, auto)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   686
  apply (subgoal_tac
26033
278025d5282d modified MCollect syntax
nipkow
parents: 26016
diff changeset
   687
    "((I + {# x :# K. (x, a) \<in> r #}) + {# x :# K. (x, a) \<notin> r #},
278025d5282d modified MCollect syntax
nipkow
parents: 26016
diff changeset
   688
      (I + {# x :# K. (x, a) \<in> r #}) + J') \<in> mult r")
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   689
   prefer 2
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   690
   apply force
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   691
  apply (simp (no_asm_use) add: union_assoc [symmetric] mult_def)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   692
  apply (erule trancl_trans)
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   693
  apply (rule r_into_trancl)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   694
  apply (simp add: mult1_def set_of_def)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   695
  apply (rule_tac x = a in exI)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   696
  apply (rule_tac x = "I + J'" in exI)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   697
  apply (simp add: union_ac)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   698
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   699
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   700
lemma one_step_implies_mult:
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   701
  "trans r ==> J \<noteq> {#} ==> \<forall>k \<in> set_of K. \<exists>j \<in> set_of J. (k, j) \<in> r
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   702
    ==> (I + K, I + J) \<in> mult r"
23373
ead82c82da9e tuned proofs: avoid implicit prems;
wenzelm
parents: 23281
diff changeset
   703
  using one_step_implies_mult_aux by blast
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   704
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   705
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   706
subsubsection {* Partial-order properties *}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   707
12338
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 11868
diff changeset
   708
instance multiset :: (type) ord ..
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   709
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   710
defs (overloaded)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   711
  less_multiset_def: "M' < M == (M', M) \<in> mult {(x', x). x' < x}"
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   712
  le_multiset_def: "M' <= M == M' = M \<or> M' < (M::'a multiset)"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   713
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   714
lemma trans_base_order: "trans {(x', x). x' < (x::'a::order)}"
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   715
  unfolding trans_def by (blast intro: order_less_trans)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   716
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   717
text {*
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   718
 \medskip Irreflexivity.
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   719
*}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   720
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   721
lemma mult_irrefl_aux:
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   722
    "finite A ==> (\<forall>x \<in> A. \<exists>y \<in> A. x < (y::'a::order)) \<Longrightarrow> A = {}"
23373
ead82c82da9e tuned proofs: avoid implicit prems;
wenzelm
parents: 23281
diff changeset
   723
  by (induct rule: finite_induct) (auto intro: order_less_trans)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   724
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   725
lemma mult_less_not_refl: "\<not> M < (M::'a::order multiset)"
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   726
  apply (unfold less_multiset_def, auto)
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   727
  apply (drule trans_base_order [THEN mult_implies_one_step], auto)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   728
  apply (drule finite_set_of [THEN mult_irrefl_aux [rule_format (no_asm)]])
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   729
  apply (simp add: set_of_eq_empty_iff)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   730
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   731
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   732
lemma mult_less_irrefl [elim!]: "M < (M::'a::order multiset) ==> R"
23373
ead82c82da9e tuned proofs: avoid implicit prems;
wenzelm
parents: 23281
diff changeset
   733
  using insert mult_less_not_refl by fast
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   734
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   735
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   736
text {* Transitivity. *}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   737
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   738
theorem mult_less_trans: "K < M ==> M < N ==> K < (N::'a::order multiset)"
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   739
  unfolding less_multiset_def mult_def by (blast intro: trancl_trans)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   740
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   741
text {* Asymmetry. *}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   742
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   743
theorem mult_less_not_sym: "M < N ==> \<not> N < (M::'a::order multiset)"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   744
  apply auto
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   745
  apply (rule mult_less_not_refl [THEN notE])
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   746
  apply (erule mult_less_trans, assumption)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   747
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   748
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   749
theorem mult_less_asym:
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 10714
diff changeset
   750
    "M < N ==> (\<not> P ==> N < (M::'a::order multiset)) ==> P"
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   751
  by (insert mult_less_not_sym, blast)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   752
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   753
theorem mult_le_refl [iff]: "M <= (M::'a::order multiset)"
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   754
  unfolding le_multiset_def by auto
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   755
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   756
text {* Anti-symmetry. *}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   757
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   758
theorem mult_le_antisym:
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   759
    "M <= N ==> N <= M ==> M = (N::'a::order multiset)"
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   760
  unfolding le_multiset_def by (blast dest: mult_less_not_sym)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   761
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   762
text {* Transitivity. *}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   763
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   764
theorem mult_le_trans:
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   765
    "K <= M ==> M <= N ==> K <= (N::'a::order multiset)"
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   766
  unfolding le_multiset_def by (blast intro: mult_less_trans)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   767
11655
923e4d0d36d5 tuned parentheses in relational expressions;
wenzelm
parents: 11549
diff changeset
   768
theorem mult_less_le: "(M < N) = (M <= N \<and> M \<noteq> (N::'a::order multiset))"
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   769
  unfolding le_multiset_def by auto
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   770
10277
081c8641aa11 improved typedef;
wenzelm
parents: 10249
diff changeset
   771
text {* Partial order. *}
081c8641aa11 improved typedef;
wenzelm
parents: 10249
diff changeset
   772
081c8641aa11 improved typedef;
wenzelm
parents: 10249
diff changeset
   773
instance multiset :: (order) order
081c8641aa11 improved typedef;
wenzelm
parents: 10249
diff changeset
   774
  apply intro_classes
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   775
  apply (rule mult_less_le)
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   776
  apply (rule mult_le_refl)
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   777
  apply (erule mult_le_trans, assumption)
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   778
  apply (erule mult_le_antisym, assumption)
10277
081c8641aa11 improved typedef;
wenzelm
parents: 10249
diff changeset
   779
  done
081c8641aa11 improved typedef;
wenzelm
parents: 10249
diff changeset
   780
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   781
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   782
subsubsection {* Monotonicity of multiset union *}
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   783
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   784
lemma mult1_union:
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   785
    "(B, D) \<in> mult1 r ==> trans r ==> (C + B, C + D) \<in> mult1 r"
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   786
  apply (unfold mult1_def, auto)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   787
  apply (rule_tac x = a in exI)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   788
  apply (rule_tac x = "C + M0" in exI)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   789
  apply (simp add: union_assoc)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   790
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   791
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   792
lemma union_less_mono2: "B < D ==> C + B < C + (D::'a::order multiset)"
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   793
  apply (unfold less_multiset_def mult_def)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   794
  apply (erule trancl_induct)
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   795
   apply (blast intro: mult1_union transI order_less_trans r_into_trancl)
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   796
  apply (blast intro: mult1_union transI order_less_trans r_into_trancl trancl_trans)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   797
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   798
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   799
lemma union_less_mono1: "B < D ==> B + C < D + (C::'a::order multiset)"
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   800
  apply (subst union_commute [of B C])
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   801
  apply (subst union_commute [of D C])
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   802
  apply (erule union_less_mono2)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   803
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   804
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   805
lemma union_less_mono:
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   806
    "A < C ==> B < D ==> A + B < C + (D::'a::order multiset)"
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   807
  apply (blast intro!: union_less_mono1 union_less_mono2 mult_less_trans)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   808
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   809
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   810
lemma union_le_mono:
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   811
    "A <= C ==> B <= D ==> A + B <= C + (D::'a::order multiset)"
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   812
  unfolding le_multiset_def
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   813
  by (blast intro: union_less_mono union_less_mono1 union_less_mono2)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   814
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   815
lemma empty_leI [iff]: "{#} <= (M::'a::order multiset)"
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   816
  apply (unfold le_multiset_def less_multiset_def)
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   817
  apply (case_tac "M = {#}")
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   818
   prefer 2
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   819
   apply (subgoal_tac "({#} + {#}, {#} + M) \<in> mult (Collect (split op <))")
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   820
    prefer 2
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   821
    apply (rule one_step_implies_mult)
23751
a7c7edf2c5ad Restored set notation.
berghofe
parents: 23611
diff changeset
   822
      apply (simp only: trans_def, auto)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   823
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   824
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   825
lemma union_upper1: "A <= A + (B::'a::order multiset)"
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   826
proof -
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   827
  have "A + {#} <= A + B" by (blast intro: union_le_mono)
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   828
  then show ?thesis by simp
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   829
qed
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   830
17161
57c69627d71a tuned some proofs;
wenzelm
parents: 15869
diff changeset
   831
lemma union_upper2: "B <= A + (B::'a::order multiset)"
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   832
  by (subst union_commute) (rule union_upper1)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   833
23611
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   834
instance multiset :: (order) pordered_ab_semigroup_add
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   835
apply intro_classes
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   836
apply(erule union_le_mono[OF mult_le_refl])
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   837
done
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   838
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   839
subsection {* Link with lists *}
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   840
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   841
primrec multiset_of :: "'a list \<Rightarrow> 'a multiset" where
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   842
"multiset_of [] = {#}" |
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
   843
"multiset_of (a # x) = multiset_of x + {# a #}"
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   844
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   845
lemma multiset_of_zero_iff[simp]: "(multiset_of x = {#}) = (x = [])"
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   846
  by (induct x) auto
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   847
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   848
lemma multiset_of_zero_iff_right[simp]: "({#} = multiset_of x) = (x = [])"
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   849
  by (induct x) auto
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   850
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   851
lemma set_of_multiset_of[simp]: "set_of(multiset_of x) = set x"
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   852
  by (induct x) auto
15867
5c63b6c2f4a5 some more lemmas about multiset_of
kleing
parents: 15630
diff changeset
   853
5c63b6c2f4a5 some more lemmas about multiset_of
kleing
parents: 15630
diff changeset
   854
lemma mem_set_multiset_eq: "x \<in> set xs = (x :# multiset_of xs)"
5c63b6c2f4a5 some more lemmas about multiset_of
kleing
parents: 15630
diff changeset
   855
  by (induct xs) auto
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   856
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   857
lemma multiset_of_append [simp]:
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   858
    "multiset_of (xs @ ys) = multiset_of xs + multiset_of ys"
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 19582
diff changeset
   859
  by (induct xs arbitrary: ys) (auto simp: union_ac)
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   860
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   861
lemma surj_multiset_of: "surj multiset_of"
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   862
  apply (unfold surj_def, rule allI)
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   863
  apply (rule_tac M=y in multiset_induct, auto)
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   864
  apply (rule_tac x = "x # xa" in exI, auto)
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   865
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   866
25162
ad4d5365d9d8 went back to >0
nipkow
parents: 25140
diff changeset
   867
lemma set_count_greater_0: "set x = {a. count (multiset_of x) a > 0}"
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   868
  by (induct x) auto
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   869
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   870
lemma distinct_count_atmost_1:
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   871
   "distinct x = (! a. count (multiset_of x) a = (if a \<in> set x then 1 else 0))"
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   872
   apply (induct x, simp, rule iffI, simp_all)
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   873
   apply (rule conjI)
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   874
   apply (simp_all add: set_of_multiset_of [THEN sym] del: set_of_multiset_of)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   875
   apply (erule_tac x=a in allE, simp, clarify)
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   876
   apply (erule_tac x=aa in allE, simp)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   877
   done
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   878
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   879
lemma multiset_of_eq_setD:
15867
5c63b6c2f4a5 some more lemmas about multiset_of
kleing
parents: 15630
diff changeset
   880
  "multiset_of xs = multiset_of ys \<Longrightarrow> set xs = set ys"
5c63b6c2f4a5 some more lemmas about multiset_of
kleing
parents: 15630
diff changeset
   881
  by (rule) (auto simp add:multiset_eq_conv_count_eq set_count_greater_0)
5c63b6c2f4a5 some more lemmas about multiset_of
kleing
parents: 15630
diff changeset
   882
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   883
lemma set_eq_iff_multiset_of_eq_distinct:
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   884
  "\<lbrakk>distinct x; distinct y\<rbrakk>
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   885
   \<Longrightarrow> (set x = set y) = (multiset_of x = multiset_of y)"
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   886
  by (auto simp: multiset_eq_conv_count_eq distinct_count_atmost_1)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   887
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   888
lemma set_eq_iff_multiset_of_remdups_eq:
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   889
   "(set x = set y) = (multiset_of (remdups x) = multiset_of (remdups y))"
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   890
  apply (rule iffI)
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   891
  apply (simp add: set_eq_iff_multiset_of_eq_distinct[THEN iffD1])
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   892
  apply (drule distinct_remdups[THEN distinct_remdups
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   893
                      [THEN set_eq_iff_multiset_of_eq_distinct[THEN iffD2]]])
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   894
  apply simp
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   895
  done
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
   896
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   897
lemma multiset_of_compl_union [simp]:
23281
e26ec695c9b3 changed filter syntax from : to <-
nipkow
parents: 22316
diff changeset
   898
    "multiset_of [x\<leftarrow>xs. P x] + multiset_of [x\<leftarrow>xs. \<not>P x] = multiset_of xs"
15630
cc3776f004e2 fixed typo (multiset_append)
kleing
parents: 15402
diff changeset
   899
  by (induct xs) (auto simp: union_ac)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   900
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   901
lemma count_filter:
23281
e26ec695c9b3 changed filter syntax from : to <-
nipkow
parents: 22316
diff changeset
   902
    "count (multiset_of xs) x = length [y \<leftarrow> xs. y = x]"
18258
836491e9b7d5 tuned induct proofs;
wenzelm
parents: 17778
diff changeset
   903
  by (induct xs) auto
15867
5c63b6c2f4a5 some more lemmas about multiset_of
kleing
parents: 15630
diff changeset
   904
26143
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   905
lemma nth_mem_multiset_of: "i < length ls \<Longrightarrow> (ls ! i) :# multiset_of ls"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   906
by (induct ls arbitrary: i, simp, case_tac i, auto)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   907
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   908
lemma multiset_of_remove1: "multiset_of (remove1 a xs) = multiset_of xs - {#a#}"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   909
by (induct xs, auto simp add: multiset_eq_conv_count_eq)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   910
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   911
lemma multiset_of_eq_length:
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   912
  assumes "multiset_of xs = multiset_of ys"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   913
  shows "List.length xs = List.length ys"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   914
  using assms
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   915
proof (induct arbitrary: ys rule: length_induct)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   916
  case (1 xs ys)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   917
  show ?case
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   918
  proof (cases xs)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   919
    case Nil with 1(2) show ?thesis by simp
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   920
  next
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   921
    case (Cons x xs')
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   922
    note xCons = Cons
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   923
    show ?thesis
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   924
    proof (cases ys)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   925
      case Nil
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   926
      with 1(2) Cons show ?thesis by simp
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   927
    next
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   928
      case (Cons y ys')
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   929
      have x_in_ys: "x = y \<or> x \<in> set ys'"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   930
      proof (cases "x = y")
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   931
	case True thus ?thesis ..
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   932
      next
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   933
	case False
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   934
	from 1(2)[symmetric] xCons Cons have "x :# multiset_of ys' + {#y#}" by simp
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   935
	with False show ?thesis by (simp add: mem_set_multiset_eq)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   936
      qed
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   937
      from 1(1) have IH: "List.length xs' < List.length xs \<longrightarrow>
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   938
	(\<forall>x. multiset_of xs' = multiset_of x \<longrightarrow> List.length xs' = List.length x)" by blast
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   939
      from 1(2) x_in_ys Cons xCons have "multiset_of xs' = multiset_of (remove1 x (y#ys'))"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   940
	apply -
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   941
	apply (simp add: multiset_of_remove1, simp only: add_eq_conv_diff)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   942
	apply fastsimp
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   943
	done
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   944
      with IH xCons have IH': "List.length xs' = List.length (remove1 x (y#ys'))" by fastsimp
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   945
      from x_in_ys have "x \<noteq> y \<Longrightarrow> List.length ys' > 0" by auto
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   946
      with Cons xCons x_in_ys IH' show ?thesis by (auto simp add: length_remove1)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   947
    qed
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   948
  qed
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   949
qed
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   950
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   951
text {* This lemma shows which properties suffice to show that
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   952
  a function f with f xs = ys behaves like sort. *}
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   953
lemma properties_for_sort: "\<lbrakk> multiset_of ys = multiset_of xs; sorted ys\<rbrakk> \<Longrightarrow> sort xs = ys"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   954
proof (induct xs arbitrary: ys)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   955
  case Nil thus ?case by simp
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   956
next
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   957
  case (Cons x xs)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   958
  hence "x \<in> set ys" by (auto simp add:  mem_set_multiset_eq intro!: ccontr)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   959
  with Cons.prems Cons.hyps [of "remove1 x ys"] show ?case
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   960
    by (simp add: sorted_remove1 multiset_of_remove1 insort_remove1)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   961
qed
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
   962
15867
5c63b6c2f4a5 some more lemmas about multiset_of
kleing
parents: 15630
diff changeset
   963
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   964
subsection {* Pointwise ordering induced by count *}
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   965
19086
1b3780be6cc2 new-style definitions/abbreviations;
wenzelm
parents: 18730
diff changeset
   966
definition
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   967
  mset_le :: "'a multiset \<Rightarrow> 'a multiset \<Rightarrow> bool"  (infix "\<le>#" 50) where
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   968
  "(A \<le># B) = (\<forall>a. count A a \<le> count B a)"
23611
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   969
definition
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   970
  mset_less :: "'a multiset \<Rightarrow> 'a multiset \<Rightarrow> bool"  (infix "<#" 50) where
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   971
  "(A <# B) = (A \<le># B \<and> A \<noteq> B)"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   972
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   973
notation mset_le (infix "\<subseteq>#" 50)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
   974
notation mset_less (infix "\<subset>#" 50)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   975
23611
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   976
lemma mset_le_refl[simp]: "A \<le># A"
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   977
  unfolding mset_le_def by auto
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   978
23611
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   979
lemma mset_le_trans: "\<lbrakk> A \<le># B; B \<le># C \<rbrakk> \<Longrightarrow> A \<le># C"
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   980
  unfolding mset_le_def by (fast intro: order_trans)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   981
23611
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   982
lemma mset_le_antisym: "\<lbrakk> A \<le># B; B \<le># A \<rbrakk> \<Longrightarrow> A = B"
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   983
  apply (unfold mset_le_def)
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   984
  apply (rule multiset_eq_conv_count_eq[THEN iffD2])
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   985
  apply (blast intro: order_antisym)
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   986
  done
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   987
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
   988
lemma mset_le_exists_conv:
23611
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   989
  "(A \<le># B) = (\<exists>C. B = A + C)"
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   990
  apply (unfold mset_le_def, rule iffI, rule_tac x = "B - A" in exI)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   991
  apply (auto intro: multiset_eq_conv_count_eq [THEN iffD2])
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   992
  done
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   993
23611
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   994
lemma mset_le_mono_add_right_cancel[simp]: "(A + C \<le># B + C) = (A \<le># B)"
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   995
  unfolding mset_le_def by auto
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   996
23611
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
   997
lemma mset_le_mono_add_left_cancel[simp]: "(C + A \<le># C + B) = (A \<le># B)"
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
   998
  unfolding mset_le_def by auto
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
   999
23611
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
  1000
lemma mset_le_mono_add: "\<lbrakk> A \<le># B; C \<le># D \<rbrakk> \<Longrightarrow> A + C \<le># B + D"
17200
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
  1001
  apply (unfold mset_le_def)
3a4d03d1a31b tuned presentation;
wenzelm
parents: 17161
diff changeset
  1002
  apply auto
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
  1003
  apply (erule_tac x=a in allE)+
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
  1004
  apply auto
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
  1005
  done
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
  1006
23611
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
  1007
lemma mset_le_add_left[simp]: "A \<le># A + B"
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
  1008
  unfolding mset_le_def by auto
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
  1009
23611
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
  1010
lemma mset_le_add_right[simp]: "B \<le># A + B"
18730
843da46f89ac tuned proofs;
wenzelm
parents: 18258
diff changeset
  1011
  unfolding mset_le_def by auto
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
  1012
26143
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1013
lemma mset_le_single: "a :# B \<Longrightarrow> {#a#} \<le># B"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1014
by (simp add: mset_le_def)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1015
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1016
lemma multiset_diff_union_assoc: "C \<le># B \<Longrightarrow> A + B - C = A + (B - C)"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1017
by (simp add: multiset_eq_conv_count_eq mset_le_def)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1018
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1019
lemma mset_le_multiset_union_diff_commute:
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1020
  assumes "B \<le># A"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1021
  shows "A - B + C = A + C - B"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1022
proof -
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1023
 from mset_le_exists_conv [of "B" "A"] assms have "\<exists>D. A = B + D" ..
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1024
 from this obtain D where "A = B + D" ..
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1025
 thus ?thesis
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1026
   apply -
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1027
   apply simp
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1028
   apply (subst union_commute)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1029
   apply (subst multiset_diff_union_assoc)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1030
   apply simp
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1031
   apply (simp add: diff_cancel)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1032
   apply (subst union_assoc)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1033
   apply (subst union_commute[of "B" _])
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1034
   apply (subst multiset_diff_union_assoc)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1035
   apply simp
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1036
   apply (simp add: diff_cancel)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1037
   done
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1038
qed
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1039
23611
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
  1040
lemma multiset_of_remdups_le: "multiset_of (remdups xs) \<le># multiset_of xs"
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
  1041
apply (induct xs)
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
  1042
 apply auto
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
  1043
apply (rule mset_le_trans)
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
  1044
 apply auto
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
  1045
done
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
  1046
26143
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1047
lemma multiset_of_update: "i < length ls \<Longrightarrow> multiset_of (ls[i := v]) = multiset_of ls - {#ls ! i#} + {#v#}"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1048
proof (induct ls arbitrary: i)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1049
  case Nil thus ?case by simp
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1050
next
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1051
  case (Cons x xs)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1052
  show ?case
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1053
    proof (cases i)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1054
      case 0 thus ?thesis by simp
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1055
    next
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1056
      case (Suc i')
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1057
      with Cons show ?thesis
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1058
	apply -
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1059
	apply simp
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1060
	apply (subst union_assoc)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1061
	apply (subst union_commute[where M="{#v#}" and N="{#x#}"])
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1062
	apply (subst union_assoc[symmetric])
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1063
	apply simp
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1064
	apply (rule mset_le_multiset_union_diff_commute)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1065
	apply (simp add: mset_le_single nth_mem_multiset_of)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1066
	done
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1067
  qed
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1068
qed
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1069
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1070
lemma multiset_of_swap: "\<lbrakk> i < length ls; j < length ls \<rbrakk> \<Longrightarrow> multiset_of (ls[j := ls ! i, i := ls ! j]) = multiset_of ls"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1071
apply (case_tac "i=j")
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1072
apply simp
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1073
apply (simp add: multiset_of_update)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1074
apply (subst elem_imp_eq_diff_union[symmetric])
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1075
apply (simp add: nth_mem_multiset_of)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1076
apply simp
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1077
done
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26033
diff changeset
  1078
25208
1a7318a04068 changed order of class parameters
haftmann
parents: 25162
diff changeset
  1079
interpretation mset_order:
1a7318a04068 changed order of class parameters
haftmann
parents: 25162
diff changeset
  1080
  order ["op \<le>#" "op <#"]
1a7318a04068 changed order of class parameters
haftmann
parents: 25162
diff changeset
  1081
  by (auto intro: order.intro mset_le_refl mset_le_antisym
1a7318a04068 changed order of class parameters
haftmann
parents: 25162
diff changeset
  1082
    mset_le_trans simp: mset_less_def)
23611
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
  1083
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
  1084
interpretation mset_order_cancel_semigroup:
25622
6067d838041a changed order in class parameters
haftmann
parents: 25610
diff changeset
  1085
  pordered_cancel_ab_semigroup_add ["op +" "op \<le>#" "op <#"]
25208
1a7318a04068 changed order of class parameters
haftmann
parents: 25162
diff changeset
  1086
  by unfold_locales (erule mset_le_mono_add [OF mset_le_refl])
23611
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
  1087
65b168646309 more interpretations
nipkow
parents: 23373
diff changeset
  1088
interpretation mset_order_semigroup_cancel:
25622
6067d838041a changed order in class parameters
haftmann
parents: 25610
diff changeset
  1089
  pordered_ab_semigroup_add_imp_le ["op +" "op \<le>#" "op <#"]
25208
1a7318a04068 changed order of class parameters
haftmann
parents: 25162
diff changeset
  1090
  by (unfold_locales) simp
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 14981
diff changeset
  1091
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1092
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1093
lemma mset_lessD:
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1094
  "\<lbrakk> A \<subset># B ; x \<in># A \<rbrakk> \<Longrightarrow> x \<in># B"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1095
  apply (clarsimp simp: mset_le_def mset_less_def)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1096
  apply (erule_tac x=x in allE)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1097
  apply auto
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1098
  done
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1099
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1100
lemma mset_leD:
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1101
  "\<lbrakk> A \<subseteq># B ; x \<in># A \<rbrakk> \<Longrightarrow> x \<in># B"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1102
  apply (clarsimp simp: mset_le_def mset_less_def)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1103
  apply (erule_tac x=x in allE)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1104
  apply auto
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1105
  done
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1106
  
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1107
lemma mset_less_insertD:
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1108
  "(A + {#x#} \<subset># B) \<Longrightarrow> (x \<in># B \<and> A \<subset># B)"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1109
  apply (rule conjI)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1110
   apply (simp add: mset_lessD)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1111
  apply (clarsimp simp: mset_le_def mset_less_def)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1112
  apply safe
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1113
   apply (erule_tac x=a in allE)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1114
   apply (auto split: split_if_asm)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1115
  done
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1116
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1117
lemma mset_le_insertD:
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1118
  "(A + {#x#} \<subseteq># B) \<Longrightarrow> (x \<in># B \<and> A \<subseteq># B)"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1119
  apply (rule conjI)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1120
   apply (simp add: mset_leD)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1121
  apply (force simp: mset_le_def mset_less_def split: split_if_asm)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1122
  done
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1123
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1124
lemma mset_less_of_empty[simp]: "A \<subset># {#} = False" 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1125
  by (induct A, auto simp: mset_le_def mset_less_def)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1126
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1127
lemma multi_psub_of_add_self[simp]: "A \<subset># A + {#x#}"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1128
  by (clarsimp simp: mset_le_def mset_less_def)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1129
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1130
lemma multi_psub_self[simp]: "A \<subset># A = False"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1131
  by (clarsimp simp: mset_le_def mset_less_def)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1132
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1133
lemma mset_less_add_bothsides:
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1134
  "T + {#x#} \<subset># S + {#x#} \<Longrightarrow> T \<subset># S"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1135
  by (clarsimp simp: mset_le_def mset_less_def)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1136
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1137
lemma mset_less_empty_nonempty: "({#} \<subset># S) = (S \<noteq> {#})"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1138
  by (auto simp: mset_le_def mset_less_def)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1139
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1140
lemma mset_less_size: "A \<subset># B \<Longrightarrow> size A < size B"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1141
proof (induct A arbitrary: B)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1142
  case (empty M)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1143
  hence "M \<noteq> {#}" by (simp add: mset_less_empty_nonempty)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1144
  then obtain M' x where "M = M' + {#x#}" 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1145
    by (blast dest: multi_nonempty_split)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1146
  thus ?case by simp
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1147
next
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1148
  case (add S x T)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1149
  have IH: "\<And>B. S \<subset># B \<Longrightarrow> size S < size B" by fact
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1150
  have SxsubT: "S + {#x#} \<subset># T" by fact
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1151
  hence "x \<in># T" and "S \<subset># T" by (auto dest: mset_less_insertD)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1152
  then obtain T' where T: "T = T' + {#x#}" 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1153
    by (blast dest: multi_member_split)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1154
  hence "S \<subset># T'" using SxsubT 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1155
    by (blast intro: mset_less_add_bothsides)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1156
  hence "size S < size T'" using IH by simp
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1157
  thus ?case using T by simp
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1158
qed
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1159
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1160
lemmas mset_less_trans = mset_order.less_eq_less.less_trans
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1161
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1162
lemma mset_less_diff_self: "c \<in># B \<Longrightarrow> B - {#c#} \<subset># B"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1163
  by (auto simp: mset_le_def mset_less_def multi_drop_mem_not_eq)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1164
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1165
subsection {* Strong induction and subset induction for multisets *}
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1166
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1167
text {* Well-foundedness of proper subset operator: *}
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1168
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1169
definition
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1170
  mset_less_rel  :: "('a multiset * 'a multiset) set" 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1171
  where
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1172
  --{* proper multiset subset *}
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1173
  "mset_less_rel \<equiv> {(A,B). A \<subset># B}"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1174
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1175
lemma multiset_add_sub_el_shuffle: 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1176
  assumes cinB: "c \<in># B" and bnotc: "b \<noteq> c" 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1177
  shows "B - {#c#} + {#b#} = B + {#b#} - {#c#}"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1178
proof -
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1179
  from cinB obtain A where B: "B = A + {#c#}" 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1180
    by (blast dest: multi_member_split)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1181
  have "A + {#b#} = A + {#b#} + {#c#} - {#c#}" by simp
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1182
  hence "A + {#b#} = A + {#c#} + {#b#} - {#c#}" 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1183
    by (simp add: union_ac)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1184
  thus ?thesis using B by simp
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1185
qed
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1186
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1187
lemma wf_mset_less_rel: "wf mset_less_rel"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1188
  apply (unfold mset_less_rel_def)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1189
  apply (rule wf_measure [THEN wf_subset, where f1=size])
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1190
  apply (clarsimp simp: measure_def inv_image_def mset_less_size)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1191
  done
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1192
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1193
text {* The induction rules: *}
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1194
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1195
lemma full_multiset_induct [case_names less]:
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1196
  assumes ih: "\<And>B. \<forall>A. A \<subset># B \<longrightarrow> P A \<Longrightarrow> P B"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1197
  shows "P B"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1198
  apply (rule wf_mset_less_rel [THEN wf_induct])
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1199
  apply (rule ih, auto simp: mset_less_rel_def)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1200
  done
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1201
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1202
lemma multi_subset_induct [consumes 2, case_names empty add]:
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1203
  assumes "F \<subseteq># A"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1204
    and empty: "P {#}"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1205
    and insert: "\<And>a F. a \<in># A \<Longrightarrow> P F \<Longrightarrow> P (F + {#a#})"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1206
  shows "P F"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1207
proof -
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1208
  from `F \<subseteq># A`
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1209
  show ?thesis
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1210
  proof (induct F)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1211
    show "P {#}" by fact
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1212
  next
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1213
    fix x F
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1214
    assume P: "F \<subseteq># A \<Longrightarrow> P F" and i: "F + {#x#} \<subseteq># A"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1215
    show "P (F + {#x#})"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1216
    proof (rule insert)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1217
      from i show "x \<in># A" by (auto dest: mset_le_insertD)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1218
      from i have "F \<subseteq># A" by (auto simp: mset_le_insertD)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1219
      with P show "P F" .
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1220
    qed
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1221
  qed
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1222
qed 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1223
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1224
text{* A consequence: Extensionality. *}
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1225
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1226
lemma multi_count_eq: 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1227
  "(\<forall>x. count A x = count B x) = (A = B)"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1228
  apply (rule iffI)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1229
   prefer 2
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1230
   apply clarsimp 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1231
  apply (induct A arbitrary: B rule: full_multiset_induct)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1232
  apply (rename_tac C)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1233
  apply (case_tac B rule: multiset_cases)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1234
   apply (simp add: empty_multiset_count)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1235
  apply simp
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1236
  apply (case_tac "x \<in># C")
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1237
   apply (force dest: multi_member_split)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1238
  apply (erule_tac x=x in allE)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1239
  apply simp
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1240
  done
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1241
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1242
lemmas multi_count_ext = multi_count_eq [THEN iffD1, rule_format]
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1243
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1244
subsection {* The fold combinator *}
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1245
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1246
text {* The intended behaviour is
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1247
@{text "fold_mset f z {#x\<^isub>1, ..., x\<^isub>n#} = f x\<^isub>1 (\<dots> (f x\<^isub>n z)\<dots>)"}
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1248
if @{text f} is associative-commutative. 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1249
*}
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1250
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1251
(* the graph of fold_mset, z = the start element, f = folding function, 
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1252
   A the multiset, y the result *)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1253
inductive 
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1254
  fold_msetG :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'b \<Rightarrow> 'a multiset \<Rightarrow> 'b \<Rightarrow> bool" 
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1255
  for f :: "'a \<Rightarrow> 'b \<Rightarrow> 'b" 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1256
  and z :: 'b
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1257
where
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1258
  emptyI [intro]:  "fold_msetG f z {#} z"
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1259
| insertI [intro]: "fold_msetG f z A y \<Longrightarrow> fold_msetG f z (A + {#x#}) (f x y)"
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1260
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1261
inductive_cases empty_fold_msetGE [elim!]: "fold_msetG f z {#} x"
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1262
inductive_cases insert_fold_msetGE: "fold_msetG f z (A + {#}) y" 
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1263
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1264
definition
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1265
  fold_mset :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'b \<Rightarrow> 'a multiset \<Rightarrow> 'b"
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1266
where
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1267
  "fold_mset f z A \<equiv> THE x. fold_msetG f z A x"
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1268
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1269
lemma Diff1_fold_msetG:
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1270
  "\<lbrakk> fold_msetG f z (A - {#x#}) y; x \<in># A \<rbrakk> \<Longrightarrow> fold_msetG f z A (f x y)"
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1271
  by (frule_tac x=x in fold_msetG.insertI, auto)
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1272
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1273
lemma fold_msetG_nonempty: "\<exists>x. fold_msetG f z A x"
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1274
  apply (induct A)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1275
   apply blast
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1276
  apply clarsimp
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1277
  apply (drule_tac x=x in fold_msetG.insertI)
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1278
  apply auto
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1279
  done
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1280
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1281
lemma fold_mset_empty[simp]: "fold_mset f z {#} = z"
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1282
  by (unfold fold_mset_def, blast)
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1283
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1284
locale left_commutative = 
25623
baa627b6f962 removed syntax in locale left_commutative
kleing
parents: 25622
diff changeset
  1285
  fixes f :: "'a => 'b => 'b"
baa627b6f962 removed syntax in locale left_commutative
kleing
parents: 25622
diff changeset
  1286
  assumes left_commute: "f x (f y z) = f y (f x z)"
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1287
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1288
lemma (in left_commutative) fold_msetG_determ:
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1289
  "\<lbrakk>fold_msetG f z A x; fold_msetG f z A y\<rbrakk> \<Longrightarrow> y = x"
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1290
proof (induct arbitrary: x y z rule: full_multiset_induct)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1291
  case (less M x\<^isub>1 x\<^isub>2 Z)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1292
  have IH: "\<forall>A. A \<subset># M \<longrightarrow> 
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1293
    (\<forall>x x' x''. fold_msetG f x'' A x \<longrightarrow> fold_msetG f x'' A x'
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1294
               \<longrightarrow> x' = x)" by fact
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1295
  have Mfoldx\<^isub>1: "fold_msetG f Z M x\<^isub>1" and Mfoldx\<^isub>2: "fold_msetG f Z M x\<^isub>2" by fact+
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1296
  show ?case
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1297
  proof (rule fold_msetG.cases [OF Mfoldx\<^isub>1])
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1298
    assume "M = {#}" and "x\<^isub>1 = Z"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1299
    thus ?case using Mfoldx\<^isub>2 by auto 
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1300
  next
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1301
    fix B b u
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1302
    assume "M = B + {#b#}" and "x\<^isub>1 = f b u" and Bu: "fold_msetG f Z B u"
25623
baa627b6f962 removed syntax in locale left_commutative
kleing
parents: 25622
diff changeset
  1303
    hence MBb: "M = B + {#b#}" and x\<^isub>1: "x\<^isub>1 = f b u" by auto
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1304
    show ?case
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1305
    proof (rule fold_msetG.cases [OF Mfoldx\<^isub>2])
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1306
      assume "M = {#}" "x\<^isub>2 = Z"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1307
      thus ?case using Mfoldx\<^isub>1 by auto
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1308
    next
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1309
      fix C c v
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1310
      assume "M = C + {#c#}" and "x\<^isub>2 = f c v" and Cv: "fold_msetG f Z C v"
25623
baa627b6f962 removed syntax in locale left_commutative
kleing
parents: 25622
diff changeset
  1311
      hence MCc: "M = C + {#c#}" and x\<^isub>2: "x\<^isub>2 = f c v" by auto
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1312
      hence CsubM: "C \<subset># M" by simp
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1313
      from MBb have BsubM: "B \<subset># M" by simp
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1314
      show ?case
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1315
      proof cases
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1316
        assume "b=c"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1317
        then moreover have "B = C" using MBb MCc by auto
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1318
        ultimately show ?thesis using Bu Cv x\<^isub>1 x\<^isub>2 CsubM IH by auto
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1319
      next
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1320
        assume diff: "b \<noteq> c"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1321
        let ?D = "B - {#c#}"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1322
        have cinB: "c \<in># B" and binC: "b \<in># C" using MBb MCc diff
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1323
          by (auto intro: insert_noteq_member dest: sym)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1324
        have "B - {#c#} \<subset># B" using cinB by (rule mset_less_diff_self)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1325
        hence DsubM: "?D \<subset># M" using BsubM by (blast intro: mset_less_trans)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1326
        from MBb MCc have "B + {#b#} = C + {#c#}" by blast
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1327
        hence [simp]: "B + {#b#} - {#c#} = C"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1328
          using MBb MCc binC cinB by auto
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1329
        have B: "B = ?D + {#c#}" and C: "C = ?D + {#b#}"
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1330
          using MBb MCc diff binC cinB
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1331
          by (auto simp: multiset_add_sub_el_shuffle)
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1332
        then obtain d where Dfoldd: "fold_msetG f Z ?D d"
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1333
          using fold_msetG_nonempty by iprover
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1334
        hence "fold_msetG f Z B (f c d)" using cinB
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1335
          by (rule Diff1_fold_msetG)
25623
baa627b6f962 removed syntax in locale left_commutative
kleing
parents: 25622
diff changeset
  1336
        hence "f c d = u" using IH BsubM Bu by blast
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1337
        moreover 
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1338
        have "fold_msetG f Z C (f b d)" using binC cinB diff Dfoldd
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1339
          by (auto simp: multiset_add_sub_el_shuffle 
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1340
            dest: fold_msetG.insertI [where x=b])
25623
baa627b6f962 removed syntax in locale left_commutative
kleing
parents: 25622
diff changeset
  1341
        hence "f b d = v" using IH CsubM Cv by blast
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1342
        ultimately show ?thesis using x\<^isub>1 x\<^isub>2
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1343
          by (auto simp: left_commute)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1344
      qed
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1345
    qed
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1346
  qed
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1347
qed
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1348
        
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1349
lemma (in left_commutative) fold_mset_insert_aux: "
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1350
    (fold_msetG f z (A + {#x#}) v) =
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1351
    (\<exists>y. fold_msetG f z A y \<and> v = f x y)"
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1352
  apply (rule iffI)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1353
   prefer 2
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1354
   apply blast
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1355
  apply (rule_tac A=A and f=f in fold_msetG_nonempty [THEN exE, standard])
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1356
  apply (blast intro: fold_msetG_determ)
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1357
  done
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1358
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1359
lemma (in left_commutative) fold_mset_equality: "fold_msetG f z A y \<Longrightarrow> fold_mset f z A = y"
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1360
  by (unfold fold_mset_def) (blast intro: fold_msetG_determ)
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1361
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1362
lemma (in left_commutative) fold_mset_insert:
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1363
  "fold_mset f z (A + {#x#}) = f x (fold_mset f z A)"
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1364
  apply (simp add: fold_mset_def fold_mset_insert_aux union_commute)  
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1365
  apply (rule the_equality)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1366
  apply (auto cong add: conj_cong 
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1367
              simp add: fold_mset_def [symmetric] fold_mset_equality fold_msetG_nonempty)
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1368
  done
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1369
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1370
lemma (in left_commutative) fold_mset_insert_idem:
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1371
  shows "fold_mset f z (A + {#a#}) = f a (fold_mset f z A)"
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1372
  apply (simp add: fold_mset_def fold_mset_insert_aux)
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1373
  apply (rule the_equality)
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1374
  apply (auto cong add: conj_cong 
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1375
              simp add: fold_mset_def [symmetric] fold_mset_equality fold_msetG_nonempty)
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1376
  done
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1377
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1378
lemma (in left_commutative) fold_mset_commute:
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1379
  "f x (fold_mset f z A) = fold_mset f (f x z) A"
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1380
  by (induct A, auto simp: fold_mset_insert left_commute [of x])
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1381
  
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1382
lemma (in left_commutative) fold_mset_single [simp]:
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1383
   "fold_mset f z {#x#} = f x z"
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1384
using fold_mset_insert[of z "{#}"] by simp
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1385
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1386
lemma (in left_commutative) fold_mset_union [simp]:
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1387
   "fold_mset f z (A+B) = fold_mset f (fold_mset f z A) B"
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1388
proof (induct A)
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1389
   case empty thus ?case by simp
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1390
next
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1391
   case (add A x)
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1392
   have "A + {#x#} + B = (A+B) + {#x#}" by(simp add:union_ac)
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1393
   hence "fold_mset f z (A + {#x#} + B) = f x (fold_mset f z (A + B))" 
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1394
     by (simp add: fold_mset_insert)
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1395
   also have "\<dots> = fold_mset f (fold_mset f z (A + {#x#})) B"
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1396
     by (simp add: fold_mset_commute[of x,symmetric] add fold_mset_insert)
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1397
   finally show ?case .
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1398
qed
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1399
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1400
lemma (in left_commutative) fold_mset_fusion:
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1401
  includes left_commutative g
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1402
  shows "\<lbrakk>\<And>x y. h (g x y) = f x (h y) \<rbrakk> \<Longrightarrow> h (fold_mset g w A) = fold_mset f (h w) A"
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1403
  by (induct A, auto)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1404
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1405
lemma (in left_commutative) fold_mset_rec:
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1406
  assumes a: "a \<in># A" 
25759
6326138c1bd7 renamed foldM to fold_mset on general request
kleing
parents: 25623
diff changeset
  1407
  shows "fold_mset f z A = f a (fold_mset f z (A - {#a#}))"
25610
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1408
proof -
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1409
  from a obtain A' where "A = A' + {#a#}" by (blast dest: multi_member_split)
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1410
  thus ?thesis by simp
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1411
qed
72e1563aee09 a fold operation for multisets + more lemmas
kleing
parents: 25595
diff changeset
  1412
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1413
text{* A note on code generation: When defining some
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1414
function containing a subterm @{term"fold_mset F"}, code generation is
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1415
not automatic. When interpreting locale @{text left_commutative} with
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1416
@{text F}, the would be code thms for @{const fold_mset} become thms like
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1417
@{term"fold_mset F z {#} = z"} where @{text F} is not a pattern but contains
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1418
defined symbols, i.e.\ is not a code thm. Hence a separate constant with its
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1419
own code thms needs to be introduced for @{text F}. See the image operator
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1420
below. *}
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1421
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1422
subsection {* Image *}
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1423
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1424
definition [code func del]: "image_mset f == fold_mset (op + o single o f) {#}"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1425
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1426
interpretation image_left_comm: left_commutative["op + o single o f"]
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1427
by(unfold_locales)(simp add:union_ac)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1428
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1429
lemma image_mset_empty[simp,code func]: "image_mset f {#} = {#}"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1430
by(simp add:image_mset_def)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1431
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1432
lemma image_mset_single[simp,code func]: "image_mset f {#x#} = {#f x#}"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1433
by(simp add:image_mset_def)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1434
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1435
lemma image_mset_insert:
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1436
  "image_mset f (M + {#a#}) = image_mset f M + {#f a#}"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1437
by(simp add:image_mset_def add_ac)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1438
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1439
lemma image_mset_union[simp, code func]:
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1440
  "image_mset f (M+N) = image_mset f M + image_mset f N"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1441
apply(induct N)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1442
 apply simp
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1443
apply(simp add:union_assoc[symmetric] image_mset_insert)
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1444
done
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1445
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1446
lemma size_image_mset[simp]: "size(image_mset f M) = size M"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1447
by(induct M) simp_all
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1448
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1449
lemma image_mset_is_empty_iff[simp]: "image_mset f M = {#} \<longleftrightarrow> M={#}"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1450
by (cases M) auto
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1451
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1452
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1453
syntax comprehension1_mset :: "'a \<Rightarrow> 'b \<Rightarrow> 'b multiset \<Rightarrow> 'a multiset"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1454
       ("({#_/. _ :# _#})")
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1455
translations "{#e. x:#M#}" == "CONST image_mset (%x. e) M"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1456
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1457
syntax comprehension2_mset :: "'a \<Rightarrow> 'b \<Rightarrow> 'b multiset \<Rightarrow> bool \<Rightarrow> 'a multiset"
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1458
       ("({#_/ | _ :# _./ _#})")
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1459
translations
26033
278025d5282d modified MCollect syntax
nipkow
parents: 26016
diff changeset
  1460
  "{#e | x:#M. P#}" => "{#e. x :# {# x:#M. P#}#}"
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1461
26033
278025d5282d modified MCollect syntax
nipkow
parents: 26016
diff changeset
  1462
text{* This allows to write not just filters like @{term"{#x:#M. x<c#}"}
26016
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1463
but also images like @{term"{#x+x. x:#M #}"}
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1464
and @{term[source]"{#x+x|x:#M. x<c#}"}, where the latter is currently
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1465
displayed as @{term"{#x+x|x:#M. x<c#}"}. *}
f9d1bf2fc59c added multiset comprehension
nipkow
parents: 25759
diff changeset
  1466
10249
e4d13d8a9011 Multisets (from HOL/Induct/Multiset and friends);
wenzelm
parents:
diff changeset
  1467
end