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