List.ML
author lcp
Thu, 06 Apr 1995 11:49:42 +0200
changeset 246 0f9230a24164
parent 234 80f45ad991cb
permissions -rw-r--r--
Deleted extra space in clos_mk.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
113
0b9b8eb74101 HOL/List: rotated arguments of List_case, list_case
lcp
parents: 83
diff changeset
     1
(*  Title: 	HOL/List
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
     2
    ID:         $Id$
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
     3
    Author: 	Tobias Nipkow
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
     4
    Copyright   1994 TU Muenchen
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
     5
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
     6
List lemmas
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
     7
*)
7949f97df77a Initial revision
clasohm
parents:
diff changeset
     8
7949f97df77a Initial revision
clasohm
parents:
diff changeset
     9
open List;
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    10
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    11
val [Nil_not_Cons,Cons_not_Nil] = list.distinct;
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    12
202
c533bc92e882 added bind_thm for theorems made by "standard ..."
clasohm
parents: 199
diff changeset
    13
bind_thm("Cons_neq_Nil", Cons_not_Nil RS notE);
199
ad45e477926c replaced store_thm by bind_thm
clasohm
parents: 196
diff changeset
    14
bind_thm("Nil_neq_Cons", sym RS Cons_neq_Nil);
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    15
202
c533bc92e882 added bind_thm for theorems made by "standard ..."
clasohm
parents: 199
diff changeset
    16
bind_thm("Cons_inject", (hd list.inject) RS iffD1 RS conjE);
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    17
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    18
val list_ss = HOL_ss addsimps list.simps;
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    19
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    20
goal List.thy "!x. xs ~= x#xs";
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    21
by (list.induct_tac "xs" 1);
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    22
by (ALLGOALS (asm_simp_tac list_ss));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    23
qed "not_Cons_self";
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    24
48
21291189b51e changed "." to "$" and Cons to infix "#" to eliminate ambiguity
clasohm
parents: 44
diff changeset
    25
goal List.thy "(xs ~= []) = (? y ys. xs = y#ys)";
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    26
by (list.induct_tac "xs" 1);
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    27
by(simp_tac list_ss 1);
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    28
by(asm_simp_tac list_ss 1);
40
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
    29
by(REPEAT(resolve_tac [exI,refl,conjI] 1));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    30
qed "neq_Nil_conv";
40
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
    31
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    32
val list_ss = arith_ss addsimps list.simps @
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    33
  [null_Nil, null_Cons, hd_Cons, tl_Cons, ttl_Nil, ttl_Cons,
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    34
   mem_Nil, mem_Cons,
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    35
   append_Nil, append_Cons,
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    36
   map_Nil, map_Cons,
212
2740293cc458 Added "flat"
nipkow
parents: 210
diff changeset
    37
   flat_Nil, flat_Cons,
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    38
   list_all_Nil, list_all_Cons,
233
f02021cf7cec Added a few thms to nat_ss and list_ss
nipkow
parents: 212
diff changeset
    39
   filter_Nil, filter_Cons,
234
80f45ad991cb Added recursion equations for foldl to list_ss.
nipkow
parents: 233
diff changeset
    40
   foldl_Nil, foldl_Cons,
233
f02021cf7cec Added a few thms to nat_ss and list_ss
nipkow
parents: 212
diff changeset
    41
   length_Nil, length_Cons];
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    42
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    43
13
61b65ffb4186 added append "@"
nipkow
parents: 5
diff changeset
    44
(** @ - append **)
61b65ffb4186 added append "@"
nipkow
parents: 5
diff changeset
    45
61b65ffb4186 added append "@"
nipkow
parents: 5
diff changeset
    46
goal List.thy "(xs@ys)@zs = xs@(ys@zs)";
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    47
by (list.induct_tac "xs" 1);
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    48
by(ALLGOALS(asm_simp_tac list_ss));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    49
qed "append_assoc";
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    50
40
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
    51
goal List.thy "xs @ [] = xs";
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    52
by (list.induct_tac "xs" 1);
40
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
    53
by(ALLGOALS(asm_simp_tac list_ss));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    54
qed "append_Nil2";
40
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
    55
203
d465d3be2744 Added "nth" and some lemmas.
nipkow
parents: 202
diff changeset
    56
goal List.thy "(xs@ys = []) = (xs=[] & ys=[])";
d465d3be2744 Added "nth" and some lemmas.
nipkow
parents: 202
diff changeset
    57
by (list.induct_tac "xs" 1);
d465d3be2744 Added "nth" and some lemmas.
nipkow
parents: 202
diff changeset
    58
by(ALLGOALS(asm_simp_tac list_ss));
d465d3be2744 Added "nth" and some lemmas.
nipkow
parents: 202
diff changeset
    59
