| author | wenzelm | 
| Sat, 13 Aug 2022 14:45:36 +0200 | |
| changeset 75841 | 7c00d5266bf8 | 
| parent 73706 | 4b1386b2c23e | 
| child 80777 | 623d46973cbe | 
| permissions | -rw-r--r-- | 
| 73477 | 1 | (* Author: Amine Chaieb, University of Cambridge | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 2 | *) | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 3 | |
| 60500 | 4 | section \<open>Permutations, both general and specifically on finite sets.\<close> | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 5 | |
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 6 | theory Permutations | 
| 73477 | 7 | imports | 
| 8 | "HOL-Library.Multiset" | |
| 9 | "HOL-Library.Disjoint_Sets" | |
| 73623 | 10 | Transposition | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 11 | begin | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 12 | |
| 73466 | 13 | subsection \<open>Auxiliary\<close> | 
| 14 | ||
| 15 | abbreviation (input) fixpoints :: \<open>('a \<Rightarrow> 'a) \<Rightarrow> 'a set\<close>
 | |
| 16 |   where \<open>fixpoints f \<equiv> {x. f x = x}\<close>
 | |
| 17 | ||
| 18 | lemma inj_on_fixpoints: | |
| 19 | \<open>inj_on f (fixpoints f)\<close> | |
| 20 | by (rule inj_onI) simp | |
| 21 | ||
| 22 | lemma bij_betw_fixpoints: | |
| 23 | \<open>bij_betw f (fixpoints f) (fixpoints f)\<close> | |
| 24 | using inj_on_fixpoints by (auto simp add: bij_betw_def) | |
| 25 | ||
| 26 | ||
| 73328 | 27 | subsection \<open>Basic definition and consequences\<close> | 
| 54681 | 28 | |
| 73466 | 29 | definition permutes :: \<open>('a \<Rightarrow> 'a) \<Rightarrow> 'a set \<Rightarrow> bool\<close>  (infixr \<open>permutes\<close> 41)
 | 
| 30 | where \<open>p permutes S \<longleftrightarrow> (\<forall>x. x \<notin> S \<longrightarrow> p x = x) \<and> (\<forall>y. \<exists>!x. p x = y)\<close> | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 31 | |
| 73466 | 32 | lemma bij_imp_permutes: | 
| 33 | \<open>p permutes S\<close> if \<open>bij_betw p S S\<close> and stable: \<open>\<And>x. x \<notin> S \<Longrightarrow> p x = x\<close> | |
| 34 | proof - | |
| 35 | note \<open>bij_betw p S S\<close> | |
| 36 | moreover have \<open>bij_betw p (- S) (- S)\<close> | |
| 37 | by (auto simp add: stable intro!: bij_betw_imageI inj_onI) | |
| 38 | ultimately have \<open>bij_betw p (S \<union> - S) (S \<union> - S)\<close> | |
| 39 | by (rule bij_betw_combine) simp | |
| 40 | then have \<open>\<exists>!x. p x = y\<close> for y | |
| 41 | by (simp add: bij_iff) | |
| 42 | with stable show ?thesis | |
| 43 | by (simp add: permutes_def) | |
| 44 | qed | |
| 64284 
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
 hoelzl parents: 
64267diff
changeset | 45 | |
| 73466 | 46 | context | 
| 47 | fixes p :: \<open>'a \<Rightarrow> 'a\<close> and S :: \<open>'a set\<close> | |
| 48 | assumes perm: \<open>p permutes S\<close> | |
| 49 | begin | |
| 50 | ||
| 51 | lemma permutes_inj: | |
| 52 | \<open>inj p\<close> | |
| 53 | using perm by (auto simp: permutes_def inj_on_def) | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 54 | |
| 73466 | 55 | lemma permutes_image: | 
| 56 | \<open>p ` S = S\<close> | |
| 57 | proof (rule set_eqI) | |
| 58 | fix x | |
| 59 | show \<open>x \<in> p ` S \<longleftrightarrow> x \<in> S\<close> | |
| 60 | proof | |
| 61 | assume \<open>x \<in> p ` S\<close> | |
| 62 | then obtain y where \<open>y \<in> S\<close> \<open>p y = x\<close> | |
| 63 | by blast | |
| 64 | with perm show \<open>x \<in> S\<close> | |
| 65 | by (cases \<open>y = x\<close>) (auto simp add: permutes_def) | |
| 66 | next | |
| 67 | assume \<open>x \<in> S\<close> | |
| 68 | with perm obtain y where \<open>y \<in> S\<close> \<open>p y = x\<close> | |
| 69 | by (metis permutes_def) | |
| 70 | then show \<open>x \<in> p ` S\<close> | |
| 71 | by blast | |
| 72 | qed | |
| 73 | qed | |
| 74 | ||
| 75 | lemma permutes_not_in: | |
| 76 | \<open>x \<notin> S \<Longrightarrow> p x = x\<close> | |
| 77 | using perm by (auto simp: permutes_def) | |
| 78 | ||
| 79 | lemma permutes_image_complement: | |
| 80 | \<open>p ` (- S) = - S\<close> | |
| 81 | by (auto simp add: permutes_not_in) | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 82 | |
| 73466 | 83 | lemma permutes_in_image: | 
| 84 | \<open>p x \<in> S \<longleftrightarrow> x \<in> S\<close> | |
| 85 | using permutes_image permutes_inj by (auto dest: inj_image_mem_iff) | |
| 86 | ||
| 87 | lemma permutes_surj: | |
| 88 | \<open>surj p\<close> | |
| 89 | proof - | |
| 90 | have \<open>p ` (S \<union> - S) = p ` S \<union> p ` (- S)\<close> | |
| 91 | by (rule image_Un) | |
| 92 | then show ?thesis | |
| 93 | by (simp add: permutes_image permutes_image_complement) | |
| 94 | qed | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 95 | |
| 73466 | 96 | lemma permutes_inv_o: | 
| 97 | shows "p \<circ> inv p = id" | |
| 98 | and "inv p \<circ> p = id" | |
| 99 | using permutes_inj permutes_surj | |
| 100 | unfolding inj_iff [symmetric] surj_iff [symmetric] by auto | |
| 101 | ||
| 102 | lemma permutes_inverses: | |
| 103 | shows "p (inv p x) = x" | |
| 104 | and "inv p (p x) = x" | |
| 105 | using permutes_inv_o [unfolded fun_eq_iff o_def] by auto | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 106 | |
| 73466 | 107 | lemma permutes_inv_eq: | 
| 108 | \<open>inv p y = x \<longleftrightarrow> p x = y\<close> | |
| 109 | by (auto simp add: permutes_inverses) | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 110 | |
| 73466 | 111 | lemma permutes_inj_on: | 
| 112 | \<open>inj_on p A\<close> | |
| 113 | by (rule inj_on_subset [of _ UNIV]) (auto intro: permutes_inj) | |
| 114 | ||
| 115 | lemma permutes_bij: | |
| 116 | \<open>bij p\<close> | |
| 65342 | 117 | unfolding bij_def by (metis permutes_inj permutes_surj) | 
| 60601 | 118 | |
| 73466 | 119 | lemma permutes_imp_bij: | 
| 120 | \<open>bij_betw p S S\<close> | |
| 121 | by (simp add: bij_betw_def permutes_image permutes_inj_on) | |
| 59474 | 122 | |
| 73466 | 123 | lemma permutes_subset: | 
| 124 | \<open>p permutes T\<close> if \<open>S \<subseteq> T\<close> | |
| 125 | proof (rule bij_imp_permutes) | |
| 126 | define R where \<open>R = T - S\<close> | |
| 127 |   with that have \<open>T = R \<union> S\<close> \<open>R \<inter> S = {}\<close>
 | |
| 128 | by auto | |
| 129 | then have \<open>p x = x\<close> if \<open>x \<in> R\<close> for x | |
| 130 | using that by (auto intro: permutes_not_in) | |
| 131 | then have \<open>p ` R = R\<close> | |
| 132 | by simp | |
| 133 | with \<open>T = R \<union> S\<close> show \<open>bij_betw p T T\<close> | |
| 134 | by (simp add: bij_betw_def permutes_inj_on image_Un permutes_image) | |
| 135 | fix x | |
| 136 | assume \<open>x \<notin> T\<close> | |
| 137 | with \<open>T = R \<union> S\<close> show \<open>p x = x\<close> | |
| 138 | by (simp add: permutes_not_in) | |
| 139 | qed | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 140 | |
| 73410 | 141 | lemma permutes_imp_permutes_insert: | 
| 73466 | 142 | \<open>p permutes insert x S\<close> | 
| 143 | by (rule permutes_subset) auto | |
| 144 | ||
| 145 | end | |
| 146 | ||
| 147 | lemma permutes_id [simp]: | |
| 148 | \<open>id permutes S\<close> | |
| 149 | by (auto intro: bij_imp_permutes) | |
| 73410 | 150 | |
| 73466 | 151 | lemma permutes_empty [simp]: | 
| 152 |   \<open>p permutes {} \<longleftrightarrow> p = id\<close>
 | |
| 153 | proof | |
| 154 |   assume \<open>p permutes {}\<close>
 | |
| 155 | then show \<open>p = id\<close> | |
| 156 | by (auto simp add: fun_eq_iff permutes_not_in) | |
| 157 | next | |
| 158 | assume \<open>p = id\<close> | |
| 159 |   then show \<open>p permutes {}\<close>
 | |
| 160 | by simp | |
| 161 | qed | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 162 | |
| 73466 | 163 | lemma permutes_sing [simp]: | 
| 164 |   \<open>p permutes {a} \<longleftrightarrow> p = id\<close>
 | |
| 165 | proof | |
| 166 |   assume perm: \<open>p permutes {a}\<close>
 | |
| 167 | show \<open>p = id\<close> | |
| 168 | proof | |
| 169 | fix x | |
| 170 |     from perm have \<open>p ` {a} = {a}\<close>
 | |
| 171 | by (rule permutes_image) | |
| 172 | with perm show \<open>p x = id x\<close> | |
| 173 | by (cases \<open>x = a\<close>) (auto simp add: permutes_not_in) | |
| 174 | qed | |
| 175 | next | |
| 176 | assume \<open>p = id\<close> | |
| 177 |   then show \<open>p permutes {a}\<close>
 | |
| 178 | by simp | |
| 179 | qed | |
| 30488 | 180 | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 181 | lemma permutes_univ: "p permutes UNIV \<longleftrightarrow> (\<forall>y. \<exists>!x. p x = y)" | 
| 65342 | 182 | by (simp add: permutes_def) | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 183 | |
| 73648 | 184 | lemma permutes_swap_id: "a \<in> S \<Longrightarrow> b \<in> S \<Longrightarrow> transpose a b permutes S" | 
| 185 | by (rule bij_imp_permutes) (auto intro: transpose_apply_other) | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 186 | |
| 73466 | 187 | lemma permutes_superset: | 
| 188 | \<open>p permutes T\<close> if \<open>p permutes S\<close> \<open>\<And>x. x \<in> S - T \<Longrightarrow> p x = x\<close> | |
| 189 | proof - | |
| 190 | define R U where \<open>R = T \<inter> S\<close> and \<open>U = S - T\<close> | |
| 191 |   then have \<open>T = R \<union> (T - S)\<close> \<open>S = R \<union> U\<close> \<open>R \<inter> U = {}\<close>
 | |
