src/HOL/List.ML
author nipkow
Wed, 30 Aug 2000 16:29:21 +0200
changeset 9747 043098ba5098
parent 9700 71364b487232
child 9763 252c690690b0
permissions -rw-r--r--
introduced induct_thm_tac
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1419
diff changeset
     1
(*  Title:      HOL/List
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1419
diff changeset
     3
    Author:     Tobias Nipkow
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1994 TU Muenchen
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
List lemmas
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
     9
Goal "!x. xs ~= x#xs";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
    10
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
    11
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    12
qed_spec_mp "not_Cons_self";
3574
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
    13
bind_thm("not_Cons_self2",not_Cons_self RS not_sym);
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
    14
Addsimps [not_Cons_self,not_Cons_self2];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    16
Goal "(xs ~= []) = (? y ys. xs = y#ys)";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
    17
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
    18
by Auto_tac;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
qed "neq_Nil_conv";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
4830
bd73675adbed Added a few lemmas.
nipkow
parents: 4686
diff changeset
    21
(* Induction over the length of a list: *)
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    22
val [prem] = Goal
4911
6195e4468c54 Removed duplicate list_length_induct
nipkow
parents: 4830
diff changeset
    23
  "(!!xs. (!ys. length ys < length xs --> P ys) ==> P xs) ==> P(xs)";
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
    24
by (rtac measure_induct 1 THEN etac prem 1);
4911
6195e4468c54 Removed duplicate list_length_induct
nipkow
parents: 4830
diff changeset
    25
qed "length_induct";
6195e4468c54 Removed duplicate list_length_induct
nipkow
parents: 4830
diff changeset
    26
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    27
3468
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    28
(** "lists": the list-forming operator over sets **)
3342
ec3b55fcb165 New operator "lists" for formalizing sets of lists
paulson
parents: 3292
diff changeset
    29
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
    30
Goalw lists.defs "A<=B ==> lists A <= lists B";
3342
ec3b55fcb165 New operator "lists" for formalizing sets of lists
paulson
parents: 3292
diff changeset
    31
by (rtac lfp_mono 1);
ec3b55fcb165 New operator "lists" for formalizing sets of lists
paulson
parents: 3292
diff changeset
    32
by (REPEAT (ares_tac basic_monos 1));
ec3b55fcb165 New operator "lists" for formalizing sets of lists
paulson
parents: 3292
diff changeset
    33
qed "lists_mono";
3196
c522bc46aea7 Added pred_list for TFL
paulson
parents: 3040
diff changeset
    34
9108
9fff97d29837 bind_thm(s);
wenzelm
parents: 9014
diff changeset
    35
bind_thm ("listsE", lists.mk_cases "x#l : lists A");
3468
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    36
AddSEs [listsE];
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    37
AddSIs lists.intrs;
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    38
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
    39
Goal "l: lists A ==> l: lists B --> l: lists (A Int B)";
3468
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    40
by (etac lists.induct 1);
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    41
by (ALLGOALS Blast_tac);
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    42
qed_spec_mp "lists_IntI";
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    43
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    44
Goal "lists (A Int B) = lists A Int lists B";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
    45
by (rtac (mono_Int RS equalityI) 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
    46
by (simp_tac (simpset() addsimps [mono_def, lists_mono]) 1);
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
    47
by (blast_tac (claset() addSIs [lists_IntI]) 1);
3468
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    48
qed "lists_Int_eq";
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    49
Addsimps [lists_Int_eq];
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    50
9268
4313b08b6e1b Deleted list_case thms no subsumed by case_tac
nipkow
parents: 9187
diff changeset
    51
Goal "(xs@ys : lists A) = (xs : lists A & ys : lists A)";
4313b08b6e1b Deleted list_case thms no subsumed by case_tac
nipkow
parents: 9187
diff changeset
    52
by(induct_tac "xs" 1);
4313b08b6e1b Deleted list_case thms no subsumed by case_tac
nipkow
parents: 9187
diff changeset
    53
by(Auto_tac);
4313b08b6e1b Deleted list_case thms no subsumed by case_tac
nipkow
parents: 9187
diff changeset
    54
qed "append_in_lists_conv";
4313b08b6e1b Deleted list_case thms no subsumed by case_tac
nipkow
parents: 9187
diff changeset
    55
AddIffs [append_in_lists_conv];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    56
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    57
(** length **)
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    58
(* needs to come before "@" because of thm append_eq_append_conv *)
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    59
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    60
section "length";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    61
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    62
Goal "length(xs@ys) = length(xs)+length(ys)";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    63
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
    64
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    65
qed"length_append";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    66
Addsimps [length_append];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    67
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
    68
Goal "length (map f xs) = length xs";
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
    69
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
    70
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    71
qed "length_map";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    72
Addsimps [length_map];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    73
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    74
Goal "length(rev xs) = length(xs)";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    75
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
    76
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    77
qed "length_rev";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    78
Addsimps [length_rev];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    79
7028
6ea3b385e731 Modifid length_tl
nipkow
parents: 6831
diff changeset
    80
Goal "length(tl xs) = (length xs) - 1";
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
    81
by (case_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
    82
by Auto_tac;
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
    83
qed "length_tl";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
    84
Addsimps [length_tl];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
    85
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    86
Goal "(length xs = 0) = (xs = [])";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    87
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
    88
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    89
qed "length_0_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    90
AddIffs [length_0_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    91
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    92
Goal "(0 = length xs) = (xs = [])";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    93
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
    94
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    95
qed "zero_length_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    96
AddIffs [zero_length_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    97
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    98
Goal "(0 < length xs) = (xs ~= [])";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    99
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   100
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   101
qed "length_greater_0_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   102
AddIffs [length_greater_0_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   103
5296
bdef7d349d27 added length_Suc_conv, finite_set
oheimb
parents: 5283
diff changeset
   104
Goal "(length xs = Suc n) = (? y ys. xs = y#ys & length ys = n)";
bdef7d349d27 added length_Suc_conv, finite_set
oheimb
parents: 5283
diff changeset
   105
by (induct_tac "xs" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   106
by Auto_tac;
5296
bdef7d349d27 added length_Suc_conv, finite_set
oheimb
parents: 5283
diff changeset
   107
qed "length_Suc_conv";
bdef7d349d27 added length_Suc_conv, finite_set
oheimb
parents: 5283
diff changeset
   108
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   109
(** @ - append **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   110
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   111
section "@ - append";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   112
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   113
Goal "(xs@ys)@zs = xs@(ys@zs)";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   114
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   115
by Auto_tac;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   116
qed "append_assoc";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   117
Addsimps [append_assoc];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   118
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   119
Goal "xs @ [] = xs";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   120
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   121
by Auto_tac;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   122
qed "append_Nil2";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   123
Addsimps [append_Nil2];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   124
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   125
Goal "(xs@ys = []) = (xs=[] & ys=[])";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   126
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   127
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   128
qed "append_is_Nil_conv";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   129
AddIffs [append_is_Nil_conv];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   130
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   131
Goal "([] = xs@ys) = (xs=[] & ys=[])";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   132
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   133
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   134
qed "Nil_is_append_conv";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   135
AddIffs [Nil_is_append_conv];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   136
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   137
Goal "(xs @ ys = xs) = (ys=[])";
3574
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   138
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   139
by Auto_tac;
3574
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   140
qed "append_self_conv";
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   141
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   142
Goal "(xs = xs @ ys) = (ys=[])";
3574
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   143
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   144
by Auto_tac;
3574
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   145
qed "self_append_conv";
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   146
AddIffs [append_self_conv,self_append_conv];
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   147
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   148
Goal "!ys. length xs = length ys | length us = length vs \
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   149
\              --> (xs@us = ys@vs) = (xs=ys & us=vs)";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   150
by (induct_tac "xs" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   151
 by (rtac allI 1);
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   152
 by (case_tac "ys" 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   153
  by (Asm_simp_tac 1);
5641
5266f09db46c length_Suc_conv is no longer given to AddIffs
paulson
parents: 5537
diff changeset
   154
 by (Force_tac 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   155
by (rtac allI 1);
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   156
by (case_tac "ys" 1);
5641
5266f09db46c length_Suc_conv is no longer given to AddIffs
paulson
parents: 5537
diff changeset
   157
by (Force_tac 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   158
by (Asm_simp_tac 1);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   159
qed_spec_mp "append_eq_append_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   160
Addsimps [append_eq_append_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   161
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   162
Goal "(xs @ ys = xs @ zs) = (ys=zs)";
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   163
by (Simp_tac 1);
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   164
qed "same_append_eq";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   165
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   166
Goal "(xs @ [x] = ys @ [y]) = (xs = ys & x = y)"; 
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   167
by (Simp_tac 1);
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   168
qed "append1_eq_conv";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   169
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   170
Goal "(ys @ xs = zs @ xs) = (ys=zs)";
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   171
by (Simp_tac 1);
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   172
qed "append_same_eq";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   173
9003
3747ec2aeb86 added new proofs and simplified an old one
paulson
parents: 8982
diff changeset
   174
AddIffs [same_append_eq, append1_eq_conv, append_same_eq];
3571
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   175
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   176
Goal "(xs @ ys = ys) = (xs=[])";
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   177
by (cut_inst_tac [("zs","[]")] append_same_eq 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   178
by Auto_tac;
4647
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   179
qed "append_self_conv2";
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   180
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   181
Goal "(ys = xs @ ys) = (xs=[])";
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   182
by (simp_tac (simpset() addsimps
4647
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   183
     [simplify (simpset()) (read_instantiate[("ys","[]")]append_same_eq)]) 1);
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   184
by (Blast_tac 1);
4647
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   185
qed "self_append_conv2";
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   186
AddIffs [append_self_conv2,self_append_conv2];
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   187
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   188
Goal "xs ~= [] --> hd xs # tl xs = xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   189
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   190
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   191
qed_spec_mp "hd_Cons_tl";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   192
Addsimps [hd_Cons_tl];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   193
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   194
Goal "hd(xs@ys) = (if xs=[] then hd ys else hd xs)";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   195
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   196
by Auto_tac;
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   197
qed "hd_append";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   198
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
   199
Goal "xs ~= [] ==> hd(xs @ ys) = hd xs";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   200
by (asm_simp_tac (simpset() addsimps [hd_append]
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   201
                           addsplits [list.split]) 1);
3571
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   202
qed "hd_append2";
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   203
Addsimps [hd_append2];
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   204
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   205
Goal "tl(xs@ys) = (case xs of [] => tl(ys) | z#zs => zs@ys)";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   206
by (simp_tac (simpset() addsplits [list.split]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   207
qed "tl_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   208
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
   209
Goal "xs ~= [] ==> tl(xs @ ys) = (tl xs) @ ys";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   210
by (asm_simp_tac (simpset() addsimps [tl_append]
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   211
                           addsplits [list.split]) 1);
3571
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   212
qed "tl_append2";
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   213
Addsimps [tl_append2];
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   214
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   215
(* trivial rules for solving @-equations automatically *)
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   216
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   217
Goal "xs = ys ==> xs = [] @ ys";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   218
by (Asm_simp_tac 1);
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   219
qed "eq_Nil_appendI";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   220
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   221
Goal "[| x#xs1 = ys; xs = xs1 @ zs |] ==> x#xs = ys@zs";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   222
by (dtac sym 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   223
by (Asm_simp_tac 1);
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   224
qed "Cons_eq_appendI";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   225
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   226
Goal "[| xs@xs1 = zs; ys = xs1 @ us |] ==> xs@ys = zs@us";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   227
by (dtac sym 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   228
by (Asm_simp_tac 1);
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   229
qed "append_eq_appendI";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   230
4830
bd73675adbed Added a few lemmas.
nipkow
parents: 4686
diff changeset
   231
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   232
(***
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   233
Simplification procedure for all list equalities.
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   234
Currently only tries to rearranges @ to see if
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   235
- both lists end in a singleton list,
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   236
- or both lists end in the same list.
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   237
***)
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   238
local
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   239
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   240
val list_eq_pattern =
9423
7aa79267fa82 avoid referencing thy value;
wenzelm
parents: 9336
diff changeset
   241
  Thm.read_cterm (Theory.sign_of (the_context ())) ("(xs::'a list) = ys",HOLogic.boolT);
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   242
7224
e41e64476f9b 'a list: Nil, Cons;
wenzelm
parents: 7032
diff changeset
   243
fun last (cons as Const("List.list.Cons",_) $ _ $ xs) =
e41e64476f9b 'a list: Nil, Cons;
wenzelm
parents: 7032
diff changeset
   244
      (case xs of Const("List.list.Nil",_) => cons | _ => last xs)
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   245
  | last (Const("List.op @",_) $ _ $ ys) = last ys
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   246
  | last t = t;
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   247
7224
e41e64476f9b 'a list: Nil, Cons;
wenzelm
parents: 7032
diff changeset
   248
fun list1 (Const("List.list.Cons",_) $ _ $ Const("List.list.Nil",_)) = true
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   249
  | list1 _ = false;
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   250
7224
e41e64476f9b 'a list: Nil, Cons;
wenzelm
parents: 7032
diff changeset
   251
fun butlast ((cons as Const("List.list.Cons",_) $ x) $ xs) =
e41e64476f9b 'a list: Nil, Cons;
wenzelm
parents: 7032
diff changeset
   252
      (case xs of Const("List.list.Nil",_) => xs | _ => cons $ butlast xs)
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   253
  | butlast ((app as Const("List.op @",_) $ xs) $ ys) = app $ butlast ys
7224
e41e64476f9b 'a list: Nil, Cons;
wenzelm
parents: 7032
diff changeset
   254
  | butlast xs = Const("List.list.Nil",fastype_of xs);
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   255
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   256
val rearr_tac =
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   257
  simp_tac (HOL_basic_ss addsimps [append_assoc,append_Nil,append_Cons]);
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   258
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   259
fun list_eq sg _ (F as (eq as Const(_,eqT)) $ lhs $ rhs) =
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   260
  let
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   261
    val lastl = last lhs and lastr = last rhs
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   262
    fun rearr conv =
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   263
      let val lhs1 = butlast lhs and rhs1 = butlast rhs
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   264
          val Type(_,listT::_) = eqT
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   265
          val appT = [listT,listT] ---> listT
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   266
          val app = Const("List.op @",appT)
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   267
          val F2 = eq $ (app$lhs1$lastl) $ (app$rhs1$lastr)
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   268
          val ct = cterm_of sg (HOLogic.mk_Trueprop(HOLogic.mk_eq(F,F2)))
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   269
          val thm = prove_goalw_cterm [] ct (K [rearr_tac 1])
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   270
            handle ERROR =>
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   271
            error("The error(s) above occurred while trying to prove " ^
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   272
                  string_of_cterm ct)
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   273
      in Some((conv RS (thm RS trans)) RS eq_reflection) end
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   274
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   275
  in if list1 lastl andalso list1 lastr
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   276
     then rearr append1_eq_conv
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   277
     else
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   278
     if lastl aconv lastr
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   279
     then rearr append_same_eq
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   280
     else None
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   281
  end;
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   282
in
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   283
val list_eq_simproc = mk_simproc "list_eq" [list_eq_pattern] list_eq;
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   284
end;
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   285
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   286
Addsimprocs [list_eq_simproc];
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   287
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   288
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   289
(** map **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   290
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   291
section "map";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   292
5278
a903b66822e2 even more tidying of Goal commands
paulson
parents: 5272
diff changeset
   293
Goal "(!x. x : set xs --> f x = g x) --> map f xs = map g xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   294
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   295
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   296
bind_thm("map_ext", impI RS (allI RS (result() RS mp)));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   297
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   298
Goal "map (%x. x) = (%xs. xs)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   299
by (rtac ext 1);
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   300
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   301
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   302
qed "map_ident";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   303
Addsimps[map_ident];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   304
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   305
Goal "map f (xs@ys) = map f xs @ map f ys";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   306
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   307
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   308
qed "map_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   309
Addsimps[map_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   310
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   311
Goalw [o_def] "map (f o g) xs = map f (map g xs)";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   312
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   313
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   314
qed "map_compose";
9700
71364b487232 Removed map_compose from simpset.
nipkow
parents: 9639
diff changeset
   315
(*Addsimps[map_compose];*)
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   316
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   317
Goal "rev(map f xs) = map f (rev xs)";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   318
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   319
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   320
qed "rev_map";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   321
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   322
(* a congruence rule for map: *)
6451
paulson
parents: 6433
diff changeset
   323
Goal "xs=ys ==> (!x. x : set ys --> f x = g x) --> map f xs = map g ys";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   324
by (hyp_subst_tac 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   325
by (induct_tac "ys" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   326
by Auto_tac;
6451
paulson
parents: 6433
diff changeset
   327
bind_thm("map_cong", impI RSN (2,allI RSN (2, result() RS mp)));
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   328
9639
51107e8149a0 added map_cong to recdef
nipkow
parents: 9423
diff changeset
   329
Prim.Add_recdef_congs [map_cong];
51107e8149a0 added map_cong to recdef
nipkow
parents: 9423
diff changeset
   330
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   331
Goal "(map f xs = []) = (xs = [])";
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   332
by (case_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   333
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   334
qed "map_is_Nil_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   335
AddIffs [map_is_Nil_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   336
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   337
Goal "([] = map f xs) = (xs = [])";
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   338
by (case_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   339
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   340
qed "Nil_is_map_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   341
AddIffs [Nil_is_map_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   342
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   343
Goal "(map f xs = y#ys) = (? x xs'. xs = x#xs' & f x = y & map f xs' = ys)";
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   344
by (case_tac "xs" 1);
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   345
by (ALLGOALS Asm_simp_tac);
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   346
qed "map_eq_Cons";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   347
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   348
Goal "!xs. map f xs = map f ys --> (!x y. f x = f y --> x=y) --> xs=ys";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   349
by (induct_tac "ys" 1);
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   350
 by (Asm_simp_tac 1);
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   351
by (fast_tac (claset() addss (simpset() addsimps [map_eq_Cons])) 1);
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   352
qed_spec_mp "map_injective";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   353
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   354
Goal "inj f ==> inj (map f)";
8064
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
   355
by (blast_tac (claset() addDs [map_injective,injD] addIs [injI]) 1);
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   356
qed "inj_mapI";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   357
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   358
Goalw [inj_on_def] "inj (map f) ==> inj f";
8064
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
   359
by (Clarify_tac 1);
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
   360
by (eres_inst_tac [("x","[x]")] ballE 1);
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
   361
 by (eres_inst_tac [("x","[y]")] ballE 1);
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
   362
  by (Asm_full_simp_tac 1);
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
   363
 by (Blast_tac 1);
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
   364
by (Blast_tac 1);
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   365
qed "inj_mapD";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   366
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   367
Goal "inj (map f) = inj f";
8064
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
   368
by (blast_tac (claset() addDs [inj_mapD] addIs [inj_mapI]) 1);
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   369
qed "inj_map";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   370
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   371
(** rev **)
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   372
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   373
section "rev";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   374
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   375
Goal "rev(xs@ys) = rev(ys) @ rev(xs)";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   376
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   377
by Auto_tac;
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   378
qed "rev_append";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   379
Addsimps[rev_append];
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   380
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   381
Goal "rev(rev l) = l";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   382
by (induct_tac "l" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   383
by Auto_tac;
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   384
qed "rev_rev_ident";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   385
Addsimps[rev_rev_ident];
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   386
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   387
Goal "(rev xs = []) = (xs = [])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   388
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   389
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   390
qed "rev_is_Nil_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   391
AddIffs [rev_is_Nil_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   392
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   393
Goal "([] = rev xs) = (xs = [])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   394
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   395
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   396
qed "Nil_is_rev_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   397
AddIffs [Nil_is_rev_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   398
6820
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   399
Goal "!ys. (rev xs = rev ys) = (xs = ys)";
6831
799859f2e657 expandshort
paulson
parents: 6820
diff changeset
   400
by (induct_tac "xs" 1);
6820
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   401
 by (Force_tac 1);
6831
799859f2e657 expandshort
paulson
parents: 6820
diff changeset
   402
by (rtac allI 1);
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   403
by (case_tac "ys" 1);
6820
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   404
 by (Asm_simp_tac 1);
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   405
by (Force_tac 1);
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   406
qed_spec_mp "rev_is_rev_conv";
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   407
AddIffs [rev_is_rev_conv];
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   408
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   409
val prems = Goal "[| P []; !!x xs. P xs ==> P(xs@[x]) |] ==> P xs";
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   410
by (stac (rev_rev_ident RS sym) 1);
6162
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   411
by (res_inst_tac [("list", "rev xs")] list.induct 1);
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   412
by (ALLGOALS Simp_tac);
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   413
by (resolve_tac prems 1);
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   414
by (eresolve_tac prems 1);
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   415
qed "rev_induct";
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   416
9747
043098ba5098 introduced induct_thm_tac
nipkow
parents: 9700
diff changeset
   417
val rev_induct_tac = induct_thm_tac rev_induct;
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   418
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   419
Goal  "(xs = [] --> P) -->  (!ys y. xs = ys@[y] --> P) --> P";
9747
043098ba5098 introduced induct_thm_tac
nipkow
parents: 9700
diff changeset
   420
by (rev_induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   421
by Auto_tac;
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   422
bind_thm ("rev_exhaust",
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   423
  impI RSN (2,allI RSN (2,allI RSN (2,impI RS (result() RS mp RS mp)))));
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   424
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   425
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3457
diff changeset
   426
(** set **)
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   427
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   428
section "set";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   429
7032
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
   430
Goal "finite (set xs)";
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
   431
by (induct_tac "xs" 1);
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
   432
by Auto_tac;
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
   433
qed "finite_set";
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
   434
AddIffs [finite_set];
5296
bdef7d349d27 added length_Suc_conv, finite_set
oheimb
parents: 5283
diff changeset
   435
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   436
Goal "set (xs@ys) = (set xs Un set ys)";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   437
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   438
by Auto_tac;
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   439
qed "set_append";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   440
Addsimps[set_append];
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   441
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   442
Goal "set l <= set (x#l)";
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   443
by Auto_tac;
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   444
qed "set_subset_Cons";
1936
979e8b4f5fa5 Proved set_of_list_subset_Cons
paulson
parents: 1908
diff changeset
   445
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   446
Goal "(set xs = {}) = (xs = [])";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   447
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   448
by Auto_tac;
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   449
qed "set_empty";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   450
Addsimps [set_empty];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   451
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   452
Goal "set(rev xs) = set(xs)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   453
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   454
by Auto_tac;
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   455
qed "set_rev";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   456
Addsimps [set_rev];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   457
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   458
Goal "set(map f xs) = f``(set xs)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   459
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   460
by Auto_tac;
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   461
qed "set_map";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   462
Addsimps [set_map];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   463
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   464
Goal "set(filter P xs) = {x. x : set xs & P x}";
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   465
by (induct_tac "xs" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   466
by Auto_tac;
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   467
qed "set_filter";
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   468
Addsimps [set_filter];
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   469
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   470
Goal "set[i..j(] = {k. i <= k & k < j}";
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   471
by (induct_tac "j" 1);
9187
68ecc04785f1 fixed proof to cope with the default of equalityCE instead of equalityE
paulson
parents: 9108
diff changeset
   472
by (ALLGOALS Asm_simp_tac);
68ecc04785f1 fixed proof to cope with the default of equalityCE instead of equalityE
paulson
parents: 9108
diff changeset
   473
by (etac ssubst 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   474
by Auto_tac;
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   475
by (arith_tac 1);
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   476
qed "set_upt";
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   477
Addsimps [set_upt];
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   478
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   479
Goal "(x : set xs) = (? ys zs. xs = ys@x#zs)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   480
by (induct_tac "xs" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   481
 by (Simp_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   482
by (Asm_simp_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   483
by (rtac iffI 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   484
by (blast_tac (claset() addIs [eq_Nil_appendI,Cons_eq_appendI]) 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   485
by (REPEAT(etac exE 1));
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   486
by (case_tac "ys" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   487
by Auto_tac;
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   488
qed "in_set_conv_decomp";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   489
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   490
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   491
(* eliminate `lists' in favour of `set' *)
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   492
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   493
Goal "(xs : lists A) = (!x : set xs. x : A)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   494
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   495
by Auto_tac;
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   496
qed "in_lists_conv_set";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   497
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   498
bind_thm("in_listsD",in_lists_conv_set RS iffD1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   499
AddSDs [in_listsD];
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   500
bind_thm("in_listsI",in_lists_conv_set RS iffD2);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   501
AddSIs [in_listsI];
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   502
5518
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   503
(** mem **)
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   504
 
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   505
section "mem";
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   506
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   507
Goal "(x mem xs) = (x: set xs)";
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   508
by (induct_tac "xs" 1);
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   509
by Auto_tac;
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   510
qed "set_mem_eq";
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   511
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   512
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   513
(** list_all **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   514
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   515
section "list_all";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   516
5518
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   517
Goal "list_all P xs = (!x:set xs. P x)";
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   518
by (induct_tac "xs" 1);
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   519
by Auto_tac;
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   520
qed "list_all_conv";
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   521
5443
e2459d18ff47 changed constants mem and list_all to mere translations
oheimb
parents: 5427
diff changeset
   522
Goal "list_all P (xs@ys) = (list_all P xs & list_all P ys)";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   523
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   524
by Auto_tac;
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   525
qed "list_all_append";
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   526
Addsimps [list_all_append];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   527
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   528
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   529
(** filter **)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   530
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   531
section "filter";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   532
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   533
Goal "filter P (xs@ys) = filter P xs @ filter P ys";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   534
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   535
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   536
qed "filter_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   537
Addsimps [filter_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   538
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   539
Goal "filter (%x. True) xs = xs";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   540
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   541
by Auto_tac;
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   542
qed "filter_True";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   543
Addsimps [filter_True];
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   544
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   545
Goal "filter (%x. False) xs = []";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   546
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   547
by Auto_tac;
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   548
qed "filter_False";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   549
Addsimps [filter_False];
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   550
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   551
Goal "length (filter P xs) <= length xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   552
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   553
by Auto_tac;
8741
61bc5ed22b62 removal of less_SucI, le_SucI from default simpset
paulson
parents: 8442
diff changeset
   554
by (asm_simp_tac (simpset() addsimps [le_SucI]) 1);
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   555
qed "length_filter";
5443
e2459d18ff47 changed constants mem and list_all to mere translations
oheimb
parents: 5427
diff changeset
   556
Addsimps[length_filter];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   557
5443
e2459d18ff47 changed constants mem and list_all to mere translations
oheimb
parents: 5427
diff changeset
   558
Goal "set (filter P xs) <= set xs";
e2459d18ff47 changed constants mem and list_all to mere translations
oheimb
parents: 5427
diff changeset
   559
by Auto_tac;
e2459d18ff47 changed constants mem and list_all to mere translations
oheimb
parents: 5427
diff changeset
   560
qed "filter_is_subset";
e2459d18ff47 changed constants mem and list_all to mere translations
oheimb
parents: 5427
diff changeset
   561
Addsimps [filter_is_subset];
e2459d18ff47 changed constants mem and list_all to mere translations
oheimb
parents: 5427
diff changeset
   562
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   563
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   564
section "concat";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   565
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   566
Goal  "concat(xs@ys) = concat(xs)@concat(ys)";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   567
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   568
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   569
qed"concat_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   570
Addsimps [concat_append];
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   571
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   572
Goal "(concat xss = []) = (!xs:set xss. xs=[])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   573
by (induct_tac "xss" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   574
by Auto_tac;
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   575
qed "concat_eq_Nil_conv";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   576
AddIffs [concat_eq_Nil_conv];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   577
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   578
Goal "([] = concat xss) = (!xs:set xss. xs=[])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   579
by (induct_tac "xss" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   580
by Auto_tac;
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   581
qed "Nil_eq_concat_conv";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   582
AddIffs [Nil_eq_concat_conv];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   583
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   584
Goal  "set(concat xs) = Union(set `` set xs)";
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   585
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   586
by Auto_tac;
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   587
qed"set_concat";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   588
Addsimps [set_concat];
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   589
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   590
Goal "map f (concat xs) = concat (map (map f) xs)"; 
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   591
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   592
by Auto_tac;
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   593
qed "map_concat";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   594
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   595
Goal "filter p (concat xs) = concat (map (filter p) xs)"; 
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   596
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   597
by Auto_tac;
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   598
qed"filter_concat"; 
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   599
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   600
Goal "rev(concat xs) = concat (map rev (rev xs))";
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   601
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   602
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   603
qed "rev_concat";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   604
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   605
(** nth **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   606
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   607
section "nth";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   608
6408
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   609
Goal "(x#xs)!0 = x";
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   610
by Auto_tac;
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   611
qed "nth_Cons_0";
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   612
Addsimps [nth_Cons_0];
5644
85fd64148873 Nat: added zero_neq_conv
nipkow
parents: 5641
diff changeset
   613
6408
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   614
Goal "(x#xs)!(Suc n) = xs!n";
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   615
by Auto_tac;
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   616
qed "nth_Cons_Suc";
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   617
Addsimps [nth_Cons_Suc];
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   618
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   619
Delsimps (thms "nth.simps");
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   620
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   621
Goal "!n. (xs@ys)!n = (if n < length xs then xs!n else ys!(n - length xs))";
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   622
by (induct_tac "xs" 1);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   623
 by (Asm_simp_tac 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   624
 by (rtac allI 1);
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   625
 by (case_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   626
  by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   627
qed_spec_mp "nth_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   628
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   629
Goal "!n. n < length xs --> (map f xs)!n = f(xs!n)";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   630
by (induct_tac "xs" 1);
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   631
 by (Asm_full_simp_tac 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   632
by (rtac allI 1);
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   633
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   634
by Auto_tac;
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   635
qed_spec_mp "nth_map";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   636
Addsimps [nth_map];
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   637
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   638
Goal "set xs = {xs!i |i. i < length xs}";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   639
by (induct_tac "xs" 1);
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   640
 by (Simp_tac 1);
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   641
by (Asm_simp_tac 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   642
by Safe_tac;
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   643
  by (res_inst_tac [("x","0")] exI 1);
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   644
  by (Simp_tac 1);
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   645
 by (res_inst_tac [("x","Suc i")] exI 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   646
 by (Asm_simp_tac 1);
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   647
by (case_tac "i" 1);
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   648
 by (Asm_full_simp_tac 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   649
by (rename_tac "j" 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   650
 by (res_inst_tac [("x","j")] exI 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   651
by (Asm_simp_tac 1);
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   652
qed "set_conv_nth";
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   653
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   654
Goal "n < length xs ==> Ball (set xs) P --> P(xs!n)";
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   655
by (simp_tac (simpset() addsimps [set_conv_nth]) 1);
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   656
by (Blast_tac 1);
5518
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   657
qed_spec_mp "list_ball_nth";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   658
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   659
Goal "n < length xs ==> xs!n : set xs";
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   660
by (simp_tac (simpset() addsimps [set_conv_nth]) 1);
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   661
by (Blast_tac 1);
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   662
qed_spec_mp "nth_mem";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   663
Addsimps [nth_mem];
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   664
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   665
Goal "(!i. i < length xs --> P(xs!i)) --> (!x : set xs. P x)";
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   666
by (simp_tac (simpset() addsimps [set_conv_nth]) 1);
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   667
by (Blast_tac 1);
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   668
qed_spec_mp "all_nth_imp_all_set";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   669
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   670
Goal "(!x : set xs. P x) = (!i. i<length xs --> P (xs ! i))";
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   671
by (simp_tac (simpset() addsimps [set_conv_nth]) 1);
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   672
by (Blast_tac 1);
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   673
qed_spec_mp "all_set_conv_all_nth";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   674
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   675
5077
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   676
(** list update **)
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   677
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   678
section "list update";
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   679
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   680
Goal "!i. length(xs[i:=x]) = length xs";
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   681
by (induct_tac "xs" 1);
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   682
by (Simp_tac 1);
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   683
by (asm_full_simp_tac (simpset() addsplits [nat.split]) 1);
5077
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   684
qed_spec_mp "length_list_update";
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   685
Addsimps [length_list_update];
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   686
5644
85fd64148873 Nat: added zero_neq_conv
nipkow
parents: 5641
diff changeset
   687
Goal "!i j. i < length xs  --> (xs[i:=x])!j = (if i=j then x else xs!j)";
6162
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   688
by (induct_tac "xs" 1);
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   689
 by (Simp_tac 1);
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   690
by (auto_tac (claset(), simpset() addsimps [nth_Cons] addsplits [nat.split]));
5644
85fd64148873 Nat: added zero_neq_conv
nipkow
parents: 5641
diff changeset
   691
qed_spec_mp "nth_list_update";
85fd64148873 Nat: added zero_neq_conv
nipkow
parents: 5641
diff changeset
   692
8144
c4b5cbfb90dd optimized xs[i:=x]!j lemmas.
nipkow
parents: 8118
diff changeset
   693
Goal "i < length xs  ==> (xs[i:=x])!i = x";
c4b5cbfb90dd optimized xs[i:=x]!j lemmas.
nipkow
parents: 8118
diff changeset
   694
by (asm_simp_tac (simpset() addsimps [nth_list_update]) 1);
c4b5cbfb90dd optimized xs[i:=x]!j lemmas.
nipkow
parents: 8118
diff changeset
   695
qed "nth_list_update_eq";
c4b5cbfb90dd optimized xs[i:=x]!j lemmas.
nipkow
parents: 8118
diff changeset
   696
Addsimps [nth_list_update_eq];
c4b5cbfb90dd optimized xs[i:=x]!j lemmas.
nipkow
parents: 8118
diff changeset
   697
c4b5cbfb90dd optimized xs[i:=x]!j lemmas.
nipkow
parents: 8118
diff changeset
   698
Goal "!i j. i ~= j --> xs[i:=x]!j = xs!j";
c4b5cbfb90dd optimized xs[i:=x]!j lemmas.
nipkow
parents: 8118
diff changeset
   699
by (induct_tac "xs" 1);
c4b5cbfb90dd optimized xs[i:=x]!j lemmas.
nipkow
parents: 8118
diff changeset
   700
 by (Simp_tac 1);
c4b5cbfb90dd optimized xs[i:=x]!j lemmas.
nipkow
parents: 8118
diff changeset
   701
by (auto_tac (claset(), simpset() addsimps [nth_Cons] addsplits [nat.split]));
c4b5cbfb90dd optimized xs[i:=x]!j lemmas.
nipkow
parents: 8118
diff changeset
   702
qed_spec_mp "nth_list_update_neq";
c4b5cbfb90dd optimized xs[i:=x]!j lemmas.
nipkow
parents: 8118
diff changeset
   703
Addsimps [nth_list_update_neq];
c4b5cbfb90dd optimized xs[i:=x]!j lemmas.
nipkow
parents: 8118
diff changeset
   704
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   705
Goal "!i. i < size xs --> xs[i:=x, i:=y] = xs[i:=y]";
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   706
by (induct_tac "xs" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   707
 by (Simp_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   708
by (asm_simp_tac (simpset() addsplits [nat.split]) 1);
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   709
qed_spec_mp "list_update_overwrite";
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   710
Addsimps [list_update_overwrite];
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   711
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   712
Goal "!i < length xs. (xs[i := x] = xs) = (xs!i = x)";
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   713
by (induct_tac "xs" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   714
 by (Simp_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   715
by (simp_tac (simpset() addsplits [nat.split]) 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   716
by (Blast_tac 1);
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   717
qed_spec_mp "list_update_same_conv";
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   718
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   719
Goal "!i xy xs. length xs = length ys --> \
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   720
\     (zip xs ys)[i:=xy] = zip (xs[i:=fst xy]) (ys[i:=snd xy])";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   721
by (induct_tac "ys" 1);
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   722
 by Auto_tac;
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   723
by (case_tac "xs" 1);
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   724
 by (auto_tac (claset(), simpset() addsplits [nat.split]));
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   725
qed_spec_mp "update_zip";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   726
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   727
Goal "!i. set(xs[i:=x]) <= insert x (set xs)";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   728
by (induct_tac "xs" 1);
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   729
 by (asm_full_simp_tac (simpset() addsimps []) 1);
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   730
by (asm_full_simp_tac (simpset() addsplits [nat.split]) 1);
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   731
by (Fast_tac  1);
8287
42911a6bb13f Added and renamed a lemma.
nipkow
parents: 8254
diff changeset
   732
qed_spec_mp "set_update_subset_insert";
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   733
8287
42911a6bb13f Added and renamed a lemma.
nipkow
parents: 8254
diff changeset
   734
Goal "[| set xs <= A; x:A |] ==> set(xs[i := x]) <= A";
42911a6bb13f Added and renamed a lemma.
nipkow
parents: 8254
diff changeset
   735
by(fast_tac (claset() addSDs [set_update_subset_insert RS subsetD]) 1);
42911a6bb13f Added and renamed a lemma.
nipkow
parents: 8254
diff changeset
   736
qed "set_update_subsetI";
5077
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   737
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   738
(** last & butlast **)
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   739
5644
85fd64148873 Nat: added zero_neq_conv
nipkow
parents: 5641
diff changeset
   740
section "last / butlast";
85fd64148873 Nat: added zero_neq_conv
nipkow
parents: 5641
diff changeset
   741
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   742
Goal "last(xs@[x]) = x";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   743
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   744
by Auto_tac;
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   745
qed "last_snoc";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   746
Addsimps [last_snoc];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   747
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   748
Goal "butlast(xs@[x]) = xs";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   749
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   750
by Auto_tac;
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   751
qed "butlast_snoc";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   752
Addsimps [butlast_snoc];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   753
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   754
Goal "length(butlast xs) = length xs - 1";
9747
043098ba5098 introduced induct_thm_tac
nipkow
parents: 9700
diff changeset
   755
by (rev_induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   756
by Auto_tac;
4643
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   757
qed "length_butlast";
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   758
Addsimps [length_butlast];
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   759
5278
a903b66822e2 even more tidying of Goal commands
paulson
parents: 5272
diff changeset
   760
Goal "!ys. butlast (xs@ys) = (if ys=[] then butlast xs else xs@butlast ys)";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   761
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   762
by Auto_tac;
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   763
qed_spec_mp "butlast_append";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   764
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   765
Goal "xs ~= [] --> butlast xs @ [last xs] = xs";
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   766
by (induct_tac "xs" 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   767
by (ALLGOALS Asm_simp_tac);
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   768
qed_spec_mp "append_butlast_last_id";
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   769
Addsimps [append_butlast_last_id];
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   770
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   771
Goal "x:set(butlast xs) --> x:set xs";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   772
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   773
by Auto_tac;
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   774
qed_spec_mp "in_set_butlastD";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   775
5448
40a09282ba14 in_set_butlast_appendI supersedes in_set_butlast_appendI1,2
paulson
parents: 5443
diff changeset
   776
Goal "x:set(butlast xs) | x:set(butlast ys) ==> x:set(butlast(xs@ys))";
40a09282ba14 in_set_butlast_appendI supersedes in_set_butlast_appendI1,2
paulson
parents: 5443
diff changeset
   777
by (auto_tac (claset() addDs [in_set_butlastD],
40a09282ba14 in_set_butlast_appendI supersedes in_set_butlast_appendI1,2
paulson
parents: 5443
diff changeset
   778
	      simpset() addsimps [butlast_append]));
40a09282ba14 in_set_butlast_appendI supersedes in_set_butlast_appendI1,2
paulson
parents: 5443
diff changeset
   779
qed "in_set_butlast_appendI";
3902
265a5d8ab88f Removed comment.
nipkow
parents: 3896
diff changeset
   780
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   781
(** take  & drop **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   782
section "take & drop";
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   783
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   784
Goal "take 0 xs = []";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   785
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   786
by Auto_tac;
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   787
qed "take_0";
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   788
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   789
Goal "drop 0 xs = xs";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   790
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   791
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   792
qed "drop_0";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   793
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   794
Goal "take (Suc n) (x#xs) = x # take n xs";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1485
diff changeset
   795
by (Simp_tac 1);
1419
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1327
diff changeset
   796
qed "take_Suc_Cons";
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   797
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   798
Goal "drop (Suc n) (x#xs) = drop n xs";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   799
by (Simp_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   800
qed "drop_Suc_Cons";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   801
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   802
Delsimps [take_Cons,drop_Cons];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   803
Addsimps [take_0,take_Suc_Cons,drop_0,drop_Suc_Cons];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   804
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   805
Goal "!xs. length(take n xs) = min (length xs) n";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   806
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   807
 by Auto_tac;
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   808
by (case_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   809
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   810
qed_spec_mp "length_take";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   811
Addsimps [length_take];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   812
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   813
Goal "!xs. length(drop n xs) = (length xs - n)";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   814
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   815
 by Auto_tac;
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   816
by (case_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   817
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   818
qed_spec_mp "length_drop";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   819
Addsimps [length_drop];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   820
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   821
Goal "!xs. length xs <= n --> take n xs = xs";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   822
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   823
 by Auto_tac;
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   824
by (case_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   825
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   826
qed_spec_mp "take_all";
7246
33058867d6eb Added take_all and drop_all to simpset.
nipkow
parents: 7224
diff changeset
   827
Addsimps [take_all];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   828
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   829
Goal "!xs. length xs <= n --> drop n xs = []";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   830
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   831
 by Auto_tac;
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   832
by (case_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   833
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   834
qed_spec_mp "drop_all";
7246
33058867d6eb Added take_all and drop_all to simpset.
nipkow
parents: 7224
diff changeset
   835
Addsimps [drop_all];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   836
5278
a903b66822e2 even more tidying of Goal commands
paulson
parents: 5272
diff changeset
   837
Goal "!xs. take n (xs @ ys) = (take n xs @ take (n - length xs) ys)";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   838
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   839
 by Auto_tac;
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   840
by (case_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   841
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   842
qed_spec_mp "take_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   843
Addsimps [take_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   844
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   845
Goal "!xs. drop n (xs@ys) = drop n xs @ drop (n - length xs) ys"; 
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   846
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   847
 by Auto_tac;
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   848
by (case_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   849
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   850
qed_spec_mp "drop_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   851
Addsimps [drop_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   852
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   853
Goal "!xs n. take n (take m xs) = take (min n m) xs"; 
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   854
by (induct_tac "m" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   855
 by Auto_tac;
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   856
by (case_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   857
 by Auto_tac;
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   858
by (case_tac "na" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   859
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   860
qed_spec_mp "take_take";
7570
a9391550eea1 Mod because of new solver interface.
nipkow
parents: 7246
diff changeset
   861
Addsimps [take_take];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   862
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   863
Goal "!xs. drop n (drop m xs) = drop (n + m) xs"; 
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   864
by (induct_tac "m" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   865
 by Auto_tac;
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   866
by (case_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   867
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   868
qed_spec_mp "drop_drop";
7570
a9391550eea1 Mod because of new solver interface.
nipkow
parents: 7246
diff changeset
   869
Addsimps [drop_drop];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   870
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   871
Goal "!xs n. take n (drop m xs) = drop m (take (n + m) xs)"; 
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   872
by (induct_tac "m" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   873
 by Auto_tac;
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   874
by (case_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   875
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   876
qed_spec_mp "take_drop";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   877
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   878
Goal "!xs. take n xs @ drop n xs = xs";
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   879
by (induct_tac "n" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   880
 by Auto_tac;
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   881
by (case_tac "xs" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   882
 by Auto_tac;
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   883
qed_spec_mp "append_take_drop_id";
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   884
Addsimps [append_take_drop_id];
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   885
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   886
Goal "!xs. take n (map f xs) = map f (take n xs)"; 
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   887
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   888
 by Auto_tac;
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   889
by (case_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   890
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   891
qed_spec_mp "take_map"; 
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   892
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   893
Goal "!xs. drop n (map f xs) = map f (drop n xs)"; 
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   894
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   895
 by Auto_tac;
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   896
by (case_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   897
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   898
qed_spec_mp "drop_map";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   899
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   900
Goal "!n i. i < n --> (take n xs)!i = xs!i";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   901
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   902
 by Auto_tac;
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   903
by (case_tac "n" 1);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   904
 by (Blast_tac 1);
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   905
by (case_tac "i" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   906
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   907
qed_spec_mp "nth_take";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   908
Addsimps [nth_take];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   909
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   910
Goal  "!xs i. n + i <= length xs --> (drop n xs)!i = xs!(n+i)";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   911
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   912
 by Auto_tac;
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   913
by (case_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   914
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   915
qed_spec_mp "nth_drop";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   916
Addsimps [nth_drop];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   917
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   918
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   919
Goal
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   920
 "!zs. (xs@ys = zs) = (xs = take (length xs) zs & ys = drop (length xs) zs)";
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   921
by (induct_tac "xs" 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   922
 by (Simp_tac 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   923
by (Asm_full_simp_tac 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   924
by (Clarify_tac 1);
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   925
by (case_tac "zs" 1);
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   926
by (Auto_tac);
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   927
qed_spec_mp "append_eq_conv_conj";
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   928
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   929
(** takeWhile & dropWhile **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   930
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   931
section "takeWhile & dropWhile";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   932
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   933
Goal "takeWhile P xs @ dropWhile P xs = xs";
3586
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   934
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   935
by Auto_tac;
3586
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   936
qed "takeWhile_dropWhile_id";
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   937
Addsimps [takeWhile_dropWhile_id];
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   938
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   939
Goal  "x:set xs & ~P(x) --> takeWhile P (xs @ ys) = takeWhile P xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   940
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   941
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   942
bind_thm("takeWhile_append1", conjI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   943
Addsimps [takeWhile_append1];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   944
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   945
Goal "(!x:set xs. P(x)) --> takeWhile P (xs @ ys) = xs @ takeWhile P ys";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   946
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   947
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   948
bind_thm("takeWhile_append2", ballI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   949
Addsimps [takeWhile_append2];
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   950
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   951
Goal "x:set xs & ~P(x) --> dropWhile P (xs @ ys) = (dropWhile P xs)@ys";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   952
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   953
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   954
bind_thm("dropWhile_append1", conjI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   955
Addsimps [dropWhile_append1];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   956
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   957
Goal "(!x:set xs. P(x)) --> dropWhile P (xs @ ys) = dropWhile P ys";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   958
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   959
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   960
bind_thm("dropWhile_append2", ballI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   961
Addsimps [dropWhile_append2];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   962
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   963
Goal "x:set(takeWhile P xs) --> x:set xs & P x";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   964
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   965
by Auto_tac;
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   966
qed_spec_mp"set_take_whileD";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   967
6306
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   968
(** zip **)
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   969
section "zip";
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   970
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   971
Goal "zip [] ys = []";
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   972
by (induct_tac "ys" 1);
6306
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   973
by Auto_tac;
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   974
qed "zip_Nil";
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   975
Addsimps [zip_Nil];
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   976
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   977
Goal "zip (x#xs) (y#ys) = (x,y)#zip xs ys";
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   978
by (Simp_tac 1);
6306
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   979
qed "zip_Cons_Cons";
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   980
Addsimps [zip_Cons_Cons];
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   981
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   982
Delsimps(tl (thms"zip.simps"));
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   983
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   984
Goal "!xs. length (zip xs ys) = min (length xs) (length ys)";
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   985
by (induct_tac "ys" 1);
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   986
 by (Simp_tac 1);
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   987
by (Clarify_tac 1);
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   988
by (case_tac "xs" 1);
8064
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
   989
 by (Auto_tac);
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   990
qed_spec_mp "length_zip";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   991
Addsimps [length_zip];
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   992
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
   993
Goal
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   994
 "!xs. zip (xs@ys) zs = \
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
   995
\      zip xs (take (length xs) zs) @ zip ys (drop (length xs) zs)";
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   996
by (induct_tac "zs" 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
   997
 by (Simp_tac 1);
8064
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
   998
by (Clarify_tac 1);
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
   999
by (case_tac "xs" 1);
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1000
 by (Asm_simp_tac 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1001
by (Asm_simp_tac 1);
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1002
qed_spec_mp "zip_append1";
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1003
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1004
Goal
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1005
 "!ys. zip xs (ys@zs) = \
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1006
\      zip (take (length ys) xs) ys @ zip (drop (length ys) xs) zs";
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1007
by (induct_tac "xs" 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1008
 by (Simp_tac 1);
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1009
by (Clarify_tac 1);
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
  1010
by (case_tac "ys" 1);
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1011
 by (Asm_simp_tac 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1012
by (Asm_simp_tac 1);
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1013
qed_spec_mp "zip_append2";
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1014
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1015
Goal
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1016
 "[| length xs = length us; length ys = length vs |] ==> \
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1017
\ zip (xs@ys) (us@vs) = zip xs us @ zip ys vs";
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1018
by (asm_simp_tac (simpset() addsimps [zip_append1]) 1);
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1019
qed_spec_mp "zip_append";
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1020
Addsimps [zip_append];
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1021
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1022
Goal "!xs. length xs = length ys --> zip (rev xs) (rev ys) = rev (zip xs ys)";
8064
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
  1023
by (induct_tac "ys" 1);
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
  1024
 by (Asm_full_simp_tac 1);
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
  1025
by (Asm_full_simp_tac 1);
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
  1026
by (Clarify_tac 1);
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
  1027
by (case_tac "xs" 1);
8064
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
  1028
 by (Auto_tac);
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1029
qed_spec_mp "zip_rev";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1030
8115
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1031
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1032
Goal
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1033
"!i xs. i < length xs --> i < length ys --> (zip xs ys)!i = (xs!i, ys!i)";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1034
by (induct_tac "ys" 1);
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1035
 by (Simp_tac 1);
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1036
by (Clarify_tac 1);
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
  1037
by (case_tac "xs" 1);
8064
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
  1038
 by (Auto_tac);
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1039
by (asm_full_simp_tac (simpset() addsimps (thms"nth.simps") addsplits [nat.split]) 1);
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1040
qed_spec_mp "nth_zip";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1041
Addsimps [nth_zip];
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1042
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1043
Goal "set(zip xs ys) = {(xs!i,ys!i) |i. i < min (length xs) (length ys)}";
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1044
by (simp_tac (simpset() addsimps [set_conv_nth]addcongs [rev_conj_cong]) 1);
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1045
qed_spec_mp "set_zip";
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1046
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1047
Goal
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1048
 "length xs = length ys ==> zip (xs[i:=x]) (ys[i:=y]) = (zip xs ys)[i:=(x,y)]";
8064
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
  1049
by (rtac sym 1);
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
  1050
by (asm_simp_tac (simpset() addsimps [update_zip]) 1);
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1051
qed_spec_mp "zip_update";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1052
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1053
Goal "!j. zip (replicate i x) (replicate j y) = replicate (min i j) (x,y)";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1054
by (induct_tac "i" 1);
8064
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
  1055
 by (Auto_tac);
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
  1056
by (case_tac "j" 1);
8064
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
  1057
 by (Auto_tac);
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1058
qed "zip_replicate";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1059
Addsimps [zip_replicate];
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1060
8115
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1061
(** list_all2 **)
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1062
section "list_all2";
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1063
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1064
Goalw [list_all2_def] "list_all2 P xs ys ==> length xs = length ys";
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1065
by (Asm_simp_tac 1);
8115
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1066
qed "list_all2_lengthD";
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1067
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1068
Goalw [list_all2_def] "list_all2 P [] ys = (ys=[])";
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1069
by (Simp_tac 1);
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1070
qed "list_all2_Nil";
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1071
AddIffs [list_all2_Nil];
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1072
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1073
Goalw [list_all2_def] "list_all2 P xs [] = (xs=[])";
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1074
by (Simp_tac 1);
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1075
qed "list_all2_Nil2";
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1076
AddIffs [list_all2_Nil2];
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1077
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1078
Goalw [list_all2_def]
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1079
 "list_all2 P (x#xs) (y#ys) = (P x y & list_all2 P xs ys)";
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1080
by (Auto_tac);
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1081
qed "list_all2_Cons";
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1082
AddIffs[list_all2_Cons];
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1083
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1084
Goalw [list_all2_def]
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1085
 "list_all2 P (x#xs) ys = (? z zs. ys = z#zs & P x z & list_all2 P xs zs)";
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
  1086
by (case_tac "ys" 1);
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1087
by (Auto_tac);
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1088
qed "list_all2_Cons1";
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1089
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1090
Goalw [list_all2_def]
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1091
 "list_all2 P xs (y#ys) = (? z zs. xs = z#zs & P z y & list_all2 P zs ys)";
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
  1092
by (case_tac "xs" 1);
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1093
by (Auto_tac);
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1094
qed "list_all2_Cons2";
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1095
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1096
Goalw [list_all2_def]
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1097
 "list_all2 P (xs@ys) zs = \
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1098
\ (EX us vs. zs = us@vs & length us = length xs & length vs = length ys & \
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1099
\            list_all2 P xs us & list_all2 P ys vs)";
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1100
by (simp_tac (simpset() addsimps [zip_append1]) 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1101
by (rtac iffI 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1102
 by (res_inst_tac [("x","take (length xs) zs")] exI 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1103
 by (res_inst_tac [("x","drop (length xs) zs")] exI 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1104
 by (asm_full_simp_tac (simpset() addsimps [min_def,eq_sym_conv]) 1);
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1105
by (Clarify_tac 1);
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1106
by (asm_full_simp_tac (simpset() addsimps [ball_Un]) 1);
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1107
qed "list_all2_append1";
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1108
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1109
Goalw [list_all2_def]
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1110
 "list_all2 P xs (ys@zs) = \
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1111
\ (EX us vs. xs = us@vs & length us = length ys & length vs = length zs & \
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1112
\            list_all2 P us ys & list_all2 P vs zs)";
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1113
by (simp_tac (simpset() addsimps [zip_append2]) 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1114
by (rtac iffI 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1115
 by (res_inst_tac [("x","take (length ys) xs")] exI 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1116
 by (res_inst_tac [("x","drop (length ys) xs")] exI 1);
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1117
 by (asm_full_simp_tac (simpset() addsimps [min_def,eq_sym_conv]) 1);
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1118
by (Clarify_tac 1);
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1119
by (asm_full_simp_tac (simpset() addsimps [ball_Un]) 1);
8118
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1120
qed "list_all2_append2";
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1121
746c5cf09bde More lemmas.
nipkow
parents: 8115
diff changeset
  1122
Goalw [list_all2_def]
8115
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1123
  "list_all2 P xs ys = \
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1124
\  (length xs = length ys & (!i<length xs. P (xs!i) (ys!i)))";
8254
84a5fe44520f expandshort
paulson
parents: 8144
diff changeset
  1125
by (force_tac (claset(), simpset() addsimps [set_zip]) 1);
8115
c802042066e8 Forgot to "call" MicroJava in makefile.
nipkow
parents: 8064
diff changeset
  1126
qed "list_all2_conv_all_nth";
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1127
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1128
(** foldl **)
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1129
section "foldl";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1130
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1131
Goal "!a. foldl f a (xs @ ys) = foldl f (foldl f a xs) ys";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1132
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
  1133
by Auto_tac;
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1134
qed_spec_mp "foldl_append";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1135
Addsimps [foldl_append];
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1136
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1137
(* Note: `n <= foldl op+ n ns' looks simpler, but is more difficult to use
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1138
   because it requires an additional transitivity step
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1139
*)
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1140
Goal "!n::nat. m <= n --> m <= foldl op+ n ns";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1141
by (induct_tac "ns" 1);
6058
a9600c47ace3 Shortened a proof.
nipkow
parents: 6055
diff changeset
  1142
by Auto_tac;
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1143
qed_spec_mp "start_le_sum";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1144
8935
548901d05a0e added type constraint ::nat because 0 is now overloaded
paulson
parents: 8741
diff changeset
  1145
Goal "!!n::nat. n : set ns ==> n <= foldl op+ 0 ns";
5758
27a2b36efd95 corrected auto_tac (applications of unsafe wrappers)
oheimb
parents: 5644
diff changeset
  1146
by (force_tac (claset() addIs [start_le_sum],
27a2b36efd95 corrected auto_tac (applications of unsafe wrappers)
oheimb
parents: 5644
diff changeset
  1147
              simpset() addsimps [in_set_conv_decomp]) 1);
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1148
qed "elem_le_sum";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1149
8935
548901d05a0e added type constraint ::nat because 0 is now overloaded
paulson
parents: 8741
diff changeset
  1150
Goal "!m::nat. (foldl op+ m ns = 0) = (m=0 & (!n : set ns. n=0))";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1151
by (induct_tac "ns" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
  1152
by Auto_tac;
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1153
qed_spec_mp "sum_eq_0_conv";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1154
AddIffs [sum_eq_0_conv];
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1155
5425
157c6663dedd Added function upto to List.
nipkow
parents: 5355
diff changeset
  1156
(** upto **)
157c6663dedd Added function upto to List.
nipkow
parents: 5355
diff changeset
  1157
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1158
(* Does not terminate! *)
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1159
Goal "[i..j(] = (if i<j then i#[Suc i..j(] else [])";
6162
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
  1160
by (induct_tac "j" 1);
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1161
by Auto_tac;
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1162
qed "upt_rec";
5425
157c6663dedd Added function upto to List.
nipkow
parents: 5355
diff changeset
  1163
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1164
Goal "j<=i ==> [i..j(] = []";
6162
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
  1165
by (stac upt_rec 1);
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
  1166
by (Asm_simp_tac 1);
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1167
qed "upt_conv_Nil";
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1168
Addsimps [upt_conv_Nil];
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1169
8982
4cb682fc083d renamed upt_Suc, since that name is needed for its primrec rule
paulson
parents: 8935
diff changeset
  1170
(*Only needed if upt_Suc is deleted from the simpset*)
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1171
Goal "i<=j ==> [i..(Suc j)(] = [i..j(]@[j]";
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1172
by (Asm_simp_tac 1);
8982
4cb682fc083d renamed upt_Suc, since that name is needed for its primrec rule
paulson
parents: 8935
diff changeset
  1173
qed "upt_Suc_append";
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1174
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1175
Goal "i<j ==> [i..j(] = i#[Suc i..j(]";
6162
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
  1176
by (rtac trans 1);
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
  1177
by (stac upt_rec 1);
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
  1178
by (rtac refl 2);
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1179
by (Asm_simp_tac 1);
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1180
qed "upt_conv_Cons";
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1181
9003
3747ec2aeb86 added new proofs and simplified an old one
paulson
parents: 8982
diff changeset
  1182
(*LOOPS as a simprule, since j<=j*)
3747ec2aeb86 added new proofs and simplified an old one
paulson
parents: 8982
diff changeset
  1183
Goal "i<=j ==> [i..j+k(] = [i..j(]@[j..j+k(]";
3747ec2aeb86 added new proofs and simplified an old one
paulson
parents: 8982
diff changeset
  1184
by (induct_tac "k" 1);
3747ec2aeb86 added new proofs and simplified an old one
paulson
parents: 8982
diff changeset
  1185
by Auto_tac;
3747ec2aeb86 added new proofs and simplified an old one
paulson
parents: 8982
diff changeset
  1186
qed "upt_add_eq_append";
3747ec2aeb86 added new proofs and simplified an old one
paulson
parents: 8982
diff changeset
  1187
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1188
Goal "length [i..j(] = j-i";
6162
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
  1189
by (induct_tac "j" 1);
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1190
 by (Simp_tac 1);
6162
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
  1191
by (asm_simp_tac (simpset() addsimps [Suc_diff_le]) 1);
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1192
qed "length_upt";
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1193
Addsimps [length_upt];
5425
157c6663dedd Added function upto to List.
nipkow
parents: 5355
diff changeset
  1194
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1195
Goal "i+k < j --> [i..j(] ! k = i+k";
6162
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
  1196
by (induct_tac "j" 1);
9014
4382883421ec simplified the proof of nth_upt
paulson
parents: 9003
diff changeset
  1197
 by (asm_simp_tac (simpset() addsimps [less_Suc_eq, nth_append] 
4382883421ec simplified the proof of nth_upt
paulson
parents: 9003
diff changeset
  1198
                             addsplits [nat_diff_split]) 2);
4382883421ec simplified the proof of nth_upt
paulson
parents: 9003
diff changeset
  1199
by (Simp_tac 1);
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1200
qed_spec_mp "nth_upt";
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
  1201
Addsimps [nth_upt];
5425
157c6663dedd Added function upto to List.
nipkow
parents: 5355
diff changeset
  1202
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
  1203
Goal "!i. i+m <= n --> take m [i..n(] = [i..i+m(]";
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1204
by (induct_tac "m" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1205
 by (Simp_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1206
by (Clarify_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1207
by (stac upt_rec 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1208
by (rtac sym 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1209
by (stac upt_rec 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1210
by (asm_simp_tac (simpset() delsimps (thms"upt.simps")) 1);
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
  1211
qed_spec_mp "take_upt";
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
  1212
Addsimps [take_upt];
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
  1213
9003
3747ec2aeb86 added new proofs and simplified an old one
paulson
parents: 8982
diff changeset
  1214
Goal "map Suc [m..n(] = [Suc m..n]";
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1215
by (induct_tac "n" 1);
9003
3747ec2aeb86 added new proofs and simplified an old one
paulson
parents: 8982
diff changeset
  1216
by Auto_tac;
3747ec2aeb86 added new proofs and simplified an old one
paulson
parents: 8982
diff changeset
  1217
qed "map_Suc_upt";
3747ec2aeb86 added new proofs and simplified an old one
paulson
parents: 8982
diff changeset
  1218
3747ec2aeb86 added new proofs and simplified an old one
paulson
parents: 8982
diff changeset
  1219
Goal "ALL i. i < n-m --> (map f [m..n(]) ! i = f(m+i)";
9747
043098ba5098 introduced induct_thm_tac
nipkow
parents: 9700
diff changeset
  1220
by (induct_thm_tac diff_induct "n m" 1);
9003
3747ec2aeb86 added new proofs and simplified an old one
paulson
parents: 8982
diff changeset
  1221
by (stac (map_Suc_upt RS sym) 3);
3747ec2aeb86 added new proofs and simplified an old one
paulson
parents: 8982
diff changeset
  1222
by (auto_tac (claset(), simpset() addsimps [less_diff_conv, nth_upt]));
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
  1223
qed_spec_mp "nth_map_upt";
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
  1224
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1225
Goal "ALL xs ys. k <= length xs --> k <= length ys -->  \
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1226
\        (ALL i. i < k --> xs!i = ys!i)  \
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1227
\     --> take k xs = take k ys";
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1228
by (induct_tac "k" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1229
by (ALLGOALS (asm_simp_tac (simpset() addsimps [less_Suc_eq_0_disj, 
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1230
						all_conj_distrib])));
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1231
by (Clarify_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1232
(*Both lists must be non-empty*)
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
  1233
by (case_tac "xs" 1);
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
  1234
by (case_tac "ys" 2);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1235
by (ALLGOALS Clarify_tac);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1236
(*prenexing's needed, not miniscoping*)
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1237
by (ALLGOALS (full_simp_tac (simpset() addsimps (all_simps RL [sym])  
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1238
                                       delsimps (all_simps))));
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1239
by (Blast_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1240
qed_spec_mp "nth_take_lemma";
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1241
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1242
Goal "[| length xs = length ys;  \
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1243
\        ALL i. i < length xs --> xs!i = ys!i |]  \
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1244
\     ==> xs = ys";
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1245
by (forward_tac [[le_refl, eq_imp_le] MRS nth_take_lemma] 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1246
by (ALLGOALS (asm_full_simp_tac (simpset() addsimps [take_all])));
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1247
qed_spec_mp "nth_equalityI";
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1248
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1249
(*The famous take-lemma*)
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1250
Goal "(ALL i. take i xs = take i ys) ==> xs = ys";
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1251
by (dres_inst_tac [("x", "max (length xs) (length ys)")] spec 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1252
by (full_simp_tac (simpset() addsimps [le_max_iff_disj, take_all]) 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1253
qed_spec_mp "take_equalityI";
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1254
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1255
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1256
(** nodups & remdups **)
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1257
section "nodups & remdups";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1258
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
  1259
Goal "set(remdups xs) = set xs";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1260
by (induct_tac "xs" 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1261
 by (Simp_tac 1);
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4681
diff changeset
  1262
by (asm_full_simp_tac (simpset() addsimps [insert_absorb]) 1);
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1263
qed "set_remdups";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1264
Addsimps [set_remdups];
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1265
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
  1266
Goal "nodups(remdups xs)";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1267
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
  1268
by Auto_tac;
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1269
qed "nodups_remdups";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1270
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
  1271
Goal "nodups xs --> nodups (filter P xs)";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1272
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
  1273
by Auto_tac;
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1274
qed_spec_mp "nodups_filter";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1275
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
  1276
(** replicate **)
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
  1277
section "replicate";
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
  1278
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1279
Goal "length(replicate n x) = n";
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1280
by (induct_tac "n" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1281
by Auto_tac;
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1282
qed "length_replicate";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1283
Addsimps [length_replicate];
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1284
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1285
Goal "map f (replicate n x) = replicate n (f x)";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1286
by (induct_tac "n" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1287
by Auto_tac;
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1288
qed "map_replicate";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1289
Addsimps [map_replicate];
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1290
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1291
Goal "(replicate n x) @ (x#xs) = x # replicate n x @ xs";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1292
by (induct_tac "n" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1293
by Auto_tac;
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1294
qed "replicate_app_Cons_same";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1295
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1296
Goal "rev(replicate n x) = replicate n x";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1297
by (induct_tac "n" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1298
 by (Simp_tac 1);
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1299
by (asm_simp_tac (simpset() addsimps [replicate_app_Cons_same]) 1);
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1300
qed "rev_replicate";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1301
Addsimps [rev_replicate];
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1302
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1303
Goal "replicate (n+m) x = replicate n x @ replicate m x";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1304
by (induct_tac "n" 1);
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1305
by Auto_tac;
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1306
qed "replicate_add";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1307
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1308
Goal"n ~= 0 --> hd(replicate n x) = x";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1309
by (induct_tac "n" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1310
by Auto_tac;
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1311
qed_spec_mp "hd_replicate";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1312
Addsimps [hd_replicate];
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1313
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1314
Goal "n ~= 0 --> tl(replicate n x) = replicate (n-1) x";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1315
by (induct_tac "n" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1316
by Auto_tac;
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1317
qed_spec_mp "tl_replicate";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1318
Addsimps [tl_replicate];
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1319
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1320
Goal "n ~= 0 --> last(replicate n x) = x";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1321
by (induct_tac "n" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1322
by Auto_tac;
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1323
qed_spec_mp "last_replicate";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1324
Addsimps [last_replicate];
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1325
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1326
Goal "!i. i<n --> (replicate n x)!i = x";
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1327
by (induct_tac "n" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1328
 by (Simp_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1329
by (asm_simp_tac (simpset() addsimps [nth_Cons] addsplits [nat.split]) 1);
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1330
qed_spec_mp "nth_replicate";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1331
Addsimps [nth_replicate];
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1332
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
  1333
Goal "set(replicate (Suc n) x) = {x}";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
  1334
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
  1335
by Auto_tac;
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
  1336
val lemma = result();
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
  1337
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
  1338
Goal "n ~= 0 ==> set(replicate n x) = {x}";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
  1339
by (fast_tac (claset() addSDs [not0_implies_Suc] addSIs [lemma]) 1);
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
  1340
qed "set_replicate";
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
  1341
Addsimps [set_replicate];
5162
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
  1342
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1343
Goal "set(replicate n x) = (if n=0 then {} else {x})";
8064
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
  1344
by (Auto_tac);
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1345
qed "set_replicate_conv_if";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1346
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1347
Goal "x : set(replicate n y) --> x=y";
8064
357652a08ee0 expandshort
paulson
parents: 8009
diff changeset
  1348
by (asm_simp_tac (simpset() addsimps [set_replicate_conv_if]) 1);
8009
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1349
qed_spec_mp "in_set_replicateD";
29a7a79ee7f4 Imported Conny's lemmas from MicroJava
nipkow
parents: 7570
diff changeset
  1350
5162
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
  1351
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1352
(*** Lexcicographic orderings on lists ***)
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1353
section"Lexcicographic orderings on lists";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1354
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1355
Goal "wf r ==> wf(lexn r n)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1356
by (induct_tac "n" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1357
by (Simp_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1358
by (Simp_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1359
by (rtac wf_subset 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1360
by (rtac Int_lower1 2);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1361
by (rtac wf_prod_fun_image 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1362
by (rtac injI 2);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1363
by Auto_tac;
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1364
qed "wf_lexn";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1365
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1366
Goal "!xs ys. (xs,ys) : lexn r n --> length xs = n & length ys = n";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1367
by (induct_tac "n" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1368
by Auto_tac;
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1369
qed_spec_mp "lexn_length";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1370
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1371
Goalw [lex_def] "wf r ==> wf(lex r)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1372
by (rtac wf_UN 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1373
by (blast_tac (claset() addIs [wf_lexn]) 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1374
by (Clarify_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1375
by (rename_tac "m n" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1376
by (subgoal_tac "m ~= n" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1377
 by (Blast_tac 2);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1378
by (blast_tac (claset() addDs [lexn_length,not_sym]) 1);
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1379
qed "wf_lex";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1380
AddSIs [wf_lex];
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1381
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1382
Goal
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1383
 "lexn r n = \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1384
\ {(xs,ys). length xs = n & length ys = n & \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1385
\           (? xys x y xs' ys'. xs= xys @ x#xs' & ys= xys @ y#ys' & (x,y):r)}";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1386
by (induct_tac "n" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1387
 by (Simp_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1388
 by (Blast_tac 1);
5641
5266f09db46c length_Suc_conv is no longer given to AddIffs
paulson
parents: 5537
diff changeset
  1389
by (asm_full_simp_tac (simpset() 
5296
bdef7d349d27 added length_Suc_conv, finite_set
oheimb
parents: 5283
diff changeset
  1390
				addsimps [lex_prod_def]) 1);
5641
5266f09db46c length_Suc_conv is no longer given to AddIffs
paulson
parents: 5537
diff changeset
  1391
by (auto_tac (claset(), simpset()));
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1392
  by (Blast_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1393
 by (rename_tac "a xys x xs' y ys'" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1394
 by (res_inst_tac [("x","a#xys")] exI 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1395
 by (Simp_tac 1);
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
  1396
by (case_tac "xys" 1);
5641
5266f09db46c length_Suc_conv is no longer given to AddIffs
paulson
parents: 5537
diff changeset
  1397
 by (ALLGOALS (asm_full_simp_tac (simpset())));
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1398
by (Blast_tac 1);
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1399
qed "lexn_conv";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1400
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1401
Goalw [lex_def]
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1402
 "lex r = \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1403
\ {(xs,ys). length xs = length ys & \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1404
\           (? xys x y xs' ys'. xs= xys @ x#xs' & ys= xys @ y#ys' & (x,y):r)}";
5641
5266f09db46c length_Suc_conv is no longer given to AddIffs
paulson
parents: 5537
diff changeset
  1405
by (force_tac (claset(), simpset() addsimps [lexn_conv]) 1);
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1406
qed "lex_conv";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1407
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1408
Goalw [lexico_def] "wf r ==> wf(lexico r)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1409
by (Blast_tac 1);
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1410
qed "wf_lexico";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1411
AddSIs [wf_lexico];
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1412
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1413
Goalw
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1414
 [lexico_def,diag_def,lex_prod_def,measure_def,inv_image_def]
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1415
"lexico r = {(xs,ys). length xs < length ys | \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1416
\                     length xs = length ys & (xs,ys) : lex r}";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1417
by (Simp_tac 1);
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1418
qed "lexico_conv";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1419
5283
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1420
Goal "([],ys) ~: lex r";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1421
by (simp_tac (simpset() addsimps [lex_conv]) 1);
5283
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1422
qed "Nil_notin_lex";
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1423
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1424
Goal "(xs,[]) ~: lex r";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1425
by (simp_tac (simpset() addsimps [lex_conv]) 1);
5283
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1426
qed "Nil2_notin_lex";
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1427
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1428
AddIffs [Nil_notin_lex,Nil2_notin_lex];
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1429
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1430
Goal "((x#xs,y#ys) : lex r) = \
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1431
\     ((x,y) : r & length xs = length ys | x=y & (xs,ys) : lex r)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1432
by (simp_tac (simpset() addsimps [lex_conv]) 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1433
by (rtac iffI 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1434
 by (blast_tac (claset() addIs [Cons_eq_appendI]) 2);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1435
by (REPEAT(eresolve_tac [conjE, exE] 1));
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
  1436
by (case_tac "xys" 1);
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1437
by (Asm_full_simp_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1438
by (Asm_full_simp_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1439
by (Blast_tac 1);
5283
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1440
qed "Cons_in_lex";
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1441
AddIffs [Cons_in_lex];
7032
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1442
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1443
9336
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1444
(*** sublist (a generalization of nth to sets) ***)
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1445
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1446
Goalw [sublist_def] "sublist l {} = []";
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1447
by Auto_tac;
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1448
qed "sublist_empty";
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1449
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1450
Goalw [sublist_def] "sublist [] A = []";
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1451
by Auto_tac;
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1452
qed "sublist_nil";
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1453
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1454
Goal "map fst [p:zip xs [i..i + length xs(] . snd p : A] =     \
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1455
\     map fst [p:zip xs [0..length xs(] . snd p + i : A]";
9747
043098ba5098 introduced induct_thm_tac
nipkow
parents: 9700
diff changeset
  1456
by (rev_induct_tac "xs" 1);
9336
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1457
 by (asm_simp_tac (simpset() addsimps [add_commute]) 2);
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1458
by (Simp_tac 1);
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1459
qed "sublist_shift_lemma";
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1460
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1461
Goalw [sublist_def]
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1462
     "sublist (l@l') A = sublist l A @ sublist l' {j. j + length l : A}";
9747
043098ba5098 introduced induct_thm_tac
nipkow
parents: 9700
diff changeset
  1463
by (rev_induct_tac "l'" 1);
9336
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1464
by (Simp_tac 1);
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1465
by (asm_simp_tac (simpset() addsimps [inst "i" "0" upt_add_eq_append, 
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1466
	                              zip_append, sublist_shift_lemma]) 1);
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1467
by (asm_simp_tac (simpset() addsimps [add_commute]) 1);
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1468
qed "sublist_append";
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1469
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1470
Addsimps [sublist_empty, sublist_nil];
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1471
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1472
Goal "sublist (x#l) A = (if 0:A then [x] else []) @ sublist l {j. Suc j : A}";
9747
043098ba5098 introduced induct_thm_tac
nipkow
parents: 9700
diff changeset
  1473
by (rev_induct_tac "l" 1);
9336
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1474
 by (asm_simp_tac (simpset() delsimps [append_Cons]
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1475
	 		     addsimps [append_Cons RS sym, sublist_append]) 2);
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1476
by (simp_tac (simpset() addsimps [sublist_def]) 1);
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1477
qed "sublist_Cons";
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1478
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1479
Goal "sublist [x] A = (if 0 : A then [x] else [])";
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1480
by (simp_tac (simpset() addsimps [sublist_Cons]) 1);
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1481
qed "sublist_singleton";
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1482
Addsimps [sublist_singleton];
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1483
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1484
Goal "sublist l {..n(} = take n l";
9747
043098ba5098 introduced induct_thm_tac
nipkow
parents: 9700
diff changeset
  1485
by (rev_induct_tac "l" 1);
9336
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1486
 by (asm_simp_tac (simpset() addsplits [nat_diff_split]
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1487
                             addsimps [sublist_append]) 2);
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1488
by (Simp_tac 1);
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1489
qed "sublist_upt_eq_take";
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1490
Addsimps [sublist_upt_eq_take];
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1491
9ae89b9ce206 moved sublist from UNITY/AllocBase to List
paulson
parents: 9268
diff changeset
  1492
7032
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1493
(*** Versions of some theorems above using binary numerals ***)
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1494
9423
7aa79267fa82 avoid referencing thy value;
wenzelm
parents: 9336
diff changeset
  1495
AddIffs (map rename_numerals
7032
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1496
	  [length_0_conv, zero_length_conv, length_greater_0_conv,
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1497
	   sum_eq_0_conv]);
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1498
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1499
Goal "take n (x#xs) = (if n = #0 then [] else x # take (n-#1) xs)";
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
  1500
by (case_tac "n" 1);
7032
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1501
by (ALLGOALS 
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1502
    (asm_simp_tac (simpset() addsimps [numeral_0_eq_0, numeral_1_eq_1])));
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1503
qed "take_Cons'";
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1504
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1505
Goal "drop n (x#xs) = (if n = #0 then x#xs else drop (n-#1) xs)";
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
  1506
by (case_tac "n" 1);
7032
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1507
by (ALLGOALS
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1508
    (asm_simp_tac (simpset() addsimps [numeral_0_eq_0, numeral_1_eq_1])));
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1509
qed "drop_Cons'";
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1510
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1511
Goal "(x#xs)!n = (if n = #0 then x else xs!(n-#1))";
8442
96023903c2df case_tac now subsumes both boolean and datatype cases;
wenzelm
parents: 8423
diff changeset
  1512
by (case_tac "n" 1);
7032
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1513
by (ALLGOALS
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1514
    (asm_simp_tac (simpset() addsimps [numeral_0_eq_0, numeral_1_eq_1])));
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1515
qed "nth_Cons'";
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1516
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1517
Addsimps (map (inst "n" "number_of ?v") [take_Cons', drop_Cons', nth_Cons']);
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 7028
diff changeset
  1518