src/HOL/List.ML
author nipkow
Sat, 08 Aug 1998 14:00:56 +0200
changeset 5281 f4d16517b360
parent 5278 a903b66822e2
child 5283 0027ddfbc831
permissions -rw-r--r--
List now contains some lexicographic orderings.
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
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
     9
Goal "!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);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
    11
by (Auto_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
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    16
Goal "(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);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
    18
by (Auto_tac);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
qed "neq_Nil_conv";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
4830
bd73675adbed Added a few lemmas.
nipkow
parents: 4686
diff changeset
    21
(* Induction over the length of a list: *)
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    22
val [prem] = Goal
4911
6195e4468c54 Removed duplicate list_length_induct
nipkow
parents: 4830
diff changeset
    23
  "(!!xs. (!ys. length ys < length xs --> P ys) ==> P xs) ==> P(xs)";
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
    24
by (rtac measure_induct 1 THEN etac prem 1);
4911
6195e4468c54 Removed duplicate list_length_induct
nipkow
parents: 4830
diff changeset
    25
qed "length_induct";
6195e4468c54 Removed duplicate list_length_induct
nipkow
parents: 4830
diff changeset
    26
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    27
3468
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    28
(** "lists": the list-forming operator over sets **)
3342
ec3b55fcb165 New operator "lists" for formalizing sets of lists
paulson
parents: 3292
diff changeset
    29
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
    30
Goalw lists.defs "A<=B ==> lists A <= lists B";
3342
ec3b55fcb165 New operator "lists" for formalizing sets of lists
paulson
parents: 3292
diff changeset
    31
by (rtac lfp_mono 1);
ec3b55fcb165 New operator "lists" for formalizing sets of lists
paulson
parents: 3292
diff changeset
    32
by (REPEAT (ares_tac basic_monos 1));
ec3b55fcb165 New operator "lists" for formalizing sets of lists
paulson
parents: 3292
diff changeset
    33
qed "lists_mono";
3196
c522bc46aea7 Added pred_list for TFL
paulson
parents: 3040
diff changeset
    34
3468
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    35
val listsE = lists.mk_cases list.simps  "x#l : lists A";
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    36
AddSEs [listsE];
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    37
AddSIs lists.intrs;
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    38
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
    39
Goal "l: lists A ==> l: lists B --> l: lists (A Int B)";
3468
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    40
by (etac lists.induct 1);
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    41
by (ALLGOALS Blast_tac);
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    42
qed_spec_mp "lists_IntI";
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    43
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    44
Goal "lists (A Int B) = lists A Int lists B";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
    45
by (rtac (mono_Int RS equalityI) 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
    46
by (simp_tac (simpset() addsimps [mono_def, lists_mono]) 1);
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
    47
by (blast_tac (claset() addSIs [lists_IntI]) 1);
3468
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    48
qed "lists_Int_eq";
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    49
Addsimps [lists_Int_eq];
1f972dc8eafb New laws for the "lists" operator
paulson
parents: 3467
diff changeset
    50
3196
c522bc46aea7 Added pred_list for TFL
paulson
parents: 3040
diff changeset
    51
4643
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
    52
(**  Case analysis **)
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
    53
section "Case analysis";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    54
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    55
val prems = Goal "[| P([]); !!x xs. P(x#xs) |] ==> P(xs)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
    56
by (induct_tac "xs" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
    57
by (REPEAT(resolve_tac prems 1));
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    58
qed "list_cases";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    59
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    60
Goal "(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
    61
by (induct_tac "xs" 1);
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2739
diff changeset
    62
by (Blast_tac 1);
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2739
diff changeset
    63
by (Blast_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    64
bind_thm("list_eq_cases",
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    65
  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
    66
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    67
(** length **)
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    68
(* needs to come before "@" because of thm append_eq_append_conv *)
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    69
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    70
section "length";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    71
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    72
Goal "length(xs@ys) = length(xs)+length(ys)";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    73
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
    74
by (Auto_tac);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    75
qed"length_append";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    76
Addsimps [length_append];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    77
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
    78
Goal "length (map f xs) = length xs";
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
    79
by (induct_tac "xs" 1);
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
    80
by (Auto_tac);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    81
qed "length_map";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    82
Addsimps [length_map];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    83
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    84
Goal "length(rev xs) = length(xs)";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    85
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
    86
by (Auto_tac);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    87
qed "length_rev";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    88
Addsimps [length_rev];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    89
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
    90
Goal "xs ~= [] ==> length(tl xs) = (length xs) - 1";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
    91
by (exhaust_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
    92
by (Auto_tac);
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
    93
qed "length_tl";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
    94
Addsimps [length_tl];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
    95
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
    96
Goal "(length xs = 0) = (xs = [])";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    97
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
    98
by (Auto_tac);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
    99
qed "length_0_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   100
AddIffs [length_0_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   101
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   102
Goal "(0 = length xs) = (xs = [])";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   103
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   104
by (Auto_tac);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   105
qed "zero_length_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   106
AddIffs [zero_length_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   107
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   108
Goal "(0 < length xs) = (xs ~= [])";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   109
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   110
by (Auto_tac);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   111
qed "length_greater_0_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   112
AddIffs [length_greater_0_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   113
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   114
(** @ - append **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   115
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   116
section "@ - append";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   117
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   118
Goal "(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
   119
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   120
by (Auto_tac);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   121
qed "append_assoc";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   122
Addsimps [append_assoc];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   123
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   124
Goal "xs @ [] = xs";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   125
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   126
by (Auto_tac);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   127
qed "append_Nil2";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   128
Addsimps [append_Nil2];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   129
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   130
Goal "(xs@ys = []) = (xs=[] & ys=[])";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   131
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   132
by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   133
qed "append_is_Nil_conv";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   134
AddIffs [append_is_Nil_conv];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   135
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   136
Goal "([] = xs@ys) = (xs=[] & ys=[])";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   137
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   138
by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   139
qed "Nil_is_append_conv";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   140
AddIffs [Nil_is_append_conv];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   141
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   142
Goal "(xs @ ys = xs) = (ys=[])";
3574
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   143
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   144
by (Auto_tac);
3574
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   145
qed "append_self_conv";
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   146
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   147
Goal "(xs = xs @ ys) = (ys=[])";
3574
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   148
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   149
by (Auto_tac);
3574
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   150
qed "self_append_conv";
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   151
AddIffs [append_self_conv,self_append_conv];
5995ab73d790 Added a few lemmas.
nipkow
parents: 3571
diff changeset
   152
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   153
Goal "!ys. length xs = length ys | length us = length vs \
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   154
\              --> (xs@us = ys@vs) = (xs=ys & us=vs)";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   155
by (induct_tac "xs" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   156
 by (rtac allI 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   157
 by (exhaust_tac "ys" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   158
  by (Asm_simp_tac 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   159
 by (fast_tac (claset() addIs [less_add_Suc2] addss simpset()
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   160
                      addEs [less_not_refl2 RSN (2,rev_notE)]) 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   161
by (rtac allI 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   162
by (exhaust_tac "ys" 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   163
 by (fast_tac (claset() addIs [less_add_Suc2] addss simpset()
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   164
                      addEs [(less_not_refl2 RS not_sym) RSN (2,rev_notE)]) 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   165
by (Asm_simp_tac 1);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   166
qed_spec_mp "append_eq_append_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   167
Addsimps [append_eq_append_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   168
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   169
Goal "(xs @ ys = xs @ zs) = (ys=zs)";
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   170
by (Simp_tac 1);
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   171
qed "same_append_eq";
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   172
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   173
Goal "(xs @ [x] = ys @ [y]) = (xs = ys & x = y)"; 
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   174
by (Simp_tac 1);
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   175
qed "append1_eq_conv";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   176
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   177
Goal "(ys @ xs = zs @ xs) = (ys=zs)";
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   178
by (Simp_tac 1);
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   179
qed "append_same_eq";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   180
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   181
AddSIs
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   182
 [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
   183
AddSDs
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   184
 [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
   185
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   186
Goal "(xs @ ys = ys) = (xs=[])";
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   187
by (cut_inst_tac [("zs","[]")] append_same_eq 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   188
by (Auto_tac);
4647
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   189
qed "append_self_conv2";
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   190
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   191
Goal "(ys = xs @ ys) = (xs=[])";
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   192
by (simp_tac (simpset() addsimps
4647
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   193
     [simplify (simpset()) (read_instantiate[("ys","[]")]append_same_eq)]) 1);
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   194
by (Blast_tac 1);
4647
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   195
qed "self_append_conv2";
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   196
AddIffs [append_self_conv2,self_append_conv2];
42af8ae6e2c1 Added some lemmas.
nipkow
parents: 4643
diff changeset
   197
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   198
Goal "xs ~= [] --> hd xs # tl xs = xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   199
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   200
by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   201
qed_spec_mp "hd_Cons_tl";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   202
Addsimps [hd_Cons_tl];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   203
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   204
Goal "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
   205
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   206
by (Auto_tac);
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   207
qed "hd_append";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   208
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
   209
Goal "xs ~= [] ==> hd(xs @ ys) = hd xs";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   210
by (asm_simp_tac (simpset() addsimps [hd_append]
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   211
                           addsplits [list.split]) 1);
3571
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   212
qed "hd_append2";
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   213
Addsimps [hd_append2];
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   214
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   215
Goal "tl(xs@ys) = (case xs of [] => tl(ys) | z#zs => zs@ys)";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   216
by (simp_tac (simpset() addsplits [list.split]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   217
qed "tl_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   218
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
   219
Goal "xs ~= [] ==> tl(xs @ ys) = (tl xs) @ ys";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4069
diff changeset
   220
by (asm_simp_tac (simpset() addsimps [tl_append]
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   221
                           addsplits [list.split]) 1);
3571
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   222
qed "tl_append2";
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   223
Addsimps [tl_append2];
f1c8fa0f0bf9 List.ML: added lemmas by Stefan Merz.
nipkow
parents: 3468
diff changeset
   224
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   225
(* trivial rules for solving @-equations automatically *)
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   226
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   227
Goal "xs = ys ==> xs = [] @ ys";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   228
by(Asm_simp_tac 1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   229
qed "eq_Nil_appendI";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   230
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   231
Goal "[| x#xs1 = ys; xs = xs1 @ zs |] ==> x#xs = ys@zs";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   232
bd sym 1;
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   233
by(Asm_simp_tac 1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   234
qed "Cons_eq_appendI";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   235
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   236
Goal "[| xs@xs1 = zs; ys = xs1 @ us |] ==> xs@ys = zs@us";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   237
bd sym 1;
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   238
by(Asm_simp_tac 1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   239
qed "append_eq_appendI";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   240
4830
bd73675adbed Added a few lemmas.
nipkow
parents: 4686
diff changeset
   241
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   242
(** map **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   243
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   244
section "map";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   245
5278
a903b66822e2 even more tidying of Goal commands
paulson
parents: 5272
diff changeset
   246
Goal "(!x. x : set xs --> f x = g x) --> map f xs = map g xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   247
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   248
by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   249
bind_thm("map_ext", impI RS (allI RS (result() RS mp)));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   250
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   251
Goal "map (%x. x) = (%xs. xs)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   252
by (rtac ext 1);
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   253
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   254
by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   255
qed "map_ident";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   256
Addsimps[map_ident];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   257
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   258
Goal "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
   259
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   260
by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   261
qed "map_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   262
Addsimps[map_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   263
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   264
Goalw [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
   265
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   266
by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   267
qed "map_compose";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   268
Addsimps[map_compose];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   269
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   270
Goal "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
   271
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   272
by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   273
qed "rev_map";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   274
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   275
(* a congruence rule for map: *)
5278
a903b66822e2 even more tidying of Goal commands
paulson
parents: 5272
diff changeset
   276
Goal "(xs=ys) --> (!x. x : set ys --> f x = g x) --> map f xs = map g ys";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   277
by (rtac impI 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   278
by (hyp_subst_tac 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   279
by (induct_tac "ys" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   280
by (Auto_tac);
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   281
val lemma = result();
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   282
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
   283
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   284
Goal "(map f xs = []) = (xs = [])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   285
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   286
by (Auto_tac);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   287
qed "map_is_Nil_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   288
AddIffs [map_is_Nil_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   289
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   290
Goal "([] = map f xs) = (xs = [])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   291
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   292
by (Auto_tac);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   293
qed "Nil_is_map_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   294
AddIffs [Nil_is_map_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   295
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   296
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   297
(** rev **)
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   298
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   299
section "rev";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   300
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   301
Goal "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
   302
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   303
by (Auto_tac);
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   304
qed "rev_append";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   305
Addsimps[rev_append];
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   306
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   307
Goal "rev(rev l) = l";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   308
by (induct_tac "l" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   309
by (Auto_tac);
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   310
qed "rev_rev_ident";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   311
Addsimps[rev_rev_ident];
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   312
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   313
Goal "(rev xs = []) = (xs = [])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   314
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   315
by (Auto_tac);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   316
qed "rev_is_Nil_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   317
AddIffs [rev_is_Nil_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   318
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   319
Goal "([] = rev xs) = (xs = [])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   320
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   321
by (Auto_tac);
3860
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   322
qed "Nil_is_rev_conv";
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   323
AddIffs [Nil_is_rev_conv];
a29ab43f7174 More lemmas, esp. ~Bex and ~Ball conversions.
nipkow
parents: 3842
diff changeset
   324
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   325
val prems = Goal "[| P []; !!x xs. P xs ==> P(xs@[x]) |] ==> P xs";
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   326
by (stac (rev_rev_ident RS sym) 1);
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   327
br(read_instantiate [("P","%xs. ?P(rev xs)")]list.induct)1;
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   328
by (ALLGOALS Simp_tac);
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   329
by (resolve_tac prems 1);
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   330
by (eresolve_tac prems 1);
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   331
qed "rev_induct";
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   332
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   333
fun rev_induct_tac xs = res_inst_tac [("xs",xs)] rev_induct;
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   334
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   335
Goal  "(xs = [] --> P) -->  (!ys y. xs = ys@[y] --> P) --> P";
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   336
by (res_inst_tac [("xs","xs")] rev_induct 1);
24f992a25adc isatool expandshort;
wenzelm
parents: 5129
diff changeset
   337
by (Auto_tac);
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   338
bind_thm ("rev_exhaust",
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   339
  impI RSN (2,allI RSN (2,allI RSN (2,impI RS (result() RS mp RS mp)))));
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   340
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   341
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   342
(** mem **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   343
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   344
section "mem";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   345
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   346
Goal "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
   347
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   348
by (Auto_tac);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   349
qed "mem_append";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   350
Addsimps[mem_append];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   351
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   352
Goal "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
   353
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   354
by (Auto_tac);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   355
qed "mem_filter";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   356
Addsimps[mem_filter];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   357
3465
e85c24717cad set_of_list -> set
nipkow
parents: 3457
diff changeset
   358
(** set **)
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   359
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   360
section "set";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   361
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   362
Goal "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
   363
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   364
by (Auto_tac);
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   365
qed "set_append";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   366
Addsimps[set_append];
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   367
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   368
Goal "(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
   369
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   370
by (Auto_tac);
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   371
qed "set_mem_eq";
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   372
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   373
Goal "set l <= set (x#l)";
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   374
by (Auto_tac);
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   375
qed "set_subset_Cons";
1936
979e8b4f5fa5 Proved set_of_list_subset_Cons
paulson
parents: 1908
diff changeset
   376
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   377
Goal "(set xs = {}) = (xs = [])";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   378
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   379
by (Auto_tac);
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   380
qed "set_empty";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   381
Addsimps [set_empty];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   382
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   383
Goal "set(rev xs) = set(xs)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   384
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   385
by (Auto_tac);
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   386
qed "set_rev";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   387
Addsimps [set_rev];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   388
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   389
Goal "set(map f xs) = f``(set xs)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   390
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   391
by (Auto_tac);
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   392
qed "set_map";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   393
Addsimps [set_map];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   394
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   395
Goal "(x : set(filter P xs)) = (x : set xs & P x)";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   396
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   397
by (Auto_tac);
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   398
qed "in_set_filter";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   399
Addsimps [in_set_filter];
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   400
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   401
Goal "(x : set xs) = (? ys zs. xs = ys@x#zs)";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   402
by(induct_tac "xs" 1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   403
 by(Simp_tac 1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   404
by(Asm_simp_tac 1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   405
br iffI 1;
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   406
by(blast_tac (claset() addIs [eq_Nil_appendI,Cons_eq_appendI]) 1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   407
by(REPEAT(etac exE 1));
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   408
by(exhaust_tac "ys" 1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   409
by(Auto_tac);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   410
qed "in_set_conv_decomp";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   411
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   412
(* eliminate `lists' in favour of `set' *)
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   413
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   414
Goal "(xs : lists A) = (!x : set xs. x : A)";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   415
by(induct_tac "xs" 1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   416
by(Auto_tac);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   417
qed "in_lists_conv_set";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   418
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   419
bind_thm("in_listsD",in_lists_conv_set RS iffD1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   420
AddSDs [in_listsD];
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   421
bind_thm("in_listsI",in_lists_conv_set RS iffD2);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   422
AddSIs [in_listsI];
1812
debfc40b7756 Addition of setOfList
paulson
parents: 1760
diff changeset
   423
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   424
(** list_all **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   425
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   426
section "list_all";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   427
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   428
Goal "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
   429
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   430
by (Auto_tac);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   431
qed "list_all_True";
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   432
Addsimps [list_all_True];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   433
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   434
Goal "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
   435
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   436
by (Auto_tac);
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   437
qed "list_all_append";
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   438
Addsimps [list_all_append];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   439
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   440
Goal "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
   441
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   442
by (Auto_tac);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   443
qed "list_all_mem_conv";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   444
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   445
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   446
(** filter **)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   447
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   448
section "filter";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   449
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   450
Goal "filter P (xs@ys) = filter P xs @ filter P ys";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   451
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   452
by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   453
qed "filter_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   454
Addsimps [filter_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   455
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   456
Goal "filter (%x. True) xs = xs";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   457
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   458
by (Auto_tac);
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   459
qed "filter_True";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   460
Addsimps [filter_True];
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   461
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   462
Goal "filter (%x. False) xs = []";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   463
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   464
by (Auto_tac);
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   465
qed "filter_False";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   466
Addsimps [filter_False];
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   467
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   468
Goal "length (filter P xs) <= length xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   469
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   470
by (Auto_tac);
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   471
qed "length_filter";
3383
7707cb7a5054 Corrected statement of filter_append; added filter_size
paulson
parents: 3342
diff changeset
   472
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   473
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   474
(** concat **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   475
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   476
section "concat";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   477
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   478
Goal  "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
   479
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   480
by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   481
qed"concat_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   482
Addsimps [concat_append];
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 1985
diff changeset
   483
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   484
Goal "(concat xss = []) = (!xs:set xss. xs=[])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   485
by (induct_tac "xss" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   486
by (Auto_tac);
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   487
qed "concat_eq_Nil_conv";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   488
AddIffs [concat_eq_Nil_conv];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   489
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   490
Goal "([] = concat xss) = (!xs:set xss. xs=[])";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   491
by (induct_tac "xss" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   492
by (Auto_tac);
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   493
qed "Nil_eq_concat_conv";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   494
AddIffs [Nil_eq_concat_conv];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   495
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   496
Goal  "set(concat xs) = Union(set `` set xs)";
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   497
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   498
by (Auto_tac);
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   499
qed"set_concat";
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   500
Addsimps [set_concat];
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   501
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   502
Goal "map f (concat xs) = concat (map (map f) xs)"; 
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   503
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   504
by (Auto_tac);
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   505
qed "map_concat";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   506
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   507
Goal "filter p (concat xs) = concat (map (filter p) xs)"; 
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   508
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   509
by (Auto_tac);
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   510
qed"filter_concat"; 
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   511
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   512
Goal "rev(concat xs) = concat (map rev (rev xs))";
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   513
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   514
by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   515
qed "rev_concat";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   516
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   517
(** nth **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   518
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   519
section "nth";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   520
5278
a903b66822e2 even more tidying of Goal commands
paulson
parents: 5272
diff changeset
   521
Goal "!xs. (xs@ys)!n = (if n < length xs then xs!n else ys!(n - length xs))";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   522
by (induct_tac "n" 1);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   523
 by (Asm_simp_tac 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   524
 by (rtac allI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   525
 by (exhaust_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   526
  by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   527
qed_spec_mp "nth_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   528
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   529
Goal "!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
   530
by (induct_tac "xs" 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   531
(* case [] *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   532
by (Asm_full_simp_tac 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   533
(* case x#xl *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   534
by (rtac allI 1);
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   535
by (induct_tac "n" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   536
by (Auto_tac);
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   537
qed_spec_mp "nth_map";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   538
Addsimps [nth_map];
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   539
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   540
Goal "!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
   541
by (induct_tac "xs" 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   542
(* case [] *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   543
by (Simp_tac 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   544
(* case x#xl *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   545
by (rtac allI 1);
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   546
by (induct_tac "n" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   547
by (Auto_tac);
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   548
qed_spec_mp "list_all_nth";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   549
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   550
Goal "!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
   551
by (induct_tac "xs" 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   552
(* case [] *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   553
by (Simp_tac 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   554
(* case x#xl *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   555
by (rtac allI 1);
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   556
by (induct_tac "n" 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   557
(* case 0 *)
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   558
by (Asm_full_simp_tac 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   559
(* case Suc x *)
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4681
diff changeset
   560
by (Asm_full_simp_tac 1);
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   561
qed_spec_mp "nth_mem";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   562
Addsimps [nth_mem];
42782316d510 Added various thms and tactics.
nipkow
parents: 1264
diff changeset
   563
5077
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   564
(** list update **)
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   565
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   566
section "list update";
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   567
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   568
Goal "!i. length(xs[i:=x]) = length xs";
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   569
by (induct_tac "xs" 1);
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   570
by (Simp_tac 1);
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   571
by (asm_full_simp_tac (simpset() addsplits [nat.split]) 1);
5077
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   572
qed_spec_mp "length_list_update";
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   573
Addsimps [length_list_update];
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   574
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 5043
diff changeset
   575
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   576
(** last & butlast **)
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   577
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   578
Goal "last(xs@[x]) = x";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   579
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   580
by (Auto_tac);
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   581
qed "last_snoc";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   582
Addsimps [last_snoc];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   583
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   584
Goal "butlast(xs@[x]) = xs";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   585
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   586
by (Auto_tac);
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   587
qed "butlast_snoc";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   588
Addsimps [butlast_snoc];
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   589
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   590
Goal "length(butlast xs) = length xs - 1";
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   591
by (res_inst_tac [("xs","xs")] rev_induct 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   592
by (Auto_tac);
4643
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   593
qed "length_butlast";
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   594
Addsimps [length_butlast];
1b40fcac5a09 New induction schemas for lists (length and snoc).
nipkow
parents: 4628
diff changeset
   595
5278
a903b66822e2 even more tidying of Goal commands
paulson
parents: 5272
diff changeset
   596
Goal "!ys. butlast (xs@ys) = (if ys=[] then butlast xs else xs@butlast ys)";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   597
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   598
by (Auto_tac);
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   599
qed_spec_mp "butlast_append";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   600
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   601
Goal "x:set(butlast xs) --> x:set xs";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   602
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   603
by (Auto_tac);
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   604
qed_spec_mp "in_set_butlastD";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   605
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
   606
Goal "x:set(butlast xs) ==> x:set(butlast(xs@ys))";
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4681
diff changeset
   607
by (asm_simp_tac (simpset() addsimps [butlast_append]) 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   608
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
   609
qed "in_set_butlast_appendI1";
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   610
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
   611
Goal "x:set(butlast ys) ==> x:set(butlast(xs@ys))";
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4681
diff changeset
   612
by (asm_simp_tac (simpset() addsimps [butlast_append]) 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   613
by (Clarify_tac 1);
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   614
by (Full_simp_tac 1);
3896
ee8ebb74ec00 Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents: 3860
diff changeset
   615
qed "in_set_butlast_appendI2";
3902
265a5d8ab88f Removed comment.
nipkow
parents: 3896
diff changeset
   616
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   617
(** take  & drop **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   618
section "take & drop";
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   619
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   620
Goal "take 0 xs = []";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   621
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   622
by (Auto_tac);
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   623
qed "take_0";
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   624
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   625
Goal "drop 0 xs = xs";
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3011
diff changeset
   626
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   627
by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   628
qed "drop_0";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   629
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   630
Goal "take (Suc n) (x#xs) = x # take n xs";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1485
diff changeset
   631
by (Simp_tac 1);
1419
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1327
diff changeset
   632
qed "take_Suc_Cons";
1327
6c29cfab679c added new arithmetic lemmas and the functions take and drop.
nipkow
parents: 1301
diff changeset
   633
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   634
Goal "drop (Suc n) (x#xs) = drop n xs";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   635
by (Simp_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   636
qed "drop_Suc_Cons";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   637
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   638
Delsimps [take_Cons,drop_Cons];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   639
Addsimps [take_0,take_Suc_Cons,drop_0,drop_Suc_Cons];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   640
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   641
Goal "!xs. length(take n xs) = min (length xs) n";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   642
by (induct_tac "n" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   643
 by (Auto_tac);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   644
by (exhaust_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   645
 by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   646
qed_spec_mp "length_take";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   647
Addsimps [length_take];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   648
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   649
Goal "!xs. length(drop n xs) = (length xs - n)";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   650
by (induct_tac "n" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   651
 by (Auto_tac);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   652
by (exhaust_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   653
 by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   654
qed_spec_mp "length_drop";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   655
Addsimps [length_drop];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   656
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   657
Goal "!xs. length xs <= n --> take n xs = xs";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   658
by (induct_tac "n" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   659
 by (Auto_tac);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   660
by (exhaust_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   661
 by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   662
qed_spec_mp "take_all";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   663
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   664
Goal "!xs. length xs <= n --> drop n xs = []";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   665
by (induct_tac "n" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   666
 by (Auto_tac);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   667
by (exhaust_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   668
 by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   669
qed_spec_mp "drop_all";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   670
5278
a903b66822e2 even more tidying of Goal commands
paulson
parents: 5272
diff changeset
   671
Goal "!xs. take n (xs @ ys) = (take n xs @ take (n - length xs) ys)";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   672
by (induct_tac "n" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   673
 by (Auto_tac);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   674
by (exhaust_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   675
 by (Auto_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
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   679
Goal "!xs. drop n (xs@ys) = drop n xs @ drop (n - length xs) ys"; 
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   680
by (induct_tac "n" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   681
 by (Auto_tac);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   682
by (exhaust_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   683
 by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   684
qed_spec_mp "drop_append";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   685
Addsimps [drop_append];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   686
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   687
Goal "!xs n. take n (take m xs) = take (min n m) xs"; 
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   688
by (induct_tac "m" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   689
 by (Auto_tac);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   690
by (exhaust_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   691
 by (Auto_tac);
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   692
by (exhaust_tac "na" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   693
 by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   694
qed_spec_mp "take_take";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   695
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   696
Goal "!xs. drop n (drop m xs) = drop (n + m) xs"; 
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   697
by (induct_tac "m" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   698
 by (Auto_tac);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   699
by (exhaust_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   700
 by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   701
qed_spec_mp "drop_drop";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   702
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   703
Goal "!xs n. take n (drop m xs) = drop m (take (n + m) xs)"; 
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   704
by (induct_tac "m" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   705
 by (Auto_tac);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   706
by (exhaust_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   707
 by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   708
qed_spec_mp "take_drop";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   709
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   710
Goal "!xs. take n (map f xs) = map f (take n xs)"; 
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   711
by (induct_tac "n" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   712
 by (Auto_tac);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   713
by (exhaust_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   714
 by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   715
qed_spec_mp "take_map"; 
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   716
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   717
Goal "!xs. drop n (map f xs) = map f (drop n xs)"; 
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   718
by (induct_tac "n" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   719
 by (Auto_tac);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   720
by (exhaust_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   721
 by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   722
qed_spec_mp "drop_map";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   723
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   724
Goal "!n i. i < n --> (take n xs)!i = xs!i";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   725
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   726
 by (Auto_tac);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   727
by (exhaust_tac "n" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   728
 by (Blast_tac 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   729
by (exhaust_tac "i" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   730
 by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   731
qed_spec_mp "nth_take";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   732
Addsimps [nth_take];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   733
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   734
Goal  "!xs i. n + i <= length xs --> (drop n xs)!i = xs!(n+i)";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   735
by (induct_tac "n" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   736
 by (Auto_tac);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   737
by (exhaust_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   738
 by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   739
qed_spec_mp "nth_drop";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   740
Addsimps [nth_drop];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   741
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   742
(** takeWhile & dropWhile **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   743
3467
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   744
section "takeWhile & dropWhile";
a0797ba03dfe More concat lemmas.
nipkow
parents: 3465
diff changeset
   745
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   746
Goal "takeWhile P xs @ dropWhile P xs = xs";
3586
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   747
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   748
by (Auto_tac);
3586
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   749
qed "takeWhile_dropWhile_id";
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   750
Addsimps [takeWhile_dropWhile_id];
2ee1ed79c802 Added a take/dropWhile lemma.
nipkow
parents: 3585
diff changeset
   751
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   752
Goal  "x:set xs & ~P(x) --> takeWhile P (xs @ ys) = takeWhile P xs";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   753
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   754
by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   755
bind_thm("takeWhile_append1", conjI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   756
Addsimps [takeWhile_append1];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   757
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   758
Goal "(!x:set xs. P(x)) --> takeWhile P (xs @ ys) = xs @ takeWhile P ys";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   759
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   760
by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   761
bind_thm("takeWhile_append2", ballI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   762
Addsimps [takeWhile_append2];
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 995
diff changeset
   763
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   764
Goal "x:set xs & ~P(x) --> dropWhile P (xs @ ys) = (dropWhile P xs)@ys";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   765
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   766
by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   767
bind_thm("dropWhile_append1", conjI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   768
Addsimps [dropWhile_append1];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   769
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   770
Goal "(!x:set xs. P(x)) --> dropWhile P (xs @ ys) = dropWhile P ys";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   771
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   772
by (Auto_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   773
bind_thm("dropWhile_append2", ballI RS (result() RS mp));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   774
Addsimps [dropWhile_append2];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   775
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   776
Goal "x:set(takeWhile P xs) --> x:set xs & P x";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3383
diff changeset
   777
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   778
by (Auto_tac);
3647
a64c8fbcd98f Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents: 3589
diff changeset
   779
qed_spec_mp"set_take_whileD";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   780
4132
daff3c9987cc added zip and nodup
oheimb
parents: 4089
diff changeset
   781
qed_goal "zip_Nil_Nil"   thy "zip []     []     = []" (K [Simp_tac 1]);
daff3c9987cc added zip and nodup
oheimb
parents: 4089
diff changeset
   782
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
   783
						      (K [Simp_tac 1]);
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   784
5272
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   785
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   786
(** foldl **)
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   787
section "foldl";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   788
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   789
Goal "!a. foldl f a (xs @ ys) = foldl f (foldl f a xs) ys";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   790
by(induct_tac "xs" 1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   791
by(Auto_tac);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   792
qed_spec_mp "foldl_append";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   793
Addsimps [foldl_append];
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   794
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   795
(* Note: `n <= foldl op+ n ns' looks simpler, but is more difficult to use
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   796
   because it requires an additional transitivity step
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   797
*)
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   798
Goal "!n::nat. m <= n --> m <= foldl op+ n ns";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   799
by(induct_tac "ns" 1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   800
 by(Simp_tac 1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   801
by(Asm_full_simp_tac 1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   802
by(blast_tac (claset() addIs [trans_le_add1]) 1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   803
qed_spec_mp "start_le_sum";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   804
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   805
Goal "n : set ns ==> n <= foldl op+ 0 ns";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   806
by(auto_tac (claset() addIs [start_le_sum],
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   807
             simpset() addsimps [in_set_conv_decomp]));
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   808
qed "elem_le_sum";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   809
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   810
Goal "!m. (foldl op+ m ns = 0) = (m=0 & (!n : set ns. n=0))";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   811
by(induct_tac "ns" 1);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   812
by(Auto_tac);
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   813
qed_spec_mp "sum_eq_0_conv";
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   814
AddIffs [sum_eq_0_conv];
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   815
95cfd872fe66 New lemmas in List and Lambda in IsaMakefile
nipkow
parents: 5200
diff changeset
   816
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   817
(** nodups & remdups **)
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   818
section "nodups & remdups";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   819
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   820
Goal "set(remdups xs) = set xs";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   821
by (induct_tac "xs" 1);
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   822
 by (Simp_tac 1);
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4681
diff changeset
   823
by (asm_full_simp_tac (simpset() addsimps [insert_absorb]) 1);
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   824
qed "set_remdups";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   825
Addsimps [set_remdups];
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   826
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   827
Goal "nodups(remdups xs)";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   828
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   829
by (Auto_tac);
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   830
qed "nodups_remdups";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   831
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   832
Goal "nodups xs --> nodups (filter P xs)";
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   833
by (induct_tac "xs" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   834
by (Auto_tac);
4605
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   835
qed_spec_mp "nodups_filter";
579e0ef2df6b Added `remdups'
nipkow
parents: 4502
diff changeset
   836
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   837
(** replicate **)
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   838
section "replicate";
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   839
4935
1694e2daef8f Cleaned up and simplified etc.
nipkow
parents: 4911
diff changeset
   840
Goal "set(replicate (Suc n) x) = {x}";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   841
by (induct_tac "n" 1);
5129
99ffd3dfb180 Converted to Auto_tac
nipkow
parents: 5122
diff changeset
   842
by (Auto_tac);
3589
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   843
val lemma = result();
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   844
5043
3fdc881e8ff9 goal -> Goal
nipkow
parents: 4935
diff changeset
   845
Goal "n ~= 0 ==> set(replicate n x) = {x}";
4423
a129b817b58a expandshort;
wenzelm
parents: 4132
diff changeset
   846
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
   847
qed "set_replicate";
244daa75f890 Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents: 3586
diff changeset
   848
Addsimps [set_replicate];
5162
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   849
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   850
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   851
(*** Lexcicographic orderings on lists ***)
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   852
section"Lexcicographic orderings on lists";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   853
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   854
Goal "wf r ==> wf(lexn r n)";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   855
by(induct_tac "n" 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   856
by(Simp_tac 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   857
by(Simp_tac 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   858
br wf_subset 1;
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   859
br Int_lower1 2;
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   860
br wf_prod_fun_image 1;
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   861
br injI 2;
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   862
by(Auto_tac);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   863
qed "wf_lexn";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   864
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   865
Goal "!xs ys. (xs,ys) : lexn r n --> length xs = n & length ys = n";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   866
by(induct_tac "n" 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   867
by(Auto_tac);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   868
qed_spec_mp "lexn_length";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   869
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   870
Goalw [lex_def] "wf r ==> wf(lex r)";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   871
br wf_UN 1;
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   872
by(blast_tac (claset() addIs [wf_lexn]) 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   873
by(Clarify_tac 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   874
by(rename_tac "m n" 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   875
by(subgoal_tac "m ~= n" 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   876
 by(Blast_tac 2);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   877
by(blast_tac (claset() addDs [lexn_length,not_sym]) 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   878
qed "wf_lex";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   879
AddSIs [wf_lex];
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   880
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   881
Goal
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   882
 "lexn r n = \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   883
\ {(xs,ys). length xs = n & length ys = n & \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   884
\           (? xys x y xs' ys'. xs= xys @ x#xs' & ys= xys @ y#ys' & (x,y):r)}";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   885
by(induct_tac "n" 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   886
 by(Simp_tac 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   887
 by(Blast_tac 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   888
by(asm_full_simp_tac (simpset() addsimps [lex_prod_def]) 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   889
by(Auto_tac);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   890
  by(Blast_tac 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   891
 by(rename_tac "a xys x xs' y ys'" 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   892
 by(res_inst_tac [("x","a#xys")] exI 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   893
 by(Simp_tac 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   894
by(exhaust_tac "xys" 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   895
 by(ALLGOALS Asm_full_simp_tac);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   896
by(Blast_tac 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   897
qed "lexn_conv";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   898
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   899
Goalw [lex_def]
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   900
 "lex r = \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   901
\ {(xs,ys). length xs = length ys & \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   902
\           (? xys x y xs' ys'. xs= xys @ x#xs' & ys= xys @ y#ys' & (x,y):r)}";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   903
by(force_tac (claset(), simpset() addsimps [lexn_conv]) 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   904
qed "lex_conv";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   905
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   906
Goalw [lexico_def] "wf r ==> wf(lexico r)";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   907
by(Blast_tac 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   908
qed "wf_lexico";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   909
AddSIs [wf_lexico];
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   910
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   911
Goalw
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   912
 [lexico_def,diag_def,lex_prod_def,measure_def,inv_image_def]
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   913
"lexico r = {(xs,ys). length xs < length ys | \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   914
\                     length xs = length ys & (xs,ys) : lex r}";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   915
by(Simp_tac 1);
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   916
qed "lexico_conv";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   917
5162
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   918
(***
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   919
Simplification procedure for all list equalities.
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   920
Currently only tries to rearranges @ to see if
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   921
- both lists end in a singleton list,
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   922
- or both lists end in the same list.
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   923
***)
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   924
local
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   925
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   926
val list_eq_pattern =
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   927
  read_cterm (sign_of List.thy) ("(xs::'a list) = ys",HOLogic.boolT);
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   928
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   929
fun last (cons as Const("List.list.op #",_) $ _ $ xs) =
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   930
      (case xs of Const("List.list.[]",_) => cons | _ => last xs)
5200
a23c23af335f conversion bug in simpproc list_eq
nipkow
parents: 5183
diff changeset
   931
  | last (Const("List.op @",_) $ _ $ ys) = last ys
5162
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   932
  | last t = t;
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   933
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   934
fun list1 (Const("List.list.op #",_) $ _ $ Const("List.list.[]",_)) = true
5162
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   935
  | list1 _ = false;
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   936
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   937
fun butlast ((cons as Const("List.list.op #",_) $ x) $ xs) =
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   938
      (case xs of Const("List.list.[]",_) => xs | _ => cons $ butlast xs)
5200
a23c23af335f conversion bug in simpproc list_eq
nipkow
parents: 5183
diff changeset
   939
  | butlast ((app as Const("List.op @",_) $ xs) $ ys) = app $ butlast ys
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   940
  | butlast xs = Const("List.list.[]",fastype_of xs);
5162
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   941
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   942
val rearr_tac =
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   943
  simp_tac (HOL_basic_ss addsimps [append_assoc,append_Nil,append_Cons]);
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   944
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   945
fun list_eq sg _ (F as (eq as Const(_,eqT)) $ lhs $ rhs) =
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   946
  let
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   947
    val lastl = last lhs and lastr = last rhs
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   948
    fun rearr conv =
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   949
      let val lhs1 = butlast lhs and rhs1 = butlast rhs
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   950
          val Type(_,listT::_) = eqT
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   951
          val appT = [listT,listT] ---> listT
5200
a23c23af335f conversion bug in simpproc list_eq
nipkow
parents: 5183
diff changeset
   952
          val app = Const("List.op @",appT)
5162
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   953
          val F2 = eq $ (app$lhs1$lastl) $ (app$rhs1$lastr)
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   954
          val ct = cterm_of sg (HOLogic.mk_Trueprop(HOLogic.mk_eq(F,F2)))
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   955
          val thm = prove_goalw_cterm [] ct (K [rearr_tac 1])
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   956
            handle ERROR =>
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   957
            error("The error(s) above occurred while trying to prove " ^
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   958
                  string_of_cterm ct)
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   959
      in Some((conv RS (thm RS trans)) RS eq_reflection) end
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   960
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   961
  in if list1 lastl andalso list1 lastr
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   962
     then rearr append1_eq_conv
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   963
     else
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   964
     if lastl aconv lastr
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   965
     then rearr append_same_eq
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   966
     else None
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   967
  end;
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   968
in
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   969
val list_eq_simproc = mk_simproc "list_eq" [list_eq_pattern] list_eq;
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   970
end;
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   971
53e505c6019c Added simproc list_eq.
nipkow
parents: 5132
diff changeset
   972
Addsimprocs [list_eq_simproc];