| 192 | by auto | |
| 193 | from that \<open>U = S - T\<close> have \<open>p ` U = U\<close> | |
| 194 | by simp | |
| 195 | from \<open>p permutes S\<close> have \<open>bij_betw p (R \<union> U) (R \<union> U)\<close> | |
| 196 | by (simp add: permutes_imp_bij \<open>S = R \<union> U\<close>) | |
| 197 | moreover have \<open>bij_betw p U U\<close> | |
| 198 | using that \<open>U = S - T\<close> by (simp add: bij_betw_def permutes_inj_on) | |
| 199 | ultimately have \<open>bij_betw p R R\<close> | |
| 200 |     using \<open>R \<inter> U = {}\<close> \<open>R \<inter> U = {}\<close> by (rule bij_betw_partition)
 | |
| 201 | then have \<open>p permutes R\<close> | |
| 202 | proof (rule bij_imp_permutes) | |
| 203 | fix x | |
| 204 | assume \<open>x \<notin> R\<close> | |
| 205 | with \<open>R = T \<inter> S\<close> \<open>p permutes S\<close> show \<open>p x = x\<close> | |
| 206 | by (cases \<open>x \<in> S\<close>) (auto simp add: permutes_not_in that(2)) | |
| 207 | qed | |
| 208 | then have \<open>p permutes R \<union> (T - S)\<close> | |
| 209 | by (rule permutes_subset) simp | |
| 210 | with \<open>T = R \<union> (T - S)\<close> show ?thesis | |
| 211 | by simp | |
| 212 | qed | |
| 54681 | 213 | |
| 69895 
6b03a8cf092d
more formal contributors (with the help of the history);
 wenzelm parents: 
67673diff
changeset | 214 | lemma permutes_bij_inv_into: \<^marker>\<open>contributor \<open>Lukas Bulwahn\<close>\<close> | 
| 65342 | 215 | fixes A :: "'a set" | 
| 216 | and B :: "'b set" | |
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 217 | assumes "p permutes A" | 
| 65342 | 218 | and "bij_betw f A B" | 
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 219 | shows "(\<lambda>x. if x \<in> B then f (p (inv_into A f x)) else x) permutes B" | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 220 | proof (rule bij_imp_permutes) | 
| 65342 | 221 | from assms have "bij_betw p A A" "bij_betw f A B" "bij_betw (inv_into A f) B A" | 
| 222 | by (auto simp add: permutes_imp_bij bij_betw_inv_into) | |
| 223 | then have "bij_betw (f \<circ> p \<circ> inv_into A f) B B" | |
| 224 | by (simp add: bij_betw_trans) | |
| 225 | then show "bij_betw (\<lambda>x. if x \<in> B then f (p (inv_into A f x)) else x) B B" | |
| 226 | by (subst bij_betw_cong[where g="f \<circ> p \<circ> inv_into A f"]) auto | |
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 227 | next | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 228 | fix x | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 229 | assume "x \<notin> B" | 
| 65342 | 230 | then show "(if x \<in> B then f (p (inv_into A f x)) else x) = x" by auto | 
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 231 | qed | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 232 | |
| 69895 
6b03a8cf092d
more formal contributors (with the help of the history);
 wenzelm parents: 
67673diff
changeset | 233 | lemma permutes_image_mset: \<^marker>\<open>contributor \<open>Lukas Bulwahn\<close>\<close> | 
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 234 | assumes "p permutes A" | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 235 | shows "image_mset p (mset_set A) = mset_set A" | 
| 65342 | 236 | using assms by (metis image_mset_mset_set bij_betw_imp_inj_on permutes_imp_bij permutes_image) | 
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 237 | |
| 69895 
6b03a8cf092d
more formal contributors (with the help of the history);
 wenzelm parents: 
67673diff
changeset | 238 | lemma permutes_implies_image_mset_eq: \<^marker>\<open>contributor \<open>Lukas Bulwahn\<close>\<close> | 
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 239 | assumes "p permutes A" "\<And>x. x \<in> A \<Longrightarrow> f x = f' (p x)" | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 240 | shows "image_mset f' (mset_set A) = image_mset f (mset_set A)" | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 241 | proof - | 
| 65342 | 242 | have "f x = f' (p x)" if "x \<in># mset_set A" for x | 
| 243 | using assms(2)[of x] that by (cases "finite A") auto | |
| 244 | with assms have "image_mset f (mset_set A) = image_mset (f' \<circ> p) (mset_set A)" | |
| 245 | by (auto intro!: image_mset_cong) | |
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 246 | also have "\<dots> = image_mset f' (image_mset p (mset_set A))" | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 247 | by (simp add: image_mset.compositionality) | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 248 | also have "\<dots> = image_mset f' (mset_set A)" | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 249 | proof - | 
| 65342 | 250 | from assms permutes_image_mset have "image_mset p (mset_set A) = mset_set A" | 
| 251 | by blast | |
| 252 | then show ?thesis by simp | |
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 253 | qed | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 254 | finally show ?thesis .. | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 255 | qed | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 256 | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 257 | |
| 60500 | 258 | subsection \<open>Group properties\<close> | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 259 | |
| 54681 | 260 | lemma permutes_compose: "p permutes S \<Longrightarrow> q permutes S \<Longrightarrow> q \<circ> p permutes S" | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 261 | unfolding permutes_def o_def by metis | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 262 | |
| 54681 | 263 | lemma permutes_inv: | 
| 65342 | 264 | assumes "p permutes S" | 
| 54681 | 265 | shows "inv p permutes S" | 
| 65342 | 266 | using assms unfolding permutes_def permutes_inv_eq[OF assms] by metis | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 267 | |
| 54681 | 268 | lemma permutes_inv_inv: | 
| 65342 | 269 | assumes "p permutes S" | 
| 54681 | 270 | shows "inv (inv p) = p" | 
| 65342 | 271 | unfolding fun_eq_iff permutes_inv_eq[OF assms] permutes_inv_eq[OF permutes_inv[OF assms]] | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 272 | by blast | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 273 | |
| 64284 
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
 hoelzl parents: 
64267diff
changeset | 274 | lemma permutes_invI: | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 275 | assumes perm: "p permutes S" | 
| 65342 | 276 | and inv: "\<And>x. x \<in> S \<Longrightarrow> p' (p x) = x" | 
| 277 | and outside: "\<And>x. x \<notin> S \<Longrightarrow> p' x = x" | |
| 278 | shows "inv p = p'" | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 279 | proof | 
| 65342 | 280 | show "inv p x = p' x" for x | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 281 | proof (cases "x \<in> S") | 
| 65342 | 282 | case True | 
| 283 | from assms have "p' x = p' (p (inv p x))" | |
| 284 | by (simp add: permutes_inverses) | |
| 285 | also from permutes_inv[OF perm] True have "\<dots> = inv p x" | |
| 286 | by (subst inv) (simp_all add: permutes_in_image) | |
| 287 | finally show ?thesis .. | |
| 288 | next | |
| 289 | case False | |
| 290 | with permutes_inv[OF perm] show ?thesis | |
| 291 | by (simp_all add: outside permutes_not_in) | |
| 292 | qed | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 293 | qed | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 294 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 295 | lemma permutes_vimage: "f permutes A \<Longrightarrow> f -` A = A" | 
| 64284 
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
 hoelzl parents: 
64267diff
changeset | 296 | by (simp add: bij_vimage_eq_inv_image permutes_bij permutes_image[OF permutes_inv]) | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 297 | |
| 54681 | 298 | |
| 66486 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 299 | subsection \<open>Mapping permutations with bijections\<close> | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 300 | |
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 301 | lemma bij_betw_permutations: | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 302 | assumes "bij_betw f A B" | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 303 | shows "bij_betw (\<lambda>\<pi> x. if x \<in> B then f (\<pi> (inv_into A f x)) else x) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 304 |              {\<pi>. \<pi> permutes A} {\<pi>. \<pi> permutes B}" (is "bij_betw ?f _ _")
 | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 305 | proof - | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 306 | let ?g = "(\<lambda>\<pi> x. if x \<in> A then inv_into A f (\<pi> (f x)) else x)" | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 307 | show ?thesis | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 308 | proof (rule bij_betw_byWitness [of _ ?g], goal_cases) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 309 | case 3 | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 310 | show ?case using permutes_bij_inv_into[OF _ assms] by auto | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 311 | next | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 312 | case 4 | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 313 | have bij_inv: "bij_betw (inv_into A f) B A" by (intro bij_betw_inv_into assms) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 314 |     {
 | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 315 | fix \<pi> assume "\<pi> permutes B" | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 316 | from permutes_bij_inv_into[OF this bij_inv] and assms | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 317 | have "(\<lambda>x. if x \<in> A then inv_into A f (\<pi> (f x)) else x) permutes A" | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 318 | by (simp add: inv_into_inv_into_eq cong: if_cong) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 319 | } | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 320 | from this show ?case by (auto simp: permutes_inv) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 321 | next | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 322 | case 1 | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 323 | thus ?case using assms | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 324 | by (auto simp: fun_eq_iff permutes_not_in permutes_in_image bij_betw_inv_into_left | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 325 | dest: bij_betwE) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 326 | next | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 327 | case 2 | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 328 | moreover have "bij_betw (inv_into A f) B A" | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 329 | by (intro bij_betw_inv_into assms) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 330 | ultimately show ?case using assms | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 331 | by (auto simp: fun_eq_iff permutes_not_in permutes_in_image bij_betw_inv_into_right | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 332 | dest: bij_betwE) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 333 | qed | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 334 | qed | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 335 | |
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 336 | lemma bij_betw_derangements: | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 337 | assumes "bij_betw f A B" | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 338 | shows "bij_betw (\<lambda>\<pi> x. if x \<in> B then f (\<pi> (inv_into A f x)) else x) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 339 |              {\<pi>. \<pi> permutes A \<and> (\<forall>x\<in>A. \<pi> x \<noteq> x)} {\<pi>. \<pi> permutes B \<and> (\<forall>x\<in>B. \<pi> x \<noteq> x)}" 
 | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 340 | (is "bij_betw ?f _ _") | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 341 | proof - | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 342 | let ?g = "(\<lambda>\<pi> x. if x \<in> A then inv_into A f (\<pi> (f x)) else x)" | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 343 | show ?thesis | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 344 | proof (rule bij_betw_byWitness [of _ ?g], goal_cases) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 345 | case 3 | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 346 | have "?f \<pi> x \<noteq> x" if "\<pi> permutes A" "\<And>x. x \<in> A \<Longrightarrow> \<pi> x \<noteq> x" "x \<in> B" for \<pi> x | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 347 | using that and assms by (metis bij_betwE bij_betw_imp_inj_on bij_betw_imp_surj_on | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 348 | inv_into_f_f inv_into_into permutes_imp_bij) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 349 | with permutes_bij_inv_into[OF _ assms] show ?case by auto | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 350 | next | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 351 | case 4 | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 352 | have bij_inv: "bij_betw (inv_into A f) B A" by (intro bij_betw_inv_into assms) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 353 | have "?g \<pi> permutes A" if "\<pi> permutes B" for \<pi> | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 354 | using permutes_bij_inv_into[OF that bij_inv] and assms | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 355 | by (simp add: inv_into_inv_into_eq cong: if_cong) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 356 | moreover have "?g \<pi> x \<noteq> x" if "\<pi> permutes B" "\<And>x. x \<in> B \<Longrightarrow> \<pi> x \<noteq> x" "x \<in> A" for \<pi> x | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 357 | using that and assms by (metis bij_betwE bij_betw_imp_surj_on f_inv_into_f permutes_imp_bij) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 358 | ultimately show ?case by auto | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 359 | next | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 360 | case 1 | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 361 | thus ?case using assms | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 362 | by (force simp: fun_eq_iff permutes_not_in permutes_in_image bij_betw_inv_into_left | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 363 | dest: bij_betwE) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 364 | next | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 365 | case 2 | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 366 | moreover have "bij_betw (inv_into A f) B A" | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 367 | by (intro bij_betw_inv_into assms) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 368 | ultimately show ?case using assms | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 369 | by (force simp: fun_eq_iff permutes_not_in permutes_in_image bij_betw_inv_into_right | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 370 | dest: bij_betwE) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 371 | qed | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 372 | qed | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 373 | |
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
65552diff
changeset | 374 | |
| 60500 | 375 | subsection \<open>The number of permutations on a finite set\<close> | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 376 | |
| 30488 | 377 | lemma permutes_insert_lemma: | 
| 65342 | 378 | assumes "p permutes (insert a S)" | 
| 73648 | 379 | shows "transpose a (p a) \<circ> p permutes S" | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 380 | apply (rule permutes_superset[where S = "insert a S"]) | 
| 65342 | 381 | apply (rule permutes_compose[OF assms]) | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 382 | apply (rule permutes_swap_id, simp) | 
| 65342 | 383 | using permutes_in_image[OF assms, of a] | 
| 54681 | 384 | apply simp | 
| 73663 | 385 | apply (auto simp add: Ball_def) | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 386 | done | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 387 | |
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 388 | lemma permutes_insert: "{p. p permutes (insert a S)} =
 | 
| 73648 | 389 |   (\<lambda>(b, p). transpose a b \<circ> p) ` {(b, p). b \<in> insert a S \<and> p \<in> {p. p permutes S}}"
 | 
| 54681 | 390 | proof - | 
| 65342 | 391 | have "p permutes insert a S \<longleftrightarrow> | 
| 73648 | 392 | (\<exists>b q. p = transpose a b \<circ> q \<and> b \<in> insert a S \<and> q permutes S)" for p | 
| 65342 | 393 | proof - | 
| 73648 | 394 | have "\<exists>b q. p = transpose a b \<circ> q \<and> b \<in> insert a S \<and> q permutes S" | 
| 65342 | 395 | if p: "p permutes insert a S" | 
| 396 | proof - | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 397 | let ?b = "p a" | 
| 73648 | 398 | let ?q = "transpose a (p a) \<circ> p" | 
| 399 | have *: "p = transpose a ?b \<circ> ?q" | |
| 65342 | 400 | by (simp add: fun_eq_iff o_assoc) | 
| 401 | have **: "?b \<in> insert a S" | |
| 402 | unfolding permutes_in_image[OF p] by simp | |
| 403 | from permutes_insert_lemma[OF p] * ** show ?thesis | |
| 73648 | 404 | by blast | 
| 65342 | 405 | qed | 
| 406 | moreover have "p permutes insert a S" | |
| 73648 | 407 | if bq: "p = transpose a b \<circ> q" "b \<in> insert a S" "q permutes S" for b q | 
| 65342 | 408 | proof - | 
| 409 | from permutes_subset[OF bq(3), of "insert a S"] have q: "q permutes insert a S" | |
| 54681 | 410 | by auto | 
| 65342 | 411 | have a: "a \<in> insert a S" | 
| 54681 | 412 | by simp | 
| 65342 | 413 | from bq(1) permutes_compose[OF q permutes_swap_id[OF a bq(2)]] show ?thesis | 
| 54681 | 414 | by simp | 
| 65342 | 415 | qed | 
| 416 | ultimately show ?thesis by blast | |
| 417 | qed | |
| 418 | then show ?thesis by auto | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 419 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 420 | |
| 54681 | 421 | lemma card_permutations: | 
| 65342 | 422 | assumes "card S = n" | 
| 423 | and "finite S" | |
| 33715 | 424 |   shows "card {p. p permutes S} = fact n"
 | 
| 65342 | 425 | using assms(2,1) | 
| 54681 | 426 | proof (induct arbitrary: n) | 
| 427 | case empty | |
| 428 | then show ?case by simp | |
| 33715 | 429 | next | 
| 430 | case (insert x F) | |
| 54681 | 431 |   {
 | 
| 432 | fix n | |
| 72304 | 433 | assume card_insert: "card (insert x F) = n" | 
| 33715 | 434 |     let ?xF = "{p. p permutes insert x F}"
 | 
| 435 |     let ?pF = "{p. p permutes F}"
 | |
| 436 |     let ?pF' = "{(b, p). b \<in> insert x F \<and> p \<in> ?pF}"
 | |
| 73648 | 437 | let ?g = "(\<lambda>(b, p). transpose x b \<circ> p)" | 
| 65342 | 438 | have xfgpF': "?xF = ?g ` ?pF'" | 
| 439 | by (rule permutes_insert[of x F]) | |
| 72304 | 440 | from \<open>x \<notin> F\<close> \<open>finite F\<close> card_insert have Fs: "card F = n - 1" | 
| 65342 | 441 | by auto | 
| 442 | from \<open>finite F\<close> insert.hyps Fs have pFs: "card ?pF = fact (n - 1)" | |
| 443 | by auto | |
| 54681 | 444 | then have "finite ?pF" | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59669diff
changeset | 445 | by (auto intro: card_ge_0_finite) | 
| 72302 
d7d90ed4c74e
fixed some remarkably ugly proofs
 paulson <lp15@cam.ac.uk> parents: 
69895diff
changeset | 446 | with \<open>finite F\<close> card.insert_remove have pF'f: "finite ?pF'" | 
| 61424 
c3658c18b7bc
prod_case as canonical name for product type eliminator
 haftmann parents: 
