src/HOL/List.ML
author nipkow
Fri, 11 Jun 1999 17:14:00 +0200
changeset 6820 41d9b7bbf968
parent 6813 bf90f86502b2
child 6831 799859f2e657
permissions -rw-r--r--
rev=rev lemma.
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
6141
a6922171b396 removal of the (thm list) argument of mk_cases
paulson
parents: 6073
diff changeset
    35
val 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
3196
c522bc46aea7 Added pred_list for TFL
paulson
parents: 3040
diff changeset
    51
4643
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
    52
(**  Case analysis **)
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
    53
section "Case analysis";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    54
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    55
val prems = Goal "[| P([]); !!x xs. P(x#xs) |] ==> P(xs)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
    56
by (induct_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
    57
by (REPEAT(resolve_tac prems 1));
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    58
qed "list_cases";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    59
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    60
Goal "(xs=[] --> P([])) & (!y ys. xs=y#ys --> P(y#ys)) --> P(xs)";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
    61
by (induct_tac "xs" 1);
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2739
diff changeset
    62
by (Blast_tac 1);
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2739
diff changeset
    63
by (Blast_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    64
bind_thm("list_eq_cases",
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    65
  impI RSN (2,allI RSN (2,allI RSN (2,impI RS (conjI RS (result() RS mp))))));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    66
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    67
(** length **)
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    68
(* needs to come before "@" because of thm append_eq_append_conv *)
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    69
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    70
section "length";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    71
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    72
Goal "length(xs@ys) = length(xs)+length(ys)";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    73
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
    74
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    75
qed"length_append";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    76
Addsimps [length_append];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    77
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
    78
Goal "length (map f xs) = length xs";
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
    79
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
    80
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    81
qed "length_map";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    82
Addsimps [length_map];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    83
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    84
Goal "length(rev xs) = length(xs)";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    85
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
    86
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    87
qed "length_rev";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    88
Addsimps [length_rev];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    89
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
    90
Goal "xs ~= [] ==> length(tl xs) = (length xs) - 1";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
    91
by (exhaust_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
    92
by Auto_tac;
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
    93
qed "length_tl";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
    94
Addsimps [length_tl];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
    95
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    96
Goal "(length xs = 0) = (xs = [])";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    97
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
    98
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    99
qed "length_0_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   100
AddIffs [length_0_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   101
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   102
Goal "(0 = length xs) = (xs = [])";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   103
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   104
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   105
qed "zero_length_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   106
AddIffs [zero_length_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   107
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   108
Goal "(0 < length xs) = (xs ~= [])";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   109
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   110
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   111
qed "length_greater_0_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   112
AddIffs [length_greater_0_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   113
5296
bdef7d349d27 added length_Suc_conv, finite_set
oheimb
parents: 5283
diff changeset
   114
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
   115
by (induct_tac "xs" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   116
by Auto_tac;
5296
bdef7d349d27 added length_Suc_conv, finite_set
oheimb
parents: 5283
diff changeset
   117
qed "length_Suc_conv";
bdef7d349d27 added length_Suc_conv, finite_set
oheimb
parents: 5283
diff changeset
   118
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   119
(** @ - append **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   120
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   121
section "@ - append";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   122
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   123
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
   124
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   125
by Auto_tac;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   126
qed "append_assoc";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   127
Addsimps [append_assoc];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   128
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   129
Goal "xs @ [] = xs";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   130
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   131
by Auto_tac;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   132
qed "append_Nil2";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   133
Addsimps [append_Nil2];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   134
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   135
Goal "(xs@ys = []) = (xs=[] & ys=[])";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   136
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   137
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   138
qed "append_is_Nil_conv";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   139
AddIffs [append_is_Nil_conv];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   140
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   141
Goal "([] = xs@ys) = (xs=[] & ys=[])";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   142
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   143
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   144
qed "Nil_is_append_conv";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   145
AddIffs [Nil_is_append_conv];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   146
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   147
Goal "(xs @ ys = xs) = (ys=[])";
3574
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   148
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   149
by Auto_tac;
3574
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   150
qed "append_self_conv";
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   151
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   152
Goal "(xs = xs @ ys) = (ys=[])";
3574
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   153
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   154
by Auto_tac;
3574
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   155
qed "self_append_conv";
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   156
AddIffs [append_self_conv,self_append_conv];
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   157
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   158
Goal "!ys. length xs = length ys | length us = length vs \
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   159
\              --> (xs@us = ys@vs) = (xs=ys & us=vs)";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   160
by (induct_tac "xs" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   161
 by (rtac allI 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   162
 by (exhaust_tac "ys" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   163
  by (Asm_simp_tac 1);
5641
5266f09db46c length_Suc_conv is no longer given to AddIffs
paulson
parents: 5537
diff changeset
   164
 by (Force_tac 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   165
by (rtac allI 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   166
by (exhaust_tac "ys" 1);
5641
5266f09db46c length_Suc_conv is no longer given to AddIffs
paulson
parents: 5537
diff changeset
   167
by (Force_tac 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   168
by (Asm_simp_tac 1);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   169
qed_spec_mp "append_eq_append_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   170
Addsimps [append_eq_append_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   171
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   172
Goal "(xs @ ys = xs @ zs) = (ys=zs)";
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   173
by (Simp_tac 1);
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   174
qed "same_append_eq";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   175
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   176
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
   177
by (Simp_tac 1);
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   178
qed "append1_eq_conv";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   179
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   180
Goal "(ys @ xs = zs @ xs) = (ys=zs)";
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   181
by (Simp_tac 1);
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   182
qed "append_same_eq";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   183
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   184
AddSIs
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   185
 [same_append_eq RS iffD2, append1_eq_conv RS iffD2, append_same_eq RS iffD2];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   186
AddSDs
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   187
 [same_append_eq RS iffD1, append1_eq_conv RS iffD1, append_same_eq RS iffD1];
3571
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   188
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   189
Goal "(xs @ ys = ys) = (xs=[])";
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   190
by (cut_inst_tac [("zs","[]")] append_same_eq 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   191
by Auto_tac;
4647
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   192
qed "append_self_conv2";
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   193
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   194
Goal "(ys = xs @ ys) = (xs=[])";
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   195
by (simp_tac (simpset() addsimps
4647
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   196
     [simplify (simpset()) (read_instantiate[("ys","[]")]append_same_eq)]) 1);
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   197
by (Blast_tac 1);
4647
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   198
qed "self_append_conv2";
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   199
AddIffs [append_self_conv2,self_append_conv2];
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   200
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   201
Goal "xs ~= [] --> hd xs # tl xs = xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   202
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   203
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   204
qed_spec_mp "hd_Cons_tl";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   205
Addsimps [hd_Cons_tl];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   206
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   207
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
   208
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   209
by Auto_tac;
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   210
qed "hd_append";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   211
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
   212
Goal "xs ~= [] ==> hd(xs @ ys) = hd xs";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   213
by (asm_simp_tac (simpset() addsimps [hd_append]
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   214
                           addsplits [list.split]) 1);
3571
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   215
qed "hd_append2";
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   216
Addsimps [hd_append2];
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   217
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   218
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
   219
by (simp_tac (simpset() addsplits [list.split]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   220
qed "tl_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   221
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
   222
Goal "xs ~= [] ==> tl(xs @ ys) = (tl xs) @ ys";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   223
by (asm_simp_tac (simpset() addsimps [tl_append]
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   224
                           addsplits [list.split]) 1);
3571
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   225
qed "tl_append2";
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   226
Addsimps [tl_append2];
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   227
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   228
(* trivial rules for solving @-equations automatically *)
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   229
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   230
Goal "xs = ys ==> xs = [] @ ys";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   231
by (Asm_simp_tac 1);
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   232
qed "eq_Nil_appendI";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   233
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   234
Goal "[| x#xs1 = ys; xs = xs1 @ zs |] ==> x#xs = ys@zs";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   235
by (dtac sym 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   236
by (Asm_simp_tac 1);
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   237
qed "Cons_eq_appendI";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   238
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   239
Goal "[| xs@xs1 = zs; ys = xs1 @ us |] ==> xs@ys = zs@us";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   240
by (dtac sym 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   241
by (Asm_simp_tac 1);
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   242
qed "append_eq_appendI";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   243
4830
bd73675adbed Added a few lemmas.
nipkow
parents: 4686
diff changeset
   244
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   245
(***
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   246
Simplification procedure for all list equalities.
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   247
Currently only tries to rearranges @ to see if
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   248
- both lists end in a singleton list,
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   249
- or both lists end in the same list.
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   250
***)
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   251
local
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   252
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   253
val list_eq_pattern =
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6306
diff changeset
   254
  Thm.read_cterm (Theory.sign_of List.thy) ("(xs::'a list) = ys",HOLogic.boolT);
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   255
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   256
fun last (cons as Const("List.list.op #",_) $ _ $ xs) =
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   257
      (case xs of Const("List.list.[]",_) => cons | _ => last xs)
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   258
  | last (Const("List.op @",_) $ _ $ ys) = last ys
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   259
  | last t = t;
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   260
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   261
fun list1 (Const("List.list.op #",_) $ _ $ Const("List.list.[]",_)) = true
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   262
  | list1 _ = false;
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   263
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   264
fun butlast ((cons as Const("List.list.op #",_) $ x) $ xs) =
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   265
      (case xs of Const("List.list.[]",_) => xs | _ => cons $ butlast xs)
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   266
  | butlast ((app as Const("List.op @",_) $ xs) $ ys) = app $ butlast ys
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   267
  | butlast xs = Const("List.list.[]",fastype_of xs);
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   268
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   269
val rearr_tac =
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   270
  simp_tac (HOL_basic_ss addsimps [append_assoc,append_Nil,append_Cons]);
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   271
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   272
fun list_eq sg _ (F as (eq as Const(_,eqT)) $ lhs $ rhs) =
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   273
  let
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   274
    val lastl = last lhs and lastr = last rhs
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   275
    fun rearr conv =
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   276
      let val lhs1 = butlast lhs and rhs1 = butlast rhs
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   277
          val Type(_,listT::_) = eqT
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   278
          val appT = [listT,listT] ---> listT
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   279
          val app = Const("List.op @",appT)
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   280
          val F2 = eq $ (app$lhs1$lastl) $ (app$rhs1$lastr)
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   281
          val ct = cterm_of sg (HOLogic.mk_Trueprop(HOLogic.mk_eq(F,F2)))
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   282
          val thm = prove_goalw_cterm [] ct (K [rearr_tac 1])
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   283
            handle ERROR =>
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   284
            error("The error(s) above occurred while trying to prove " ^
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   285
                  string_of_cterm ct)
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   286
      in Some((conv RS (thm RS trans)) RS eq_reflection) end
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   287
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   288
  in if list1 lastl andalso list1 lastr
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   289
     then rearr append1_eq_conv
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   290
     else
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   291
     if lastl aconv lastr
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   292
     then rearr append_same_eq
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   293
     else None
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   294
  end;
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   295
in
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   296
val list_eq_simproc = mk_simproc "list_eq" [list_eq_pattern] list_eq;
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   297
end;
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   298
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   299
Addsimprocs [list_eq_simproc];
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   300
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   301
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   302
(** map **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   303
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   304
section "map";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   305
5278
a903b66822e2 even more tidying of Goal commands
paulson
parents: 5272
diff changeset
   306
Goal "(!x. x : set xs --> f x = g x) --> map f xs = map g xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   307
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   308
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   309
bind_thm("map_ext", impI RS (allI RS (result() RS mp)));
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
Goal "map (%x. x) = (%xs. xs)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   312
by (rtac ext 1);
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   313
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   314
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   315
qed "map_ident";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   316
Addsimps[map_ident];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   317
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   318
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
   319
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   320
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   321
qed "map_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   322
Addsimps[map_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   323
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   324
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
   325
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   326
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   327
qed "map_compose";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   328
Addsimps[map_compose];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   329
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   330
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
   331
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   332
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   333
qed "rev_map";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   334
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   335
(* a congruence rule for map: *)
6451
paulson
parents: 6433
diff changeset
   336
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
   337
by (hyp_subst_tac 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   338
by (induct_tac "ys" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   339
by Auto_tac;
6451
paulson
parents: 6433
diff changeset
   340
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
   341
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   342
Goal "(map f xs = []) = (xs = [])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   343
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   344
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   345
qed "map_is_Nil_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   346
AddIffs [map_is_Nil_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   347
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   348
Goal "([] = map f xs) = (xs = [])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   349
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   350
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   351
qed "Nil_is_map_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   352
AddIffs [Nil_is_map_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   353
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   354
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   355
(** rev **)
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   356
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   357
section "rev";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   358
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   359
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
   360
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   361
by Auto_tac;
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   362
qed "rev_append";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   363
Addsimps[rev_append];
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   364
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   365
Goal "rev(rev l) = l";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   366
by (induct_tac "l" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   367
by Auto_tac;
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   368
qed "rev_rev_ident";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   369
Addsimps[rev_rev_ident];
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   370
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   371
Goal "(rev xs = []) = (xs = [])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   372
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   373
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   374
qed "rev_is_Nil_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   375
AddIffs [rev_is_Nil_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   376
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   377
Goal "([] = rev xs) = (xs = [])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   378
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   379
by Auto_tac;
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   380
qed "Nil_is_rev_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   381
AddIffs [Nil_is_rev_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   382
6820
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   383
Goal "!ys. (rev xs = rev ys) = (xs = ys)";
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   384
by(induct_tac "xs" 1);
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   385
 by (Force_tac 1);
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   386
br allI 1;
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   387
by(exhaust_tac "ys" 1);
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   388
 by (Asm_simp_tac 1);
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   389
by (Force_tac 1);
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   390
qed_spec_mp "rev_is_rev_conv";
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   391
AddIffs [rev_is_rev_conv];
41d9b7bbf968 rev=rev lemma.
nipkow
parents: 6813
diff changeset
   392
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   393
val prems = Goal "[| P []; !!x xs. P xs ==> P(xs@[x]) |] ==> P xs";
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   394
by (stac (rev_rev_ident RS sym) 1);
6162
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   395
by (res_inst_tac [("list", "rev xs")] list.induct 1);
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   396
by (ALLGOALS Simp_tac);
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   397
by (resolve_tac prems 1);
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   398
by (eresolve_tac prems 1);
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   399
qed "rev_induct";
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   400
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   401
fun rev_induct_tac xs = res_inst_tac [("xs",xs)] rev_induct;
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   402
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   403
Goal  "(xs = [] --> P) -->  (!ys y. xs = ys@[y] --> P) --> P";
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   404
by (res_inst_tac [("xs","xs")] rev_induct 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   405
by Auto_tac;
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   406
bind_thm ("rev_exhaust",
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   407
  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
   408
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   409
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3457
diff changeset
   410
(** set **)
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   411
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   412
section "set";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   413
5296
bdef7d349d27 added length_Suc_conv, finite_set
oheimb
parents: 5283
diff changeset
   414
qed_goal "finite_set" thy "finite (set xs)" 
bdef7d349d27 added length_Suc_conv, finite_set
oheimb
parents: 5283
diff changeset
   415
	(K [induct_tac "xs" 1, Auto_tac]);
bdef7d349d27 added length_Suc_conv, finite_set
oheimb
parents: 5283
diff changeset
   416
Addsimps[finite_set];
bdef7d349d27 added length_Suc_conv, finite_set
oheimb
parents: 5283
diff changeset
   417
AddSIs[finite_set];
bdef7d349d27 added length_Suc_conv, finite_set
oheimb
parents: 5283
diff changeset
   418
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   419
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
   420
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   421
by Auto_tac;
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   422
qed "set_append";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   423
Addsimps[set_append];
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   424
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   425
Goal "set l <= set (x#l)";
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   426
by Auto_tac;
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   427
qed "set_subset_Cons";
1936
979e8b4f5fa5 Proved set_of_list_subset_Cons
paulson
parents: 1908
diff changeset
   428
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   429
Goal "(set xs = {}) = (xs = [])";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   430
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   431
by Auto_tac;
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   432
qed "set_empty";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   433
Addsimps [set_empty];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   434
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   435
Goal "set(rev xs) = set(xs)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   436
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   437
by Auto_tac;
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   438
qed "set_rev";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   439
Addsimps [set_rev];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   440
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   441
Goal "set(map f xs) = f``(set xs)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   442
by (induct_tac "xs" 1);
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_map";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   445
Addsimps [set_map];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   446
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   447
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
   448
by (induct_tac "xs" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   449
by Auto_tac;
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   450
qed "set_filter";
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   451
Addsimps [set_filter];
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   452
(*
5443
e2459d18ff47 changed constants mem and list_all to mere translations
oheimb
parents: 5427
diff changeset
   453
Goal "(x : set (filter P xs)) = (x : set xs & P x)";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   454
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   455
by Auto_tac;
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   456
qed "in_set_filter";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   457
Addsimps [in_set_filter];
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   458
*)
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   459
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
   460
by (induct_tac "j" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   461
by Auto_tac;
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   462
by (arith_tac 1);
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   463
qed "set_upt";
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   464
Addsimps [set_upt];
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   465
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   466
Goal "!i < size xs. set(xs[i := x]) <= insert x (set xs)";
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   467
by (induct_tac "xs" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   468
 by (Simp_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   469
by (asm_simp_tac (simpset() addsplits [nat.split]) 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   470
by (Blast_tac 1);
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   471
qed_spec_mp "set_list_update_subset";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   472
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   473
Goal "(x : set xs) = (? ys zs. xs = ys@x#zs)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   474
by (induct_tac "xs" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   475
 by (Simp_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   476
by (Asm_simp_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   477
by (rtac iffI 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   478
by (blast_tac (claset() addIs [eq_Nil_appendI,Cons_eq_appendI]) 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   479
by (REPEAT(etac exE 1));
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   480
by (exhaust_tac "ys" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   481
by Auto_tac;
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   482
qed "in_set_conv_decomp";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   483
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   484
(* eliminate `lists' in favour of `set' *)
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   485
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   486
Goal "(xs : lists A) = (!x : set xs. x : A)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   487
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   488
by Auto_tac;
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   489
qed "in_lists_conv_set";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   490
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   491
bind_thm("in_listsD",in_lists_conv_set RS iffD1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   492
AddSDs [in_listsD];
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   493
bind_thm("in_listsI",in_lists_conv_set RS iffD2);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   494
AddSIs [in_listsI];
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   495
5518
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   496
(** mem **)
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   497
 
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   498
section "mem";
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   499
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   500
Goal "(x mem xs) = (x: set xs)";
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   501
by (induct_tac "xs" 1);
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   502
by Auto_tac;
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   503
qed "set_mem_eq";
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
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   506
(** list_all **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   507
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   508
section "list_all";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   509
5518
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   510
Goal "list_all P xs = (!x:set xs. P x)";
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   511
by (induct_tac "xs" 1);
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   512
by Auto_tac;
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   513
qed "list_all_conv";
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   514
5443
e2459d18ff47 changed constants mem and list_all to mere translations
oheimb
parents: 5427
diff changeset
   515
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
   516
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   517
by Auto_tac;
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   518
qed "list_all_append";
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   519
Addsimps [list_all_append];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   520
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   521
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   522
(** filter **)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   523
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   524
section "filter";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   525
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   526
Goal "filter P (xs@ys) = filter P xs @ filter P ys";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   527
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   528
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   529
qed "filter_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   530
Addsimps [filter_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   531
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   532
Goal "filter (%x. True) xs = xs";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   533
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   534
by Auto_tac;
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   535
qed "filter_True";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   536
Addsimps [filter_True];
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   537
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   538
Goal "filter (%x. False) xs = []";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   539
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   540
by Auto_tac;
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   541
qed "filter_False";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   542
Addsimps [filter_False];
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   543
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   544
Goal "length (filter P xs) <= length xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   545
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   546
by Auto_tac;
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   547
qed "length_filter";
5443
e2459d18ff47 changed constants mem and list_all to mere translations
oheimb
parents: 5427
diff changeset
   548
Addsimps[length_filter];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   549
5443
e2459d18ff47 changed constants mem and list_all to mere translations
oheimb
parents: 5427
diff changeset
   550
Goal "set (filter P xs) <= set xs";
e2459d18ff47 changed constants mem and list_all to mere translations
oheimb
parents: 5427
diff changeset
   551
by Auto_tac;
e2459d18ff47 changed constants mem and list_all to mere translations
oheimb
parents: 5427
diff changeset
   552
qed "filter_is_subset";
e2459d18ff47 changed constants mem and list_all to mere translations
oheimb
parents: 5427
diff changeset
   553
Addsimps [filter_is_subset];
e2459d18ff47 changed constants mem and list_all to mere translations
oheimb
parents: 5427
diff changeset
   554
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   555
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   556
section "concat";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   557
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   558
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
   559
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   560
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   561
qed"concat_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   562
Addsimps [concat_append];
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   563
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   564
Goal "(concat xss = []) = (!xs:set xss. xs=[])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   565
by (induct_tac "xss" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   566
by Auto_tac;
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   567
qed "concat_eq_Nil_conv";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   568
AddIffs [concat_eq_Nil_conv];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   569
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   570
Goal "([] = concat xss) = (!xs:set xss. xs=[])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   571
by (induct_tac "xss" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   572
by Auto_tac;
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   573
qed "Nil_eq_concat_conv";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   574
AddIffs [Nil_eq_concat_conv];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   575
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   576
Goal  "set(concat xs) = Union(set `` set xs)";
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   577
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   578
by Auto_tac;
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   579
qed"set_concat";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   580
Addsimps [set_concat];
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   581
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   582
Goal "map f (concat xs) = concat (map (map f) xs)"; 
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   583
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   584
by Auto_tac;
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   585
qed "map_concat";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   586
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   587
Goal "filter p (concat xs) = concat (map (filter p) xs)"; 
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   588
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   589
by Auto_tac;
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   590
qed"filter_concat"; 
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   591
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   592
Goal "rev(concat xs) = concat (map rev (rev xs))";
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   593
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   594
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   595
qed "rev_concat";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   596
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   597
(** nth **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   598
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   599
section "nth";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   600
6408
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   601
Goal "(x#xs)!0 = x";
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   602
by Auto_tac;
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   603
qed "nth_Cons_0";
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   604
Addsimps [nth_Cons_0];
5644
85fd64148873 Nat: added zero_neq_conv
nipkow
parents: 5641
diff changeset
   605
6408
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   606
Goal "(x#xs)!(Suc n) = xs!n";
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   607
by Auto_tac;
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   608
qed "nth_Cons_Suc";
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   609
Addsimps [nth_Cons_Suc];
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   610
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   611
Delsimps (thms "nth.simps");
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   612
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   613
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
   614
by (induct_tac "xs" 1);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   615
 by (Asm_simp_tac 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   616
 by (rtac allI 1);
6408
5b443d6331ed new definition for nth.
pusch
parents: 6394
diff changeset
   617
 by (exhaust_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   618
  by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   619
qed_spec_mp "nth_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   620
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   621
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
   622
by (induct_tac "xs" 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   623
(* case [] *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   624
by (Asm_full_simp_tac 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   625
(* case x#xl *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   626
by (rtac allI 1);
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   627
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   628
by Auto_tac;
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   629
qed_spec_mp "nth_map";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   630
Addsimps [nth_map];
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   631
5518
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   632
Goal "!n. n < length xs --> Ball (set xs) P --> P(xs!n)";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   633
by (induct_tac "xs" 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   634
(* case [] *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   635
by (Simp_tac 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   636
(* case x#xl *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   637
by (rtac allI 1);
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   638
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   639
by Auto_tac;
5518
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   640
qed_spec_mp "list_ball_nth";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   641
5518
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   642
Goal "!n. n < length xs --> xs!n : set xs";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   643
by (induct_tac "xs" 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   644
(* case [] *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   645
by (Simp_tac 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   646
(* case x#xl *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   647
by (rtac allI 1);
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   648
by (induct_tac "n" 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   649
(* case 0 *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   650
by (Asm_full_simp_tac 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   651
(* case Suc x *)
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4681
diff changeset
   652
by (Asm_full_simp_tac 1);
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   653
qed_spec_mp "nth_mem";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   654
Addsimps [nth_mem];
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   655
5518
654ead0ba4f7 re-added mem and list_all
oheimb
parents: 5448
diff changeset
   656
5077
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   657
(** list update **)
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   658
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   659
section "list update";
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   660
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   661
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
   662
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
   663
by (Simp_tac 1);
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   664
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
   665
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
   666
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
   667
5644
85fd64148873 Nat: added zero_neq_conv
nipkow
parents: 5641
diff changeset
   668
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
   669
by (induct_tac "xs" 1);
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   670
 by (Simp_tac 1);
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   671
by (auto_tac (claset(), simpset() addsimps [nth_Cons] addsplits [nat.split]));
5644
85fd64148873 Nat: added zero_neq_conv
nipkow
parents: 5641
diff changeset
   672
qed_spec_mp "nth_list_update";
85fd64148873 Nat: added zero_neq_conv
nipkow
parents: 5641
diff changeset
   673
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   674
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
   675
by (induct_tac "xs" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   676
 by (Simp_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   677
by (asm_simp_tac (simpset() addsplits [nat.split]) 1);
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   678
qed_spec_mp "list_update_overwrite";
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   679
Addsimps [list_update_overwrite];
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   680
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   681
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
   682
by (induct_tac "xs" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   683
 by (Simp_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   684
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
   685
by (Blast_tac 1);
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   686
qed_spec_mp "list_update_same_conv";
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   687
5077
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   688
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   689
(** last & butlast **)
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   690
5644
85fd64148873 Nat: added zero_neq_conv
nipkow
parents: 5641
diff changeset
   691
section "last / butlast";
85fd64148873 Nat: added zero_neq_conv
nipkow
parents: 5641
diff changeset
   692
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   693
Goal "last(xs@[x]) = x";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   694
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   695
by Auto_tac;
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   696
qed "last_snoc";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   697
Addsimps [last_snoc];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   698
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   699
Goal "butlast(xs@[x]) = xs";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   700
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   701
by Auto_tac;
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   702
qed "butlast_snoc";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   703
Addsimps [butlast_snoc];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   704
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   705
Goal "length(butlast xs) = length xs - 1";
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   706
by (res_inst_tac [("xs","xs")] rev_induct 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   707
by Auto_tac;
4643
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   708
qed "length_butlast";
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   709
Addsimps [length_butlast];
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   710
5278
a903b66822e2 even more tidying of Goal commands
paulson
parents: 5272
diff changeset
   711
Goal "!ys. butlast (xs@ys) = (if ys=[] then butlast xs else xs@butlast ys)";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   712
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   713
by Auto_tac;
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   714
qed_spec_mp "butlast_append";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   715
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   716
Goal "x:set(butlast xs) --> x:set xs";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   717
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   718
by Auto_tac;
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   719
qed_spec_mp "in_set_butlastD";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   720
5448
40a09282ba14 in_set_butlast_appendI supersedes in_set_butlast_appendI1,2
paulson
parents: 5443
diff changeset
   721
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
   722
by (auto_tac (claset() addDs [in_set_butlastD],
40a09282ba14 in_set_butlast_appendI supersedes in_set_butlast_appendI1,2
paulson
parents: 5443
diff changeset
   723
	      simpset() addsimps [butlast_append]));
40a09282ba14 in_set_butlast_appendI supersedes in_set_butlast_appendI1,2
paulson
parents: 5443
diff changeset
   724
qed "in_set_butlast_appendI";
3902
265a5d8ab88f Removed comment.
nipkow
parents: 3896
diff changeset
   725
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   726
(** take  & drop **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   727
section "take & drop";
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   728
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   729
Goal "take 0 xs = []";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   730
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   731
by Auto_tac;
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   732
qed "take_0";
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   733
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   734
Goal "drop 0 xs = xs";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   735
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   736
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   737
qed "drop_0";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   738
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   739
Goal "take (Suc n) (x#xs) = x # take n xs";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1485
diff changeset
   740
by (Simp_tac 1);
1419
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1327
diff changeset
   741
qed "take_Suc_Cons";
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   742
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   743
Goal "drop (Suc n) (x#xs) = drop n xs";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   744
by (Simp_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   745
qed "drop_Suc_Cons";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   746
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   747
Delsimps [take_Cons,drop_Cons];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   748
Addsimps [take_0,take_Suc_Cons,drop_0,drop_Suc_Cons];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   749
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   750
Goal "!xs. length(take n xs) = min (length xs) n";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   751
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   752
 by Auto_tac;
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   753
by (exhaust_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   754
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   755
qed_spec_mp "length_take";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   756
Addsimps [length_take];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   757
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   758
Goal "!xs. length(drop n xs) = (length xs - n)";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   759
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   760
 by Auto_tac;
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   761
by (exhaust_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   762
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   763
qed_spec_mp "length_drop";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   764
Addsimps [length_drop];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   765
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   766
Goal "!xs. length xs <= n --> take n xs = xs";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   767
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   768
 by Auto_tac;
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   769
by (exhaust_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   770
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   771
qed_spec_mp "take_all";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   772
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   773
Goal "!xs. length xs <= n --> drop n xs = []";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   774
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   775
 by Auto_tac;
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   776
by (exhaust_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   777
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   778
qed_spec_mp "drop_all";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   779
5278
a903b66822e2 even more tidying of Goal commands
paulson
parents: 5272
diff changeset
   780
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
   781
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   782
 by Auto_tac;
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   783
by (exhaust_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   784
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   785
qed_spec_mp "take_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   786
Addsimps [take_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   787
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   788
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
   789
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   790
 by Auto_tac;
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   791
by (exhaust_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   792
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   793
qed_spec_mp "drop_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   794
Addsimps [drop_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   795
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   796
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
   797
by (induct_tac "m" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   798
 by Auto_tac;
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   799
by (exhaust_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   800
 by Auto_tac;
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   801
by (exhaust_tac "na" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   802
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   803
qed_spec_mp "take_take";
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. drop n (drop m xs) = drop (n + m) xs"; 
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   806
by (induct_tac "m" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   807
 by Auto_tac;
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   808
by (exhaust_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 "drop_drop";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   811
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   812
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
   813
by (induct_tac "m" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   814
 by Auto_tac;
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   815
by (exhaust_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   816
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   817
qed_spec_mp "take_drop";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   818
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   819
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
   820
by (induct_tac "n" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   821
 by Auto_tac;
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   822
by (exhaust_tac "xs" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   823
 by Auto_tac;
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   824
qed_spec_mp "append_take_drop_id";
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   825
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   826
Goal "!xs. take n (map f xs) = map f (take n xs)"; 
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   827
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   828
 by Auto_tac;
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   829
by (exhaust_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   830
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   831
qed_spec_mp "take_map"; 
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   832
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   833
Goal "!xs. drop n (map f xs) = map f (drop n xs)"; 
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   834
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   835
 by Auto_tac;
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   836
by (exhaust_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   837
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   838
qed_spec_mp "drop_map";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   839
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   840
Goal "!n i. i < n --> (take n xs)!i = xs!i";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   841
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   842
 by Auto_tac;
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   843
by (exhaust_tac "n" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   844
 by (Blast_tac 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   845
by (exhaust_tac "i" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   846
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   847
qed_spec_mp "nth_take";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   848
Addsimps [nth_take];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   849
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   850
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
   851
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   852
 by Auto_tac;
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   853
by (exhaust_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   854
 by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   855
qed_spec_mp "nth_drop";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   856
Addsimps [nth_drop];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   857
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   858
(** takeWhile & dropWhile **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   859
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   860
section "takeWhile & dropWhile";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   861
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   862
Goal "takeWhile P xs @ dropWhile P xs = xs";
3586
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   863
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   864
by Auto_tac;
3586
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   865
qed "takeWhile_dropWhile_id";
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   866
Addsimps [takeWhile_dropWhile_id];
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   867
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   868
Goal  "x:set xs & ~P(x) --> takeWhile P (xs @ ys) = takeWhile P xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   869
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   870
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   871
bind_thm("takeWhile_append1", conjI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   872
Addsimps [takeWhile_append1];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   873
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   874
Goal "(!x:set xs. P(x)) --> takeWhile P (xs @ ys) = xs @ takeWhile P ys";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   875
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   876
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   877
bind_thm("takeWhile_append2", ballI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   878
Addsimps [takeWhile_append2];
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   879
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   880
Goal "x:set xs & ~P(x) --> dropWhile P (xs @ ys) = (dropWhile P xs)@ys";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   881
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   882
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   883
bind_thm("dropWhile_append1", conjI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   884
Addsimps [dropWhile_append1];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   885
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   886
Goal "(!x:set xs. P(x)) --> dropWhile P (xs @ ys) = dropWhile P ys";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   887
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   888
by Auto_tac;
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   889
bind_thm("dropWhile_append2", ballI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   890
Addsimps [dropWhile_append2];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   891
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   892
Goal "x:set(takeWhile P xs) --> x:set xs & P x";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   893
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   894
by Auto_tac;
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   895
qed_spec_mp"set_take_whileD";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   896
6306
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   897
(** zip **)
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   898
section "zip";
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   899
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   900
Goal "zip [] ys = []";
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   901
by (induct_tac "ys" 1);
6306
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   902
by Auto_tac;
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   903
qed "zip_Nil";
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   904
Addsimps [zip_Nil];
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   905
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   906
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
   907
by (Simp_tac 1);
6306
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   908
qed "zip_Cons_Cons";
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   909
Addsimps [zip_Cons_Cons];
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   910
81e7fbf61db2 modified zip
nipkow
parents: 6162
diff changeset
   911
Delsimps(tl (thms"zip.simps"));
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   912
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   913
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   914
(** foldl **)
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   915
section "foldl";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   916
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   917
Goal "!a. foldl f a (xs @ ys) = foldl f (foldl f a xs) ys";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   918
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   919
by Auto_tac;
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   920
qed_spec_mp "foldl_append";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   921
Addsimps [foldl_append];
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   922
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   923
(* 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
   924
   because it requires an additional transitivity step
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   925
*)
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   926
Goal "!n::nat. m <= n --> m <= foldl op+ n ns";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   927
by (induct_tac "ns" 1);
6058
a9600c47ace3 Shortened a proof.
nipkow
parents: 6055
diff changeset
   928
by Auto_tac;
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   929
qed_spec_mp "start_le_sum";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   930
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   931
Goal "n : set ns ==> n <= foldl op+ 0 ns";
5758
27a2b36efd95 corrected auto_tac (applications of unsafe wrappers)
oheimb
parents: 5644
diff changeset
   932
by (force_tac (claset() addIs [start_le_sum],
27a2b36efd95 corrected auto_tac (applications of unsafe wrappers)
oheimb
parents: 5644
diff changeset
   933
              simpset() addsimps [in_set_conv_decomp]) 1);
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   934
qed "elem_le_sum";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   935
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   936
Goal "!m. (foldl op+ m ns = 0) = (m=0 & (!n : set ns. n=0))";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   937
by (induct_tac "ns" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
   938
by Auto_tac;
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   939
qed_spec_mp "sum_eq_0_conv";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   940
AddIffs [sum_eq_0_conv];
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   941
5425
157c6663dedd Added function upto to List.
nipkow
parents: 5355
diff changeset
   942
(** upto **)
157c6663dedd Added function upto to List.
nipkow
parents: 5355
diff changeset
   943
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   944
(* Does not terminate! *)
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   945
Goal "[i..j(] = (if i<j then i#[Suc i..j(] else [])";
6162
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   946
by (induct_tac "j" 1);
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   947
by Auto_tac;
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   948
qed "upt_rec";
5425
157c6663dedd Added function upto to List.
nipkow
parents: 5355
diff changeset
   949
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   950
Goal "j<=i ==> [i..j(] = []";
6162
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   951
by (stac upt_rec 1);
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   952
by (Asm_simp_tac 1);
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   953
qed "upt_conv_Nil";
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   954
Addsimps [upt_conv_Nil];
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   955
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   956
Goal "i<=j ==> [i..(Suc j)(] = [i..j(]@[j]";
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   957
by (Asm_simp_tac 1);
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   958
qed "upt_Suc";
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   959
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   960
Goal "i<j ==> [i..j(] = i#[Suc i..j(]";
6162
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   961
by (rtac trans 1);
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   962
by (stac upt_rec 1);
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   963
by (rtac refl 2);
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   964
by (Asm_simp_tac 1);
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   965
qed "upt_conv_Cons";
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   966
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   967
Goal "length [i..j(] = j-i";
6162
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   968
by (induct_tac "j" 1);
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   969
 by (Simp_tac 1);
6162
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   970
by (asm_simp_tac (simpset() addsimps [Suc_diff_le]) 1);
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   971
qed "length_upt";
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   972
Addsimps [length_upt];
5425
157c6663dedd Added function upto to List.
nipkow
parents: 5355
diff changeset
   973
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   974
Goal "i+k < j --> [i..j(] ! k = i+k";
6162
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   975
by (induct_tac "j" 1);
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   976
 by (Simp_tac 1);
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   977
by (asm_simp_tac (simpset() addsimps [nth_append,less_diff_conv]@add_ac) 1);
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   978
by (Clarify_tac 1);
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   979
by (subgoal_tac "n=i+k" 1);
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   980
 by (Asm_simp_tac 2);
484adda70b65 expandshort
paulson
parents: 6141
diff changeset
   981
by (Asm_simp_tac 1);
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   982
qed_spec_mp "nth_upt";
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   983
Addsimps [nth_upt];
5425
157c6663dedd Added function upto to List.
nipkow
parents: 5355
diff changeset
   984
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   985
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
   986
by (induct_tac "m" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   987
 by (Simp_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   988
by (Clarify_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   989
by (stac upt_rec 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   990
by (rtac sym 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   991
by (stac upt_rec 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   992
by (asm_simp_tac (simpset() delsimps (thms"upt.simps")) 1);
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   993
qed_spec_mp "take_upt";
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   994
Addsimps [take_upt];
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   995
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
   996
Goal "!m i. i < n-m --> (map f [m..n(]) ! i = f(m+i)";
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   997
by (induct_tac "n" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   998
 by (Simp_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
   999
by (Clarify_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1000
by (subgoal_tac "m < Suc n" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1001
 by (arith_tac 2);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1002
by (stac upt_rec 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1003
by (asm_simp_tac (simpset() delsplits [split_if]) 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1004
by (split_tac [split_if] 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1005
by (rtac conjI 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1006
 by (simp_tac (simpset() addsimps [nth_Cons] addsplits [nat.split]) 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1007
 by (simp_tac (simpset() addsimps [nth_append] addsplits [nat.split]) 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1008
 by (Clarify_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1009
 by (rtac conjI 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1010
  by (Clarify_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1011
  by (subgoal_tac "Suc(m+nat) < n" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1012
   by (arith_tac 2);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1013
  by (Asm_simp_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1014
 by (Clarify_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1015
 by (subgoal_tac "n = Suc(m+nat)" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1016
  by (arith_tac 2);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1017
 by (Asm_simp_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1018
by (simp_tac (simpset() addsimps [nth_Cons] addsplits [nat.split]) 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1019
by (arith_tac 1);
6433
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
  1020
qed_spec_mp "nth_map_upt";
228237ec56e5 Added new thms.
nipkow
parents: 6408
diff changeset
  1021
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1022
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
  1023
\        (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
  1024
\     --> take k xs = take k ys";
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1025
by (induct_tac "k" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1026
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
  1027
						all_conj_distrib])));
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1028
by (Clarify_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1029
(*Both lists must be non-empty*)
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1030
by (exhaust_tac "xs" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1031
by (exhaust_tac "ys" 2);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1032
by (ALLGOALS Clarify_tac);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1033
(*prenexing's needed, not miniscoping*)
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1034
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
  1035
                                       delsimps (all_simps))));
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1036
by (Blast_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1037
qed_spec_mp "nth_take_lemma";
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1038
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1039
Goal "[| length xs = length ys;  \
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1040
\        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
  1041
\     ==> xs = ys";
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1042
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
  1043
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
  1044
qed_spec_mp "nth_equalityI";
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1045
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1046
(*The famous take-lemma*)
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1047
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
  1048
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
  1049
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
  1050
qed_spec_mp "take_equalityI";
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1051
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
  1052
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1053
(** nodups & remdups **)
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1054
section "nodups & remdups";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1055
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
  1056
Goal "set(remdups xs) = set xs";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1057
by (induct_tac "xs" 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1058
 by (Simp_tac 1);
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4681
diff changeset
  1059
by (asm_full_simp_tac (simpset() addsimps [insert_absorb]) 1);
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1060
qed "set_remdups";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1061
Addsimps [set_remdups];
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1062
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
  1063
Goal "nodups(remdups xs)";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1064
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
  1065
by Auto_tac;
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1066
qed "nodups_remdups";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1067
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
  1068
Goal "nodups xs --> nodups (filter P xs)";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1069
by (induct_tac "xs" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
  1070
by Auto_tac;
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1071
qed_spec_mp "nodups_filter";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
  1072
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
  1073
(** replicate **)
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
  1074
section "replicate";
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
  1075
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1076
Goal "length(replicate n x) = n";
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1077
by (induct_tac "n" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1078
by Auto_tac;
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1079
qed "length_replicate";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1080
Addsimps [length_replicate];
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1081
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1082
Goal "map f (replicate n x) = replicate n (f x)";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1083
by (induct_tac "n" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1084
by Auto_tac;
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1085
qed "map_replicate";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1086
Addsimps [map_replicate];
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1087
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1088
Goal "(replicate n x) @ (x#xs) = x # replicate n x @ xs";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1089
by (induct_tac "n" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1090
by Auto_tac;
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1091
qed "replicate_app_Cons_same";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1092
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1093
Goal "rev(replicate n x) = replicate n x";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1094
by (induct_tac "n" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1095
 by (Simp_tac 1);
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1096
by (asm_simp_tac (simpset() addsimps [replicate_app_Cons_same]) 1);
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1097
qed "rev_replicate";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1098
Addsimps [rev_replicate];
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1099
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1100
Goal"n ~= 0 --> hd(replicate n x) = x";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1101
by (induct_tac "n" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1102
by Auto_tac;
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1103
qed_spec_mp "hd_replicate";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1104
Addsimps [hd_replicate];
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1105
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1106
Goal "n ~= 0 --> tl(replicate n x) = replicate (n-1) x";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1107
by (induct_tac "n" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1108
by Auto_tac;
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1109
qed_spec_mp "tl_replicate";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1110
Addsimps [tl_replicate];
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1111
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1112
Goal "n ~= 0 --> last(replicate n x) = x";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1113
by (induct_tac "n" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1114
by Auto_tac;
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1115
qed_spec_mp "last_replicate";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1116
Addsimps [last_replicate];
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1117
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1118
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
  1119
by (induct_tac "n" 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1120
 by (Simp_tac 1);
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1121
by (asm_simp_tac (simpset() addsimps [nth_Cons] addsplits [nat.split]) 1);
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1122
qed_spec_mp "nth_replicate";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1123
Addsimps [nth_replicate];
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1124
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
  1125
Goal "set(replicate (Suc n) x) = {x}";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
  1126
by (induct_tac "n" 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5296
diff changeset
  1127
by Auto_tac;
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
  1128
val lemma = result();
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
  1129
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
  1130
Goal "n ~= 0 ==> set(replicate n x) = {x}";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
  1131
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
  1132
qed "set_replicate";
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
  1133
Addsimps [set_replicate];
5162
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
  1134
6794
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1135
Goal "replicate (n+m) x = replicate n x @ replicate m x";
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1136
by (induct_tac "n" 1);
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1137
by Auto_tac;
ac367328b875 Added lots of 'replicate' lemmas.
nipkow
parents: 6451
diff changeset
  1138
qed "replicate_add";
5162
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
  1139
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1140
(*** Lexcicographic orderings on lists ***)
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1141
section"Lexcicographic orderings on lists";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1142
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1143
Goal "wf r ==> wf(lexn r n)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1144
by (induct_tac "n" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1145
by (Simp_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1146
by (Simp_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1147
by (rtac wf_subset 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1148
by (rtac Int_lower1 2);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1149
by (rtac wf_prod_fun_image 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1150
by (rtac injI 2);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1151
by Auto_tac;
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1152
qed "wf_lexn";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1153
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1154
Goal "!xs ys. (xs,ys) : lexn r n --> length xs = n & length ys = n";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1155
by (induct_tac "n" 1);
6813
bf90f86502b2 many new lemmas about take & drop, incl the famous take-lemma
paulson
parents: 6794
diff changeset
  1156
by Auto_tac;
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1157
qed_spec_mp "lexn_length";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1158
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1159
Goalw [lex_def] "wf r ==> wf(lex r)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1160
by (rtac wf_UN 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1161
by (blast_tac (claset() addIs [wf_lexn]) 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1162
by (Clarify_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1163
by (rename_tac "m n" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1164
by (subgoal_tac "m ~= n" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1165
 by (Blast_tac 2);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1166
by (blast_tac (claset() addDs [lexn_length,not_sym]) 1);
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1167
qed "wf_lex";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1168
AddSIs [wf_lex];
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1169
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1170
Goal
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1171
 "lexn r n = \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1172
\ {(xs,ys). length xs = n & length ys = n & \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1173
\           (? xys x y xs' ys'. xs= xys @ x#xs' & ys= xys @ y#ys' & (x,y):r)}";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1174
by (induct_tac "n" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1175
 by (Simp_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1176
 by (Blast_tac 1);
5641
5266f09db46c length_Suc_conv is no longer given to AddIffs
paulson
parents: 5537
diff changeset
  1177
by (asm_full_simp_tac (simpset() 
5296
bdef7d349d27 added length_Suc_conv, finite_set
oheimb
parents: 5283
diff changeset
  1178
				addsimps [lex_prod_def]) 1);
5641
5266f09db46c length_Suc_conv is no longer given to AddIffs
paulson
parents: 5537
diff changeset
  1179
by (auto_tac (claset(), simpset()));
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1180
  by (Blast_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1181
 by (rename_tac "a xys x xs' y ys'" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1182
 by (res_inst_tac [("x","a#xys")] exI 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1183
 by (Simp_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1184
by (exhaust_tac "xys" 1);
5641
5266f09db46c length_Suc_conv is no longer given to AddIffs
paulson
parents: 5537
diff changeset
  1185
 by (ALLGOALS (asm_full_simp_tac (simpset())));
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1186
by (Blast_tac 1);
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1187
qed "lexn_conv";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1188
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1189
Goalw [lex_def]
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1190
 "lex r = \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1191
\ {(xs,ys). length xs = length ys & \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1192
\           (? 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
  1193
by (force_tac (claset(), simpset() addsimps [lexn_conv]) 1);
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1194
qed "lex_conv";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1195
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1196
Goalw [lexico_def] "wf r ==> wf(lexico r)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1197
by (Blast_tac 1);
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1198
qed "wf_lexico";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1199
AddSIs [wf_lexico];
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1200
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1201
Goalw
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1202
 [lexico_def,diag_def,lex_prod_def,measure_def,inv_image_def]
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1203
"lexico r = {(xs,ys). length xs < length ys | \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1204
\                     length xs = length ys & (xs,ys) : lex r}";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1205
by (Simp_tac 1);
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1206
qed "lexico_conv";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
  1207
5283
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1208
Goal "([],ys) ~: lex r";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1209
by (simp_tac (simpset() addsimps [lex_conv]) 1);
5283
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1210
qed "Nil_notin_lex";
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1211
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1212
Goal "(xs,[]) ~: lex r";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1213
by (simp_tac (simpset() addsimps [lex_conv]) 1);
5283
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1214
qed "Nil2_notin_lex";
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1215
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1216
AddIffs [Nil_notin_lex,Nil2_notin_lex];
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1217
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1218
Goal "((x#xs,y#ys) : lex r) = \
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1219
\     ((x,y) : r & length xs = length ys | x=y & (xs,ys) : lex r)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1220
by (simp_tac (simpset() addsimps [lex_conv]) 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1221
by (rtac iffI 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1222
 by (blast_tac (claset() addIs [Cons_eq_appendI]) 2);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1223
by (REPEAT(eresolve_tac [conjE, exE] 1));
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1224
by (exhaust_tac "xys" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1225
by (Asm_full_simp_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1226
by (Asm_full_simp_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
  1227
by (Blast_tac 1);
5283
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1228
qed "Cons_in_lex";
0027ddfbc831 More lemmas about lex.
nipkow
parents: 5281
diff changeset
  1229
AddIffs [Cons_in_lex];