qed "append_is_Nil";
d465d3be2744 Added "nth" and some lemmas.
nipkow
parents: 202
diff changeset
    60
210
1a3d3b5b5d15 More rewrite rules.
nipkow
parents: 203
diff changeset
    61
goal List.thy "(xs @ ys = xs @ zs) = (ys=zs)";
1a3d3b5b5d15 More rewrite rules.
nipkow
parents: 203
diff changeset
    62
by (list.induct_tac "xs" 1);
1a3d3b5b5d15 More rewrite rules.
nipkow
parents: 203
diff changeset
    63
by(ALLGOALS(asm_simp_tac list_ss));
1a3d3b5b5d15 More rewrite rules.
nipkow
parents: 203
diff changeset
    64
qed "same_append_eq";
1a3d3b5b5d15 More rewrite rules.
nipkow
parents: 203
diff changeset
    65
1a3d3b5b5d15 More rewrite rules.
nipkow
parents: 203
diff changeset
    66
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    67
(** mem **)
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    68
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    69
goal List.thy "x mem (xs@ys) = (x mem xs | x mem ys)";
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    70
by (list.induct_tac "xs" 1);
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    71
by(ALLGOALS(asm_simp_tac (list_ss setloop (split_tac [expand_if]))));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    72
qed "mem_append";
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    73
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    74
goal List.thy "x mem [x:xs.P(x)] = (x mem xs & P(x))";
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    75
by (list.induct_tac "xs" 1);
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    76
by(ALLGOALS(asm_simp_tac (list_ss setloop (split_tac [expand_if]))));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    77
qed "mem_filter";
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    78
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    79
(** list_all **)
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    80
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    81
goal List.thy "(Alls x:xs.True) = True";
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    82
by (list.induct_tac "xs" 1);
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    83
by(ALLGOALS(asm_simp_tac list_ss));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    84
qed "list_all_True";
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    85
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    86
goal List.thy "list_all(p,xs@ys) = (list_all(p,xs) & list_all(p,ys))";
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    87
by (list.induct_tac "xs" 1);
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    88
by(ALLGOALS(asm_simp_tac list_ss));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    89
qed "list_all_conj";
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    90
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    91
goal List.thy "(Alls x:xs.P(x)) = (!x. x mem xs --> P(x))";
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
    92
by (list.induct_tac "xs" 1);
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    93
by(ALLGOALS(asm_simp_tac (list_ss setloop (split_tac [expand_if]))));
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    94
by(fast_tac HOL_cs 1);
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    95
qed "list_all_mem_conv";
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    96
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    97
40
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
    98
(** list_case **)
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
    99
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
   100
goal List.thy
113
0b9b8eb74101 HOL/List: rotated arguments of List_case, list_case
lcp
parents: 83
diff changeset
   101
 "P(list_case(a,f,xs)) = ((xs=[] --> P(a)) & \
48
21291189b51e changed "." to "$" and Cons to infix "#" to eliminate ambiguity
clasohm
parents: 44
diff changeset
   102
