src/HOL/List.ML
author paulson
Tue, 03 Mar 1998 15:12:25 +0100
changeset 4673 59d80bacee62
parent 4647 42af8ae6e2c1
child 4681 a331c1f5a23e
permissions -rw-r--r--
New theorems; tidied
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";
3574
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
    13
bind_thm("not_Cons_self2",not_Cons_self RS not_sym);
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
    14
Addsimps [not_Cons_self,not_Cons_self2];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
    16
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
    17
by (induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
    18
by (Simp_tac 1);
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
    19
by (Asm_simp_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
qed "neq_Nil_conv";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
3468
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    23
(** "lists": the list-forming operator over sets **)
3342
ec3b55fcb165 New operator "lists" for formalizing sets of lists
paulson
parents: 3292
diff changeset
    24
ec3b55fcb165 New operator "lists" for formalizing sets of lists
paulson
parents: 3292
diff changeset
    25
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
    26
by (rtac lfp_mono 1);
ec3b55fcb165 New operator "lists" for formalizing sets of lists
paulson
parents: 3292
diff changeset
    27
by (REPEAT (ares_tac basic_monos 1));
ec3b55fcb165 New operator "lists" for formalizing sets of lists
paulson
parents: 3292
diff changeset
    28
qed "lists_mono";
3196
c522bc46aea7 Added pred_list for TFL
paulson
parents: 3040
diff changeset
    29
3468
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    30
val listsE = lists.mk_cases list.simps  "x#l : lists A";
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    31
AddSEs [listsE];
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    32
AddSIs lists.intrs;
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    33
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    34
goal thy "!!l. l: lists A ==> l: lists B --> l: lists (A Int B)";
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    35
by (etac lists.induct 1);
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    36
by (ALLGOALS Blast_tac);
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    37
qed_spec_mp "lists_IntI";
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    38
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    39
goal thy "lists (A Int B) = lists A Int lists B";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
    40
by (rtac (mono_Int RS equalityI) 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
    41
by (simp_tac (simpset() addsimps [mono_def, lists_mono]) 1);
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
    42
by (blast_tac (claset() addSIs [lists_IntI]) 1);
3468
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    43
qed "lists_Int_eq";
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    44
Addsimps [lists_Int_eq];
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    45
3196
c522bc46aea7 Added pred_list for TFL
paulson
parents: 3040
diff changeset
    46
4643
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
    47
(**  Case analysis **)
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
    48
section "Case analysis";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    49
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
    50
val prems = goal thy "[| P([]); !!x xs. P(x#xs) |] ==> P(xs)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
    51
by (induct_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
    52
by (REPEAT(resolve_tac prems 1));
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    53
qed "list_cases";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    54
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
    55
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
    56
by (induct_tac "xs" 1);
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2739
diff changeset
    57
by (Blast_tac 1);
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2739
diff changeset
    58
by (Blast_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    59
bind_thm("list_eq_cases",
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    60
  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
    61
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    62
(** length **)
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    63
(* needs to come before "@" because of thm append_eq_append_conv *)
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    64
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    65
section "length";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    66
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    67
goal thy "length(xs@ys) = length(xs)+length(ys)";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    68
by (induct_tac "xs" 1);
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    69
by (ALLGOALS Asm_simp_tac);
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    70
qed"length_append";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    71
Addsimps [length_append];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    72
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    73
goal thy "length (map f l) = length l";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    74
by (induct_tac "l" 1);
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    75
by (ALLGOALS Simp_tac);
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    76
qed "length_map";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    77
Addsimps [length_map];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    78
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    79
goal thy "length(rev xs) = length(xs)";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    80
by (induct_tac "xs" 1);
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    81
by (ALLGOALS Asm_simp_tac);
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    82
qed "length_rev";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    83
Addsimps [length_rev];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    84
4628
0c7e97836e3c *** empty log message ***
wenzelm
parents: 4605
diff changeset
    85
goal List.thy "!!xs. xs ~= [] ==> length(tl xs) = (length xs) - 1";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
    86
by (exhaust_tac "xs" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
    87
by (ALLGOALS Asm_full_simp_tac);
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
    88
qed "length_tl";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
    89
Addsimps [length_tl];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
    90
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    91
goal thy "(length xs = 0) = (xs = [])";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    92
by (induct_tac "xs" 1);
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    93
by (ALLGOALS Asm_simp_tac);
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    94
qed "length_0_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    95
AddIffs [length_0_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    96
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    97
goal thy "(0 = length xs) = (xs = [])";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    98
by (induct_tac "xs" 1);
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    99
by (ALLGOALS Asm_simp_tac);
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   100
qed "zero_length_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   101
AddIffs [zero_length_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   102
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   103
goal thy "(0 < length xs) = (xs ~= [])";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   104
by (induct_tac "xs" 1);
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   105
by (ALLGOALS Asm_simp_tac);
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   106
qed "length_greater_0_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   107
AddIffs [length_greater_0_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   108
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   109
(** @ - append **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   110
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   111
section "@ - append";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   112
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   113
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
   114
by (induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
   115
by (ALLGOALS Asm_simp_tac);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   116
qed "append_assoc";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   117
Addsimps [append_assoc];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   118
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   119
goal thy "xs @ [] = xs";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   120
by (induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
   121
by (ALLGOALS Asm_simp_tac);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   122
qed "append_Nil2";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   123
Addsimps [append_Nil2];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   124
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   125
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
   126
by (induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
   127
by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   128
qed "append_is_Nil_conv";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   129
AddIffs [append_is_Nil_conv];
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 "([] = xs@ys) = (xs=[] & 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);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   134
by (Blast_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   135
qed "Nil_is_append_conv";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   136
AddIffs [Nil_is_append_conv];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   137
3574
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   138
goal thy "(xs @ ys = xs) = (ys=[])";
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   139
by (induct_tac "xs" 1);
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   140
by (ALLGOALS Asm_simp_tac);
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   141
qed "append_self_conv";
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   142
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   143
goal thy "(xs = xs @ ys) = (ys=[])";
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   144
by (induct_tac "xs" 1);
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   145
by (ALLGOALS Asm_simp_tac);
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   146
by (Blast_tac 1);
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   147
qed "self_append_conv";
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   148
AddIffs [append_self_conv,self_append_conv];
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   149
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   150
goal thy "!ys. length xs = length ys | length us = length vs \
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   151
\              --> (xs@us = ys@vs) = (xs=ys & us=vs)";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   152
by (induct_tac "xs" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   153
 by (rtac allI 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   154
 by (exhaust_tac "ys" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   155
  by (Asm_simp_tac 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   156
 by (fast_tac (claset() addIs [less_add_Suc2] addss simpset()
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   157
                      addEs [less_not_refl2 RSN (2,rev_notE)]) 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   158
by (rtac allI 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   159
by (exhaust_tac "ys" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   160
 by (fast_tac (claset() addIs [less_add_Suc2] addss simpset()
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   161
                      addEs [(less_not_refl2 RS not_sym) RSN (2,rev_notE)]) 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   162
by (Asm_simp_tac 1);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   163
qed_spec_mp "append_eq_append_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   164
Addsimps [append_eq_append_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   165
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   166
goal thy "(xs @ ys = xs @ zs) = (ys=zs)";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   167
by (Simp_tac 1);
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   168
qed "same_append_eq";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   169
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   170
goal thy "(xs @ [x] = ys @ [y]) = (xs = ys & x = y)"; 
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   171
by (Simp_tac 1);
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   172
qed "append1_eq_conv";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   173
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   174
goal thy "(ys @ xs = zs @ xs) = (ys=zs)";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   175
by (Simp_tac 1);
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   176
qed "append_same_eq";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   177
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   178
AddSIs
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   179
 [same_append_eq RS iffD2, append1_eq_conv RS iffD2, append_same_eq RS iffD2];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   180
AddSDs
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   181
 [same_append_eq RS iffD1, append1_eq_conv RS iffD1, append_same_eq RS iffD1];
3571
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   182
4647
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   183
goal thy "(xs @ ys = ys) = (xs=[])";
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   184
by(cut_inst_tac [("zs","[]")] append_same_eq 1);
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   185
by(Asm_full_simp_tac 1);
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   186
qed "append_self_conv2";
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   187
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   188
goal thy "(ys = xs @ ys) = (xs=[])";
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   189
by(simp_tac (simpset() addsimps
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   190
     [simplify (simpset()) (read_instantiate[("ys","[]")]append_same_eq)]) 1);
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   191
by(Blast_tac 1);
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   192
qed "self_append_conv2";
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   193
AddIffs [append_self_conv2,self_append_conv2];
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   194
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   195
goal thy "xs ~= [] --> hd xs # tl xs = xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   196
by (induct_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   197
by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   198
qed_spec_mp "hd_Cons_tl";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   199
Addsimps [hd_Cons_tl];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   200
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   201
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
   202
by (induct_tac "xs" 1);
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   203
by (ALLGOALS Asm_simp_tac);
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   204
qed "hd_append";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   205
3571
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   206
goal thy "!!xs. xs ~= [] ==> hd(xs @ ys) = hd xs";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   207
by (asm_simp_tac (simpset() addsimps [hd_append]
4069
d6d06a03a2e9 expand_list_case -> split_list_case
nipkow
parents: 4032
diff changeset
   208
                           addsplits [split_list_case]) 1);
3571
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   209
qed "hd_append2";
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   210
Addsimps [hd_append2];
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   211
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   212
goal thy "tl(xs@ys) = (case xs of [] => tl(ys) | z#zs => zs@ys)";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   213
by (simp_tac (simpset() addsplits [split_list_case]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   214
qed "tl_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   215
3571
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   216
goal thy "!!xs. xs ~= [] ==> tl(xs @ ys) = (tl xs) @ ys";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   217
by (asm_simp_tac (simpset() addsimps [tl_append]
4069
d6d06a03a2e9 expand_list_case -> split_list_case
nipkow
parents: 4032
diff changeset
   218
                           addsplits [split_list_case]) 1);
3571
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   219
qed "tl_append2";
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   220
Addsimps [tl_append2];
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   221
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   222
(** map **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   223
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   224
section "map";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   225
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   226
goal thy
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3457
diff changeset
   227
  "(!x. x : set xs --> f x = g x) --> map f xs = map g xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   228
by (induct_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   229
by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   230
bind_thm("map_ext", impI RS (allI RS (result() RS mp)));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   231
3842
b55686a7b22c fixed dots;
wenzelm
parents: 3708
diff changeset
   232
goal thy "map (%x. x) = (%xs. xs)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   233
by (rtac ext 1);
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   234
by (induct_tac "xs" 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   235
by (ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   236
qed "map_ident";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   237
Addsimps[map_ident];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   238
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   239
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
   240
by (induct_tac "xs" 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   241
by (ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   242
qed "map_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   243
Addsimps[map_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   244
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   245
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
   246
by (induct_tac "xs" 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   247
by (ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   248
qed "map_compose";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   249
Addsimps[map_compose];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   250
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   251
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
   252
by (induct_tac "xs" 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   253
by (ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   254
qed "rev_map";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   255
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   256
(* a congruence rule for map: *)
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   257
goal thy
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   258
 "(xs=ys) --> (!x. x : set ys --> f x = g x) --> map f xs = map g ys";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   259
by (rtac impI 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   260
by (hyp_subst_tac 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   261
by (induct_tac "ys" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   262
by (ALLGOALS Asm_simp_tac);
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   263
val lemma = result();
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   264
bind_thm("map_cong",impI RSN (2,allI RSN (2,lemma RS mp RS mp)));
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   265
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   266
goal List.thy "(map f xs = []) = (xs = [])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   267
by (induct_tac "xs" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   268
by (ALLGOALS Asm_simp_tac);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   269
qed "map_is_Nil_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   270
AddIffs [map_is_Nil_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   271
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   272
goal List.thy "([] = map f xs) = (xs = [])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   273
by (induct_tac "xs" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   274
by (ALLGOALS Asm_simp_tac);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   275
qed "Nil_is_map_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   276
AddIffs [Nil_is_map_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   277
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   278
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   279
(** rev **)
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   280
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   281
section "rev";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   282
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   283
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
   284
by (induct_tac "xs" 1);
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   285
by (ALLGOALS Asm_simp_tac);
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   286
qed "rev_append";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   287
Addsimps[rev_append];
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   288
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   289
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
   290
by (induct_tac "l" 1);
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   291
by (ALLGOALS Asm_simp_tac);
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   292
qed "rev_rev_ident";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   293
Addsimps[rev_rev_ident];
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   294
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   295
goal thy "(rev xs = []) = (xs = [])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   296
by (induct_tac "xs" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   297
by (ALLGOALS Asm_simp_tac);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   298
qed "rev_is_Nil_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   299
AddIffs [rev_is_Nil_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   300
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   301
goal thy "([] = rev xs) = (xs = [])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   302
by (induct_tac "xs" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   303
by (ALLGOALS Asm_simp_tac);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   304
qed "Nil_is_rev_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   305
AddIffs [Nil_is_rev_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   306
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   307
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   308
(** mem **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   309
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   310
section "mem";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   311
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   312
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
   313
by (induct_tac "xs" 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   314
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if])));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   315
qed "mem_append";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   316
Addsimps[mem_append];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   317
3842
b55686a7b22c fixed dots;
wenzelm
parents: 3708
diff changeset
   318
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
   319
by (induct_tac "xs" 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   320
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if])));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   321
qed "mem_filter";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   322
Addsimps[mem_filter];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   323
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3457
diff changeset
   324
(** set **)
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   325
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   326
section "set";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   327
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3457
diff changeset
   328
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
   329
by (induct_tac "xs" 1);
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   330
by (ALLGOALS Asm_simp_tac);
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   331
qed "set_append";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   332
Addsimps[set_append];
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   333
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3457
diff changeset
   334
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
   335
by (induct_tac "xs" 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   336
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if])));
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2739
diff changeset
   337
by (Blast_tac 1);
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   338
qed "set_mem_eq";
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   339
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3457
diff changeset
   340
goal thy "set l <= set (x#l)";
1936
979e8b4f5fa5 Proved set_of_list_subset_Cons
paulson
parents: 1908
diff changeset
   341
by (Simp_tac 1);
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2739
diff changeset
   342
by (Blast_tac 1);
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   343
qed "set_subset_Cons";
1936
979e8b4f5fa5 Proved set_of_list_subset_Cons
paulson
parents: 1908
diff changeset
   344
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3457
diff changeset
   345
goal thy "(set xs = {}) = (xs = [])";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   346
by (induct_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   347
by (ALLGOALS Asm_simp_tac);
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   348
qed "set_empty";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   349
Addsimps [set_empty];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   350
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3457
diff changeset
   351
goal thy "set(rev xs) = set(xs)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   352
by (induct_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   353
by (ALLGOALS Asm_simp_tac);
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   354
qed "set_rev";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   355
Addsimps [set_rev];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   356
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3457
diff changeset
   357
goal thy "set(map f xs) = f``(set xs)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   358
by (induct_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   359
by (ALLGOALS Asm_simp_tac);
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   360
qed "set_map";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   361
Addsimps [set_map];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   362
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   363
goal thy "set(map f xs) = f``(set xs)";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   364
by (induct_tac "xs" 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   365
by (ALLGOALS Asm_simp_tac);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   366
qed "set_map";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   367
Addsimps [set_map];
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   368
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   369
goal thy "(x : set(filter P xs)) = (x : set xs & P x)";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   370
by (induct_tac "xs" 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   371
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if])));
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   372
by(Blast_tac 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   373
qed "in_set_filter";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   374
Addsimps [in_set_filter];
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   375
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   376
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   377
(** list_all **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   378
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   379
section "list_all";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   380
3842
b55686a7b22c fixed dots;
wenzelm
parents: 3708
diff changeset
   381
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
   382
by (induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
   383
by (ALLGOALS Asm_simp_tac);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   384
qed "list_all_True";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   385
Addsimps [list_all_True];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   386
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   387
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
   388
by (induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
   389
by (ALLGOALS Asm_simp_tac);
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   390
qed "list_all_append";
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   391
Addsimps [list_all_append];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   392
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   393
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
   394
by (induct_tac "xs" 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   395
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if])));
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2739
diff changeset
   396
by (Blast_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   397
qed "list_all_mem_conv";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   398
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   399
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   400
(** filter **)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   401
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   402
section "filter";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   403
3383
7707cb7a5054 Corrected statement of filter_append; added filter_size
paulson
parents: 3342
diff changeset
   404
goal thy "filter P (xs@ys) = filter P xs @ filter P ys";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   405
by (induct_tac "xs" 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   406
 by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if])));
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   407
qed "filter_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   408
Addsimps [filter_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   409
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   410
goal thy "filter (%x. True) xs = xs";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   411
by (induct_tac "xs" 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   412
by (ALLGOALS Asm_simp_tac);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   413
qed "filter_True";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   414
Addsimps [filter_True];
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   415
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   416
goal thy "filter (%x. False) xs = []";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   417
by (induct_tac "xs" 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   418
by (ALLGOALS Asm_simp_tac);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   419
qed "filter_False";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   420
Addsimps [filter_False];
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   421
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   422
goal thy "length (filter P xs) <= length xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   423
by (induct_tac "xs" 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   424
 by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if])));
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   425
qed "length_filter";
3383
7707cb7a5054 Corrected statement of filter_append; added filter_size
paulson
parents: 3342
diff changeset
   426
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   427
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   428
(** concat **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   429
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   430
section "concat";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   431
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   432
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
   433
by (induct_tac "xs" 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1202
diff changeset
   434
by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   435
qed"concat_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   436
Addsimps [concat_append];
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   437
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   438
goal thy "(concat xss = []) = (!xs:set xss. xs=[])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   439
by (induct_tac "xss" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   440
by (ALLGOALS Asm_simp_tac);
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   441
qed "concat_eq_Nil_conv";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   442
AddIffs [concat_eq_Nil_conv];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   443
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   444
goal thy "([] = concat xss) = (!xs:set xss. xs=[])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   445
by (induct_tac "xss" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   446
by (ALLGOALS Asm_simp_tac);
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   447
qed "Nil_eq_concat_conv";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   448
AddIffs [Nil_eq_concat_conv];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   449
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   450
goal thy  "set(concat xs) = Union(set `` set xs)";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   451
by (induct_tac "xs" 1);
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   452
by (ALLGOALS Asm_simp_tac);
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   453
qed"set_concat";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   454
Addsimps [set_concat];
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   455
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   456
goal thy "map f (concat xs) = concat (map (map f) xs)"; 
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   457
by (induct_tac "xs" 1);
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   458
by (ALLGOALS Asm_simp_tac);
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   459
qed "map_concat";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   460
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   461
goal thy "filter p (concat xs) = concat (map (filter p) xs)"; 
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   462
by (induct_tac "xs" 1);
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   463
by (ALLGOALS Asm_simp_tac);
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   464
qed"filter_concat"; 
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   465
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   466
goal thy "rev(concat xs) = concat (map rev (rev xs))";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   467
by (induct_tac "xs" 1);
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   468
by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   469
qed "rev_concat";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   470
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   471
(** nth **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   472
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   473
section "nth";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   474
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   475
goal thy
4502
337c073de95e nth -> !
nipkow
parents: 4423
diff changeset
   476
  "!xs. (xs@ys)!n = (if n < length xs then xs!n else ys!(n - length xs))";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   477
by (nat_ind_tac "n" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   478
 by (Asm_simp_tac 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   479
 by (rtac allI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   480
 by (exhaust_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   481
  by (ALLGOALS Asm_simp_tac);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   482
by (rtac allI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   483
by (exhaust_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   484
 by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   485
qed_spec_mp "nth_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   486
4502
337c073de95e nth -> !
nipkow
parents: 4423
diff changeset
   487
goal thy "!n. n < length xs --> (map f xs)!n = f(xs!n)";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   488
by (induct_tac "xs" 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   489
(* case [] *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   490
by (Asm_full_simp_tac 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   491
(* case x#xl *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   492
by (rtac allI 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   493
by (nat_ind_tac "n" 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   494
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
   495
qed_spec_mp "nth_map";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   496
Addsimps [nth_map];
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   497
4502
337c073de95e nth -> !
nipkow
parents: 4423
diff changeset
   498
goal thy "!n. n < length xs --> list_all P xs --> P(xs!n)";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   499
by (induct_tac "xs" 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   500
(* case [] *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   501
by (Simp_tac 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   502
(* case x#xl *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   503
by (rtac allI 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   504
by (nat_ind_tac "n" 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   505
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
   506
qed_spec_mp "list_all_nth";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   507
4502
337c073de95e nth -> !
nipkow
parents: 4423
diff changeset
   508
goal thy "!n. n < length xs --> xs!n mem xs";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   509
by (induct_tac "xs" 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   510
(* case [] *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   511
by (Simp_tac 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   512
(* case x#xl *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   513
by (rtac allI 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   514
by (nat_ind_tac "n" 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   515
(* case 0 *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   516
by (Asm_full_simp_tac 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   517
(* case Suc x *)
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   518
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1);
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   519
qed_spec_mp "nth_mem";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   520
Addsimps [nth_mem];
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   521
4643
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   522
(**  More case analysis and induction **)
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   523
section "More case analysis and induction";
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   524
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   525
val [prem] = goal thy
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   526
  "(!!xs. (!ys. length ys < length xs --> P ys) ==> P xs) ==> P(xs)";
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   527
by(rtac measure_induct 1 THEN etac prem 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   528
qed "length_induct";
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   529
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   530
goal thy "xs ~= [] --> (? ys y. xs = ys@[y])";
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   531
by(res_inst_tac [("xs","xs")] length_induct 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   532
by(Clarify_tac 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   533
bd (neq_Nil_conv RS iffD1) 1;
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   534
by(Clarify_tac 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   535
by(rename_tac "ys" 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   536
by(case_tac "ys = []" 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   537
 by(res_inst_tac [("x","[]")] exI 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   538
 by(Asm_full_simp_tac 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   539
by(eres_inst_tac [("x","ys")] allE 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   540
by(Asm_full_simp_tac 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   541
by(REPEAT(etac exE 1));
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   542
by(rename_tac "zs z" 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   543
by(hyp_subst_tac 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   544
by(res_inst_tac [("x","y#zs")] exI 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   545
by(Simp_tac 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   546
qed_spec_mp "neq_Nil_snocD";
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   547
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   548
val prems = goal thy
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   549
  "[| xs=[] ==> P []; !!ys y. xs=ys@[y] ==> P(ys@[y]) |] ==> P xs";
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   550
by(case_tac "xs = []" 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   551
 by(Asm_simp_tac 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   552
 bes prems 1;
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   553
bd neq_Nil_snocD 1;
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   554
by(REPEAT(etac exE 1));
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   555
by(Asm_simp_tac 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   556
bes prems 1;
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   557
qed "snoc_eq_cases";
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   558
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   559
val prems = goal thy
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   560
  "[| P []; !!x xs. P xs ==> P(xs@[x]) |] ==> P(xs)";
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   561
by(res_inst_tac [("xs","xs")] length_induct 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   562
by(res_inst_tac [("xs","xs")] snoc_eq_cases 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   563
 brs prems 1;
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   564
by(fast_tac (claset() addIs prems addss simpset()) 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   565
qed "snoc_induct";
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   566
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   567
(** last & butlast **)
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   568
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   569
goal thy "last(xs@[x]) = x";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   570
by (induct_tac "xs" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   571
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if])));
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   572
qed "last_snoc";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   573
Addsimps [last_snoc];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   574
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   575
goal thy "butlast(xs@[x]) = xs";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   576
by (induct_tac "xs" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   577
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if])));
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   578
qed "butlast_snoc";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   579
Addsimps [butlast_snoc];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   580
4643
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   581
goal thy "length(butlast xs) = length xs - 1";
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   582
by(res_inst_tac [("xs","xs")] snoc_induct 1);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   583
by(ALLGOALS Asm_simp_tac);
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   584
qed "length_butlast";
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   585
Addsimps [length_butlast];
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   586
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   587
goal thy
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   588
  "!ys. butlast (xs@ys) = (if ys=[] then butlast xs else xs@butlast ys)";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   589
by (induct_tac "xs" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   590
by (ALLGOALS(asm_simp_tac (simpset() addsplits [expand_if])));
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   591
qed_spec_mp "butlast_append";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   592
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   593
goal thy "x:set(butlast xs) --> x:set xs";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   594
by (induct_tac "xs" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   595
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if])));
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   596
qed_spec_mp "in_set_butlastD";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   597
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   598
goal thy "!!xs. x:set(butlast xs) ==> x:set(butlast(xs@ys))";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   599
by (asm_simp_tac (simpset() addsimps [butlast_append]
3919
c036caebfc75 setloop split_tac -> addsplits
nipkow
parents: 3902
diff changeset
   600
                          addsplits [expand_if]) 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   601
by (blast_tac (claset() addDs [in_set_butlastD]) 1);
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   602
qed "in_set_butlast_appendI1";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   603
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   604
goal thy "!!xs. x:set(butlast ys) ==> x:set(butlast(xs@ys))";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   605
by (asm_simp_tac (simpset() addsimps [butlast_append]
3919
c036caebfc75 setloop split_tac -> addsplits
nipkow
parents: 3902
diff changeset
   606
                          addsplits [expand_if]) 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   607
by (Clarify_tac 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   608
by (Full_simp_tac 1);
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   609
qed "in_set_butlast_appendI2";
3902
265a5d8ab88f Removed comment.
nipkow
parents: 3896
diff changeset
   610
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   611
(** take  & drop **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   612
section "take & drop";
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   613
1419
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1327
diff changeset
   614
goal thy "take 0 xs = []";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   615
by (induct_tac "xs" 1);
1419
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1327
diff changeset
   616
by (ALLGOALS Asm_simp_tac);
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   617
qed "take_0";
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   618
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   619
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
   620
by (induct_tac "xs" 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   621
by (ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   622
qed "drop_0";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   623
1419
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1327
diff changeset
   624
goal thy "take (Suc n) (x#xs) = x # take n xs";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1485
diff changeset
   625
by (Simp_tac 1);
1419
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1327
diff changeset
   626
qed "take_Suc_Cons";
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   627
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   628
goal thy "drop (Suc n) (x#xs) = drop n xs";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   629
by (Simp_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   630
qed "drop_Suc_Cons";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   631
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   632
Delsimps [take_Cons,drop_Cons];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   633
Addsimps [take_0,take_Suc_Cons,drop_0,drop_Suc_Cons];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   634
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   635
goal thy "!xs. length(take n xs) = min (length xs) n";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   636
by (nat_ind_tac "n" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   637
 by (ALLGOALS Asm_simp_tac);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   638
by (rtac allI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   639
by (exhaust_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   640
 by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   641
qed_spec_mp "length_take";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   642
Addsimps [length_take];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   643
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   644
goal thy "!xs. length(drop n xs) = (length xs - n)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   645
by (nat_ind_tac "n" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   646
 by (ALLGOALS Asm_simp_tac);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   647
by (rtac allI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   648
by (exhaust_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   649
 by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   650
qed_spec_mp "length_drop";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   651
Addsimps [length_drop];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   652
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   653
goal thy "!xs. length xs <= n --> take n xs = xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   654
by (nat_ind_tac "n" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   655
 by (ALLGOALS Asm_simp_tac);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   656
by (rtac allI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   657
by (exhaust_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   658
 by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   659
qed_spec_mp "take_all";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   660
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   661
goal thy "!xs. length xs <= n --> drop n xs = []";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   662
by (nat_ind_tac "n" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   663
 by (ALLGOALS Asm_simp_tac);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   664
by (rtac allI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   665
by (exhaust_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   666
 by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   667
qed_spec_mp "drop_all";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   668
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   669
goal thy 
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   670
  "!xs. take n (xs @ ys) = (take n xs @ take (n - length xs) ys)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   671
by (nat_ind_tac "n" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   672
 by (ALLGOALS Asm_simp_tac);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   673
by (rtac allI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   674
by (exhaust_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   675
 by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   676
qed_spec_mp "take_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   677
Addsimps [take_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   678
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   679
goal thy "!xs. drop n (xs@ys) = drop n xs @ drop (n - length xs) ys"; 
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   680
by (nat_ind_tac "n" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   681
 by (ALLGOALS Asm_simp_tac);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   682
by (rtac allI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   683
by (exhaust_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   684
 by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   685
qed_spec_mp "drop_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   686
Addsimps [drop_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   687
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   688
goal thy "!xs n. take n (take m xs) = take (min n m) xs"; 
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   689
by (nat_ind_tac "m" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   690
 by (ALLGOALS Asm_simp_tac);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   691
by (rtac allI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   692
by (exhaust_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   693
 by (ALLGOALS Asm_simp_tac);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   694
by (rtac allI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   695
by (exhaust_tac "n" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   696
 by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   697
qed_spec_mp "take_take";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   698
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   699
goal thy "!xs. drop n (drop m xs) = drop (n + m) xs"; 
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   700
by (nat_ind_tac "m" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   701
 by (ALLGOALS Asm_simp_tac);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   702
by (rtac allI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   703
by (exhaust_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   704
 by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   705
qed_spec_mp "drop_drop";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   706
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   707
goal thy "!xs n. take n (drop m xs) = drop m (take (n + m) xs)"; 
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   708
by (nat_ind_tac "m" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   709
 by (ALLGOALS Asm_simp_tac);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   710
by (rtac allI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   711
by (exhaust_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   712
 by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   713
qed_spec_mp "take_drop";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   714
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   715
goal thy "!xs. take n (map f xs) = map f (take n xs)"; 
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   716
by (nat_ind_tac "n" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   717
by (ALLGOALS Asm_simp_tac);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   718
by (rtac allI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   719
by (exhaust_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   720
by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   721
qed_spec_mp "take_map"; 
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   722
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   723
goal thy "!xs. drop n (map f xs) = map f (drop n xs)"; 
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   724
by (nat_ind_tac "n" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   725
by (ALLGOALS Asm_simp_tac);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   726
by (rtac allI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   727
by (exhaust_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   728
by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   729
qed_spec_mp "drop_map";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   730
4502
337c073de95e nth -> !
nipkow
parents: 4423
diff changeset
   731
goal thy "!n i. i < n --> (take n xs)!i = xs!i";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   732
by (induct_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   733
 by (ALLGOALS Asm_simp_tac);
3708
56facaebf3e3 Changed some proofs to use Clarify_tac
paulson
parents: 3647
diff changeset
   734
by (Clarify_tac 1);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   735
by (exhaust_tac "n" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   736
 by (Blast_tac 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   737
by (exhaust_tac "i" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   738
by (ALLGOALS Asm_full_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   739
qed_spec_mp "nth_take";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   740
Addsimps [nth_take];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   741
4502
337c073de95e nth -> !
nipkow
parents: 4423
diff changeset
   742
goal thy  "!xs i. n + i <= length xs --> (drop n xs)!i = xs!(n+i)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   743
by (nat_ind_tac "n" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   744
 by (ALLGOALS Asm_simp_tac);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   745
by (rtac allI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   746
by (exhaust_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   747
 by (ALLGOALS Asm_simp_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   748
qed_spec_mp "nth_drop";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   749
Addsimps [nth_drop];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   750
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   751
(** takeWhile & dropWhile **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   752
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   753
section "takeWhile & dropWhile";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   754
3586
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   755
goal thy "takeWhile P xs @ dropWhile P xs = xs";
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   756
by (induct_tac "xs" 1);
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   757
 by (Simp_tac 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   758
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1);
3586
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   759
qed "takeWhile_dropWhile_id";
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   760
Addsimps [takeWhile_dropWhile_id];
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   761
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   762
goal thy  "x:set xs & ~P(x) --> takeWhile P (xs @ ys) = takeWhile P xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   763
by (induct_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   764
 by (Simp_tac 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   765
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   766
by (Blast_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   767
bind_thm("takeWhile_append1", conjI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   768
Addsimps [takeWhile_append1];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   769
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   770
goal thy
3842
b55686a7b22c fixed dots;
wenzelm
parents: 3708
diff changeset
   771
  "(!x:set xs. P(x)) --> takeWhile P (xs @ ys) = xs @ takeWhile P ys";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   772
by (induct_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   773
 by (Simp_tac 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   774
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   775
bind_thm("takeWhile_append2", ballI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   776
Addsimps [takeWhile_append2];
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   777
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   778
goal thy
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3457
diff changeset
   779
  "x:set xs & ~P(x) --> dropWhile P (xs @ ys) = (dropWhile P xs)@ys";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   780
by (induct_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   781
 by (Simp_tac 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   782
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   783
by (Blast_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   784
bind_thm("dropWhile_append1", conjI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   785
Addsimps [dropWhile_append1];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   786
3011
a3b73ba44a11 Tidied up.
nipkow
parents: 2891
diff changeset
   787
goal thy
3842
b55686a7b22c fixed dots;
wenzelm
parents: 3708
diff changeset
   788
  "(!x:set xs. P(x)) --> dropWhile P (xs @ ys) = dropWhile P ys";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   789
by (induct_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   790
 by (Simp_tac 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   791
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   792
bind_thm("dropWhile_append2", ballI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   793
Addsimps [dropWhile_append2];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   794
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3457
diff changeset
   795
goal thy "x:set(takeWhile P xs) --> x:set xs & P x";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   796
by (induct_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   797
 by (Simp_tac 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   798
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1);
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   799
qed_spec_mp"set_take_whileD";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   800
4132
daff3c9987cc added zip and nodup
oheimb
parents: 4089
diff changeset
   801
qed_goal "zip_Nil_Nil"   thy "zip []     []     = []" (K [Simp_tac 1]);
daff3c9987cc added zip and nodup
oheimb
parents: 4089
diff changeset
   802
qed_goal "zip_Cons_Cons" thy "zip (x#xs) (y#ys) = (x,y)#zip xs ys" 
daff3c9987cc added zip and nodup
oheimb
parents: 4089
diff changeset
   803
						      (K [Simp_tac 1]);
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   804
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   805
(** nodups & remdups **)
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   806
section "nodups & remdups";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   807
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   808
goal thy "set(remdups xs) = set xs";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   809
by (induct_tac "xs" 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   810
 by (Simp_tac 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   811
by (asm_full_simp_tac (simpset() addsimps [insert_absorb]
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   812
                                 addsplits [expand_if]) 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   813
qed "set_remdups";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   814
Addsimps [set_remdups];
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   815
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   816
goal thy "nodups(remdups xs)";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   817
by (induct_tac "xs" 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   818
 by (Simp_tac 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   819
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   820
qed "nodups_remdups";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   821
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   822
goal thy "nodups xs --> nodups (filter P xs)";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   823
by (induct_tac "xs" 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   824
 by (Simp_tac 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   825
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   826
qed_spec_mp "nodups_filter";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   827
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   828
(** replicate **)
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   829
section "replicate";
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   830
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   831
goal thy "set(replicate (Suc n) x) = {x}";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   832
by (induct_tac "n" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   833
by (ALLGOALS Asm_full_simp_tac);
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   834
val lemma = result();
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   835
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   836
goal thy "!!n. n ~= 0 ==> set(replicate n x) = {x}";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   837
by (fast_tac (claset() addSDs [not0_implies_Suc] addSIs [lemma]) 1);
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   838
qed "set_replicate";
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   839
Addsimps [set_replicate];