60601diff
changeset | 447 | apply (simp only: Collect_case_prod Collect_mem_eq) | 
| 33715 | 448 | apply (rule finite_cartesian_product) | 
| 449 | apply simp_all | |
| 450 | done | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 451 | |
| 33715 | 452 | have ginj: "inj_on ?g ?pF'" | 
| 54681 | 453 | proof - | 
| 33715 | 454 |       {
 | 
| 54681 | 455 | fix b p c q | 
| 65342 | 456 | assume bp: "(b, p) \<in> ?pF'" | 
| 457 | assume cq: "(c, q) \<in> ?pF'" | |
| 458 | assume eq: "?g (b, p) = ?g (c, q)" | |
| 459 | from bp cq have pF: "p permutes F" and qF: "q permutes F" | |
| 54681 | 460 | by auto | 
| 65342 | 461 | from pF \<open>x \<notin> F\<close> eq have "b = ?g (b, p) x" | 
| 73663 | 462 | by (auto simp: permutes_def fun_upd_def fun_eq_iff) | 
| 65342 | 463 | also from qF \<open>x \<notin> F\<close> eq have "\<dots> = ?g (c, q) x" | 
| 73466 | 464 | by (auto simp: fun_upd_def fun_eq_iff) | 
| 65342 | 465 | also from qF \<open>x \<notin> F\<close> have "\<dots> = c" | 
| 73663 | 466 | by (auto simp: permutes_def fun_upd_def fun_eq_iff) | 
| 65342 | 467 | finally have "b = c" . | 
| 73663 | 468 | then have "transpose x b = transpose x c" | 
| 54681 | 469 | by simp | 
| 73663 | 470 | with eq have "transpose x b \<circ> p = transpose x b \<circ> q" | 
| 54681 | 471 | by simp | 
| 73663 | 472 | then have "transpose x b \<circ> (transpose x b \<circ> p) = transpose x b \<circ> (transpose x b \<circ> q)" | 
| 54681 | 473 | by simp | 
| 474 | then have "p = q" | |
| 475 | by (simp add: o_assoc) | |
| 65342 | 476 | with \<open>b = c\<close> have "(b, p) = (c, q)" | 
| 54681 | 477 | by simp | 
| 33715 | 478 | } | 
| 54681 | 479 | then show ?thesis | 
| 480 | unfolding inj_on_def by blast | |
| 33715 | 481 | qed | 
| 72304 | 482 | from \<open>x \<notin> F\<close> \<open>finite F\<close> card_insert have "n \<noteq> 0" | 
| 65342 | 483 | by auto | 
| 54681 | 484 | then have "\<exists>m. n = Suc m" | 
| 485 | by presburger | |
| 65342 | 486 | then obtain m where n: "n = Suc m" | 
| 54681 | 487 | by blast | 
| 72304 | 488 | from pFs card_insert have *: "card ?xF = fact n" | 
| 54681 | 489 | unfolding xfgpF' card_image[OF ginj] | 
| 60500 | 490 | using \<open>finite F\<close> \<open>finite ?pF\<close> | 
| 65342 | 491 | by (simp only: Collect_case_prod Collect_mem_eq card_cartesian_product) (simp add: n) | 
| 54681 | 492 | from finite_imageI[OF pF'f, of ?g] have xFf: "finite ?xF" | 
| 65342 | 493 | by (simp add: xfgpF' n) | 
| 494 | from * have "card ?xF = fact n" | |
| 495 | unfolding xFf by blast | |
| 33715 | 496 | } | 
| 65342 | 497 | with insert show ?case by simp | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 498 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 499 | |
| 54681 | 500 | lemma finite_permutations: | 
| 65342 | 501 | assumes "finite S" | 
| 54681 | 502 |   shows "finite {p. p permutes S}"
 | 
| 65342 | 503 | using card_permutations[OF refl assms] by (auto intro: card_ge_0_finite) | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 504 | |
| 54681 | 505 | |
| 73466 | 506 | subsection \<open>Hence a sort of induction principle composing by swaps\<close> | 
| 507 | ||
| 508 | lemma permutes_induct [consumes 2, case_names id swap]: | |
| 509 | \<open>P p\<close> if \<open>p permutes S\<close> \<open>finite S\<close> | |
| 510 | and id: \<open>P id\<close> | |
| 73648 | 511 | and swap: \<open>\<And>a b p. a \<in> S \<Longrightarrow> b \<in> S \<Longrightarrow> p permutes S \<Longrightarrow> P p \<Longrightarrow> P (transpose a b \<circ> p)\<close> | 
| 73466 | 512 | using \<open>finite S\<close> \<open>p permutes S\<close> swap proof (induction S arbitrary: p) | 
| 513 | case empty | |
| 514 | with id show ?case | |
| 515 | by (simp only: permutes_empty) | |
| 516 | next | |
| 517 | case (insert x S p) | |
| 73648 | 518 | define q where \<open>q = transpose x (p x) \<circ> p\<close> | 
| 519 | then have swap_q: \<open>transpose x (p x) \<circ> q = p\<close> | |
| 73466 | 520 | by (simp add: o_assoc) | 
| 521 | from \<open>p permutes insert x S\<close> have \<open>q permutes S\<close> | |
| 522 | by (simp add: q_def permutes_insert_lemma) | |
| 523 | then have \<open>q permutes insert x S\<close> | |
| 524 | by (simp add: permutes_imp_permutes_insert) | |
| 525 | from \<open>q permutes S\<close> have \<open>P q\<close> | |
| 526 | by (auto intro: insert.IH insert.prems(2) permutes_imp_permutes_insert) | |
| 527 | have \<open>x \<in> insert x S\<close> | |
| 528 | by simp | |
| 529 | moreover from \<open>p permutes insert x S\<close> have \<open>p x \<in> insert x S\<close> | |
| 530 | using permutes_in_image [of p \<open>insert x S\<close> x] by simp | |
| 73648 | 531 | ultimately have \<open>P (transpose x (p x) \<circ> q)\<close> | 
| 73466 | 532 | using \<open>q permutes insert x S\<close> \<open>P q\<close> | 
| 533 | by (rule insert.prems(2)) | |
| 534 | then show ?case | |
| 535 | by (simp add: swap_q) | |
| 536 | qed | |
| 537 | ||
| 538 | lemma permutes_rev_induct [consumes 2, case_names id swap]: | |
| 539 | \<open>P p\<close> if \<open>p permutes S\<close> \<open>finite S\<close> | |
| 540 | and id': \<open>P id\<close> | |
| 73648 | 541 | and swap': \<open>\<And>a b p. a \<in> S \<Longrightarrow> b \<in> S \<Longrightarrow> p permutes S \<Longrightarrow> P p \<Longrightarrow> P (p \<circ> transpose a b)\<close> | 
| 73466 | 542 | using \<open>p permutes S\<close> \<open>finite S\<close> proof (induction rule: permutes_induct) | 
| 543 | case id | |
| 544 | from id' show ?case . | |
| 545 | next | |
| 546 | case (swap a b p) | |
| 73648 | 547 | then have \<open>bij p\<close> | 
| 73663 | 548 | using permutes_bij by blast | 
| 549 | have \<open>P (p \<circ> transpose (inv p a) (inv p b))\<close> | |
| 73466 | 550 | by (rule swap') (auto simp add: swap permutes_in_image permutes_inv) | 
| 73663 | 551 | also have \<open>p \<circ> transpose (inv p a) (inv p b) = transpose a b \<circ> p\<close> | 
| 73648 | 552 | using \<open>bij p\<close> by (rule transpose_comp_eq [symmetric]) | 
| 73466 | 553 | finally show ?case . | 
| 554 | qed | |
| 555 | ||
| 556 | ||
| 60500 | 557 | subsection \<open>Permutations of index set for iterated operations\<close> | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 558 | |
| 51489 | 559 | lemma (in comm_monoid_set) permute: | 
| 560 | assumes "p permutes S" | |
| 54681 | 561 | shows "F g S = F (g \<circ> p) S" | 
| 51489 | 562 | proof - | 
| 60500 | 563 | from \<open>p permutes S\<close> have "inj p" | 
| 54681 | 564 | by (rule permutes_inj) | 
| 565 | then have "inj_on p S" | |
| 566 | by (auto intro: subset_inj_on) | |
| 567 | then have "F g (p ` S) = F (g \<circ> p) S" | |
| 568 | by (rule reindex) | |
| 60500 | 569 | moreover from \<open>p permutes S\<close> have "p ` S = S" | 
| 54681 | 570 | by (rule permutes_image) | 
| 571 | ultimately show ?thesis | |
| 572 | by simp | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 573 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 574 | |
| 54681 | 575 | |
| 60500 | 576 | subsection \<open>Permutations as transposition sequences\<close> | 
| 54681 | 577 | |
| 578 | inductive swapidseq :: "nat \<Rightarrow> ('a \<Rightarrow> 'a) \<Rightarrow> bool"
 | |
| 65342 | 579 | where | 
| 580 | id[simp]: "swapidseq 0 id" | |
| 73648 | 581 | | comp_Suc: "swapidseq n p \<Longrightarrow> a \<noteq> b \<Longrightarrow> swapidseq (Suc n) (transpose a b \<circ> p)" | 
| 54681 | 582 | |
| 583 | declare id[unfolded id_def, simp] | |
| 584 | ||
| 585 | definition "permutation p \<longleftrightarrow> (\<exists>n. swapidseq n p)" | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 586 | |
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 587 | |
| 60500 | 588 | subsection \<open>Some closure properties of the set of permutations, with lengths\<close> | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 589 | |
| 54681 | 590 | lemma permutation_id[simp]: "permutation id" | 
| 591 | unfolding permutation_def by (rule exI[where x=0]) simp | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 592 | |
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 593 | declare permutation_id[unfolded id_def, simp] | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 594 | |
| 73648 | 595 | lemma swapidseq_swap: "swapidseq (if a = b then 0 else 1) (transpose a b)" | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 596 | apply clarsimp | 
| 54681 | 597 | using comp_Suc[of 0 id a b] | 
| 598 | apply simp | |
| 599 | done | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 600 | |
| 73648 | 601 | lemma permutation_swap_id: "permutation (transpose a b)" | 
| 65342 | 602 | proof (cases "a = b") | 
| 603 | case True | |
| 604 | then show ?thesis by simp | |
| 605 | next | |
| 606 | case False | |
| 607 | then show ?thesis | |
| 608 | unfolding permutation_def | |
| 609 | using swapidseq_swap[of a b] by blast | |
| 610 | qed | |
| 611 | ||
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 612 | |
| 54681 | 613 | lemma swapidseq_comp_add: "swapidseq n p \<Longrightarrow> swapidseq m q \<Longrightarrow> swapidseq (n + m) (p \<circ> q)" | 
| 614 | proof (induct n p arbitrary: m q rule: swapidseq.induct) | |
| 615 | case (id m q) | |
| 616 | then show ?case by simp | |
| 617 | next | |
| 618 | case (comp_Suc n p a b m q) | |
| 65342 | 619 | have eq: "Suc n + m = Suc (n + m)" | 
| 54681 | 620 | by arith | 
| 621 | show ?case | |
| 65342 | 622 | apply (simp only: eq comp_assoc) | 
| 54681 | 623 | apply (rule swapidseq.comp_Suc) | 
| 624 | using comp_Suc.hyps(2)[OF comp_Suc.prems] comp_Suc.hyps(3) | |
| 65342 | 625 | apply blast+ | 
| 54681 | 626 | done | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 627 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 628 | |
| 54681 | 629 | lemma permutation_compose: "permutation p \<Longrightarrow> permutation q \<Longrightarrow> permutation (p \<circ> q)" | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 630 | unfolding permutation_def using swapidseq_comp_add[of _ p _ q] by metis | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 631 | |
| 73648 | 632 | lemma swapidseq_endswap: "swapidseq n p \<Longrightarrow> a \<noteq> b \<Longrightarrow> swapidseq (Suc n) (p \<circ> transpose a b)" | 
| 65342 | 633 | by (induct n p rule: swapidseq.induct) | 
| 634 | (use swapidseq_swap[of a b] in \<open>auto simp add: comp_assoc intro: swapidseq.comp_Suc\<close>) | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 635 | |
| 54681 | 636 | lemma swapidseq_inverse_exists: "swapidseq n p \<Longrightarrow> \<exists>q. swapidseq n q \<and> p \<circ> q = id \<and> q \<circ> p = id" | 
| 637 | proof (induct n p rule: swapidseq.induct) | |
| 638 | case id | |
| 639 | then show ?case | |
| 640 | by (rule exI[where x=id]) simp | |
| 30488 | 641 | next | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 642 | case (comp_Suc n p a b) | 
| 54681 | 643 | from comp_Suc.hyps obtain q where q: "swapidseq n q" "p \<circ> q = id" "q \<circ> p = id" | 
| 644 | by blast | |
| 73648 | 645 | let ?q = "q \<circ> transpose a b" | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 646 | note H = comp_Suc.hyps | 
| 73648 | 647 | from swapidseq_swap[of a b] H(3) have *: "swapidseq 1 (transpose a b)" | 
| 54681 | 648 | by simp | 
| 65342 | 649 | from swapidseq_comp_add[OF q(1) *] have **: "swapidseq (Suc n) ?q" | 
| 54681 | 650 | by simp | 
| 73648 | 651 | have "transpose a b \<circ> p \<circ> ?q = transpose a b \<circ> (p \<circ> q) \<circ> transpose a b" | 
| 54681 | 652 | by (simp add: o_assoc) | 
| 653 | also have "\<dots> = id" | |
| 654 | by (simp add: q(2)) | |
| 73648 | 655 | finally have ***: "transpose a b \<circ> p \<circ> ?q = id" . | 
| 656 | have "?q \<circ> (transpose a b \<circ> p) = q \<circ> (transpose a b \<circ> transpose a b) \<circ> p" | |
| 54681 | 657 | by (simp only: o_assoc) | 
| 73648 | 658 | then have "?q \<circ> (transpose a b \<circ> p) = id" | 
| 54681 | 659 | by (simp add: q(3)) | 
| 65342 | 660 | with ** *** show ?case | 
| 54681 | 661 | by blast | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 662 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 663 | |
| 54681 | 664 | lemma swapidseq_inverse: | 
| 65342 | 665 | assumes "swapidseq n p" | 
| 54681 | 666 | shows "swapidseq n (inv p)" | 
| 65342 | 667 | using swapidseq_inverse_exists[OF assms] inv_unique_comp[of p] by auto | 
| 54681 | 668 | |
| 669 | lemma permutation_inverse: "permutation p \<Longrightarrow> permutation (inv p)" | |
| 670 | using permutation_def swapidseq_inverse by blast | |
| 671 | ||
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 672 | |
| 73328 | 673 | |
| 674 | subsection \<open>Various combinations of transpositions with 2, 1 and 0 common elements\<close> | |
| 675 | ||
| 676 | lemma swap_id_common:" a \<noteq> c \<Longrightarrow> b \<noteq> c \<Longrightarrow> | |
| 73663 | 677 | transpose a b \<circ> transpose a c = transpose b c \<circ> transpose a b" | 
| 678 | by (simp add: fun_eq_iff transpose_def) | |
| 73328 | 679 | |
| 680 | lemma swap_id_common': "a \<noteq> b \<Longrightarrow> a \<noteq> c \<Longrightarrow> | |
| 73663 | 681 | transpose a c \<circ> transpose b c = transpose b c \<circ> transpose a b" | 
| 682 | by (simp add: fun_eq_iff transpose_def) | |
| 73328 | 683 | |
| 684 | lemma swap_id_independent: "a \<noteq> c \<Longrightarrow> a \<noteq> d \<Longrightarrow> b \<noteq> c \<Longrightarrow> b \<noteq> d \<Longrightarrow> | |
| 73648 | 685 | transpose a b \<circ> transpose c d = transpose c d \<circ> transpose a b" | 
| 73663 | 686 | by (simp add: fun_eq_iff transpose_def) | 
| 73328 | 687 | |
| 688 | ||
| 60500 | 689 | subsection \<open>The identity map only has even transposition sequences\<close> | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 690 | |
| 54681 | 691 | lemma symmetry_lemma: | 
| 692 | assumes "\<And>a b c d. P a b c d \<Longrightarrow> P a b d c" | |
| 693 | and "\<And>a b c d. a \<noteq> b \<Longrightarrow> c \<noteq> d \<Longrightarrow> | |
| 694 | a = c \<and> b = d \<or> a = c \<and> b \<noteq> d \<or> a \<noteq> c \<and> b = d \<or> a \<noteq> c \<and> a \<noteq> d \<and> b \<noteq> c \<and> b \<noteq> d \<Longrightarrow> | |
| 695 | P a b c d" | |
| 696 | shows "\<And>a b c d. a \<noteq> b \<longrightarrow> c \<noteq> d \<longrightarrow> P a b c d" | |
| 697 | using assms by metis | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 698 | |
| 54681 | 699 | lemma swap_general: "a \<noteq> b \<Longrightarrow> c \<noteq> d \<Longrightarrow> | 
| 73648 | 700 | transpose a b \<circ> transpose c d = id \<or> | 
| 54681 | 701 | (\<exists>x y z. x \<noteq> a \<and> y \<noteq> a \<and> z \<noteq> a \<and> x \<noteq> y \<and> | 
| 73648 | 702 | transpose a b \<circ> transpose c d = transpose x y \<circ> transpose a z)" | 
| 54681 | 703 | proof - | 
| 65342 | 704 | assume neq: "a \<noteq> b" "c \<noteq> d" | 
| 54681 | 705 | have "a \<noteq> b \<longrightarrow> c \<noteq> d \<longrightarrow> | 
| 73648 | 706 | (transpose a b \<circ> transpose c d = id \<or> | 
| 54681 | 707 | (\<exists>x y z. x \<noteq> a \<and> y \<noteq> a \<and> z \<noteq> a \<and> x \<noteq> y \<and> | 
| 73648 | 708 | transpose a b \<circ> transpose c d = transpose x y \<circ> transpose a z))" | 
| 54681 | 709 | apply (rule symmetry_lemma[where a=a and b=b and c=c and d=d]) | 
| 73648 | 710 | apply (simp_all only: ac_simps) | 
| 711 | apply (metis id_comp swap_id_common swap_id_common' swap_id_independent transpose_comp_involutory) | |
| 54681 | 712 | done | 
| 65342 | 713 | with neq show ?thesis by metis | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 714 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 715 | |
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 716 | lemma swapidseq_id_iff[simp]: "swapidseq 0 p \<longleftrightarrow> p = id" | 
| 65342 | 717 | using swapidseq.cases[of 0 p "p = id"] by auto | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 718 | |
| 54681 | 719 | lemma swapidseq_cases: "swapidseq n p \<longleftrightarrow> | 
| 73648 | 720 | n = 0 \<and> p = id \<or> (\<exists>a b q m. n = Suc m \<and> p = transpose a b \<circ> q \<and> swapidseq m q \<and> a \<noteq> b)" | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 721 | apply (rule iffI) | 
| 65342 | 722 | apply (erule swapidseq.cases[of n p]) | 
| 723 | apply simp | |
| 724 | apply (rule disjI2) | |
| 725 | apply (rule_tac x= "a" in exI) | |
| 726 | apply (rule_tac x= "b" in exI) | |
| 727 | apply (rule_tac x= "pa" in exI) | |
| 728 | apply (rule_tac x= "na" in exI) | |
| 729 | apply simp | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 730 | apply auto | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 731 | apply (rule comp_Suc, simp_all) | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 732 | done | 
| 54681 | 733 | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 734 | lemma fixing_swapidseq_decrease: | 
| 65342 | 735 | assumes "swapidseq n p" | 
| 736 | and "a \<noteq> b" | |
| 73648 | 737 | and "(transpose a b \<circ> p) a = a" | 
| 738 | shows "n \<noteq> 0 \<and> swapidseq (n - 1) (transpose a b \<circ> p)" | |
| 65342 | 739 | using assms | 
| 54681 | 740 | proof (induct n arbitrary: p a b) | 
| 741 | case 0 | |
| 742 | then show ?case | |
| 73663 | 743 | by (auto simp add: fun_upd_def) | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 744 | next | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 745 | case (Suc n p a b) | 
| 54681 | 746 | from Suc.prems(1) swapidseq_cases[of "Suc n" p] | 
| 747 | obtain c d q m where | |
| 73648 | 748 | cdqm: "Suc n = Suc m" "p = transpose c d \<circ> q" "swapidseq m q" "c \<noteq> d" "n = m" | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 749 | by auto | 
| 73648 | 750 | consider "transpose a b \<circ> transpose c d = id" | 
| 65342 | 751 | | x y z where "x \<noteq> a" "y \<noteq> a" "z \<noteq> a" "x \<noteq> y" | 
| 73648 | 752 | "transpose a b \<circ> transpose c d = transpose x y \<circ> transpose a z" | 
| 65342 | 753 | using swap_general[OF Suc.prems(2) cdqm(4)] by metis | 
| 754 | then show ?case | |
| 755 | proof cases | |
| 756 | case 1 | |
| 757 | then show ?thesis | |
| 758 | by (simp only: cdqm o_assoc) (simp add: cdqm) | |
| 759 | next | |
| 760 | case prems: 2 | |
| 761 | then have az: "a \<noteq> z" | |
| 54681 | 762 | by simp | 
| 73648 | 763 | from prems have *: "(transpose x y \<circ> h) a = a \<longleftrightarrow> h a = a" for h | 
| 764 | by (simp add: transpose_def) | |
| 765 | from cdqm(2) have "transpose a b \<circ> p = transpose a b \<circ> (transpose c d \<circ> q)" | |
| 54681 | 766 | by simp | 
| 73648 | 767 | then have "transpose a b \<circ> p = transpose x y \<circ> (transpose a z \<circ> q)" | 
| 65342 | 768 | by (simp add: o_assoc prems) | 
| 73648 | 769 | then have "(transpose a b \<circ> p) a = (transpose x y \<circ> (transpose a z \<circ> q)) a" | 
| 54681 | 770 | by simp | 
| 73648 | 771 | then have "(transpose x y \<circ> (transpose a z \<circ> q)) a = a" | 
| 54681 | 772 | unfolding Suc by metis | 
| 73648 | 773 | then have "(transpose a z \<circ> q) a = a" | 
| 65342 | 774 | by (simp only: *) | 
| 775 | from Suc.hyps[OF cdqm(3)[ unfolded cdqm(5)[symmetric]] az this] | |
| 73648 | 776 | have **: "swapidseq (n - 1) (transpose a z \<circ> q)" "n \<noteq> 0" | 
| 54681 | 777 | by blast+ | 
| 65342 | 778 | from \<open>n \<noteq> 0\<close> have ***: "Suc n - 1 = Suc (n - 1)" | 
| 779 | by auto | |
| 780 | show ?thesis | |
| 781 | apply (simp only: cdqm(2) prems o_assoc ***) | |
| 49739 | 782 | apply (simp only: Suc_not_Zero simp_thms comp_assoc) | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 783 | apply (rule comp_Suc) | 
| 65342 | 784 | using ** prems | 
| 785 | apply blast+ | |
| 54681 | 786 | done | 
| 65342 | 787 | qed | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 788 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 789 | |
| 30488 | 790 | lemma swapidseq_identity_even: | 
| 54681 | 791 | assumes "swapidseq n (id :: 'a \<Rightarrow> 'a)" | 
| 792 | shows "even n" | |
| 60500 | 793 | using \<open>swapidseq n id\<close> | 
| 54681 | 794 | proof (induct n rule: nat_less_induct) | 
| 65342 | 795 | case H: (1 n) | 
| 796 | consider "n = 0" | |
| 73648 | 797 | | a b :: 'a and q m where "n = Suc m" "id = transpose a b \<circ> q" "swapidseq m q" "a \<noteq> b" | 
| 65342 | 798 | using H(2)[unfolded swapidseq_cases[of n id]] by auto | 
| 799 | then show ?case | |
| 800 | proof cases | |
| 801 | case 1 | |
| 802 | then show ?thesis by presburger | |
| 803 | next | |
| 804 | case h: 2 | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 805 | from fixing_swapidseq_decrease[OF h(3,4), unfolded h(2)[symmetric]] | 
| 54681 | 806 | have m: "m \<noteq> 0" "swapidseq (m - 1) (id :: 'a \<Rightarrow> 'a)" | 
| 807 | by auto | |
| 808 | from h m have mn: "m - 1 < n" | |
| 809 | by arith | |
| 65342 | 810 | from H(1)[rule_format, OF mn m(2)] h(1) m(1) show ?thesis | 
| 54681 | 811 | by presburger | 
| 65342 | 812 | qed | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 813 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 814 | |
| 54681 | 815 | |
| 60500 | 816 | subsection \<open>Therefore we have a welldefined notion of parity\<close> | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 817 | |
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 818 | definition "evenperm p = even (SOME n. swapidseq n p)" | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 819 | |
| 54681 | 820 | lemma swapidseq_even_even: | 
| 821 | assumes m: "swapidseq m p" | |
| 822 | and n: "swapidseq n p" | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 823 | shows "even m \<longleftrightarrow> even n" | 
| 54681 | 824 | proof - | 
| 65342 | 825 | from swapidseq_inverse_exists[OF n] obtain q where q: "swapidseq n q" "p \<circ> q = id" "q \<circ> p = id" | 
| 54681 | 826 | by blast | 
| 65342 | 827 | from swapidseq_identity_even[OF swapidseq_comp_add[OF m q(1), unfolded q]] show ?thesis | 
| 54681 | 828 | by arith | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 829 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 830 | |
| 54681 | 831 | lemma evenperm_unique: | 
| 832 | assumes p: "swapidseq n p" | |
| 833 | and n:"even n = b" | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 834 | shows "evenperm p = b" | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 835 | unfolding n[symmetric] evenperm_def | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 836 | apply (rule swapidseq_even_even[where p = p]) | 
| 65342 | 837 | apply (rule someI[where x = n]) | 
| 54681 | 838 | using p | 
| 65342 | 839 | apply blast+ | 
| 54681 | 840 | done | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 841 | |
| 54681 | 842 | |
| 60500 | 843 | subsection \<open>And it has the expected composition properties\<close> | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 844 | |
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 845 | lemma evenperm_id[simp]: "evenperm id = True" | 
| 54681 | 846 | by (rule evenperm_unique[where n = 0]) simp_all | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 847 | |
| 73621 | 848 | lemma evenperm_identity [simp]: | 
| 849 | \<open>evenperm (\<lambda>x. x)\<close> | |
| 850 | using evenperm_id by (simp add: id_def [abs_def]) | |
| 851 | ||
| 73648 | 852 | lemma evenperm_swap: "evenperm (transpose a b) = (a = b)" | 
| 54681 | 853 | by (rule evenperm_unique[where n="if a = b then 0 else 1"]) (simp_all add: swapidseq_swap) | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 854 | |
| 30488 | 855 | lemma evenperm_comp: | 
| 65342 | 856 | assumes "permutation p" "permutation q" | 
| 857 | shows "evenperm (p \<circ> q) \<longleftrightarrow> evenperm p = evenperm q" | |
| 54681 | 858 | proof - | 
| 65342 | 859 | from assms obtain n m where n: "swapidseq n p" and m: "swapidseq m q" | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 860 | unfolding permutation_def by blast | 
| 65342 | 861 | have "even (n + m) \<longleftrightarrow> (even n \<longleftrightarrow> even m)" | 
| 54681 | 862 | by arith | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 863 | from evenperm_unique[OF n refl] evenperm_unique[OF m refl] | 
| 65342 | 864 | and evenperm_unique[OF swapidseq_comp_add[OF n m] this] show ?thesis | 
| 54681 | 865 | by blast | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 866 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 867 | |
| 54681 | 868 | lemma evenperm_inv: | 
| 65342 | 869 | assumes "permutation p" | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 870 | shows "evenperm (inv p) = evenperm p" | 
| 54681 | 871 | proof - | 
| 65342 | 872 | from assms obtain n where n: "swapidseq n p" | 
| 54681 | 873 | unfolding permutation_def by blast | 
| 65342 | 874 | show ?thesis | 
| 875 | by (rule evenperm_unique[OF swapidseq_inverse[OF n] evenperm_unique[OF n refl, symmetric]]) | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 876 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 877 | |
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 878 | |
| 60500 | 879 | subsection \<open>A more abstract characterization of permutations\<close> | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 880 | |
| 30488 | 881 | lemma permutation_bijective: | 
| 65342 | 882 | assumes "permutation p" | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 883 | shows "bij p" | 
| 54681 | 884 | proof - | 
| 65342 | 885 | from assms obtain n where n: "swapidseq n p" | 
| 54681 | 886 | unfolding permutation_def by blast | 
| 65342 | 887 | from swapidseq_inverse_exists[OF n] obtain q where q: "swapidseq n q" "p \<circ> q = id" "q \<circ> p = id" | 
| 54681 | 888 | by blast | 
| 65342 | 889 | then show ?thesis | 
| 890 | unfolding bij_iff | |
| 54681 | 891 | apply (auto simp add: fun_eq_iff) | 
| 892 | apply metis | |
| 893 | done | |
| 30488 | 894 | qed | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 895 | |
| 54681 | 896 | lemma permutation_finite_support: | 
| 65342 | 897 | assumes "permutation p" | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 898 |   shows "finite {x. p x \<noteq> x}"
 | 
| 54681 | 899 | proof - | 
| 65342 | 900 | from assms obtain n where "swapidseq n p" | 
| 54681 | 901 | unfolding permutation_def by blast | 
| 65342 | 902 | then show ?thesis | 
| 54681 | 903 | proof (induct n p rule: swapidseq.induct) | 
| 904 | case id | |
| 905 | then show ?case by simp | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 906 | next | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 907 | case (comp_Suc n p a b) | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 908 |     let ?S = "insert a (insert b {x. p x \<noteq> x})"
 | 
| 65342 | 909 | from comp_Suc.hyps(2) have *: "finite ?S" | 
| 54681 | 910 | by simp | 
| 73648 | 911 |     from \<open>a \<noteq> b\<close> have **: "{x. (transpose a b \<circ> p) x \<noteq> x} \<subseteq> ?S"
 | 
| 73663 | 912 | by auto | 
| 65342 | 913 | show ?case | 
| 914 | by (rule finite_subset[OF ** *]) | |
| 54681 | 915 | qed | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 916 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 917 | |
| 30488 | 918 | lemma permutation_lemma: | 
| 65342 | 919 | assumes "finite S" | 
| 920 | and "bij p" | |
| 73328 | 921 | and "\<forall>x. x \<notin> S \<longrightarrow> p x = x" | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 922 | shows "permutation p" | 
| 65342 | 923 | using assms | 
| 54681 | 924 | proof (induct S arbitrary: p rule: finite_induct) | 
| 65342 | 925 | case empty | 
| 926 | then show ?case | |
| 927 | by simp | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 928 | next | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 929 | case (insert a F p) | 
| 73663 | 930 | let ?r = "transpose a (p a) \<circ> p" | 
| 931 | let ?q = "transpose a (p a) \<circ> ?r" | |
| 65342 | 932 | have *: "?r a = a" | 
| 73663 | 933 | by simp | 
| 65342 | 934 | from insert * have **: "\<forall>x. x \<notin> F \<longrightarrow> ?r x = x" | 
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
64543diff
changeset | 935 | by (metis bij_pointE comp_apply id_apply insert_iff swap_apply(3)) | 
| 65342 | 936 | have "bij ?r" | 
| 73663 | 937 | using insert by (simp add: bij_comp) | 
| 65342 | 938 | have "permutation ?r" | 
| 939 | by (rule insert(3)[OF \<open>bij ?r\<close> **]) | |
| 940 | then have "permutation ?q" | |
| 941 | by (simp add: permutation_compose permutation_swap_id) | |
| 54681 | 942 | then show ?case | 
| 943 | by (simp add: o_assoc) | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 944 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 945 | |
| 30488 | 946 | lemma permutation: "permutation p \<longleftrightarrow> bij p \<and> finite {x. p x \<noteq> x}"
 | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 947 | (is "?lhs \<longleftrightarrow> ?b \<and> ?f") | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 948 | proof | 
| 65342 | 949 | assume ?lhs | 
| 950 | with permutation_bijective permutation_finite_support show "?b \<and> ?f" | |
| 54681 | 951 | by auto | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 952 | next | 
| 54681 | 953 | assume "?b \<and> ?f" | 
| 954 | then have "?f" "?b" by blast+ | |
| 955 | from permutation_lemma[OF this] show ?lhs | |
| 956 | by blast | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 957 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 958 | |
| 54681 | 959 | lemma permutation_inverse_works: | 
| 65342 | 960 | assumes "permutation p" | 
| 54681 | 961 | shows "inv p \<circ> p = id" | 
| 962 | and "p \<circ> inv p = id" | |
| 65342 | 963 | using permutation_bijective [OF assms] by (auto simp: bij_def inj_iff surj_iff) | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 964 | |
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 965 | lemma permutation_inverse_compose: | 
| 54681 | 966 | assumes p: "permutation p" | 
| 967 | and q: "permutation q" | |
| 968 | shows "inv (p \<circ> q) = inv q \<circ> inv p" | |
| 969 | proof - | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 970 | note ps = permutation_inverse_works[OF p] | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 971 | note qs = permutation_inverse_works[OF q] | 
| 54681 | 972 | have "p \<circ> q \<circ> (inv q \<circ> inv p) = p \<circ> (q \<circ> inv q) \<circ> inv p" | 
| 973 | by (simp add: o_assoc) | |
| 974 | also have "\<dots> = id" | |
| 975 | by (simp add: ps qs) | |
| 65342 | 976 | finally have *: "p \<circ> q \<circ> (inv q \<circ> inv p) = id" . | 
| 54681 | 977 | have "inv q \<circ> inv p \<circ> (p \<circ> q) = inv q \<circ> (inv p \<circ> p) \<circ> q" | 
| 978 | by (simp add: o_assoc) | |
| 979 | also have "\<dots> = id" | |
| 980 | by (simp add: ps qs) | |
| 65342 | 981 | finally have **: "inv q \<circ> inv p \<circ> (p \<circ> q) = id" . | 
| 982 | show ?thesis | |
| 983 | by (rule inv_unique_comp[OF * **]) | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 984 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 985 | |
| 54681 | 986 | |
| 65342 | 987 | subsection \<open>Relation to \<open>permutes\<close>\<close> | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 988 | |
| 73466 | 989 | lemma permutes_imp_permutation: | 
| 990 | \<open>permutation p\<close> if \<open>finite S\<close> \<open>p permutes S\<close> | |
| 991 | proof - | |
| 992 |   from \<open>p permutes S\<close> have \<open>{x. p x \<noteq> x} \<subseteq> S\<close>
 | |
| 993 | by (auto dest: permutes_not_in) | |
| 994 |   then have \<open>finite {x. p x \<noteq> x}\<close>
 | |
| 995 | using \<open>finite S\<close> by (rule finite_subset) | |
| 996 | moreover from \<open>p permutes S\<close> have \<open>bij p\<close> | |
| 997 | by (auto dest: permutes_bij) | |
| 998 | ultimately show ?thesis | |
| 999 | by (simp add: permutation) | |
| 1000 | qed | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1001 | |
| 73466 | 1002 | lemma permutation_permutesE: | 
| 1003 | assumes \<open>permutation p\<close> | |
| 1004 | obtains S where \<open>finite S\<close> \<open>p permutes S\<close> | |
| 1005 | proof - | |
| 1006 |   from assms have fin: \<open>finite {x. p x \<noteq> x}\<close>
 | |
| 1007 | by (simp add: permutation) | |
| 1008 | from assms have \<open>bij p\<close> | |
| 1009 | by (simp add: permutation) | |
| 1010 |   also have \<open>UNIV = {x. p x \<noteq> x} \<union> {x. p x = x}\<close>
 | |
| 1011 | by auto | |
| 1012 |   finally have \<open>bij_betw p {x. p x \<noteq> x} {x. p x \<noteq> x}\<close>
 | |
| 1013 | by (rule bij_betw_partition) (auto simp add: bij_betw_fixpoints) | |
| 1014 |   then have \<open>p permutes {x. p x \<noteq> x}\<close>
 | |
| 1015 | by (auto intro: bij_imp_permutes) | |
| 1016 | with fin show thesis .. | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1017 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1018 | |
| 73466 | 1019 | lemma permutation_permutes: "permutation p \<longleftrightarrow> (\<exists>S. finite S \<and> p permutes S)" | 
| 1020 | by (auto elim: permutation_permutesE intro: permutes_imp_permutation) | |
| 1021 | ||
| 54681 | 1022 | |
| 60500 | 1023 | subsection \<open>Sign of a permutation as a real number\<close> | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1024 | |
| 73328 | 1025 | definition sign :: \<open>('a \<Rightarrow> 'a) \<Rightarrow> int\<close> \<comment> \<open>TODO: prefer less generic name\<close>
 | 
| 73621 | 1026 | where \<open>sign p = (if evenperm p then 1 else - 1)\<close> | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1027 | |
| 73621 | 1028 | lemma sign_cases [case_names even odd]: | 
| 1029 | obtains \<open>sign p = 1\<close> | \<open>sign p = - 1\<close> | |
| 1030 | by (cases \<open>evenperm p\<close>) (simp_all add: sign_def) | |
| 1031 | ||
| 1032 | lemma sign_nz [simp]: "sign p \<noteq> 0" | |
| 1033 | by (cases p rule: sign_cases) simp_all | |
| 1034 | ||
| 1035 | lemma sign_id [simp]: "sign id = 1" | |
| 54681 | 1036 | by (simp add: sign_def) | 
| 1037 | ||
| 73621 | 1038 | lemma sign_identity [simp]: | 
| 1039 | \<open>sign (\<lambda>x. x) = 1\<close> | |
| 54681 | 1040 | by (simp add: sign_def) | 
| 1041 | ||
| 1042 | lemma sign_inverse: "permutation p \<Longrightarrow> sign (inv p) = sign p" | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1043 | by (simp add: sign_def evenperm_inv) | 
| 54681 | 1044 | |
| 1045 | lemma sign_compose: "permutation p \<Longrightarrow> permutation q \<Longrightarrow> sign (p \<circ> q) = sign p * sign q" | |
| 1046 | by (simp add: sign_def evenperm_comp) | |
| 1047 | ||
| 73648 | 1048 | lemma sign_swap_id: "sign (transpose a b) = (if a = b then 1 else - 1)" | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1049 | by (simp add: sign_def evenperm_swap) | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1050 | |
| 73621 | 1051 | lemma sign_idempotent [simp]: "sign p * sign p = 1" | 
| 54681 | 1052 | by (simp add: sign_def) | 
| 1053 | ||
| 73621 | 1054 | lemma sign_left_idempotent [simp]: | 
| 1055 | \<open>sign p * (sign p * sign q) = sign q\<close> | |
| 1056 | by (simp add: sign_def) | |
| 1057 | ||
| 1058 | term "(bij, bij_betw, permutation)" | |
| 1059 | ||
| 64284 
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
 hoelzl parents: 
64267diff
changeset | 1060 | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1061 | subsection \<open>Permuting a list\<close> | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1062 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1063 | text \<open>This function permutes a list by applying a permutation to the indices.\<close> | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1064 | |
| 65342 | 1065 | definition permute_list :: "(nat \<Rightarrow> nat) \<Rightarrow> 'a list \<Rightarrow> 'a list" | 
| 1066 | where "permute_list f xs = map (\<lambda>i. xs ! (f i)) [0..<length xs]" | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1067 | |
| 64284 
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
 hoelzl parents: 
64267diff
changeset | 1068 | lemma permute_list_map: | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1069 |   assumes "f permutes {..<length xs}"
 | 
| 65342 | 1070 | shows "permute_list f (map g xs) = map g (permute_list f xs)" | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1071 | using permutes_in_image[OF assms] by (auto simp: permute_list_def) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1072 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1073 | lemma permute_list_nth: | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1074 |   assumes "f permutes {..<length xs}" "i < length xs"
 | 
| 65342 | 1075 | shows "permute_list f xs ! i = xs ! f i" | 
| 64284 
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
 hoelzl parents: 
64267diff
changeset | 1076 | using permutes_in_image[OF assms(1)] assms(2) | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1077 | by (simp add: permute_list_def) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1078 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1079 | lemma permute_list_Nil [simp]: "permute_list f [] = []" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1080 | by (simp add: permute_list_def) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1081 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1082 | lemma length_permute_list [simp]: "length (permute_list f xs) = length xs" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1083 | by (simp add: permute_list_def) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1084 | |
| 64284 
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
 hoelzl parents: 
64267diff
changeset | 1085 | lemma permute_list_compose: | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1086 |   assumes "g permutes {..<length xs}"
 | 
| 65342 | 1087 | shows "permute_list (f \<circ> g) xs = permute_list g (permute_list f xs)" | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1088 | using assms[THEN permutes_in_image] by (auto simp add: permute_list_def) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1089 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1090 | lemma permute_list_ident [simp]: "permute_list (\<lambda>x. x) xs = xs" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1091 | by (simp add: permute_list_def map_nth) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1092 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1093 | lemma permute_list_id [simp]: "permute_list id xs = xs" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1094 | by (simp add: id_def) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1095 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1096 | lemma mset_permute_list [simp]: | 
| 65342 | 1097 | fixes xs :: "'a list" | 
| 1098 |   assumes "f permutes {..<length xs}"
 | |
| 1099 | shows "mset (permute_list f xs) = mset xs" | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1100 | proof (rule multiset_eqI) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1101 | fix y :: 'a | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1102 | from assms have [simp]: "f x < length xs \<longleftrightarrow> x < length xs" for x | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1103 | using permutes_in_image[OF assms] by auto | 
| 65342 | 1104 |   have "count (mset (permute_list f xs)) y = card ((\<lambda>i. xs ! f i) -` {y} \<inter> {..<length xs})"
 | 
| 64543 
6b13586ef1a2
remove typo in bij_swap_compose_bij theorem name; tune proof
 bulwahn parents: 
64284diff
changeset | 1105 | by (simp add: permute_list_def count_image_mset atLeast0LessThan) | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1106 |   also have "(\<lambda>i. xs ! f i) -` {y} \<inter> {..<length xs} = f -` {i. i < length xs \<and> y = xs ! i}"
 | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1107 | by auto | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1108 |   also from assms have "card \<dots> = card {i. i < length xs \<and> y = xs ! i}"
 | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1109 | by (intro card_vimage_inj) (auto simp: permutes_inj permutes_surj) | 
| 65342 | 1110 | also have "\<dots> = count (mset xs) y" | 
| 1111 | by (simp add: count_mset length_filter_conv_card) | |
| 1112 | finally show "count (mset (permute_list f xs)) y = count (mset xs) y" | |
| 1113 | by simp | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1114 | qed | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1115 | |
| 64284 
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
 hoelzl parents: 
64267diff
changeset | 1116 | lemma set_permute_list [simp]: | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1117 |   assumes "f permutes {..<length xs}"
 | 
| 65342 | 1118 | shows "set (permute_list f xs) = set xs" | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1119 | by (rule mset_eq_setD[OF mset_permute_list]) fact | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1120 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1121 | lemma distinct_permute_list [simp]: | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1122 |   assumes "f permutes {..<length xs}"
 | 
| 65342 | 1123 | shows "distinct (permute_list f xs) = distinct xs" | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1124 | by (simp add: distinct_count_atmost_1 assms) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1125 | |
| 64284 
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
 hoelzl parents: 
64267diff
changeset | 1126 | lemma permute_list_zip: | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1127 |   assumes "f permutes A" "A = {..<length xs}"
 | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1128 | assumes [simp]: "length xs = length ys" | 
| 65342 | 1129 | shows "permute_list f (zip xs ys) = zip (permute_list f xs) (permute_list f ys)" | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1130 | proof - | 
| 65342 | 1131 | from permutes_in_image[OF assms(1)] assms(2) have *: "f i < length ys \<longleftrightarrow> i < length ys" for i | 
| 1132 | by simp | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1133 | have "permute_list f (zip xs ys) = map (\<lambda>i. zip xs ys ! f i) [0..<length ys]" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1134 | by (simp_all add: permute_list_def zip_map_map) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1135 | also have "\<dots> = map (\<lambda>(x, y). (xs ! f x, ys ! f y)) (zip [0..<length ys] [0..<length ys])" | 
| 65342 | 1136 | by (intro nth_equalityI) (simp_all add: *) | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1137 | also have "\<dots> = zip (permute_list f xs) (permute_list f ys)" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1138 | by (simp_all add: permute_list_def zip_map_map) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1139 | finally show ?thesis . | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1140 | qed | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1141 | |
| 64284 
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
 hoelzl parents: 
64267diff
changeset | 1142 | lemma map_of_permute: | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1143 | assumes "\<sigma> permutes fst ` set xs" | 
| 65342 | 1144 | shows "map_of xs \<circ> \<sigma> = map_of (map (\<lambda>(x,y). (inv \<sigma> x, y)) xs)" | 
| 1145 | (is "_ = map_of (map ?f _)") | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1146 | proof | 
| 65342 | 1147 | from assms have "inj \<sigma>" "surj \<sigma>" | 
| 1148 | by (simp_all add: permutes_inj permutes_surj) | |
| 1149 | then show "(map_of xs \<circ> \<sigma>) x = map_of (map ?f xs) x" for x | |
| 1150 | by (induct xs) (auto simp: inv_f_f surj_f_inv_f) | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1151 | qed | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1152 | |
| 73706 | 1153 | lemma list_all2_permute_list_iff: | 
| 1154 | \<open>list_all2 P (permute_list p xs) (permute_list p ys) \<longleftrightarrow> list_all2 P xs ys\<close> | |
| 1155 |   if \<open>p permutes {..<length xs}\<close>
 | |
| 1156 | using that by (auto simp add: list_all2_iff simp flip: permute_list_zip) | |
| 1157 | ||
| 54681 | 1158 | |
| 60500 | 1159 | subsection \<open>More lemmas about permutations\<close> | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1160 | |
| 73555 | 1161 | lemma permutes_in_funpow_image: \<^marker>\<open>contributor \<open>Lars Noschinski\<close>\<close> | 
| 1162 | assumes "f permutes S" "x \<in> S" | |
| 1163 | shows "(f ^^ n) x \<in> S" | |
| 1164 | using assms by (induction n) (auto simp: permutes_in_image) | |
| 1165 | ||
| 1166 | lemma permutation_self: \<^marker>\<open>contributor \<open>Lars Noschinski\<close>\<close> | |
| 1167 | assumes \<open>permutation p\<close> | |
| 1168 | obtains n where \<open>n > 0\<close> \<open>(p ^^ n) x = x\<close> | |
| 1169 | proof (cases \<open>p x = x\<close>) | |
| 1170 | case True | |
| 1171 | with that [of 1] show thesis by simp | |
| 1172 | next | |
| 1173 | case False | |
| 1174 | from \<open>permutation p\<close> have \<open>inj p\<close> | |
| 1175 | by (intro permutation_bijective bij_is_inj) | |
| 1176 | moreover from \<open>p x \<noteq> x\<close> have \<open>(p ^^ Suc n) x \<noteq> (p ^^ n) x\<close> for n | |
| 1177 | proof (induction n arbitrary: x) | |
| 1178 | case 0 then show ?case by simp | |
| 1179 | next | |
| 1180 | case (Suc n) | |
| 1181 | have "p (p x) \<noteq> p x" | |
| 1182 | proof (rule notI) | |
| 1183 | assume "p (p x) = p x" | |
| 1184 | then show False using \<open>p x \<noteq> x\<close> \<open>inj p\<close> by (simp add: inj_eq) | |
| 1185 | qed | |
| 1186 | have "(p ^^ Suc (Suc n)) x = (p ^^ Suc n) (p x)" | |
| 1187 | by (simp add: funpow_swap1) | |
| 1188 | also have "\<dots> \<noteq> (p ^^ n) (p x)" | |
| 1189 | by (rule Suc) fact | |
| 1190 | also have "(p ^^ n) (p x) = (p ^^ Suc n) x" | |
| 1191 | by (simp add: funpow_swap1) | |
| 1192 | finally show ?case by simp | |
| 1193 | qed | |
| 1194 |   then have "{y. \<exists>n. y = (p ^^ n) x} \<subseteq> {x. p x \<noteq> x}"
 | |
| 1195 | by auto | |
| 1196 |   then have "finite {y. \<exists>n. y = (p ^^ n) x}"
 | |
| 1197 | using permutation_finite_support[OF assms] by (rule finite_subset) | |
| 1198 | ultimately obtain n where \<open>n > 0\<close> \<open>(p ^^ n) x = x\<close> | |
| 1199 | by (rule funpow_inj_finite) | |
| 1200 | with that [of n] show thesis by blast | |
| 1201 | qed | |
| 1202 | ||
| 65342 | 1203 | text \<open>The following few lemmas were contributed by Lukas Bulwahn.\<close> | 
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1204 | |
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1205 | lemma count_image_mset_eq_card_vimage: | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1206 | assumes "finite A" | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1207 |   shows "count (image_mset f (mset_set A)) b = card {a \<in> A. f a = b}"
 | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1208 | using assms | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1209 | proof (induct A) | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1210 | case empty | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1211 | show ?case by simp | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1212 | next | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1213 | case (insert x F) | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1214 | show ?case | 
| 65342 | 1215 | proof (cases "f x = b") | 
| 1216 | case True | |
| 1217 | with insert.hyps | |
| 1218 |     have "count (image_mset f (mset_set (insert x F))) b = Suc (card {a \<in> F. f a = f x})"
 | |
| 1219 | by auto | |
| 1220 |     also from insert.hyps(1,2) have "\<dots> = card (insert x {a \<in> F. f a = f x})"
 | |
| 1221 | by simp | |
| 1222 |     also from \<open>f x = b\<close> have "card (insert x {a \<in> F. f a = f x}) = card {a \<in> insert x F. f a = b}"
 | |
| 1223 | by (auto intro: arg_cong[where f="card"]) | |
| 1224 | finally show ?thesis | |
| 1225 | using insert by auto | |
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1226 | next | 
| 65342 | 1227 | case False | 
| 1228 |     then have "{a \<in> F. f a = b} = {a \<in> insert x F. f a = b}"
 | |
| 1229 | by auto | |
| 1230 | with insert False show ?thesis | |
| 1231 | by simp | |
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1232 | qed | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1233 | qed | 
| 64284 
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
 hoelzl parents: 
64267diff
changeset | 1234 | |
| 67408 | 1235 | \<comment> \<open>Prove \<open>image_mset_eq_implies_permutes\<close> ...\<close> | 
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1236 | lemma image_mset_eq_implies_permutes: | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1237 | fixes f :: "'a \<Rightarrow> 'b" | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1238 | assumes "finite A" | 
| 65342 | 1239 | and mset_eq: "image_mset f (mset_set A) = image_mset f' (mset_set A)" | 
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1240 | obtains p where "p permutes A" and "\<forall>x\<in>A. f x = f' (p x)" | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1241 | proof - | 
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1242 |   from \<open>finite A\<close> have [simp]: "finite {a \<in> A. f a = (b::'b)}" for f b by auto
 | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1243 | have "f ` A = f' ` A" | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1244 | proof - | 
| 65342 | 1245 | from \<open>finite A\<close> have "f ` A = f ` (set_mset (mset_set A))" | 
| 1246 | by simp | |
| 1247 | also have "\<dots> = f' ` set_mset (mset_set A)" | |
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1248 | by (metis mset_eq multiset.set_map) | 
| 65342 | 1249 | also from \<open>finite A\<close> have "\<dots> = f' ` A" | 
| 1250 | by simp | |
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1251 | finally show ?thesis . | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1252 | qed | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1253 |   have "\<forall>b\<in>(f ` A). \<exists>p. bij_betw p {a \<in> A. f a = b} {a \<in> A. f' a = b}"
 | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1254 | proof | 
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1255 | fix b | 
| 65342 | 1256 | from mset_eq have "count (image_mset f (mset_set A)) b = count (image_mset f' (mset_set A)) b" | 
| 1257 | by simp | |
| 1258 |     with \<open>finite A\<close> have "card {a \<in> A. f a = b} = card {a \<in> A. f' a = b}"
 | |
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1259 | by (simp add: count_image_mset_eq_card_vimage) | 
| 65342 | 1260 |     then show "\<exists>p. bij_betw p {a\<in>A. f a = b} {a \<in> A. f' a = b}"
 | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1261 | by (intro finite_same_card_bij) simp_all | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1262 | qed | 
| 65342 | 1263 |   then have "\<exists>p. \<forall>b\<in>f ` A. bij_betw (p b) {a \<in> A. f a = b} {a \<in> A. f' a = b}"
 | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1264 | by (rule bchoice) | 
| 65342 | 1265 |   then obtain p where p: "\<forall>b\<in>f ` A. bij_betw (p b) {a \<in> A. f a = b} {a \<in> A. f' a = b}" ..
 | 
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1266 | define p' where "p' = (\<lambda>a. if a \<in> A then p (f a) a else a)" | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1267 | have "p' permutes A" | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1268 | proof (rule bij_imp_permutes) | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1269 |     have "disjoint_family_on (\<lambda>i. {a \<in> A. f' a = i}) (f ` A)"
 | 
| 65342 | 1270 | by (auto simp: disjoint_family_on_def) | 
| 1271 | moreover | |
| 1272 |     have "bij_betw (\<lambda>a. p (f a) a) {a \<in> A. f a = b} {a \<in> A. f' a = b}" if "b \<in> f ` A" for b
 | |
| 1273 | using p that by (subst bij_betw_cong[where g="p b"]) auto | |
| 1274 | ultimately | |
| 1275 |     have "bij_betw (\<lambda>a. p (f a) a) (\<Union>b\<in>f ` A. {a \<in> A. f a = b}) (\<Union>b\<in>f ` A. {a \<in> A. f' a = b})"
 | |
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1276 | by (rule bij_betw_UNION_disjoint) | 
| 65342 | 1277 |     moreover have "(\<Union>b\<in>f ` A. {a \<in> A. f a = b}) = A"
 | 
| 1278 | by auto | |
| 1279 |     moreover from \<open>f ` A = f' ` A\<close> have "(\<Union>b\<in>f ` A. {a \<in> A. f' a = b}) = A"
 | |
| 1280 | by auto | |
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1281 | ultimately show "bij_betw p' A A" | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1282 | unfolding p'_def by (subst bij_betw_cong[where g="(\<lambda>a. p (f a) a)"]) auto | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1283 | next | 
| 65342 | 1284 | show "\<And>x. x \<notin> A \<Longrightarrow> p' x = x" | 
| 1285 | by (simp add: p'_def) | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1286 | qed | 
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1287 | moreover from p have "\<forall>x\<in>A. f x = f' (p' x)" | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1288 | unfolding p'_def using bij_betwE by fastforce | 
| 65342 | 1289 | ultimately show ?thesis .. | 
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1290 | qed | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1291 | |
| 67408 | 1292 | \<comment> \<open>... and derive the existing property:\<close> | 
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1293 | lemma mset_eq_permutation: | 
| 65342 | 1294 | fixes xs ys :: "'a list" | 
| 1295 | assumes mset_eq: "mset xs = mset ys" | |
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1296 |   obtains p where "p permutes {..<length ys}" "permute_list p ys = xs"
 | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1297 | proof - | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1298 | from mset_eq have length_eq: "length xs = length ys" | 
| 65342 | 1299 | by (rule mset_eq_length) | 
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1300 |   have "mset_set {..<length ys} = mset [0..<length ys]"
 | 
| 65342 | 1301 | by (rule mset_set_upto_eq_mset_upto) | 
| 1302 |   with mset_eq length_eq have "image_mset (\<lambda>i. xs ! i) (mset_set {..<length ys}) =
 | |
| 1303 |     image_mset (\<lambda>i. ys ! i) (mset_set {..<length ys})"
 | |
| 63921 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1304 | by (metis map_nth mset_map) | 
| 
0a5184877cb7
Additions to permutations (contributed by Lukas Bulwahn)
 eberlm <eberlm@in.tum.de> parents: 
63539diff
changeset | 1305 | from image_mset_eq_implies_permutes[OF _ this] | 
| 65342 | 1306 |   obtain p where p: "p permutes {..<length ys}" and "\<forall>i\<in>{..<length ys}. xs ! i = ys ! (p i)"
 | 
| 1307 | by auto | |
| 1308 | with length_eq have "permute_list p ys = xs" | |
| 1309 | by (auto intro!: nth_equalityI simp: permute_list_nth) | |
| 1310 | with p show thesis .. | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1311 | qed | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1312 | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1313 | lemma permutes_natset_le: | 
| 54681 | 1314 | fixes S :: "'a::wellorder set" | 
| 65342 | 1315 | assumes "p permutes S" | 
| 1316 | and "\<forall>i \<in> S. p i \<le> i" | |
| 54681 | 1317 | shows "p = id" | 
| 1318 | proof - | |
| 65342 | 1319 | have "p n = n" for n | 
| 1320 | using assms | |
| 1321 | proof (induct n arbitrary: S rule: less_induct) | |
| 1322 | case (less n) | |
| 1323 | show ?case | |
| 1324 | proof (cases "n \<in> S") | |
| 1325 | case False | |
| 1326 | with less(2) show ?thesis | |
| 1327 | unfolding permutes_def by metis | |
| 1328 | next | |
| 1329 | case True | |
| 1330 | with less(3) have "p n < n \<or> p n = n" | |
| 1331 | by auto | |
| 1332 | then show ?thesis | |
| 1333 | proof | |
| 1334 | assume "p n < n" | |
| 1335 | with less have "p (p n) = p n" | |
| 1336 | by metis | |
| 1337 | with permutes_inj[OF less(2)] have "p n = n" | |
| 1338 | unfolding inj_def by blast | |
| 1339 | with \<open>p n < n\<close> have False | |
| 1340 | by simp | |
| 1341 | then show ?thesis .. | |
| 1342 | qed | |
| 54681 | 1343 | qed | 
| 65342 | 1344 | qed | 
| 1345 | then show ?thesis by (auto simp: fun_eq_iff) | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1346 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1347 | |
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1348 | lemma permutes_natset_ge: | 
| 54681 | 1349 | fixes S :: "'a::wellorder set" | 
| 1350 | assumes p: "p permutes S" | |
| 1351 | and le: "\<forall>i \<in> S. p i \<ge> i" | |
| 1352 | shows "p = id" | |
| 1353 | proof - | |
| 65342 | 1354 | have "i \<ge> inv p i" if "i \<in> S" for i | 
| 1355 | proof - | |
| 1356 | from that permutes_in_image[OF permutes_inv[OF p]] have "inv p i \<in> S" | |
| 54681 | 1357 | by simp | 
| 1358 | with le have "p (inv p i) \<ge> inv p i" | |
| 1359 | by blast | |
| 65342 | 1360 | with permutes_inverses[OF p] show ?thesis | 
| 54681 | 1361 | by simp | 
| 65342 | 1362 | qed | 
| 1363 | then have "\<forall>i\<in>S. inv p i \<le> i" | |
| 54681 | 1364 | by blast | 
| 65342 | 1365 | from permutes_natset_le[OF permutes_inv[OF p] this] have "inv p = inv id" | 
| 54681 | 1366 | by simp | 
| 30488 | 1367 | then show ?thesis | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1368 | apply (subst permutes_inv_inv[OF p, symmetric]) | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1369 | apply (rule inv_unique_comp) | 
| 65342 | 1370 | apply simp_all | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1371 | done | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1372 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1373 | |
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1374 | lemma image_inverse_permutations: "{inv p |p. p permutes S} = {p. p permutes S}"
 | 
| 54681 | 1375 | apply (rule set_eqI) | 
| 1376 | apply auto | |
| 1377 | using permutes_inv_inv permutes_inv | |
| 65342 | 1378 | apply auto | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1379 | apply (rule_tac x="inv x" in exI) | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1380 | apply auto | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1381 | done | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1382 | |
| 30488 | 1383 | lemma image_compose_permutations_left: | 
| 65342 | 1384 | assumes "q permutes S" | 
| 1385 |   shows "{q \<circ> p |p. p permutes S} = {p. p permutes S}"
 | |
| 54681 | 1386 | apply (rule set_eqI) | 
| 1387 | apply auto | |
| 65342 | 1388 | apply (rule permutes_compose) | 
| 1389 | using assms | |
| 1390 | apply auto | |
| 54681 | 1391 | apply (rule_tac x = "inv q \<circ> x" in exI) | 
| 1392 | apply (simp add: o_assoc permutes_inv permutes_compose permutes_inv_o) | |
| 1393 | done | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1394 | |
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1395 | lemma image_compose_permutations_right: | 
| 65342 | 1396 | assumes "q permutes S" | 
| 54681 | 1397 |   shows "{p \<circ> q | p. p permutes S} = {p . p permutes S}"
 | 
| 1398 | apply (rule set_eqI) | |
| 1399 | apply auto | |
| 65342 | 1400 | apply (rule permutes_compose) | 
| 1401 | using assms | |
| 1402 | apply auto | |
| 54681 | 1403 | apply (rule_tac x = "x \<circ> inv q" in exI) | 
| 1404 | apply (simp add: o_assoc permutes_inv permutes_compose permutes_inv_o comp_assoc) | |
| 1405 | done | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1406 | |
| 54681 | 1407 | lemma permutes_in_seg: "p permutes {1 ..n} \<Longrightarrow> i \<in> {1..n} \<Longrightarrow> 1 \<le> p i \<and> p i \<le> n"
 | 
| 1408 | by (simp add: permutes_def) metis | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1409 | |
| 65342 | 1410 | lemma sum_permutations_inverse: "sum f {p. p permutes S} = sum (\<lambda>p. f(inv p)) {p. p permutes S}"
 | 
| 54681 | 1411 | (is "?lhs = ?rhs") | 
| 1412 | proof - | |
| 30036 | 1413 |   let ?S = "{p . p permutes S}"
 | 
| 65342 | 1414 | have *: "inj_on inv ?S" | 
| 54681 | 1415 | proof (auto simp add: inj_on_def) | 
| 1416 | fix q r | |
| 1417 | assume q: "q permutes S" | |
| 1418 | and r: "r permutes S" | |
| 1419 | and qr: "inv q = inv r" | |
| 1420 | then have "inv (inv q) = inv (inv r)" | |
| 1421 | by simp | |
| 1422 | with permutes_inv_inv[OF q] permutes_inv_inv[OF r] show "q = r" | |
| 1423 | by metis | |
| 1424 | qed | |
| 65342 | 1425 | have **: "inv ` ?S = ?S" | 
| 54681 | 1426 | using image_inverse_permutations by blast | 
| 65342 | 1427 | have ***: "?rhs = sum (f \<circ> inv) ?S" | 
| 54681 | 1428 | by (simp add: o_def) | 
| 65342 | 1429 | from sum.reindex[OF *, of f] show ?thesis | 
| 1430 | by (simp only: ** ***) | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1431 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1432 | |
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1433 | lemma setum_permutations_compose_left: | 
| 30036 | 1434 | assumes q: "q permutes S" | 
| 64267 | 1435 |   shows "sum f {p. p permutes S} = sum (\<lambda>p. f(q \<circ> p)) {p. p permutes S}"
 | 
| 54681 | 1436 | (is "?lhs = ?rhs") | 
| 1437 | proof - | |
| 30036 | 1438 |   let ?S = "{p. p permutes S}"
 | 
| 67399 | 1439 | have *: "?rhs = sum (f \<circ> ((\<circ>) q)) ?S" | 
| 54681 | 1440 | by (simp add: o_def) | 
| 67399 | 1441 | have **: "inj_on ((\<circ>) q) ?S" | 
| 54681 | 1442 | proof (auto simp add: inj_on_def) | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1443 | fix p r | 
| 54681 | 1444 | assume "p permutes S" | 
| 1445 | and r: "r permutes S" | |
| 1446 | and rp: "q \<circ> p = q \<circ> r" | |
| 1447 | then have "inv q \<circ> q \<circ> p = inv q \<circ> q \<circ> r" | |
| 1448 | by (simp add: comp_assoc) | |
| 1449 | with permutes_inj[OF q, unfolded inj_iff] show "p = r" | |
| 1450 | by simp | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1451 | qed | 
| 67399 | 1452 | have "((\<circ>) q) ` ?S = ?S" | 
| 54681 | 1453 | using image_compose_permutations_left[OF q] by auto | 
| 65342 | 1454 | with * sum.reindex[OF **, of f] show ?thesis | 
| 1455 | by (simp only:) | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1456 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1457 | |
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1458 | lemma sum_permutations_compose_right: | 
| 30036 | 1459 | assumes q: "q permutes S" | 
| 64267 | 1460 |   shows "sum f {p. p permutes S} = sum (\<lambda>p. f(p \<circ> q)) {p. p permutes S}"
 | 
| 54681 | 1461 | (is "?lhs = ?rhs") | 
| 1462 | proof - | |
| 30036 | 1463 |   let ?S = "{p. p permutes S}"
 | 
| 65342 | 1464 | have *: "?rhs = sum (f \<circ> (\<lambda>p. p \<circ> q)) ?S" | 
| 54681 | 1465 | by (simp add: o_def) | 
| 65342 | 1466 | have **: "inj_on (\<lambda>p. p \<circ> q) ?S" | 
| 54681 | 1467 | proof (auto simp add: inj_on_def) | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1468 | fix p r | 
| 54681 | 1469 | assume "p permutes S" | 
| 1470 | and r: "r permutes S" | |
| 1471 | and rp: "p \<circ> q = r \<circ> q" | |
| 1472 | then have "p \<circ> (q \<circ> inv q) = r \<circ> (q \<circ> inv q)" | |
| 1473 | by (simp add: o_assoc) | |
| 1474 | with permutes_surj[OF q, unfolded surj_iff] show "p = r" | |
| 1475 | by simp | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1476 | qed | 
| 65342 | 1477 | from image_compose_permutations_right[OF q] have "(\<lambda>p. p \<circ> q) ` ?S = ?S" | 
| 1478 | by auto | |
| 1479 | with * sum.reindex[OF **, of f] show ?thesis | |
| 1480 | by (simp only:) | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1481 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1482 | |
| 73621 | 1483 | lemma inv_inj_on_permutes: | 
| 1484 |   \<open>inj_on inv {p. p permutes S}\<close>
 | |
| 1485 | proof (intro inj_onI, unfold mem_Collect_eq) | |
| 1486 | fix p q | |
| 1487 | assume p: "p permutes S" and q: "q permutes S" and eq: "inv p = inv q" | |
| 1488 | have "inv (inv p) = inv (inv q)" using eq by simp | |
| 1489 | thus "p = q" | |
| 1490 | using inv_inv_eq[OF permutes_bij] p q by metis | |
| 1491 | qed | |
| 1492 | ||
| 1493 | lemma permutes_pair_eq: | |
| 1494 |   \<open>{(p s, s) |s. s \<in> S} = {(s, inv p s) |s. s \<in> S}\<close> (is \<open>?L = ?R\<close>) if \<open>p permutes S\<close>
 | |
| 1495 | proof | |
| 1496 | show "?L \<subseteq> ?R" | |
| 1497 | proof | |
| 1498 | fix x assume "x \<in> ?L" | |
| 1499 | then obtain s where x: "x = (p s, s)" and s: "s \<in> S" by auto | |
| 1500 | note x | |
| 1501 | also have "(p s, s) = (p s, Hilbert_Choice.inv p (p s))" | |
| 1502 | using permutes_inj [OF that] inv_f_f by auto | |
| 1503 | also have "... \<in> ?R" using s permutes_in_image[OF that] by auto | |
| 1504 | finally show "x \<in> ?R". | |
| 1505 | qed | |
| 1506 | show "?R \<subseteq> ?L" | |
| 1507 | proof | |
| 1508 | fix x assume "x \<in> ?R" | |
| 1509 | then obtain s | |
| 1510 | where x: "x = (s, Hilbert_Choice.inv p s)" (is "_ = (s, ?ips)") | |
| 1511 | and s: "s \<in> S" by auto | |
| 1512 | note x | |
| 1513 | also have "(s, ?ips) = (p ?ips, ?ips)" | |
| 1514 | using inv_f_f[OF permutes_inj[OF permutes_inv[OF that]]] | |
| 1515 | using inv_inv_eq[OF permutes_bij[OF that]] by auto | |
| 1516 | also have "... \<in> ?L" | |
| 1517 | using s permutes_in_image[OF permutes_inv[OF that]] by auto | |
| 1518 | finally show "x \<in> ?L". | |
| 1519 | qed | |
| 1520 | qed | |
| 1521 | ||
| 1522 | context | |
| 1523 | fixes p and n i :: nat | |
| 1524 |   assumes p: \<open>p permutes {0..<n}\<close> and i: \<open>i < n\<close>
 | |
| 1525 | begin | |
| 1526 | ||
| 1527 | lemma permutes_nat_less: | |
| 1528 | \<open>p i < n\<close> | |
| 1529 | proof - | |
| 1530 |   have \<open>?thesis \<longleftrightarrow> p i \<in> {0..<n}\<close>
 | |
| 1531 | by simp | |
| 1532 |   also from p have \<open>p i \<in> {0..<n} \<longleftrightarrow> i \<in> {0..<n}\<close>
 | |
| 1533 | by (rule permutes_in_image) | |
| 1534 | finally show ?thesis | |
| 1535 | using i by simp | |
| 1536 | qed | |
| 1537 | ||
| 1538 | lemma permutes_nat_inv_less: | |
| 1539 | \<open>inv p i < n\<close> | |
| 1540 | proof - | |
| 1541 |   from p have \<open>inv p permutes {0..<n}\<close>
 | |
| 1542 | by (rule permutes_inv) | |
| 1543 | then show ?thesis | |
| 1544 | using i by (rule Permutations.permutes_nat_less) | |
| 1545 | qed | |
| 1546 | ||
| 1547 | end | |
| 1548 | ||
| 1549 | context comm_monoid_set | |
| 1550 | begin | |
| 1551 | ||
| 1552 | lemma permutes_inv: | |
| 1553 | \<open>F (\<lambda>s. g (p s) s) S = F (\<lambda>s. g s (inv p s)) S\<close> (is \<open>?l = ?r\<close>) | |
| 1554 | if \<open>p permutes S\<close> | |
| 1555 | proof - | |
| 1556 | let ?g = "\<lambda>(x, y). g x y" | |
| 1557 | let ?ps = "\<lambda>s. (p s, s)" | |
| 1558 | let ?ips = "\<lambda>s. (s, inv p s)" | |
| 1559 | have inj1: "inj_on ?ps S" by (rule inj_onI) auto | |
| 1560 | have inj2: "inj_on ?ips S" by (rule inj_onI) auto | |
| 1561 | have "?l = F ?g (?ps ` S)" | |
| 1562 | using reindex [OF inj1, of ?g] by simp | |
| 1563 |   also have "?ps ` S = {(p s, s) |s. s \<in> S}" by auto
 | |
| 1564 |   also have "... = {(s, inv p s) |s. s \<in> S}"
 | |
| 1565 | unfolding permutes_pair_eq [OF that] by simp | |
| 1566 | also have "... = ?ips ` S" by auto | |
| 1567 | also have "F ?g ... = ?r" | |
| 1568 | using reindex [OF inj2, of ?g] by simp | |
| 1569 | finally show ?thesis. | |
| 1570 | qed | |
| 1571 | ||
| 1572 | end | |
| 1573 | ||
| 54681 | 1574 | |
| 60500 | 1575 | subsection \<open>Sum over a set of permutations (could generalize to iteration)\<close> | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1576 | |
| 64267 | 1577 | lemma sum_over_permutations_insert: | 
| 54681 | 1578 | assumes fS: "finite S" | 
| 1579 | and aS: "a \<notin> S" | |
| 64267 | 1580 |   shows "sum f {p. p permutes (insert a S)} =
 | 
| 73648 | 1581 |     sum (\<lambda>b. sum (\<lambda>q. f (transpose a b \<circ> q)) {p. p permutes S}) (insert a S)"
 | 
| 54681 | 1582 | proof - | 
| 73648 | 1583 | have *: "\<And>f a b. (\<lambda>(b, p). f (transpose a b \<circ> p)) = f \<circ> (\<lambda>(b,p). transpose a b \<circ> p)" | 
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 1584 | by (simp add: fun_eq_iff) | 
| 65342 | 1585 |   have **: "\<And>P Q. {(a, b). a \<in> P \<and> b \<in> Q} = P \<times> Q"
 | 
| 54681 | 1586 | by blast | 
| 30488 | 1587 | show ?thesis | 
| 65342 | 1588 | unfolding * ** sum.cartesian_product permutes_insert | 
| 64267 | 1589 | proof (rule sum.reindex) | 
| 73648 | 1590 | let ?f = "(\<lambda>(b, y). transpose a b \<circ> y)" | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1591 |     let ?P = "{p. p permutes S}"
 | 
| 54681 | 1592 |     {
 | 
| 1593 | fix b c p q | |
| 1594 | assume b: "b \<in> insert a S" | |
| 1595 | assume c: "c \<in> insert a S" | |
| 1596 | assume p: "p permutes S" | |
| 1597 | assume q: "q permutes S" | |
| 73648 | 1598 | assume eq: "transpose a b \<circ> p = transpose a c \<circ> q" | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1599 | from p q aS have pa: "p a = a" and qa: "q a = a" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1600 | unfolding permutes_def by metis+ | 
| 73648 | 1601 | from eq have "(transpose a b \<circ> p) a = (transpose a c \<circ> q) a" | 
| 54681 | 1602 | by simp | 
| 1603 | then have bc: "b = c" | |
| 73663 | 1604 | by (simp add: permutes_def pa qa o_def fun_upd_def id_def | 
| 62390 | 1605 | cong del: if_weak_cong split: if_split_asm) | 
| 73648 | 1606 | from eq[unfolded bc] have "(\<lambda>p. transpose a c \<circ> p) (transpose a c \<circ> p) = | 
| 1607 | (\<lambda>p. transpose a c \<circ> p) (transpose a c \<circ> q)" by simp | |
| 54681 | 1608 | then have "p = q" | 
| 65342 | 1609 | unfolding o_assoc swap_id_idempotent by simp | 
| 54681 | 1610 | with bc have "b = c \<and> p = q" | 
| 1611 | by blast | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1612 | } | 
| 30488 | 1613 | then show "inj_on ?f (insert a S \<times> ?P)" | 
| 54681 | 1614 | unfolding inj_on_def by clarify metis | 
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1615 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1616 | qed | 
| 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1617 | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1618 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1619 | subsection \<open>Constructing permutations from association lists\<close> | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1620 | |
| 65342 | 1621 | definition list_permutes :: "('a \<times> 'a) list \<Rightarrow> 'a set \<Rightarrow> bool"
 | 
| 1622 | where "list_permutes xs A \<longleftrightarrow> | |
| 1623 | set (map fst xs) \<subseteq> A \<and> | |
| 1624 | set (map snd xs) = set (map fst xs) \<and> | |
| 1625 | distinct (map fst xs) \<and> | |
| 1626 | distinct (map snd xs)" | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1627 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1628 | lemma list_permutesI [simp]: | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1629 | assumes "set (map fst xs) \<subseteq> A" "set (map snd xs) = set (map fst xs)" "distinct (map fst xs)" | 
| 65342 | 1630 | shows "list_permutes xs A" | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1631 | proof - | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1632 | from assms(2,3) have "distinct (map snd xs)" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1633 | by (intro card_distinct) (simp_all add: distinct_card del: set_map) | 
| 65342 | 1634 | with assms show ?thesis | 
| 1635 | by (simp add: list_permutes_def) | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1636 | qed | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1637 | |
| 65342 | 1638 | definition permutation_of_list :: "('a \<times> 'a) list \<Rightarrow> 'a \<Rightarrow> 'a"
 | 
| 1639 | where "permutation_of_list xs x = (case map_of xs x of None \<Rightarrow> x | Some y \<Rightarrow> y)" | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1640 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1641 | lemma permutation_of_list_Cons: | 
| 65342 | 1642 | "permutation_of_list ((x, y) # xs) x' = (if x = x' then y else permutation_of_list xs x')" | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1643 | by (simp add: permutation_of_list_def) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1644 | |
| 65342 | 1645 | fun inverse_permutation_of_list :: "('a \<times> 'a) list \<Rightarrow> 'a \<Rightarrow> 'a"
 | 
| 1646 | where | |
| 1647 | "inverse_permutation_of_list [] x = x" | |
| 1648 | | "inverse_permutation_of_list ((y, x') # xs) x = | |
| 1649 | (if x = x' then y else inverse_permutation_of_list xs x)" | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1650 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1651 | declare inverse_permutation_of_list.simps [simp del] | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1652 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1653 | lemma inj_on_map_of: | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1654 | assumes "distinct (map snd xs)" | 
| 65342 | 1655 | shows "inj_on (map_of xs) (set (map fst xs))" | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1656 | proof (rule inj_onI) | 
| 65342 | 1657 | fix x y | 
| 1658 | assume xy: "x \<in> set (map fst xs)" "y \<in> set (map fst xs)" | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1659 | assume eq: "map_of xs x = map_of xs y" | 
| 65342 | 1660 | from xy obtain x' y' where x'y': "map_of xs x = Some x'" "map_of xs y = Some y'" | 
| 1661 | by (cases "map_of xs x"; cases "map_of xs y") (simp_all add: map_of_eq_None_iff) | |
| 1662 | moreover from x'y' have *: "(x, x') \<in> set xs" "(y, y') \<in> set xs" | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1663 | by (force dest: map_of_SomeD)+ | 
| 65342 | 1664 | moreover from * eq x'y' have "x' = y'" | 
| 1665 | by simp | |
| 1666 | ultimately show "x = y" | |
| 1667 | using assms by (force simp: distinct_map dest: inj_onD[of _ _ "(x,x')" "(y,y')"]) | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1668 | qed | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1669 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1670 | lemma inj_on_the: "None \<notin> A \<Longrightarrow> inj_on the A" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1671 | by (auto simp: inj_on_def option.the_def split: option.splits) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1672 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1673 | lemma inj_on_map_of': | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1674 | assumes "distinct (map snd xs)" | 
| 65342 | 1675 | shows "inj_on (the \<circ> map_of xs) (set (map fst xs))" | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1676 | by (intro comp_inj_on inj_on_map_of assms inj_on_the) | 
| 65342 | 1677 | (force simp: eq_commute[of None] map_of_eq_None_iff) | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1678 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1679 | lemma image_map_of: | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1680 | assumes "distinct (map fst xs)" | 
| 65342 | 1681 | shows "map_of xs ` set (map fst xs) = Some ` set (map snd xs)" | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1682 | using assms by (auto simp: rev_image_eqI) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1683 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1684 | lemma the_Some_image [simp]: "the ` Some ` A = A" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1685 | by (subst image_image) simp | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1686 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1687 | lemma image_map_of': | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1688 | assumes "distinct (map fst xs)" | 
| 65342 | 1689 | shows "(the \<circ> map_of xs) ` set (map fst xs) = set (map snd xs)" | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1690 | by (simp only: image_comp [symmetric] image_map_of assms the_Some_image) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1691 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1692 | lemma permutation_of_list_permutes [simp]: | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1693 | assumes "list_permutes xs A" | 
| 65342 | 1694 | shows "permutation_of_list xs permutes A" | 
| 1695 | (is "?f permutes _") | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1696 | proof (rule permutes_subset[OF bij_imp_permutes]) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1697 | from assms show "set (map fst xs) \<subseteq> A" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1698 | by (simp add: list_permutes_def) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1699 | from assms have "inj_on (the \<circ> map_of xs) (set (map fst xs))" (is ?P) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1700 | by (intro inj_on_map_of') (simp_all add: list_permutes_def) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1701 | also have "?P \<longleftrightarrow> inj_on ?f (set (map fst xs))" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1702 | by (intro inj_on_cong) | 
| 65342 | 1703 | (auto simp: permutation_of_list_def map_of_eq_None_iff split: option.splits) | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1704 | finally have "bij_betw ?f (set (map fst xs)) (?f ` set (map fst xs))" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1705 | by (rule inj_on_imp_bij_betw) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1706 | also from assms have "?f ` set (map fst xs) = (the \<circ> map_of xs) ` set (map fst xs)" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1707 | by (intro image_cong refl) | 
| 65342 | 1708 | (auto simp: permutation_of_list_def map_of_eq_None_iff split: option.splits) | 
| 64284 
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
 hoelzl parents: 
64267diff
changeset | 1709 | also from assms have "\<dots> = set (map fst xs)" | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1710 | by (subst image_map_of') (simp_all add: list_permutes_def) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1711 | finally show "bij_betw ?f (set (map fst xs)) (set (map fst xs))" . | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1712 | qed (force simp: permutation_of_list_def dest!: map_of_SomeD split: option.splits)+ | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1713 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1714 | lemma eval_permutation_of_list [simp]: | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1715 | "permutation_of_list [] x = x" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1716 | "x = x' \<Longrightarrow> permutation_of_list ((x',y)#xs) x = y" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1717 | "x \<noteq> x' \<Longrightarrow> permutation_of_list ((x',y')#xs) x = permutation_of_list xs x" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1718 | by (simp_all add: permutation_of_list_def) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1719 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1720 | lemma eval_inverse_permutation_of_list [simp]: | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1721 | "inverse_permutation_of_list [] x = x" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1722 | "x = x' \<Longrightarrow> inverse_permutation_of_list ((y,x')#xs) x = y" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1723 | "x \<noteq> x' \<Longrightarrow> inverse_permutation_of_list ((y',x')#xs) x = inverse_permutation_of_list xs x" | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1724 | by (simp_all add: inverse_permutation_of_list.simps) | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1725 | |
| 65342 | 1726 | lemma permutation_of_list_id: "x \<notin> set (map fst xs) \<Longrightarrow> permutation_of_list xs x = x" | 
| 1727 | by (induct xs) (auto simp: permutation_of_list_Cons) | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1728 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1729 | lemma permutation_of_list_unique': | 
| 65342 | 1730 | "distinct (map fst xs) \<Longrightarrow> (x, y) \<in> set xs \<Longrightarrow> permutation_of_list xs x = y" | 
| 1731 | by (induct xs) (force simp: permutation_of_list_Cons)+ | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1732 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1733 | lemma permutation_of_list_unique: | 
| 65342 | 1734 | "list_permutes xs A \<Longrightarrow> (x, y) \<in> set xs \<Longrightarrow> permutation_of_list xs x = y" | 
| 1735 | by (intro permutation_of_list_unique') (simp_all add: list_permutes_def) | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1736 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1737 | lemma inverse_permutation_of_list_id: | 
| 65342 | 1738 | "x \<notin> set (map snd xs) \<Longrightarrow> inverse_permutation_of_list xs x = x" | 
| 1739 | by (induct xs) auto | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1740 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1741 | lemma inverse_permutation_of_list_unique': | 
| 65342 | 1742 | "distinct (map snd xs) \<Longrightarrow> (x, y) \<in> set xs \<Longrightarrow> inverse_permutation_of_list xs y = x" | 
| 73328 | 1743 | by (induct xs) (force simp: inverse_permutation_of_list.simps(2))+ | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1744 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1745 | lemma inverse_permutation_of_list_unique: | 
| 65342 | 1746 | "list_permutes xs A \<Longrightarrow> (x,y) \<in> set xs \<Longrightarrow> inverse_permutation_of_list xs y = x" | 
| 1747 | by (intro inverse_permutation_of_list_unique') (simp_all add: list_permutes_def) | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1748 | |
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1749 | lemma inverse_permutation_of_list_correct: | 
| 65342 | 1750 | fixes A :: "'a set" | 
| 1751 | assumes "list_permutes xs A" | |
| 1752 | shows "inverse_permutation_of_list xs = inv (permutation_of_list xs)" | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1753 | proof (rule ext, rule sym, subst permutes_inv_eq) | 
| 65342 | 1754 | from assms show "permutation_of_list xs permutes A" | 
| 1755 | by simp | |
| 1756 | show "permutation_of_list xs (inverse_permutation_of_list xs x) = x" for x | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1757 | proof (cases "x \<in> set (map snd xs)") | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1758 | case True | 
| 65342 | 1759 | then obtain y where "(y, x) \<in> set xs" by auto | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1760 | with assms show ?thesis | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1761 | by (simp add: inverse_permutation_of_list_unique permutation_of_list_unique) | 
| 65342 | 1762 | next | 
| 1763 | case False | |
| 1764 | with assms show ?thesis | |
| 1765 | by (auto simp: list_permutes_def inverse_permutation_of_list_id permutation_of_list_id) | |
| 1766 | qed | |
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1767 | qed | 
| 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62390diff
changeset | 1768 | |
| 29840 
cfab6a76aa13
Permutations, both general and specifically on finite sets.
 chaieb parents: diff
changeset | 1769 | end |