src/HOL/ex/SList.ML
author paulson
Wed, 13 Nov 1996 10:47:08 +0100
changeset 2183 8d42a7bccf0b
parent 2031 03a843f0f447
child 2911 8a680e310f04
permissions -rw-r--r--
Updated version and date
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1266
diff changeset
     1
(*  Title:      HOL/ex/SList.ML
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1266
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1993  University of Cambridge
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     5
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     6
Definition of type 'a list by a least fixed point
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     7
*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     8
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     9
open SList;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    10
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    11
val list_con_defs = [NIL_def, CONS_def];
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    12
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    13
goal SList.thy "list(A) = {Numb(0)} <+> (A <*> list(A))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    14
let val rew = rewrite_rule list_con_defs in  
1820
e381e1c51689 Classical tactics now use default claset.
berghofe
parents: 1815
diff changeset
    15
by (fast_tac (!claset addSIs (equalityI :: map rew list.intrs)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    16
                      addEs [rew list.elim]) 1)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    17
end;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    18
qed "list_unfold";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    19
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    20
(*This justifies using list in other recursive type definitions*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    21
goalw SList.thy list.defs "!!A B. A<=B ==> list(A) <= list(B)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    22
by (rtac lfp_mono 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    23
by (REPEAT (ares_tac basic_monos 1));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    24
qed "list_mono";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    25
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    26
(*Type checking -- list creates well-founded sets*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    27
goalw SList.thy (list_con_defs @ list.defs) "list(sexp) <= sexp";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    28
by (rtac lfp_lowerbound 1);
1820
e381e1c51689 Classical tactics now use default claset.
berghofe
parents: 1815
diff changeset
    29
by (fast_tac (!claset addIs sexp.intrs@[sexp_In0I,sexp_In1I]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    30
qed "list_sexp";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    31
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    32
(* A <= sexp ==> list(A) <= sexp *)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    33
bind_thm ("list_subset_sexp", ([list_mono, list_sexp] MRS subset_trans));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    34
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    35
(*Induction for the type 'a list *)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    36
val prems = goalw SList.thy [Nil_def,Cons_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    37
    "[| P(Nil);   \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    38
\       !!x xs. P(xs) ==> P(x # xs) |]  ==> P(l)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    39
by (rtac (Rep_list_inverse RS subst) 1);   (*types force good instantiation*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    40
by (rtac (Rep_list RS list.induct) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    41
by (REPEAT (ares_tac prems 1
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    42
     ORELSE eresolve_tac [rangeE, ssubst, Abs_list_inverse RS subst] 1));
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
    43
qed "list_induct2";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    44
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    45
(*Perform induction on xs. *)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    46
fun list_ind_tac a M = 
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
    47
    EVERY [res_inst_tac [("l",a)] list_induct2 M,
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1266
diff changeset
    48
           rename_last_tac a ["1"] (M+1)];
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    49
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    50
(*** Isomorphisms ***)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    51
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    52
goal SList.thy "inj(Rep_list)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    53
by (rtac inj_inverseI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    54
by (rtac Rep_list_inverse 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    55
qed "inj_Rep_list";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    56
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    57
goal SList.thy "inj_onto Abs_list (list(range Leaf))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    58
by (rtac inj_onto_inverseI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    59
by (etac Abs_list_inverse 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    60
qed "inj_onto_Abs_list";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    61
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    62
(** Distinctness of constructors **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    63
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    64
goalw SList.thy list_con_defs "CONS M N ~= NIL";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    65
by (rtac In1_not_In0 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    66
qed "CONS_not_NIL";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    67
bind_thm ("NIL_not_CONS", (CONS_not_NIL RS not_sym));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    68
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    69
bind_thm ("CONS_neq_NIL", (CONS_not_NIL RS notE));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    70
val NIL_neq_CONS = sym RS CONS_neq_NIL;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    71
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    72
goalw SList.thy [Nil_def,Cons_def] "x # xs ~= Nil";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    73
by (rtac (CONS_not_NIL RS (inj_onto_Abs_list RS inj_onto_contraD)) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    74
by (REPEAT (resolve_tac (list.intrs @ [rangeI, Rep_list]) 1));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    75
qed "Cons_not_Nil";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    76
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1908
diff changeset
    77
bind_thm ("Nil_not_Cons", Cons_not_Nil RS not_sym);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    78
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    79
(** Injectiveness of CONS and Cons **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    80
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    81
goalw SList.thy [CONS_def] "(CONS K M=CONS L N) = (K=L & M=N)";
1820
e381e1c51689 Classical tactics now use default claset.
berghofe
parents: 1815
diff changeset
    82
by (fast_tac (!claset addSEs [Scons_inject, make_elim In1_inject]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    83
qed "CONS_CONS_eq";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    84
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    85
(*For reasoning about abstract list constructors*)
1820
e381e1c51689 Classical tactics now use default claset.
berghofe
parents: 1815
diff changeset
    86
AddIs ([Rep_list] @ list.intrs);
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1908
diff changeset
    87
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1908
diff changeset
    88
AddIffs [CONS_not_NIL, NIL_not_CONS, CONS_CONS_eq];
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1908
diff changeset
    89
1820
e381e1c51689 Classical tactics now use default claset.
berghofe
parents: 1815
diff changeset
    90
AddSDs [inj_onto_Abs_list RS inj_ontoD,
e381e1c51689 Classical tactics now use default claset.
berghofe
parents: 1815
diff changeset
    91
        inj_Rep_list RS injD, Leaf_inject];
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    92
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    93
goalw SList.thy [Cons_def] "(x#xs=y#ys) = (x=y & xs=ys)";
1820
e381e1c51689 Classical tactics now use default claset.
berghofe
parents: 1815
diff changeset
    94
by (Fast_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    95
qed "Cons_Cons_eq";
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
    96
bind_thm ("Cons_inject2", (Cons_Cons_eq RS iffD1 RS conjE));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    97
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    98
val [major] = goal SList.thy "CONS M N: list(A) ==> M: A & N: list(A)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    99
by (rtac (major RS setup_induction) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   100
by (etac list.induct 1);
1820
e381e1c51689 Classical tactics now use default claset.
berghofe
parents: 1815
diff changeset
   101
by (ALLGOALS (Fast_tac));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   102
qed "CONS_D";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   103
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   104
val prems = goalw SList.thy [CONS_def,In1_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   105
    "CONS M N: sexp ==> M: sexp & N: sexp";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   106
by (cut_facts_tac prems 1);
1820
e381e1c51689 Classical tactics now use default claset.
berghofe
parents: 1815
diff changeset
   107
by (fast_tac (!claset addSDs [Scons_D]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   108
qed "sexp_CONS_D";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   109
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   110
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1908
diff changeset
   111
(*Reasoning about constructors and their freeness*)
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1908
diff changeset
   112
Addsimps list.intrs;
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1908
diff changeset
   113
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1908
diff changeset
   114
AddIffs [Cons_not_Nil, Nil_not_Cons, Cons_Cons_eq];
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   115
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   116
goal SList.thy "!!N. N: list(A) ==> !M. N ~= CONS M N";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   117
by (etac list.induct 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   118
by (ALLGOALS Asm_simp_tac);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   119
qed "not_CONS_self";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   120
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   121
goal SList.thy "!x. l ~= x#l";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   122
by (list_ind_tac "l" 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   123
by (ALLGOALS Asm_simp_tac);
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   124
qed "not_Cons_self2";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   125
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   126
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   127
goal SList.thy "(xs ~= []) = (? y ys. xs = y#ys)";
2031
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   128
by (list_ind_tac "xs" 1);
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   129
by (Simp_tac 1);
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   130
by (Asm_simp_tac 1);
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   131
by (REPEAT(resolve_tac [exI,refl,conjI] 1));
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   132
qed "neq_Nil_conv2";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   133
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   134
(** Conversion rules for List_case: case analysis operator **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   135
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   136
goalw SList.thy [List_case_def,NIL_def] "List_case c h NIL = c";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   137
by (rtac Case_In0 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   138
qed "List_case_NIL";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   139
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   140
goalw SList.thy [List_case_def,CONS_def]  "List_case c h (CONS M N) = h M N";
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   141
by (simp_tac (!simpset addsimps [Split,Case_In1]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   142
qed "List_case_CONS";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   143
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   144
(*** List_rec -- by wf recursion on pred_sexp ***)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   145
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   146
(* The trancl(pred_sexp) is essential because pred_sexp_CONS_I1,2 would not
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   147
   hold if pred_sexp^+ were changed to pred_sexp. *)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   148
1476
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1465
diff changeset
   149
goal SList.thy
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1465
diff changeset
   150
   "(%M. List_rec M c d) = wfrec (trancl pred_sexp) \
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1465
diff changeset
   151
                           \     (%g. List_case c (%x y. d x y (g y)))";
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1465
diff changeset
   152
by (simp_tac (HOL_ss addsimps [List_rec_def]) 1);
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1465
diff changeset
   153
val List_rec_unfold = standard 
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1465
diff changeset
   154
  ((wf_pred_sexp RS wf_trancl) RS ((result() RS eq_reflection) RS def_wfrec));
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1465
diff changeset
   155
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1465
diff changeset
   156
(*---------------------------------------------------------------------------
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1465
diff changeset
   157
 * Old:
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1465
diff changeset
   158
 * val List_rec_unfold = [List_rec_def,wf_pred_sexp RS wf_trancl] MRS def_wfrec
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1465
diff changeset
   159
 *                     |> standard;
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1465
diff changeset
   160
 *---------------------------------------------------------------------------*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   161
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   162
(** pred_sexp lemmas **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   163
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   164
goalw SList.thy [CONS_def,In1_def]
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   165
    "!!M. [| M: sexp;  N: sexp |] ==> (M, CONS M N) : pred_sexp^+";
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   166
by (Asm_simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   167
qed "pred_sexp_CONS_I1";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   168
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   169
goalw SList.thy [CONS_def,In1_def]
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   170
    "!!M. [| M: sexp;  N: sexp |] ==> (N, CONS M N) : pred_sexp^+";
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   171
by (Asm_simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   172
qed "pred_sexp_CONS_I2";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   173
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   174
val [prem] = goal SList.thy
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   175
    "(CONS M1 M2, N) : pred_sexp^+ ==> \
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   176
\    (M1,N) : pred_sexp^+ & (M2,N) : pred_sexp^+";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   177
by (rtac (prem RS (pred_sexp_subset_Sigma RS trancl_subset_Sigma RS 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1266
diff changeset
   178
                   subsetD RS SigmaE2)) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   179
by (etac (sexp_CONS_D RS conjE) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   180
by (REPEAT (ares_tac [conjI, pred_sexp_CONS_I1, pred_sexp_CONS_I2,
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1266
diff changeset
   181
                      prem RSN (2, trans_trancl RS transD)] 1));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   182
qed "pred_sexp_CONS_D";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   183
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   184
(** Conversion rules for List_rec **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   185
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   186
goal SList.thy "List_rec NIL c h = c";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   187
by (rtac (List_rec_unfold RS trans) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   188
by (simp_tac (!simpset addsimps [List_case_NIL]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   189
qed "List_rec_NIL";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   190
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   191
goal SList.thy "!!M. [| M: sexp;  N: sexp |] ==> \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   192
\    List_rec (CONS M N) c h = h M N (List_rec N c h)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   193
by (rtac (List_rec_unfold RS trans) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   194
by (asm_simp_tac (!simpset addsimps [List_case_CONS, pred_sexp_CONS_I2]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   195
qed "List_rec_CONS";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   196
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   197
(*** list_rec -- by List_rec ***)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   198
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   199
val Rep_list_in_sexp =
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   200
    [range_Leaf_subset_sexp RS list_subset_sexp, Rep_list] MRS subsetD;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   201
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   202
local
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   203
  val list_rec_simps = [List_rec_NIL, List_rec_CONS, 
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   204
                        Abs_list_inverse, Rep_list_inverse,
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   205
                        Rep_list, rangeI, inj_Leaf, Inv_f_f,
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   206
                        sexp.LeafI, Rep_list_in_sexp]
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   207
in
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   208
  val list_rec_Nil = prove_goalw SList.thy [list_rec_def, Nil_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   209
      "list_rec Nil c h = c"
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   210
   (fn _=> [simp_tac (!simpset addsimps list_rec_simps) 1]);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   211
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   212
  val list_rec_Cons = prove_goalw SList.thy [list_rec_def, Cons_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   213
      "list_rec (a#l) c h = h a l (list_rec l c h)"
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   214
   (fn _=> [simp_tac (!simpset addsimps list_rec_simps) 1]);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   215
end;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   216
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   217
Addsimps [List_rec_NIL, List_rec_CONS, list_rec_Nil, list_rec_Cons];
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   218
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   219
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   220
(*Type checking.  Useful?*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   221
val major::A_subset_sexp::prems = goal SList.thy
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1266
diff changeset
   222
    "[| M: list(A);     \
5d7a7e439cec expanded tabs
clasohm
parents: 1266
diff changeset
   223
\       A<=sexp;        \
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   224
\       c: C(NIL);      \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   225
\       !!x y r. [| x: A;  y: list(A);  r: C(y) |] ==> h x y r: C(CONS x y) \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   226
\    |] ==> List_rec M c h : C(M :: 'a item)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   227
val sexp_ListA_I = A_subset_sexp RS list_subset_sexp RS subsetD;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   228
val sexp_A_I = A_subset_sexp RS subsetD;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   229
by (rtac (major RS list.induct) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   230
by (ALLGOALS(asm_simp_tac (!simpset addsimps ([sexp_A_I,sexp_ListA_I]@prems))));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   231
qed "List_rec_type";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   232
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   233
(** Generalized map functionals **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   234
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   235
goalw SList.thy [Rep_map_def] "Rep_map f Nil = NIL";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   236
by (rtac list_rec_Nil 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   237
qed "Rep_map_Nil";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   238
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   239
goalw SList.thy [Rep_map_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   240
    "Rep_map f (x#xs) = CONS (f x) (Rep_map f xs)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   241
by (rtac list_rec_Cons 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   242
qed "Rep_map_Cons";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   243
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   244
goalw SList.thy [Rep_map_def] "!!f. (!!x. f(x): A) ==> Rep_map f xs: list(A)";
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   245
by (rtac list_induct2 1);
2031
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   246
by (ALLGOALS Asm_simp_tac);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   247
qed "Rep_map_type";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   248
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   249
goalw SList.thy [Abs_map_def] "Abs_map g NIL = Nil";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   250
by (rtac List_rec_NIL 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   251
qed "Abs_map_NIL";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   252
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   253
val prems = goalw SList.thy [Abs_map_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   254
    "[| M: sexp;  N: sexp |] ==> \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   255
\    Abs_map g (CONS M N) = g(M) # Abs_map g N";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   256
by (REPEAT (resolve_tac (List_rec_CONS::prems) 1));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   257
qed "Abs_map_CONS";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   258
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   259
(*These 2 rules ease the use of primitive recursion.  NOTE USE OF == *)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   260
val [rew] = goal SList.thy
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   261
    "[| !!xs. f(xs) == list_rec xs c h |] ==> f([]) = c";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   262
by (rewtac rew);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   263
by (rtac list_rec_Nil 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   264
qed "def_list_rec_Nil";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   265
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   266
val [rew] = goal SList.thy
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   267
    "[| !!xs. f(xs) == list_rec xs c h |] ==> f(x#xs) = h x xs (f xs)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   268
by (rewtac rew);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   269
by (rtac list_rec_Cons 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   270
qed "def_list_rec_Cons";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   271
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   272
fun list_recs def =
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   273
      [standard (def RS def_list_rec_Nil),
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   274
       standard (def RS def_list_rec_Cons)];
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   275
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   276
(*** Unfolding the basic combinators ***)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   277
2031
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   278
val [null_Nil, null_Cons]               = list_recs null_def;
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   279
val [_, hd_Cons]                        = list_recs hd_def;
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   280
val [_, tl_Cons]                        = list_recs tl_def;
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   281
val [ttl_Nil, ttl_Cons]                 = list_recs ttl_def;
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   282
val [append_Nil3, append_Cons]          = list_recs append_def;
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   283
val [mem_Nil, mem_Cons]                 = list_recs mem_def;
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   284
val [set_of_list_Nil, set_of_list_Cons] = list_recs set_of_list_def;
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   285
val [map_Nil, map_Cons]                 = list_recs map_def;
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   286
val [list_case_Nil, list_case_Cons]     = list_recs list_case_def;
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   287
val [filter_Nil, filter_Cons]           = list_recs filter_def;
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   288
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   289
Addsimps
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   290
  [null_Nil, ttl_Nil,
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   291
   mem_Nil, mem_Cons,
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   292
   list_case_Nil, list_case_Cons,
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   293
   append_Nil3, append_Cons,
1908
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1820
diff changeset
   294
   set_of_list_Nil, set_of_list_Cons, 
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   295
   map_Nil, map_Cons,
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   296
   filter_Nil, filter_Cons];
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   297
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   298
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   299
(** @ - append **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   300
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   301
goal SList.thy "(xs@ys)@zs = xs@(ys@zs)";
2031
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   302
by (list_ind_tac "xs" 1);
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   303
by (ALLGOALS Asm_simp_tac);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   304
qed "append_assoc2";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   305
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   306
goal SList.thy "xs @ [] = xs";
2031
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   307
by (list_ind_tac "xs" 1);
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   308
by (ALLGOALS Asm_simp_tac);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   309
qed "append_Nil4";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   310
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   311
(** mem **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   312
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   313
goal SList.thy "x mem (xs@ys) = (x mem xs | x mem ys)";
2031
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   314
by (list_ind_tac "xs" 1);
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   315
by (ALLGOALS(asm_simp_tac (!simpset setloop (split_tac [expand_if]))));
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   316
qed "mem_append2";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   317
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   318
goal SList.thy "x mem [x:xs.P(x)] = (x mem xs & P(x))";
2031
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   319
by (list_ind_tac "xs" 1);
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   320
by (ALLGOALS(asm_simp_tac (!simpset setloop (split_tac [expand_if]))));
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   321
qed "mem_filter2";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   322
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   323
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   324
(** The functional "map" **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   325
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   326
Addsimps [Rep_map_Nil, Rep_map_Cons, Abs_map_NIL, Abs_map_CONS];
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   327
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   328
val [major,A_subset_sexp,minor] = goal SList.thy 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   329
    "[| M: list(A);  A<=sexp;  !!z. z: A ==> f(g(z)) = z |] \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   330
\    ==> Rep_map f (Abs_map g M) = M";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   331
by (rtac (major RS list.induct) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   332
by (ALLGOALS (asm_simp_tac (!simpset addsimps [sexp_A_I,sexp_ListA_I,minor])));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   333
qed "Abs_map_inverse";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   334
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   335
(*Rep_map_inverse is obtained via Abs_Rep_map and map_ident*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   336
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   337
(** list_case **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   338
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   339
goal SList.thy
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   340
 "P(list_case a f xs) = ((xs=[] --> P(a)) & \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   341
\                        (!y ys. xs=y#ys --> P(f y ys)))";
2031
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   342
by (list_ind_tac "xs" 1);
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   343
by (ALLGOALS Asm_simp_tac);
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   344
by (Fast_tac 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   345
qed "expand_list_case2";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   346
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   347
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   348
(** Additional mapping lemmas **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   349
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   350
goal SList.thy "map (%x.x) xs = xs";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   351
by (list_ind_tac "xs" 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   352
by (ALLGOALS Asm_simp_tac);
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   353
qed "map_ident2";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   354
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   355
goal SList.thy "map f (xs@ys) = map f xs @ map f ys";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   356
by (list_ind_tac "xs" 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   357
by (ALLGOALS Asm_simp_tac);
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   358
qed "map_append2";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   359
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   360
goalw SList.thy [o_def] "map (f o g) xs = map f (map g xs)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   361
by (list_ind_tac "xs" 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   362
by (ALLGOALS Asm_simp_tac);
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   363
qed "map_compose2";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   364
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   365
goal SList.thy "!!f. (!!x. f(x): sexp) ==> \
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1266
diff changeset
   366
\       Abs_map g (Rep_map f xs) = map (%t. g(f(t))) xs";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   367
by (list_ind_tac "xs" 1);
2031
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   368
by (ALLGOALS(asm_simp_tac(!simpset addsimps
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   369
       [Rep_map_type,list_sexp RS subsetD])));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   370
qed "Abs_Rep_map";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   371
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 972
diff changeset
   372
Addsimps [append_Nil4, map_ident2];