List.ML
author clasohm
Thu, 08 Dec 1994 12:50:38 +0100
changeset 199 ad45e477926c
parent 196 61620d959717
child 202 c533bc92e882
permissions -rw-r--r--
replaced store_thm by bind_thm
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
199
ad45e477926c replaced store_thm by bind_thm
clasohm
parents: 196
diff changeset
    13
bind_thm("Cons_neq_Nil", standard (Cons_not_Nil RS notE));
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
199
ad45e477926c replaced store_thm by bind_thm
clasohm
parents: 196
diff changeset
    16
bind_thm("Cons_inject", standard ((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,
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    37
   list_all_Nil, list_all_Cons,
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    38
   filter_Nil, filter_Cons];
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    39
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    40
13
61b65ffb4186 added append "@"
nipkow
parents: 5
diff changeset
    41
(** @ - append **)
61b65ffb4186 added append "@"
nipkow
parents: 5
diff changeset
    42
61b65ffb4186 added append "@"
nipkow
parents: 5
diff changeset
    43
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
    44
by (list.induct_tac "xs" 1);
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    45
by(ALLGOALS(asm_simp_tac list_ss));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    46
qed "append_assoc";
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    47
40
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
    48
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
    49
by (list.induct_tac "xs" 1);
40
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
    50
by(ALLGOALS(asm_simp_tac list_ss));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    51
qed "append_Nil2";
40
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
    52
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    53
(** mem **)
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    54
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    55
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
    56
by (list.induct_tac "xs" 1);
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    57
by(ALLGOALS(asm_simp_tac (list_ss setloop (split_tac [expand_if]))));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    58
qed "mem_append";
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    59
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    60
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
    61
by (list.induct_tac "xs" 1);
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    62
by(ALLGOALS(asm_simp_tac (list_ss setloop (split_tac [expand_if]))));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    63
qed "mem_filter";
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    64
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    65
(** list_all **)
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    66
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    67
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
    68
by (list.induct_tac "xs" 1);
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    69
by(ALLGOALS(asm_simp_tac list_ss));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    70
qed "list_all_True";
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    71
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    72
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
    73
by (list.induct_tac "xs" 1);
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    74
by(ALLGOALS(asm_simp_tac list_ss));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    75
qed "list_all_conj";
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    76
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    77
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
    78
by (list.induct_tac "xs" 1);
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    79
by(ALLGOALS(asm_simp_tac (list_ss setloop (split_tac [expand_if]))));
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    80
by(fast_tac HOL_cs 1);
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    81
qed "list_all_mem_conv";
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    82
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
    83
40
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
    84
(** list_case **)
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
    85
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
    86
goal List.thy
113
0b9b8eb74101 HOL/List: rotated arguments of List_case, list_case
lcp
parents: 83
diff changeset
    87
 "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
    88
\                         (!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
    89
by (list.induct_tac "xs" 1);
44
64eda8afe2b4 deleted duplicate rewrite rules
nipkow
parents: 40
diff changeset
    90
by(ALLGOALS(asm_simp_tac list_ss));
40
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
    91
by(fast_tac HOL_cs 1);
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
    92
qed "expand_list_case";
40
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
    93
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    94
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    95
(** Additional mapping lemmas **)
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    96
7949f97df77a Initial revision
clasohm
parents:
diff changeset
    97
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
    98
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
    99
by (ALLGOALS (asm_simp_tac list_ss));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
   100
qed "map_ident";
0
7949f97df77a Initial revision
clasohm
parents:
diff changeset
   101
83
e886a3010f8b HOL/List/map_append,map_compose: new
lcp
parents: 48
diff changeset
   102
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
   103
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
   104
by (ALLGOALS (asm_simp_tac list_ss));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
   105
qed "map_append";
83
e886a3010f8b HOL/List/map_append,map_compose: new
lcp
parents: 48
diff changeset
   106
e886a3010f8b HOL/List/map_append,map_compose: new
lcp
parents: 48
diff changeset
   107
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
   108
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
   109
by (ALLGOALS (asm_simp_tac list_ss));
171
16c4ea954511 replaced 'val ... = result()' by 'qed "..."'
clasohm
parents: 128
diff changeset
   110
qed "map_compose";
83
e886a3010f8b HOL/List/map_append,map_compose: new
lcp
parents: 48
diff changeset
   111
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
   112
val list_ss = list_ss addsimps
196
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
   113
  [not_Cons_self, append_assoc, append_Nil2, mem_append, mem_filter,
61620d959717 Moved the old List to ex and replaced it by one defined via
nipkow
parents: 171
diff changeset
   114
   map_ident, map_append, map_compose,
34
7d437bed7765 added conj_assoc to HOL_ss
nipkow
parents: 20
diff changeset
   115
   list_all_True, list_all_conj];
40
ac7b7003f177 Introduction of various new lemmas and of case_tac.
nipkow
parents: 34
diff changeset
   116