src/HOL/List.ML
author nipkow
Wed, 12 Feb 1997 18:53:59 +0100
changeset 2608 450c9b682a92
parent 2512 0231e4f467f2
child 2739 5481b1c73d84
permissions -rw-r--r--
New class "order" and accompanying changes. In particular reflexivity of <= is now one rewrite rule.
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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     9
open List;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1936
diff changeset
    11
AddIffs list.distinct;
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1936
diff changeset
    12
AddIffs list.inject;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    13
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
bind_thm("Cons_inject", (hd list.inject) RS iffD1 RS conjE);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
goal List.thy "!x. xs ~= x#xs";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
by (list.induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
    18
by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    19
qed_spec_mp "not_Cons_self";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
    20
Addsimps [not_Cons_self];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
goal List.thy "(xs ~= []) = (? y ys. xs = y#ys)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    23
by (list.induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
    24
by (Simp_tac 1);
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
    25
by (Asm_simp_tac 1);
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
    26
by (REPEAT(resolve_tac [exI,refl,conjI] 1));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    27
qed "neq_Nil_conv";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    28
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    29
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    30
(** list_case **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    31
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    32
goal List.thy
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    33
 "P(list_case a f xs) = ((xs=[] --> P(a)) & \
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    34
\                         (!y ys. xs=y#ys --> P(f y ys)))";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    35
by (list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    36
by (ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    37
by (Fast_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    38
qed "expand_list_case";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    39
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    40
val prems = goal List.thy "[| P([]); !!x xs. P(x#xs) |] ==> P(xs)";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    41
by(list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    42
by(REPEAT(resolve_tac prems 1));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    43
qed "list_cases";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    44
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    45
goal List.thy  "(xs=[] --> P([])) & (!y ys. xs=y#ys --> P(y#ys)) --> P(xs)";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    46
by (list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    47
by (Fast_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    48
by (Fast_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    49
bind_thm("list_eq_cases",
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    50
  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
    51
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    52
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    53
(** @ - append **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    54
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    55
goal List.thy "(xs@ys)@zs = xs@(ys@zs)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    56
by (list.induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
    57
by (ALLGOALS Asm_simp_tac);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
qed "append_assoc";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
    59
Addsimps [append_assoc];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    60
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    61
goal List.thy "xs @ [] = xs";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    62
by (list.induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
    63
by (ALLGOALS Asm_simp_tac);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
qed "append_Nil2";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
    65
Addsimps [append_Nil2];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    66
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    67
goal List.thy "(xs@ys = []) = (xs=[] & ys=[])";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    68
by (list.induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
    69
by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    70
qed "append_is_Nil_conv";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    71
AddIffs [append_is_Nil_conv];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    72
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    73
goal List.thy "([] = xs@ys) = (xs=[] & ys=[])";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    74
by (list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    75
by (ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    76
by(Fast_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    77
qed "Nil_is_append_conv";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    78
AddIffs [Nil_is_append_conv];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    79
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    80
goal List.thy "(xs @ ys = xs @ zs) = (ys=zs)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    81
by (list.induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
    82
by (ALLGOALS Asm_simp_tac);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    83
qed "same_append_eq";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    84
AddIffs [same_append_eq];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    85
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    86
goal List.thy "!ys. (xs @ [x] = ys @ [y]) = (xs = ys & x = y)"; 
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    87
by(list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    88
 br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    89
 by(list.induct_tac "ys" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    90
  by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    91
br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    92
by(list.induct_tac "ys" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    93
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    94
qed_spec_mp "append1_eq_conv";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    95
AddIffs [append1_eq_conv];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    96
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    97
goal List.thy "xs ~= [] --> hd xs # tl xs = xs";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    98
by(list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    99
by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   100
qed_spec_mp "hd_Cons_tl";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   101
Addsimps [hd_Cons_tl];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   102
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   103
goal List.thy "hd(xs@ys) = (if xs=[] then hd ys else hd xs)";
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   104
by (list.induct_tac "xs" 1);
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   105
by (ALLGOALS Asm_simp_tac);
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   106
qed "hd_append";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   107
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   108
goal List.thy "tl(xs@ys) = (case xs of [] => tl(ys) | z#zs => zs@ys)";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   109
by(simp_tac (!simpset setloop(split_tac[expand_list_case])) 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   110
qed "tl_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   111
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   112
(** map **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   113
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   114
goal List.thy
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   115
  "(!x. x : set_of_list xs --> f x = g x) --> map f xs = map g xs";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   116
by(list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   117
by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   118
bind_thm("map_ext", impI RS (allI RS (result() RS mp)));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   119
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   120
goal List.thy "map (%x.x) = (%xs.xs)";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   121
by (rtac ext 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   122
by (list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   123
by (ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   124
qed "map_ident";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   125
Addsimps[map_ident];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   126
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   127
goal List.thy "map f (xs@ys) = map f xs @ map f ys";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   128
by (list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   129
by (ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   130
qed "map_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   131
Addsimps[map_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   132
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   133
goalw List.thy [o_def] "map (f o g) xs = map f (map g xs)";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   134
by (list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   135
by (ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   136
qed "map_compose";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   137
Addsimps[map_compose];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   138
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   139
goal List.thy "rev(map f xs) = map f (rev xs)";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   140
by (list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   141
by (ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   142
qed "rev_map";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   143
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   144
(** rev **)
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   145
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   146
goal List.thy "rev(xs@ys) = rev(ys) @ rev(xs)";
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   147
by (list.induct_tac "xs" 1);
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   148
by (ALLGOALS Asm_simp_tac);
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   149
qed "rev_append";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   150
Addsimps[rev_append];
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   151
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   152
goal List.thy "rev(rev l) = l";
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   153
by (list.induct_tac "l" 1);
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   154
by (ALLGOALS Asm_simp_tac);
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   155
qed "rev_rev_ident";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   156
Addsimps[rev_rev_ident];
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   157
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   158
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   159
(** mem **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   160
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   161
goal List.thy "x mem (xs@ys) = (x mem xs | x mem ys)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   162
by (list.induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
   163
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if]))));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   164
qed "mem_append";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   165
Addsimps[mem_append];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   166
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   167
goal List.thy "x mem [x:xs.P(x)] = (x mem xs & P(x))";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   168
by (list.induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
   169
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if]))));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   170
qed "mem_filter";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   171
Addsimps[mem_filter];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   172
1908
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1812
diff changeset
   173
(** set_of_list **)
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   174
1908
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1812
diff changeset
   175
goal thy "set_of_list (xs@ys) = (set_of_list xs Un set_of_list ys)";
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   176
by (list.induct_tac "xs" 1);
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   177
by (ALLGOALS Asm_simp_tac);
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   178
by (Fast_tac 1);
1908
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1812
diff changeset
   179
qed "set_of_list_append";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   180
Addsimps[set_of_list_append];
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   181
1908
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1812
diff changeset
   182
goal thy "(x mem xs) = (x: set_of_list xs)";
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   183
by (list.induct_tac "xs" 1);
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   184
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if]))));
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   185
by (Fast_tac 1);
1908
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1812
diff changeset
   186
qed "set_of_list_mem_eq";
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   187
1936
979e8b4f5fa5 Proved set_of_list_subset_Cons
paulson
parents: 1908
diff changeset
   188
goal List.thy "set_of_list l <= set_of_list (x#l)";
979e8b4f5fa5 Proved set_of_list_subset_Cons
paulson
parents: 1908
diff changeset
   189
by (Simp_tac 1);
979e8b4f5fa5 Proved set_of_list_subset_Cons
paulson
parents: 1908
diff changeset
   190
by (Fast_tac 1);
979e8b4f5fa5 Proved set_of_list_subset_Cons
paulson
parents: 1908
diff changeset
   191
qed "set_of_list_subset_Cons";
979e8b4f5fa5 Proved set_of_list_subset_Cons
paulson
parents: 1908
diff changeset
   192
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   193
goal List.thy "(set_of_list xs = {}) = (xs = [])";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   194
by(list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   195
by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   196
qed "set_of_list_empty";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   197
Addsimps [set_of_list_empty];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   198
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   199
goal List.thy "set_of_list(rev xs) = set_of_list(xs)";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   200
by(list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   201
by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   202
by(Fast_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   203
qed "set_of_list_rev";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   204
Addsimps [set_of_list_rev];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   205
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   206
goal List.thy "set_of_list(map f xs) = f``(set_of_list xs)";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   207
by(list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   208
by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   209
qed "set_of_list_map";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   210
Addsimps [set_of_list_map];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   211
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   212
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   213
(** list_all **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   214
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   215
goal List.thy "list_all (%x.True) xs = True";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   216
by (list.induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
   217
by (ALLGOALS Asm_simp_tac);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   218
qed "list_all_True";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   219
Addsimps [list_all_True];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   220
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   221
goal List.thy "list_all p (xs@ys) = (list_all p xs & list_all p ys)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   222
by (list.induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
   223
by (ALLGOALS Asm_simp_tac);
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   224
qed "list_all_append";
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   225
Addsimps [list_all_append];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   226
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   227
goal List.thy "list_all P xs = (!x. x mem xs --> P(x))";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   228
by (list.induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
   229
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if]))));
1760
6f41a494f3b1 Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents: 1552
diff changeset
   230
by (Fast_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   231
qed "list_all_mem_conv";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   232
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   233
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   234
(** filter **)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   235
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   236
goal List.thy "[x:xs@ys . P] = [x:xs . P] @ [y:ys . P]";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   237
by(list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   238
 by(ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if]))));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   239
qed "filter_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   240
Addsimps [filter_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   241
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   242
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   243
(** concat **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   244
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   245
goal List.thy  "concat(xs@ys) = concat(xs)@concat(ys)";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   246
by (list.induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
   247
by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   248
qed"concat_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   249
Addsimps [concat_append];
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   250
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   251
goal List.thy "rev(concat ls) = concat (map rev (rev ls))";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   252
by (list.induct_tac "ls" 1);
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   253
by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   254
qed "rev_concat";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   255
962
136308504cd9 Added a few thms to nat_ss and list_ss
nipkow
parents: 923
diff changeset
   256
(** length **)
136308504cd9 Added a few thms to nat_ss and list_ss
nipkow
parents: 923
diff changeset
   257
136308504cd9 Added a few thms to nat_ss and list_ss
nipkow
parents: 923
diff changeset
   258
goal List.thy "length(xs@ys) = length(xs)+length(ys)";
136308504cd9 Added a few thms to nat_ss and list_ss
nipkow
parents: 923
diff changeset
   259
by (list.induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
   260
by (ALLGOALS Asm_simp_tac);
962
136308504cd9 Added a few thms to nat_ss and list_ss
nipkow
parents: 923
diff changeset
   261
qed"length_append";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   262
Addsimps [length_append];
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   263
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   264
goal List.thy "length (map f l) = length l";
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   265
by (list.induct_tac "l" 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   266
by (ALLGOALS Simp_tac);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   267
qed "length_map";
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   268
Addsimps [length_map];
962
136308504cd9 Added a few thms to nat_ss and list_ss
nipkow
parents: 923
diff changeset
   269
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   270
goal List.thy "length(rev xs) = length(xs)";
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   271
by (list.induct_tac "xs" 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   272
by (ALLGOALS Asm_simp_tac);
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   273
qed "length_rev";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   274
Addsimps [length_rev];
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   275
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   276
goal List.thy "(length xs = 0) = (xs = [])";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   277
by(list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   278
by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   279
qed "length_0_conv";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   280
AddIffs [length_0_conv];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   281
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   282
goal List.thy "(0 < length xs) = (xs ~= [])";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   283
by(list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   284
by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   285
qed "length_greater_0_conv";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   286
AddIffs [length_greater_0_conv];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   287
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   288
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   289
(** nth **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   290
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   291
val [nth_0,nth_Suc] = nat_recs nth_def; 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   292
store_thm("nth_0",nth_0);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   293
store_thm("nth_Suc",nth_Suc);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   294
Addsimps [nth_0,nth_Suc];
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   295
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   296
goal List.thy
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   297
  "!xs. nth n (xs@ys) = \
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   298
\          (if n < length xs then nth n xs else nth (n - length xs) ys)";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   299
by(nat_ind_tac "n" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   300
 by(Asm_simp_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   301
 br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   302
 by(res_inst_tac [("xs","xs")]list_cases 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   303
  by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   304
br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   305
by(res_inst_tac [("xs","xs")]list_cases 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   306
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   307
qed_spec_mp "nth_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   308
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   309
goal List.thy "!n. n < length xs --> nth n (map f xs) = f (nth n xs)";
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   310
by (list.induct_tac "xs" 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   311
(* case [] *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   312
by (Asm_full_simp_tac 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   313
(* case x#xl *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   314
by (rtac allI 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   315
by (nat_ind_tac "n" 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   316
by (ALLGOALS Asm_full_simp_tac);
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   317
qed_spec_mp "nth_map";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   318
Addsimps [nth_map];
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   319
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   320
goal List.thy "!n. n < length xs --> list_all P xs --> P(nth n xs)";
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   321
by (list.induct_tac "xs" 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   322
(* case [] *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   323
by (Simp_tac 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   324
(* case x#xl *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   325
by (rtac allI 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   326
by (nat_ind_tac "n" 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   327
by (ALLGOALS Asm_full_simp_tac);
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   328
qed_spec_mp "list_all_nth";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   329
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   330
goal List.thy "!n. n < length xs --> (nth n xs) mem xs";
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   331
by (list.induct_tac "xs" 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   332
(* case [] *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   333
by (Simp_tac 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   334
(* case x#xl *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   335
by (rtac allI 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   336
by (nat_ind_tac "n" 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   337
(* case 0 *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   338
by (Asm_full_simp_tac 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   339
(* case Suc x *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   340
by (asm_full_simp_tac (!simpset setloop (split_tac [expand_if])) 1);
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   341
qed_spec_mp "nth_mem";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   342
Addsimps [nth_mem];
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   343
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   344
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   345
(** take  & drop **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   346
section "take & drop";
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   347
1419
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1327
diff changeset
   348
goal thy "take 0 xs = []";
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1327
diff changeset
   349
by (list.induct_tac "xs" 1);
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1327
diff changeset
   350
by (ALLGOALS Asm_simp_tac);
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   351
qed "take_0";
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   352
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   353
goal thy "drop 0 xs = xs";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   354
by (list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   355
by (ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   356
qed "drop_0";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   357
1419
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1327
diff changeset
   358
goal thy "take (Suc n) (x#xs) = x # take n xs";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1485
diff changeset
   359
by (Simp_tac 1);
1419
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1327
diff changeset
   360
qed "take_Suc_Cons";
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   361
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   362
goal thy "drop (Suc n) (x#xs) = drop n xs";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   363
by (Simp_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   364
qed "drop_Suc_Cons";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   365
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   366
Delsimps [take_Cons,drop_Cons];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   367
Addsimps [take_0,take_Suc_Cons,drop_0,drop_Suc_Cons];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   368
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   369
goal List.thy "!xs. length(take n xs) = min (length xs) n";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   370
by(nat_ind_tac "n" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   371
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   372
br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   373
by(res_inst_tac [("xs","xs")]list_cases 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   374
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   375
qed_spec_mp "length_take";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   376
Addsimps [length_take];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   377
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   378
goal List.thy "!xs. length(drop n xs) = (length xs - n)";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   379
by(nat_ind_tac "n" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   380
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   381
br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   382
by(res_inst_tac [("xs","xs")]list_cases 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   383
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   384
qed_spec_mp "length_drop";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   385
Addsimps [length_drop];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   386
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   387
goal List.thy "!xs. length xs <= n --> take n xs = xs";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   388
by(nat_ind_tac "n" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   389
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   390
br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   391
by(res_inst_tac [("xs","xs")]list_cases 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   392
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   393
qed_spec_mp "take_all";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   394
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   395
goal List.thy "!xs. length xs <= n --> drop n xs = []";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   396
by(nat_ind_tac "n" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   397
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   398
br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   399
by(res_inst_tac [("xs","xs")]list_cases 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   400
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   401
qed_spec_mp "drop_all";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   402
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   403
goal List.thy 
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   404
  "!xs. take n (xs @ ys) = (take n xs @ take (n - length xs) ys)";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   405
by(nat_ind_tac "n" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   406
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   407
br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   408
by(res_inst_tac [("xs","xs")]list_cases 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   409
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   410
qed_spec_mp "take_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   411
Addsimps [take_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   412
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   413
goal List.thy "!xs. drop n (xs@ys) = drop n xs @ drop (n - length xs) ys"; 
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   414
by(nat_ind_tac "n" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   415
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   416
br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   417
by(res_inst_tac [("xs","xs")]list_cases 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   418
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   419
qed_spec_mp "drop_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   420
Addsimps [drop_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   421
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   422
goal List.thy "!xs n. take n (take m xs) = take (min n m) xs"; 
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   423
by(nat_ind_tac "m" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   424
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   425
br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   426
by(res_inst_tac [("xs","xs")]list_cases 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   427
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   428
br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   429
by(res_inst_tac [("n","n")]natE 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   430
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   431
qed_spec_mp "take_take";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   432
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   433
goal List.thy "!xs. drop n (drop m xs) = drop (n + m) xs"; 
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   434
by(nat_ind_tac "m" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   435
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   436
br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   437
by(res_inst_tac [("xs","xs")]list_cases 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   438
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   439
qed_spec_mp "drop_drop";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   440
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   441
goal List.thy "!xs n. take n (drop m xs) = drop m (take (n + m) xs)"; 
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   442
by(nat_ind_tac "m" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   443
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   444
br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   445
by(res_inst_tac [("xs","xs")]list_cases 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   446
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   447
qed_spec_mp "take_drop";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   448
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   449
goal List.thy "!xs. take n (map f xs) = map f (take n xs)"; 
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   450
by(nat_ind_tac "n" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   451
by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   452
br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   453
by(res_inst_tac [("xs","xs")]list_cases 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   454
by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   455
qed_spec_mp "take_map"; 
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   456
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   457
goal List.thy "!xs. drop n (map f xs) = map f (drop n xs)"; 
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   458
by(nat_ind_tac "n" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   459
by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   460
br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   461
by(res_inst_tac [("xs","xs")]list_cases 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   462
by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   463
qed_spec_mp "drop_map";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   464
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   465
goal List.thy
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   466
  "!n i. i < n --> nth i (take n xs) = nth i xs";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   467
by(list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   468
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   469
by(strip_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   470
by(res_inst_tac [("n","n")] natE 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   471
 by(Fast_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   472
by(res_inst_tac [("n","i")] natE 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   473
by(ALLGOALS (hyp_subst_tac THEN' Asm_full_simp_tac));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   474
qed_spec_mp "nth_take";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   475
Addsimps [nth_take];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   476
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   477
goal List.thy
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   478
  "!xs i. n + i < length xs --> nth i (drop n xs) = nth (n + i) xs";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   479
by(nat_ind_tac "n" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   480
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   481
br allI 1;
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   482
by(res_inst_tac [("xs","xs")]list_cases 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   483
 by(ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   484
qed_spec_mp "nth_drop";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   485
Addsimps [nth_drop];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   486
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   487
(** takeWhile & dropWhile **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   488
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   489
goal List.thy
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   490
  "x:set_of_list xs & ~P(x) --> takeWhile P (xs @ ys) = takeWhile P xs";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   491
by(list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   492
 by(Simp_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   493
by(asm_full_simp_tac (!simpset setloop (split_tac[expand_if])) 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   494
by(Fast_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   495
bind_thm("takeWhile_append1", conjI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   496
Addsimps [takeWhile_append1];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   497
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   498
goal List.thy
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   499
  "(!x:set_of_list xs.P(x)) --> takeWhile P (xs @ ys) = xs @ takeWhile P ys";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   500
by(list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   501
 by(Simp_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   502
by(asm_full_simp_tac (!simpset setloop (split_tac[expand_if])) 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   503
bind_thm("takeWhile_append2", ballI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   504
Addsimps [takeWhile_append2];
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   505
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   506
goal List.thy
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   507
  "x:set_of_list xs & ~P(x) --> dropWhile P (xs @ ys) = (dropWhile P xs)@ys";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   508
by(list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   509
 by(Simp_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   510
by(asm_full_simp_tac (!simpset setloop (split_tac[expand_if])) 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   511
by(Fast_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   512
bind_thm("dropWhile_append1", conjI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   513
Addsimps [dropWhile_append1];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   514
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   515
goal List.thy
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   516
  "(!x:set_of_list xs.P(x)) --> dropWhile P (xs @ ys) = dropWhile P ys";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   517
by(list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   518
 by(Simp_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   519
by(asm_full_simp_tac (!simpset setloop (split_tac[expand_if])) 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   520
bind_thm("dropWhile_append2", ballI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   521
Addsimps [dropWhile_append2];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   522
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   523
goal List.thy "x:set_of_list(takeWhile P xs) --> x:set_of_list xs & P x";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   524
by(list.induct_tac "xs" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   525
 by(Simp_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   526
by(asm_full_simp_tac (!simpset setloop (split_tac[expand_if])) 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   527
qed_spec_mp"set_of_list_take_whileD";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   528