11054
|
1 |
(* Title: HOL/Library/Permutation.thy
|
15005
|
2 |
Author: Lawrence C Paulson and Thomas M Rasmussen and Norbert Voelker
|
11054
|
3 |
*)
|
|
4 |
|
14706
|
5 |
header {* Permutations *}
|
11054
|
6 |
|
15131
|
7 |
theory Permutation
|
15140
|
8 |
imports Multiset
|
15131
|
9 |
begin
|
11054
|
10 |
|
|
11 |
consts
|
|
12 |
perm :: "('a list * 'a list) set"
|
|
13 |
|
|
14 |
syntax
|
|
15 |
"_perm" :: "'a list => 'a list => bool" ("_ <~~> _" [50, 50] 50)
|
|
16 |
translations
|
|
17 |
"x <~~> y" == "(x, y) \<in> perm"
|
|
18 |
|
|
19 |
inductive perm
|
11153
|
20 |
intros
|
|
21 |
Nil [intro!]: "[] <~~> []"
|
|
22 |
swap [intro!]: "y # x # l <~~> x # y # l"
|
|
23 |
Cons [intro!]: "xs <~~> ys ==> z # xs <~~> z # ys"
|
|
24 |
trans [intro]: "xs <~~> ys ==> ys <~~> zs ==> xs <~~> zs"
|
11054
|
25 |
|
|
26 |
lemma perm_refl [iff]: "l <~~> l"
|
15005
|
27 |
by (induct l, auto)
|
11054
|
28 |
|
|
29 |
|
|
30 |
subsection {* Some examples of rule induction on permutations *}
|
|
31 |
|
|
32 |
lemma xperm_empty_imp_aux: "xs <~~> ys ==> xs = [] --> ys = []"
|
15072
|
33 |
-- {*the form of the premise lets the induction bind @{term xs}
|
|
34 |
and @{term ys} *}
|
11054
|
35 |
apply (erule perm.induct)
|
|
36 |
apply (simp_all (no_asm_simp))
|
|
37 |
done
|
|
38 |
|
|
39 |
lemma xperm_empty_imp: "[] <~~> ys ==> ys = []"
|
15005
|
40 |
by (insert xperm_empty_imp_aux, blast)
|
11054
|
41 |
|
|
42 |
|
|
43 |
text {*
|
|
44 |
\medskip This more general theorem is easier to understand!
|
|
45 |
*}
|
|
46 |
|
|
47 |
lemma perm_length: "xs <~~> ys ==> length xs = length ys"
|
15005
|
48 |
by (erule perm.induct, simp_all)
|
11054
|
49 |
|
|
50 |
lemma perm_empty_imp: "[] <~~> xs ==> xs = []"
|
15005
|
51 |
by (drule perm_length, auto)
|
11054
|
52 |
|
|
53 |
lemma perm_sym: "xs <~~> ys ==> ys <~~> xs"
|
15005
|
54 |
by (erule perm.induct, auto)
|
11054
|
55 |
|
|
56 |
lemma perm_mem [rule_format]: "xs <~~> ys ==> x mem xs --> x mem ys"
|
15005
|
57 |
by (erule perm.induct, auto)
|
11054
|
58 |
|
|
59 |
|
|
60 |
subsection {* Ways of making new permutations *}
|
|
61 |
|
|
62 |
text {*
|
|
63 |
We can insert the head anywhere in the list.
|
|
64 |
*}
|
|
65 |
|
|
66 |
lemma perm_append_Cons: "a # xs @ ys <~~> xs @ a # ys"
|
15005
|
67 |
by (induct xs, auto)
|
11054
|
68 |
|
|
69 |
lemma perm_append_swap: "xs @ ys <~~> ys @ xs"
|
15005
|
70 |
apply (induct xs, simp_all)
|
11054
|
71 |
apply (blast intro: perm_append_Cons)
|
|
72 |
done
|
|
73 |
|
|
74 |
lemma perm_append_single: "a # xs <~~> xs @ [a]"
|
15072
|
75 |
by (rule perm.trans [OF _ perm_append_swap], simp)
|
11054
|
76 |
|
|
77 |
lemma perm_rev: "rev xs <~~> xs"
|
15005
|
78 |
apply (induct xs, simp_all)
|
11153
|
79 |
apply (blast intro!: perm_append_single intro: perm_sym)
|
11054
|
80 |
done
|
|
81 |
|
|
82 |
lemma perm_append1: "xs <~~> ys ==> l @ xs <~~> l @ ys"
|
15005
|
83 |
by (induct l, auto)
|
11054
|
84 |
|
|
85 |
lemma perm_append2: "xs <~~> ys ==> xs @ l <~~> ys @ l"
|
15005
|
86 |
by (blast intro!: perm_append_swap perm_append1)
|
11054
|
87 |
|
|
88 |
|
|
89 |
subsection {* Further results *}
|
|
90 |
|
|
91 |
lemma perm_empty [iff]: "([] <~~> xs) = (xs = [])"
|
15005
|
92 |
by (blast intro: perm_empty_imp)
|
11054
|
93 |
|
|
94 |
lemma perm_empty2 [iff]: "(xs <~~> []) = (xs = [])"
|
|
95 |
apply auto
|
|
96 |
apply (erule perm_sym [THEN perm_empty_imp])
|
|
97 |
done
|
|
98 |
|
|
99 |
lemma perm_sing_imp [rule_format]: "ys <~~> xs ==> xs = [y] --> ys = [y]"
|
15005
|
100 |
by (erule perm.induct, auto)
|
11054
|
101 |
|
|
102 |
lemma perm_sing_eq [iff]: "(ys <~~> [y]) = (ys = [y])"
|
15005
|
103 |
by (blast intro: perm_sing_imp)
|
11054
|
104 |
|
|
105 |
lemma perm_sing_eq2 [iff]: "([y] <~~> ys) = (ys = [y])"
|
15005
|
106 |
by (blast dest: perm_sym)
|
11054
|
107 |
|
|
108 |
|
|
109 |
subsection {* Removing elements *}
|
|
110 |
|
|
111 |
consts
|
|
112 |
remove :: "'a => 'a list => 'a list"
|
|
113 |
primrec
|
|
114 |
"remove x [] = []"
|
|
115 |
"remove x (y # ys) = (if x = y then ys else y # remove x ys)"
|
|
116 |
|
|
117 |
lemma perm_remove: "x \<in> set ys ==> ys <~~> x # remove x ys"
|
15005
|
118 |
by (induct ys, auto)
|
11054
|
119 |
|
|
120 |
lemma remove_commute: "remove x (remove y l) = remove y (remove x l)"
|
15005
|
121 |
by (induct l, auto)
|
11054
|
122 |
|
15072
|
123 |
lemma multiset_of_remove[simp]:
|
|
124 |
"multiset_of (remove a x) = multiset_of x - {#a#}"
|
|
125 |
by (induct_tac x, auto simp: multiset_eq_conv_count_eq)
|
|
126 |
|
11054
|
127 |
|
|
128 |
text {* \medskip Congruence rule *}
|
|
129 |
|
|
130 |
lemma perm_remove_perm: "xs <~~> ys ==> remove z xs <~~> remove z ys"
|
15005
|
131 |
by (erule perm.induct, auto)
|
11054
|
132 |
|
|
133 |
lemma remove_hd [simp]: "remove z (z # xs) = xs"
|
15072
|
134 |
by auto
|
11054
|
135 |
|
|
136 |
lemma cons_perm_imp_perm: "z # xs <~~> z # ys ==> xs <~~> ys"
|
15005
|
137 |
by (drule_tac z = z in perm_remove_perm, auto)
|
11054
|
138 |
|
|
139 |
lemma cons_perm_eq [iff]: "(z#xs <~~> z#ys) = (xs <~~> ys)"
|
15005
|
140 |
by (blast intro: cons_perm_imp_perm)
|
11054
|
141 |
|
|
142 |
lemma append_perm_imp_perm: "!!xs ys. zs @ xs <~~> zs @ ys ==> xs <~~> ys"
|
|
143 |
apply (induct zs rule: rev_induct)
|
|
144 |
apply (simp_all (no_asm_use))
|
|
145 |
apply blast
|
|
146 |
done
|
|
147 |
|
|
148 |
lemma perm_append1_eq [iff]: "(zs @ xs <~~> zs @ ys) = (xs <~~> ys)"
|
15005
|
149 |
by (blast intro: append_perm_imp_perm perm_append1)
|
11054
|
150 |
|
|
151 |
lemma perm_append2_eq [iff]: "(xs @ zs <~~> ys @ zs) = (xs <~~> ys)"
|
|
152 |
apply (safe intro!: perm_append2)
|
|
153 |
apply (rule append_perm_imp_perm)
|
|
154 |
apply (rule perm_append_swap [THEN perm.trans])
|
|
155 |
-- {* the previous step helps this @{text blast} call succeed quickly *}
|
|
156 |
apply (blast intro: perm_append_swap)
|
|
157 |
done
|
|
158 |
|
15072
|
159 |
lemma multiset_of_eq_perm: "(multiset_of xs = multiset_of ys) = (xs <~~> ys) "
|
15005
|
160 |
apply (rule iffI)
|
|
161 |
apply (erule_tac [2] perm.induct, simp_all add: union_ac)
|
15072
|
162 |
apply (erule rev_mp, rule_tac x=ys in spec)
|
|
163 |
apply (induct_tac xs, auto)
|
15005
|
164 |
apply (erule_tac x = "remove a x" in allE, drule sym, simp)
|
|
165 |
apply (subgoal_tac "a \<in> set x")
|
|
166 |
apply (drule_tac z=a in perm.Cons)
|
|
167 |
apply (erule perm.trans, rule perm_sym, erule perm_remove)
|
|
168 |
apply (drule_tac f=set_of in arg_cong, simp)
|
|
169 |
done
|
|
170 |
|
15072
|
171 |
lemma multiset_of_le_perm_append:
|
|
172 |
"(multiset_of xs \<le># multiset_of ys) = (\<exists> zs. xs @ zs <~~> ys)";
|
|
173 |
apply (auto simp: multiset_of_eq_perm[THEN sym] mset_le_exists_conv)
|
|
174 |
apply (insert surj_multiset_of, drule surjD)
|
|
175 |
apply (blast intro: sym)+
|
|
176 |
done
|
15005
|
177 |
|
11054
|
178 |
end
|