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