\                         (!y ys. xs=y#ys --> P(f(y,ys))))";
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
   103
by (list.induct_tac "xs" 1);
44
64eda8afe2b4 deleted duplicate rewrite rules
nipkow
parents: 40
diff changeset
   104
by(ALLGOALS(asm_simp_tac list_ss));
40
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
   105
by(fast_tac HOL_cs 1);
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
   106
qed "expand_list_case";
40
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
   107
210
1a3d3b5b5d15 More rewrite rules.
nipkow
parents: 203
diff changeset
   108
goal List.thy  "(xs=[] --> P([])) & (!y ys. xs=y#ys --> P(y#ys)) --> P(xs)";
1a3d3b5b5d15 More rewrite rules.
nipkow
parents: 203
diff changeset
   109
by(list.induct_tac "xs" 1);
1a3d3b5b5d15 More rewrite rules.
nipkow
parents: 203
diff changeset
   110
by(fast_tac HOL_cs 1);
1a3d3b5b5d15 More rewrite rules.
nipkow
parents: 203
diff changeset
   111
by(fast_tac HOL_cs 1);
1a3d3b5b5d15 More rewrite rules.
nipkow
parents: 203
diff changeset
   112
bind_thm("list_eq_cases",
1a3d3b5b5d15 More rewrite rules.
nipkow
parents: 203
diff changeset
   113
  impI RSN (2,allI RSN (2,allI RSN (2,impI RS (conjI RS (result() RS mp))))));
1a3d3b5b5d15 More rewrite rules.
nipkow
parents: 203
diff changeset
   114
212
2740293cc458 Added "flat"
nipkow
parents: 210
diff changeset
   115
(** flat **)
2740293cc458 Added "flat"
nipkow
parents: 210
diff changeset
   116
2740293cc458 Added "flat"
nipkow
parents: 210
diff changeset
   117
goal List.thy  "flat(xs@ys) = flat(xs)@flat(ys)";
2740293cc458 Added "flat"
nipkow
parents: 210
diff changeset
   118
by (list.induct_tac "xs" 1);
2740293cc458 Added "flat"
nipkow
parents: 210
diff changeset
   119
by(ALLGOALS(asm_simp_tac (list_ss addsimps [append_assoc])));
2740293cc458 Added "flat"
nipkow
parents: 210
diff changeset
   120
qed"flat_append";
2740293cc458 Added "flat"
nipkow
parents: 210
diff changeset
   121
233
f02021cf7cec Added a few thms to nat_ss and list_ss
nipkow
parents: 212
diff changeset
   122
(** length **)
f02021cf7cec Added a few thms to nat_ss and list_ss
nipkow
parents: 212
diff changeset
   123
f02021cf7cec Added a few thms to nat_ss and list_ss
nipkow
parents: 212
diff changeset
   124
goal List.thy "length(xs@ys) = length(xs)+length(ys)";
f02021cf7cec Added a few thms to nat_ss and list_ss
nipkow
parents: 212
diff changeset
   125
by (list.induct_tac "xs" 1);
f02021cf7cec Added a few thms to nat_ss and list_ss
nipkow
parents: 212
diff changeset
   126
by(ALLGOALS(asm_simp_tac list_ss));
f02021cf7cec Added a few thms to nat_ss and list_ss
nipkow
parents: 212
diff changeset
   127
qed"length_append";
f02021cf7cec Added a few thms to nat_ss and list_ss
nipkow
parents: 212
diff changeset
   128
203
d465d3be2744 Added "nth" and some lemmas.
nipkow
parents: 202
diff changeset
   129
(** nth **)
d465d3be2744 Added "nth" and some lemmas.
nipkow
parents: 202
diff changeset
   130
d465d3be2744 Added "nth" and some lemmas.
nipkow
parents: 202
diff changeset
   131
val [nth_0,nth_Suc] = nat_recs nth_def; 
d465d3be2744 Added "nth" and some lemmas.
nipkow
parents: 202
diff changeset
   132
store_thm("nth_0",nth_0);
d465d3be2744 Added "nth" and some lemmas.
nipkow
parents: 202
diff changeset
   133
store_thm("nth_Suc",nth_Suc);
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
   134
7949f97df77a Initial revision
clasohm
parents:
diff changeset
   135
(** Additional mapping lemmas **)
7949f97df77a Initial revision
clasohm
parents:
diff changeset
   136
7949f97df77a Initial revision
clasohm
parents:
diff changeset
   137
goal List.thy "map(%x.x, xs) = xs";
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
   138
by (list.induct_tac "xs" 1);
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
   139
by (ALLGOALS (asm_simp_tac list_ss));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
   140
qed "map_ident";
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
   141
83
e886a3010f8b HOL/List/map_append,map_compose: new
lcp
parents: 48
diff changeset
   142
goal List.thy "map(f, xs@ys) = map(f,xs) @ map(f,ys)";
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
   143
by (list.induct_tac "xs" 1);
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
   144
by (ALLGOALS (asm_simp_tac list_ss));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
   145
qed "map_append";
83
e886a3010f8b HOL/List/map_append,map_compose: new
lcp
parents: 48
diff changeset
   146
e886a3010f8b HOL/List/map_append,map_compose: new
lcp
parents: 48
diff changeset
   147
goalw List.thy [o_def] "map(f o g, xs) = map(f, map(g, xs))";
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
   148
by (list.induct_tac "xs" 1);
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
   149
by (ALLGOALS (asm_simp_tac list_ss));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
   150
qed "map_compose";
83
e886a3010f8b HOL/List/map_append,map_compose: new
lcp
parents: 48
diff changeset
   151
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
   152
val list_ss = list_ss addsimps
210
1a3d3b5b5d15 More rewrite rules.
nipkow
parents: 203
diff changeset
   153
  [not_Cons_self, append_assoc, append_Nil2, append_is_Nil, same_append_eq,
203
d465d3be2744 Added "nth" and some lemmas.
nipkow
parents: 202
diff changeset
   154
   mem_append, mem_filter,
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
   155
   map_ident, map_append, map_compose,
233
f02021cf7cec Added a few thms to nat_ss and list_ss
nipkow
parents: 212
diff changeset
   156
   flat_append, length_append, list_all_True, list_all_conj, nth_0, nth_Suc];
40
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
   157