src/HOL/ex/LList.ML
author paulson
Fri, 03 May 1996 17:35:13 +0200
changeset 1717 8d46452739d7
parent 1673 d22110ddd0af
child 1820 e381e1c51689
permissions -rw-r--r--
Extra examples for safe_meson_tac
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
     1
(*  Title:      HOL/llist
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
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
SHOULD LListD_Fun_CONS_I, etc., be equations (for rewriting)?
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 LList;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    10
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    11
(** Simplification **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    12
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
    13
simpset := !simpset setloop split_tac [expand_split, expand_sum_case];
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    14
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    15
(*For adding _eqI rules to a simpset; we must remove Pair_eq because
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    16
  it may turn an instance of reflexivity into a conjunction!*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    17
fun add_eqI ss = ss addsimps [range_eqI, image_eqI] 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    18
                    delsimps [Pair_eq];
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    19
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    20
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    21
(*This justifies using llist in other recursive type definitions*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    22
goalw LList.thy llist.defs "!!A B. A<=B ==> llist(A) <= llist(B)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    23
by (rtac gfp_mono 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    24
by (REPEAT (ares_tac basic_monos 1));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    25
qed "llist_mono";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    26
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    27
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    28
goal LList.thy "llist(A) = {Numb(0)} <+> (A <*> llist(A))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    29
let val rew = rewrite_rule [NIL_def, CONS_def] in  
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    30
by (fast_tac (univ_cs addSIs (equalityI :: map rew llist.intrs)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    31
                      addEs [rew llist.elim]) 1)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    32
end;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    33
qed "llist_unfold";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    34
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    35
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    36
(*** Type checking by coinduction, using list_Fun 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    37
     THE COINDUCTIVE DEFINITION PACKAGE COULD DO THIS!
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    38
***)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    39
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    40
goalw LList.thy [list_Fun_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    41
    "!!M. [| M : X;  X <= list_Fun A (X Un llist(A)) |] ==>  M : llist(A)";
1046
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
    42
by (etac llist.coinduct 1);
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
    43
by (etac (subsetD RS CollectD) 1);
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
    44
by (assume_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    45
qed "llist_coinduct";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    46
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    47
goalw LList.thy [list_Fun_def, NIL_def] "NIL: list_Fun A X";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    48
by (fast_tac set_cs 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    49
qed "list_Fun_NIL_I";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    50
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    51
goalw LList.thy [list_Fun_def,CONS_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    52
    "!!M N. [| M: A;  N: X |] ==> CONS M N : list_Fun A X";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    53
by (fast_tac set_cs 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    54
qed "list_Fun_CONS_I";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    55
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    56
(*Utilise the "strong" part, i.e. gfp(f)*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    57
goalw LList.thy (llist.defs @ [list_Fun_def])
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    58
    "!!M N. M: llist(A) ==> M : list_Fun A (X Un llist(A))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    59
by (etac (llist.mono RS gfp_fun_UnI2) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    60
qed "list_Fun_llist_I";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    61
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    62
(*** LList_corec satisfies the desired recurion equation ***)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    63
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    64
(*A continuity result?*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    65
goalw LList.thy [CONS_def] "CONS M (UN x.f(x)) = (UN x. CONS M (f x))";
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
    66
by (simp_tac (!simpset addsimps [In1_UN1, Scons_UN1_y]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    67
qed "CONS_UN1";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    68
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    69
(*UNUSED; obsolete?
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    70
goal Prod.thy "split p (%x y.UN z.f x y z) = (UN z. split p (%x y.f x y z))";
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
    71
by (simp_tac (!simpset setloop (split_tac [expand_split])) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    72
qed "split_UN1";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    73
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    74
goal Sum.thy "sum_case s f (%y.UN z.g y z) = (UN z.sum_case s f (%y.g y z))";
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
    75
by (simp_tac (!simpset setloop (split_tac [expand_sum_case])) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    76
qed "sum_case2_UN1";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    77
*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    78
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    79
val prems = goalw LList.thy [CONS_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    80
    "[| M<=M';  N<=N' |] ==> CONS M N <= CONS M' N'";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    81
by (REPEAT (resolve_tac ([In1_mono,Scons_mono]@prems) 1));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    82
qed "CONS_mono";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    83
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
    84
Addsimps [LList_corec_fun_def RS def_nat_rec_0,
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
    85
          LList_corec_fun_def RS def_nat_rec_Suc];
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    86
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    87
(** The directions of the equality are proved separately **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    88
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    89
goalw LList.thy [LList_corec_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    90
    "LList_corec a f <= sum_case (%u.NIL) \
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
    91
\                          (split(%z w. CONS z (LList_corec w f))) (f a)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    92
by (rtac UN1_least 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    93
by (res_inst_tac [("n","k")] natE 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
    94
by (ALLGOALS (Asm_simp_tac));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    95
by (REPEAT (resolve_tac [allI, impI, subset_refl RS CONS_mono, UN1_upper] 1));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    96
qed "LList_corec_subset1";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    97
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    98
goalw LList.thy [LList_corec_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    99
    "sum_case (%u.NIL) (split(%z w. CONS z (LList_corec w f))) (f a) <= \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   100
\    LList_corec a f";
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   101
by (simp_tac (!simpset addsimps [CONS_UN1]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   102
by (safe_tac set_cs);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   103
by (ALLGOALS (res_inst_tac [("x","Suc(?k)")] UN1_I THEN' Asm_simp_tac));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   104
qed "LList_corec_subset2";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   105
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   106
(*the recursion equation for LList_corec -- NOT SUITABLE FOR REWRITING!*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   107
goal LList.thy
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   108
    "LList_corec a f = sum_case (%u. NIL) \
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   109
\                           (split(%z w. CONS z (LList_corec w f))) (f a)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   110
by (REPEAT (resolve_tac [equalityI, LList_corec_subset1, 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   111
                         LList_corec_subset2] 1));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   112
qed "LList_corec";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   113
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   114
(*definitional version of same*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   115
val [rew] = goal LList.thy
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   116
    "[| !!x. h(x) == LList_corec x f |] ==>     \
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   117
\    h(a) = sum_case (%u.NIL) (split(%z w. CONS z (h w))) (f a)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   118
by (rewtac rew);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   119
by (rtac LList_corec 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   120
qed "def_LList_corec";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   121
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   122
(*A typical use of co-induction to show membership in the gfp. 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   123
  Bisimulation is  range(%x. LList_corec x f) *)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   124
goal LList.thy "LList_corec a f : llist({u.True})";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   125
by (res_inst_tac [("X", "range(%x.LList_corec x ?g)")] llist_coinduct 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   126
by (rtac rangeI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   127
by (safe_tac set_cs);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   128
by (stac LList_corec 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   129
by (simp_tac (!simpset addsimps [list_Fun_NIL_I, list_Fun_CONS_I, CollectI]
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   130
                       |> add_eqI) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   131
qed "LList_corec_type";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   132
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   133
(*Lemma for the proof of llist_corec*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   134
goal LList.thy
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   135
   "LList_corec a (%z.sum_case Inl (split(%v w.Inr((Leaf(v),w)))) (f z)) : \
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1465
diff changeset
   136
\   llist(range Leaf)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   137
by (res_inst_tac [("X", "range(%x.LList_corec x ?g)")] llist_coinduct 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   138
by (rtac rangeI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   139
by (safe_tac set_cs);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   140
by (stac LList_corec 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   141
by (asm_simp_tac (!simpset addsimps [list_Fun_NIL_I]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   142
by (fast_tac (set_cs addSIs [list_Fun_CONS_I]) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   143
qed "LList_corec_type2";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   144
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   145
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   146
(**** llist equality as a gfp; the bisimulation principle ****)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   147
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   148
(*This theorem is actually used, unlike the many similar ones in ZF*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   149
goal LList.thy "LListD(r) = diag({Numb(0)}) <++> (r <**> LListD(r))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   150
let val rew = rewrite_rule [NIL_def, CONS_def] in  
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   151
by (fast_tac (univ_cs addSIs (equalityI :: map rew LListD.intrs)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   152
                      addEs [rew LListD.elim]) 1)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   153
end;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   154
qed "LListD_unfold";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   155
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   156
goal LList.thy "!M N. (M,N) : LListD(diag(A)) --> ntrunc k M = ntrunc k N";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   157
by (res_inst_tac [("n", "k")] less_induct 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   158
by (safe_tac set_cs);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   159
by (etac LListD.elim 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   160
by (safe_tac (prod_cs addSEs [diagE]));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   161
by (res_inst_tac [("n", "n")] natE 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   162
by (asm_simp_tac (!simpset addsimps [ntrunc_0]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   163
by (rename_tac "n'" 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   164
by (res_inst_tac [("n", "n'")] natE 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   165
by (asm_simp_tac (!simpset addsimps [CONS_def, ntrunc_one_In1]) 1);
1673
d22110ddd0af repaired critical proofs depending on the order inside non-confluent SimpSets
oheimb
parents: 1642
diff changeset
   166
by (asm_simp_tac (!simpset addsimps [CONS_def, ntrunc_In1, ntrunc_Scons, less_Suc_eq]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   167
qed "LListD_implies_ntrunc_equality";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   168
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   169
(*The domain of the LListD relation*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   170
goalw LList.thy (llist.defs @ [NIL_def, CONS_def])
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   171
    "fst``LListD(diag(A)) <= llist(A)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   172
by (rtac gfp_upperbound 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   173
(*avoids unfolding LListD on the rhs*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   174
by (res_inst_tac [("P", "%x. fst``x <= ?B")] (LListD_unfold RS ssubst) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   175
by (Simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   176
by (fast_tac univ_cs 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   177
qed "fst_image_LListD";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   178
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   179
(*This inclusion justifies the use of coinduction to show M=N*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   180
goal LList.thy "LListD(diag(A)) <= diag(llist(A))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   181
by (rtac subsetI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   182
by (res_inst_tac [("p","x")] PairE 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   183
by (safe_tac HOL_cs);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   184
by (rtac diag_eqI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   185
by (rtac (LListD_implies_ntrunc_equality RS spec RS spec RS mp RS 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   186
          ntrunc_equality) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   187
by (assume_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   188
by (etac (fst_imageI RS (fst_image_LListD RS subsetD)) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   189
qed "LListD_subset_diag";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   190
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   191
(** Coinduction, using LListD_Fun
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   192
    THE COINDUCTIVE DEFINITION PACKAGE COULD DO THIS!
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   193
 **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   194
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   195
goalw LList.thy [LListD_Fun_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   196
    "!!M. [| M : X;  X <= LListD_Fun r (X Un LListD(r)) |] ==>  M : LListD(r)";
1046
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   197
by (etac LListD.coinduct 1);
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   198
by (etac (subsetD RS CollectD) 1);
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   199
by (assume_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   200
qed "LListD_coinduct";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   201
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   202
goalw LList.thy [LListD_Fun_def,NIL_def] "(NIL,NIL) : LListD_Fun r s";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   203
by (fast_tac set_cs 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   204
qed "LListD_Fun_NIL_I";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   205
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   206
goalw LList.thy [LListD_Fun_def,CONS_def]
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   207
 "!!x. [| x:A;  (M,N):s |] ==> (CONS x M, CONS x N) : LListD_Fun (diag A) s";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   208
by (fast_tac univ_cs 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   209
qed "LListD_Fun_CONS_I";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   210
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   211
(*Utilise the "strong" part, i.e. gfp(f)*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   212
goalw LList.thy (LListD.defs @ [LListD_Fun_def])
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   213
    "!!M N. M: LListD(r) ==> M : LListD_Fun r (X Un LListD(r))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   214
by (etac (LListD.mono RS gfp_fun_UnI2) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   215
qed "LListD_Fun_LListD_I";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   216
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   217
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   218
(*This converse inclusion helps to strengthen LList_equalityI*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   219
goal LList.thy "diag(llist(A)) <= LListD(diag(A))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   220
by (rtac subsetI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   221
by (etac LListD_coinduct 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   222
by (rtac subsetI 1);
1046
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   223
by (etac diagE 1);
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   224
by (etac ssubst 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   225
by (eresolve_tac [llist.elim] 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   226
by (ALLGOALS
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   227
    (asm_simp_tac (!simpset addsimps [diagI, LListD_Fun_NIL_I,
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   228
                                      LListD_Fun_CONS_I])));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   229
qed "diag_subset_LListD";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   230
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   231
goal LList.thy "LListD(diag(A)) = diag(llist(A))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   232
by (REPEAT (resolve_tac [equalityI, LListD_subset_diag, 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   233
                         diag_subset_LListD] 1));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   234
qed "LListD_eq_diag";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   235
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   236
goal LList.thy 
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   237
    "!!M N. M: llist(A) ==> (M,M) : LListD_Fun (diag A) (X Un diag(llist(A)))";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   238
by (rtac (LListD_eq_diag RS subst) 1);
1046
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   239
by (rtac LListD_Fun_LListD_I 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   240
by (asm_simp_tac (!simpset addsimps [LListD_eq_diag, diagI]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   241
qed "LListD_Fun_diag_I";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   242
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   243
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   244
(** To show two LLists are equal, exhibit a bisimulation! 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   245
      [also admits true equality]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   246
   Replace "A" by some particular set, like {x.True}??? *)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   247
goal LList.thy 
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   248
    "!!r. [| (M,N) : r;  r <= LListD_Fun (diag A) (r Un diag(llist(A))) \
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   249
\         |] ==>  M=N";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   250
by (rtac (LListD_subset_diag RS subsetD RS diagE) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   251
by (etac LListD_coinduct 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   252
by (asm_simp_tac (!simpset addsimps [LListD_eq_diag]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   253
by (safe_tac prod_cs);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   254
qed "LList_equalityI";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   255
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   256
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   257
(*** Finality of llist(A): Uniqueness of functions defined by corecursion ***)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   258
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   259
(*abstract proof using a bisimulation*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   260
val [prem1,prem2] = goal LList.thy
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   261
 "[| !!x. h1(x) = sum_case (%u.NIL) (split(%z w. CONS z (h1 w))) (f x);  \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   262
\    !!x. h2(x) = sum_case (%u.NIL) (split(%z w. CONS z (h2 w))) (f x) |]\
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   263
\ ==> h1=h2";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   264
by (rtac ext 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   265
(*next step avoids an unknown (and flexflex pair) in simplification*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   266
by (res_inst_tac [("A", "{u.True}"),
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   267
                  ("r", "range(%u. (h1(u),h2(u)))")] LList_equalityI 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   268
by (rtac rangeI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   269
by (safe_tac set_cs);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   270
by (stac prem1 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   271
by (stac prem2 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   272
by (simp_tac (!simpset addsimps [LListD_Fun_NIL_I,
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   273
                                 CollectI RS LListD_Fun_CONS_I]
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   274
                       |> add_eqI) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   275
qed "LList_corec_unique";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   276
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   277
val [prem] = goal LList.thy
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   278
 "[| !!x. h(x) = sum_case (%u.NIL) (split(%z w. CONS z (h w))) (f x) |] \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   279
\ ==> h = (%x.LList_corec x f)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   280
by (rtac (LList_corec RS (prem RS LList_corec_unique)) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   281
qed "equals_LList_corec";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   282
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   283
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   284
(** Obsolete LList_corec_unique proof: complete induction, not coinduction **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   285
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   286
goalw LList.thy [CONS_def] "ntrunc (Suc 0) (CONS M N) = {}";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   287
by (rtac ntrunc_one_In1 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   288
qed "ntrunc_one_CONS";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   289
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   290
goalw LList.thy [CONS_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   291
    "ntrunc (Suc(Suc(k))) (CONS M N) = CONS (ntrunc k M) (ntrunc k N)";
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   292
by (simp_tac (!simpset addsimps [ntrunc_Scons,ntrunc_In1]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   293
qed "ntrunc_CONS";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   294
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   295
val [prem1,prem2] = goal LList.thy
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   296
 "[| !!x. h1(x) = sum_case (%u.NIL) (split(%z w. CONS z (h1 w))) (f x);  \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   297
\    !!x. h2(x) = sum_case (%u.NIL) (split(%z w. CONS z (h2 w))) (f x) |]\
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   298
\ ==> h1=h2";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   299
by (rtac (ntrunc_equality RS ext) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   300
by (res_inst_tac [("x", "x")] spec 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   301
by (res_inst_tac [("n", "k")] less_induct 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   302
by (rtac allI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   303
by (stac prem1 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   304
by (stac prem2 1);
1303
010be89a7541 Hat to modify a proof because of chaned simpset for Prod.
nipkow
parents: 1266
diff changeset
   305
by (simp_tac (!simpset setloop (split_tac [expand_sum_case])) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   306
by (strip_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   307
by (res_inst_tac [("n", "n")] natE 1);
1303
010be89a7541 Hat to modify a proof because of chaned simpset for Prod.
nipkow
parents: 1266
diff changeset
   308
by (res_inst_tac [("n", "xb")] natE 2);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   309
by (ALLGOALS(asm_simp_tac(!simpset addsimps
1673
d22110ddd0af repaired critical proofs depending on the order inside non-confluent SimpSets
oheimb
parents: 1642
diff changeset
   310
            [ntrunc_0,ntrunc_one_CONS,ntrunc_CONS, less_Suc_eq])));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   311
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   312
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   313
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   314
(*** Lconst -- defined directly using lfp, but equivalent to a LList_corec ***)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   315
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   316
goal LList.thy "mono(CONS(M))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   317
by (REPEAT (ares_tac [monoI, subset_refl, CONS_mono] 1));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   318
qed "Lconst_fun_mono";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   319
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   320
(* Lconst(M) = CONS M (Lconst M) *)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   321
bind_thm ("Lconst", (Lconst_fun_mono RS (Lconst_def RS def_lfp_Tarski)));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   322
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   323
(*A typical use of co-induction to show membership in the gfp.
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   324
  The containing set is simply the singleton {Lconst(M)}. *)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   325
goal LList.thy "!!M A. M:A ==> Lconst(M): llist(A)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   326
by (rtac (singletonI RS llist_coinduct) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   327
by (safe_tac set_cs);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   328
by (res_inst_tac [("P", "%u. u: ?A")] (Lconst RS ssubst) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   329
by (REPEAT (ares_tac [list_Fun_CONS_I, singletonI, UnI1] 1));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   330
qed "Lconst_type";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   331
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   332
goal LList.thy "Lconst(M) = LList_corec M (%x.Inr((x,x)))";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   333
by (rtac (equals_LList_corec RS fun_cong) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   334
by (Simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   335
by (rtac Lconst 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   336
qed "Lconst_eq_LList_corec";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   337
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   338
(*Thus we could have used gfp in the definition of Lconst*)
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   339
goal LList.thy "gfp(%N. CONS M N) = LList_corec M (%x.Inr((x,x)))";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   340
by (rtac (equals_LList_corec RS fun_cong) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   341
by (Simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   342
by (rtac (Lconst_fun_mono RS gfp_Tarski) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   343
qed "gfp_Lconst_eq_LList_corec";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   344
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   345
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   346
(*** Isomorphisms ***)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   347
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   348
goal LList.thy "inj(Rep_llist)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   349
by (rtac inj_inverseI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   350
by (rtac Rep_llist_inverse 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   351
qed "inj_Rep_llist";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   352
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1465
diff changeset
   353
goal LList.thy "inj_onto Abs_llist (llist(range Leaf))";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   354
by (rtac inj_onto_inverseI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   355
by (etac Abs_llist_inverse 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   356
qed "inj_onto_Abs_llist";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   357
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   358
(** Distinctness of constructors **)
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 LList.thy [LNil_def,LCons_def] "~ LCons x xs = LNil";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   361
by (rtac (CONS_not_NIL RS (inj_onto_Abs_llist RS inj_onto_contraD)) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   362
by (REPEAT (resolve_tac (llist.intrs @ [rangeI, Rep_llist]) 1));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   363
qed "LCons_not_LNil";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   364
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   365
bind_thm ("LNil_not_LCons", (LCons_not_LNil RS not_sym));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   366
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   367
bind_thm ("LCons_neq_LNil", (LCons_not_LNil RS notE));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   368
val LNil_neq_LCons = sym RS LCons_neq_LNil;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   369
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   370
(** llist constructors **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   371
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   372
goalw LList.thy [LNil_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   373
    "Rep_llist(LNil) = NIL";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   374
by (rtac (llist.NIL_I RS Abs_llist_inverse) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   375
qed "Rep_llist_LNil";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   376
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   377
goalw LList.thy [LCons_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   378
    "Rep_llist(LCons x l) = CONS (Leaf x) (Rep_llist l)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   379
by (REPEAT (resolve_tac [llist.CONS_I RS Abs_llist_inverse,
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   380
                         rangeI, Rep_llist] 1));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   381
qed "Rep_llist_LCons";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   382
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   383
(** Injectiveness of CONS and LCons **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   384
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   385
goalw LList.thy [CONS_def] "(CONS M N=CONS M' N') = (M=M' & N=N')";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   386
by (fast_tac (HOL_cs addSEs [Scons_inject, make_elim In1_inject]) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   387
qed "CONS_CONS_eq2";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   388
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   389
bind_thm ("CONS_inject", (CONS_CONS_eq RS iffD1 RS conjE));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   390
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   391
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   392
(*For reasoning about abstract llist constructors*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   393
val llist_cs = set_cs addIs [Rep_llist]@llist.intrs
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   394
                      addSEs [CONS_neq_NIL,NIL_neq_CONS,CONS_inject]
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   395
                      addSDs [inj_onto_Abs_llist RS inj_ontoD,
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   396
                              inj_Rep_llist RS injD, Leaf_inject];
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   397
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   398
goalw LList.thy [LCons_def] "(LCons x xs=LCons y ys) = (x=y & xs=ys)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   399
by (fast_tac llist_cs 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   400
qed "LCons_LCons_eq";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   401
bind_thm ("LCons_inject", (LCons_LCons_eq RS iffD1 RS conjE));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   402
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   403
val [major] = goal LList.thy "CONS M N: llist(A) ==> M: A & N: llist(A)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   404
by (rtac (major RS llist.elim) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   405
by (etac CONS_neq_NIL 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   406
by (fast_tac llist_cs 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   407
qed "CONS_D2";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   408
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   409
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   410
(****** Reasoning about llist(A) ******)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   411
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   412
Addsimps [List_case_NIL, List_case_CONS];
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   413
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   414
(*A special case of list_equality for functions over lazy lists*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   415
val [Mlist,gMlist,NILcase,CONScase] = goal LList.thy
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   416
 "[| M: llist(A); g(NIL): llist(A);                             \
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   417
\    f(NIL)=g(NIL);                                             \
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   418
\    !!x l. [| x:A;  l: llist(A) |] ==>                         \
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   419
\           (f(CONS x l),g(CONS x l)) :                         \
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   420
\               LListD_Fun (diag A) ((%u.(f(u),g(u)))``llist(A) Un  \
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   421
\                                   diag(llist(A)))             \
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   422
\ |] ==> f(M) = g(M)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   423
by (rtac LList_equalityI 1);
1046
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   424
by (rtac (Mlist RS imageI) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   425
by (rtac subsetI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   426
by (etac imageE 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   427
by (etac ssubst 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   428
by (etac llist.elim 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   429
by (etac ssubst 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   430
by (stac NILcase 1);
1046
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   431
by (rtac (gMlist RS LListD_Fun_diag_I) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   432
by (etac ssubst 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   433
by (REPEAT (ares_tac [CONScase] 1));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   434
qed "LList_fun_equalityI";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   435
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   436
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   437
(*** The functional "Lmap" ***)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   438
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   439
goal LList.thy "Lmap f NIL = NIL";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   440
by (rtac (Lmap_def RS def_LList_corec RS trans) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   441
by (Simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   442
qed "Lmap_NIL";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   443
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   444
goal LList.thy "Lmap f (CONS M N) = CONS (f M) (Lmap f N)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   445
by (rtac (Lmap_def RS def_LList_corec RS trans) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   446
by (Simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   447
qed "Lmap_CONS";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   448
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   449
(*Another type-checking proof by coinduction*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   450
val [major,minor] = goal LList.thy
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   451
    "[| M: llist(A);  !!x. x:A ==> f(x):B |] ==> Lmap f M: llist(B)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   452
by (rtac (major RS imageI RS llist_coinduct) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   453
by (safe_tac set_cs);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   454
by (etac llist.elim 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   455
by (ALLGOALS (asm_simp_tac (!simpset addsimps [Lmap_NIL,Lmap_CONS])));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   456
by (REPEAT (ares_tac [list_Fun_NIL_I, list_Fun_CONS_I, 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   457
                      minor, imageI, UnI1] 1));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   458
qed "Lmap_type";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   459
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   460
(*This type checking rule synthesises a sufficiently large set for f*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   461
val [major] = goal LList.thy  "M: llist(A) ==> Lmap f M: llist(f``A)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   462
by (rtac (major RS Lmap_type) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   463
by (etac imageI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   464
qed "Lmap_type2";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   465
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   466
(** Two easy results about Lmap **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   467
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   468
val [prem] = goalw LList.thy [o_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   469
    "M: llist(A) ==> Lmap (f o g) M = Lmap f (Lmap g M)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   470
by (rtac (prem RS imageI RS LList_equalityI) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   471
by (safe_tac set_cs);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   472
by (etac llist.elim 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   473
by (ALLGOALS (asm_simp_tac (!simpset addsimps [Lmap_NIL,Lmap_CONS])));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   474
by (REPEAT (ares_tac [LListD_Fun_NIL_I, imageI, UnI1,
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   475
                      rangeI RS LListD_Fun_CONS_I] 1));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   476
qed "Lmap_compose";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   477
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   478
val [prem] = goal LList.thy "M: llist(A) ==> Lmap (%x.x) M = M";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   479
by (rtac (prem RS imageI RS LList_equalityI) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   480
by (safe_tac set_cs);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   481
by (etac llist.elim 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   482
by (ALLGOALS (asm_simp_tac (!simpset addsimps [Lmap_NIL,Lmap_CONS])));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   483
by (REPEAT (ares_tac [LListD_Fun_NIL_I, imageI RS UnI1,
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   484
                      rangeI RS LListD_Fun_CONS_I] 1));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   485
qed "Lmap_ident";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   486
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   487
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   488
(*** Lappend -- its two arguments cause some complications! ***)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   489
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   490
goalw LList.thy [Lappend_def] "Lappend NIL NIL = NIL";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   491
by (rtac (LList_corec RS trans) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   492
by (Simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   493
qed "Lappend_NIL_NIL";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   494
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   495
goalw LList.thy [Lappend_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   496
    "Lappend NIL (CONS N N') = CONS N (Lappend NIL N')";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   497
by (rtac (LList_corec RS trans) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   498
by (Simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   499
qed "Lappend_NIL_CONS";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   500
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   501
goalw LList.thy [Lappend_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   502
    "Lappend (CONS M M') N = CONS M (Lappend M' N)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   503
by (rtac (LList_corec RS trans) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   504
by (Simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   505
qed "Lappend_CONS";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   506
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   507
Addsimps [llist.NIL_I, Lappend_NIL_NIL, Lappend_NIL_CONS,
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   508
          Lappend_CONS, LListD_Fun_CONS_I, range_eqI, image_eqI];
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   509
Delsimps [Pair_eq];
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   510
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   511
goal LList.thy "!!M. M: llist(A) ==> Lappend NIL M = M";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   512
by (etac LList_fun_equalityI 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   513
by (ALLGOALS Asm_simp_tac);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   514
qed "Lappend_NIL";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   515
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   516
goal LList.thy "!!M. M: llist(A) ==> Lappend M NIL = M";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   517
by (etac LList_fun_equalityI 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   518
by (ALLGOALS Asm_simp_tac);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   519
qed "Lappend_NIL2";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   520
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   521
(** Alternative type-checking proofs for Lappend **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   522
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   523
(*weak co-induction: bisimulation and case analysis on both variables*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   524
goal LList.thy
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   525
    "!!M N. [| M: llist(A); N: llist(A) |] ==> Lappend M N: llist(A)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   526
by (res_inst_tac
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   527
    [("X", "UN u:llist(A). UN v: llist(A). {Lappend u v}")] llist_coinduct 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   528
by (fast_tac set_cs 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   529
by (safe_tac set_cs);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   530
by (eres_inst_tac [("a", "u")] llist.elim 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   531
by (eres_inst_tac [("a", "v")] llist.elim 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   532
by (ALLGOALS
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   533
    (Asm_simp_tac THEN'
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   534
     fast_tac (set_cs addSIs [llist.NIL_I, list_Fun_NIL_I, list_Fun_CONS_I])));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   535
qed "Lappend_type";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   536
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   537
(*strong co-induction: bisimulation and case analysis on one variable*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   538
goal LList.thy
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   539
    "!!M N. [| M: llist(A); N: llist(A) |] ==> Lappend M N: llist(A)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   540
by (res_inst_tac [("X", "(%u.Lappend u N)``llist(A)")] llist_coinduct 1);
1046
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   541
by (etac imageI 1);
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   542
by (rtac subsetI 1);
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   543
by (etac imageE 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   544
by (eres_inst_tac [("a", "u")] llist.elim 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   545
by (asm_simp_tac (!simpset addsimps [Lappend_NIL, list_Fun_llist_I]) 1);
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   546
by (Asm_simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   547
by (fast_tac (set_cs addSIs [list_Fun_CONS_I]) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   548
qed "Lappend_type";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   549
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   550
(**** Lazy lists as the type 'a llist -- strongly typed versions of above ****)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   551
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   552
(** llist_case: case analysis for 'a llist **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   553
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   554
Addsimps ([Abs_llist_inverse, Rep_llist_inverse,
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   555
           Rep_llist, rangeI, inj_Leaf, Inv_f_f] @ llist.intrs);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   556
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   557
goalw LList.thy [llist_case_def,LNil_def]  "llist_case c d LNil = c";
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   558
by (Simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   559
qed "llist_case_LNil";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   560
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   561
goalw LList.thy [llist_case_def,LCons_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   562
    "llist_case c d (LCons M N) = d M N";
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   563
by (Simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   564
qed "llist_case_LCons";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   565
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   566
(*Elimination is case analysis, not induction.*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   567
val [prem1,prem2] = goalw LList.thy [NIL_def,CONS_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   568
    "[| l=LNil ==> P;  !!x l'. l=LCons x l' ==> P \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   569
\    |] ==> P";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   570
by (rtac (Rep_llist RS llist.elim) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   571
by (rtac (inj_Rep_llist RS injD RS prem1) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   572
by (stac Rep_llist_LNil 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   573
by (assume_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   574
by (etac rangeE 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   575
by (rtac (inj_Rep_llist RS injD RS prem2) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   576
by (asm_simp_tac (!simpset delsimps [CONS_CONS_eq] addsimps [Rep_llist_LCons]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   577
by (etac (Abs_llist_inverse RS ssubst) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   578
by (rtac refl 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   579
qed "llistE";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   580
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   581
(** llist_corec: corecursion for 'a llist **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   582
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   583
goalw LList.thy [llist_corec_def,LNil_def,LCons_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   584
    "llist_corec a f = sum_case (%u. LNil) \
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   585
\                           (split(%z w. LCons z (llist_corec w f))) (f a)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   586
by (stac LList_corec 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   587
by (res_inst_tac [("s","f(a)")] sumE 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   588
by (asm_simp_tac (!simpset addsimps [LList_corec_type2]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   589
by (res_inst_tac [("p","y")] PairE 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   590
by (asm_simp_tac (!simpset addsimps [LList_corec_type2]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   591
(*FIXME: correct case splits usd to be found automatically:
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   592
by (ASM_SIMP_TAC(!simpset addsimps [LList_corec_type2]) 1);*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   593
qed "llist_corec";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   594
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   595
(*definitional version of same*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   596
val [rew] = goal LList.thy
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   597
    "[| !!x. h(x) == llist_corec x f |] ==>     \
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   598
\    h(a) = sum_case (%u.LNil) (split(%z w. LCons z (h w))) (f a)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   599
by (rewtac rew);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   600
by (rtac llist_corec 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   601
qed "def_llist_corec";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   602
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   603
(**** Proofs about type 'a llist functions ****)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   604
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   605
(*** Deriving llist_equalityI -- llist equality is a bisimulation ***)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   606
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   607
goalw LList.thy [LListD_Fun_def]
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1465
diff changeset
   608
    "!!r A. r <= (llist A) Times (llist A) ==> \
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1465
diff changeset
   609
\           LListD_Fun (diag A) r <= (llist A) Times (llist A)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   610
by (stac llist_unfold 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   611
by (simp_tac (!simpset addsimps [NIL_def, CONS_def]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   612
by (fast_tac univ_cs 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   613
qed "LListD_Fun_subset_Sigma_llist";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   614
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   615
goal LList.thy
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   616
    "prod_fun Rep_llist Rep_llist `` r <= \
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1465
diff changeset
   617
\    (llist(range Leaf)) Times (llist(range Leaf))";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   618
by (fast_tac (prod_cs addIs [Rep_llist]) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   619
qed "subset_Sigma_llist";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   620
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   621
val [prem] = goal LList.thy
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1465
diff changeset
   622
    "r <= (llist(range Leaf)) Times (llist(range Leaf)) ==> \
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   623
\    prod_fun (Rep_llist o Abs_llist) (Rep_llist o Abs_llist) `` r <= r";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   624
by (safe_tac prod_cs);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   625
by (rtac (prem RS subsetD RS SigmaE2) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   626
by (assume_tac 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   627
by (asm_simp_tac (!simpset addsimps [o_def,prod_fun,Abs_llist_inverse]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   628
qed "prod_fun_lemma";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   629
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   630
goal LList.thy
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   631
    "prod_fun Rep_llist  Rep_llist `` range(%x. (x, x)) = \
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1465
diff changeset
   632
\    diag(llist(range Leaf))";
1046
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   633
by (rtac equalityI 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   634
by (fast_tac (univ_cs addIs [Rep_llist]) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   635
by (fast_tac (univ_cs addSEs [Abs_llist_inverse RS subst]) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   636
qed "prod_fun_range_eq_diag";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   637
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   638
(** To show two llists are equal, exhibit a bisimulation! 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   639
      [also admits true equality] **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   640
val [prem1,prem2] = goalw LList.thy [llistD_Fun_def]
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   641
    "[| (l1,l2) : r;  r <= llistD_Fun(r Un range(%x.(x,x))) |] ==> l1=l2";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   642
by (rtac (inj_Rep_llist RS injD) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   643
by (res_inst_tac [("r", "prod_fun Rep_llist Rep_llist ``r"),
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   644
                  ("A", "range(Leaf)")] 
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   645
        LList_equalityI 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   646
by (rtac (prem1 RS prod_fun_imageI) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   647
by (rtac (prem2 RS image_mono RS subset_trans) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   648
by (rtac (image_compose RS subst) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   649
by (rtac (prod_fun_compose RS subst) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   650
by (rtac (image_Un RS ssubst) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   651
by (stac prod_fun_range_eq_diag 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   652
by (rtac (LListD_Fun_subset_Sigma_llist RS prod_fun_lemma) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   653
by (rtac (subset_Sigma_llist RS Un_least) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   654
by (rtac diag_subset_Sigma 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   655
qed "llist_equalityI";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   656
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   657
(** Rules to prove the 2nd premise of llist_equalityI **)
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   658
goalw LList.thy [llistD_Fun_def,LNil_def] "(LNil,LNil) : llistD_Fun(r)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   659
by (rtac (LListD_Fun_NIL_I RS prod_fun_imageI) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   660
qed "llistD_Fun_LNil_I";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   661
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   662
val [prem] = goalw LList.thy [llistD_Fun_def,LCons_def]
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   663
    "(l1,l2):r ==> (LCons x l1, LCons x l2) : llistD_Fun(r)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   664
by (rtac (rangeI RS LListD_Fun_CONS_I RS prod_fun_imageI) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   665
by (rtac (prem RS prod_fun_imageI) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   666
qed "llistD_Fun_LCons_I";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   667
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   668
(*Utilise the "strong" part, i.e. gfp(f)*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   669
goalw LList.thy [llistD_Fun_def]
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   670
     "!!l. (l,l) : llistD_Fun(r Un range(%x.(x,x)))";
1046
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   671
by (rtac (Rep_llist_inverse RS subst) 1);
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   672
by (rtac prod_fun_imageI 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   673
by (rtac (image_Un RS ssubst) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   674
by (stac prod_fun_range_eq_diag 1);
1046
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   675
by (rtac (Rep_llist RS LListD_Fun_diag_I) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   676
qed "llistD_Fun_range_I";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   677
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   678
(*A special case of list_equality for functions over lazy lists*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   679
val [prem1,prem2] = goal LList.thy
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   680
    "[| f(LNil)=g(LNil);                                                \
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   681
\       !!x l. (f(LCons x l),g(LCons x l)) :                            \
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   682
\              llistD_Fun(range(%u. (f(u),g(u))) Un range(%v. (v,v)))   \
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   683
\    |] ==> f(l) = (g(l :: 'a llist) :: 'b llist)";
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   684
by (res_inst_tac [("r", "range(%u. (f(u),g(u)))")] llist_equalityI 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   685
by (rtac rangeI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   686
by (rtac subsetI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   687
by (etac rangeE 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   688
by (etac ssubst 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   689
by (res_inst_tac [("l", "u")] llistE 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   690
by (etac ssubst 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   691
by (stac prem1 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   692
by (rtac llistD_Fun_range_I 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   693
by (etac ssubst 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   694
by (rtac prem2 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   695
qed "llist_fun_equalityI";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   696
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   697
(*simpset for llist bisimulations*)
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   698
Addsimps [llist_case_LNil, llist_case_LCons, 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   699
          llistD_Fun_LNil_I, llistD_Fun_LCons_I];
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   700
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   701
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   702
(*** The functional "lmap" ***)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   703
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   704
goal LList.thy "lmap f LNil = LNil";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   705
by (rtac (lmap_def RS def_llist_corec RS trans) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   706
by (Simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   707
qed "lmap_LNil";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   708
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   709
goal LList.thy "lmap f (LCons M N) = LCons (f M) (lmap f N)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   710
by (rtac (lmap_def RS def_llist_corec RS trans) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   711
by (Simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   712
qed "lmap_LCons";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   713
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   714
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   715
(** Two easy results about lmap **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   716
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   717
goal LList.thy "lmap (f o g) l = lmap f (lmap g l)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   718
by (res_inst_tac [("l","l")] llist_fun_equalityI 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   719
by (ALLGOALS (simp_tac (!simpset addsimps [lmap_LNil, lmap_LCons])));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   720
qed "lmap_compose";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   721
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   722
goal LList.thy "lmap (%x.x) l = l";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   723
by (res_inst_tac [("l","l")] llist_fun_equalityI 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   724
by (ALLGOALS (simp_tac (!simpset addsimps [lmap_LNil, lmap_LCons])));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   725
qed "lmap_ident";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   726
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   727
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   728
(*** iterates -- llist_fun_equalityI cannot be used! ***)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   729
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   730
goal LList.thy "iterates f x = LCons x (iterates f (f x))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   731
by (rtac (iterates_def RS def_llist_corec RS trans) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   732
by (Simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   733
qed "iterates";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   734
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   735
goal LList.thy "lmap f (iterates f x) = iterates f (f x)";
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   736
by (res_inst_tac [("r", "range(%u.(lmap f (iterates f u),iterates f (f u)))")] 
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   737
    llist_equalityI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   738
by (rtac rangeI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   739
by (safe_tac set_cs);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   740
by (res_inst_tac [("x1", "f(u)")] (iterates RS ssubst) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   741
by (res_inst_tac [("x1", "u")] (iterates RS ssubst) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   742
by (simp_tac (!simpset addsimps [lmap_LCons]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   743
qed "lmap_iterates";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   744
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   745
goal LList.thy "iterates f x = LCons x (lmap f (iterates f x))";
1046
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   746
by (rtac (lmap_iterates RS ssubst) 1);
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   747
by (rtac iterates 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   748
qed "iterates_lmap";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   749
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   750
(*** A rather complex proof about iterates -- cf Andy Pitts ***)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   751
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   752
(** Two lemmas about natrec n x (%m.g), which is essentially (g^n)(x) **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   753
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   754
goal LList.thy
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1303
diff changeset
   755
    "nat_rec n (LCons b l) (%m. lmap(f)) =      \
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   756
\    LCons (nat_rec n b (%m. f)) (nat_rec n l (%m. lmap(f)))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   757
by (nat_ind_tac "n" 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   758
by (ALLGOALS (asm_simp_tac (!simpset addsimps [lmap_LCons])));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   759
qed "fun_power_lmap";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   760
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   761
goal Nat.thy "nat_rec n (g x) (%m. g) = nat_rec (Suc n) x (%m. g)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   762
by (nat_ind_tac "n" 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   763
by (ALLGOALS Asm_simp_tac);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   764
qed "fun_power_Suc";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   765
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   766
val Pair_cong = read_instantiate_sg (sign_of Prod.thy)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   767
 [("f","Pair")] (standard(refl RS cong RS cong));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   768
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   769
(*The bisimulation consists of {(lmap(f)^n (h(u)), lmap(f)^n (iterates(f,u)))}
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   770
  for all u and all n::nat.*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   771
val [prem] = goal LList.thy
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   772
    "(!!x. h(x) = LCons x (lmap f (h x))) ==> h = iterates(f)";
1046
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   773
by (rtac ext 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   774
by (res_inst_tac [("r", 
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   775
   "UN u. range(%n. (nat_rec n (h u) (%m y.lmap f y), \
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   776
\                    nat_rec n (iterates f u) (%m y.lmap f y)))")] 
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   777
    llist_equalityI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   778
by (REPEAT (resolve_tac [UN1_I, range_eqI, Pair_cong, nat_rec_0 RS sym] 1));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   779
by (safe_tac set_cs);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   780
by (stac iterates 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   781
by (stac prem 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   782
by (stac fun_power_lmap 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   783
by (stac fun_power_lmap 1);
1046
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   784
by (rtac llistD_Fun_LCons_I 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   785
by (rtac (lmap_iterates RS subst) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   786
by (stac fun_power_Suc 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   787
by (stac fun_power_Suc 1);
1046
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   788
by (rtac (UN1_I RS UnI1) 1);
9d2261a3e682 expandshort
lcp
parents: 972
diff changeset
   789
by (rtac rangeI 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   790
qed "iterates_equality";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   791
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   792
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   793
(*** lappend -- its two arguments cause some complications! ***)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   794
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   795
goalw LList.thy [lappend_def] "lappend LNil LNil = LNil";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   796
by (rtac (llist_corec RS trans) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   797
by (Simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   798
qed "lappend_LNil_LNil";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   799
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   800
goalw LList.thy [lappend_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   801
    "lappend LNil (LCons l l') = LCons l (lappend LNil l')";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   802
by (rtac (llist_corec RS trans) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   803
by (Simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   804
qed "lappend_LNil_LCons";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   805
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   806
goalw LList.thy [lappend_def]
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   807
    "lappend (LCons l l') N = LCons l (lappend l' N)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   808
by (rtac (llist_corec RS trans) 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   809
by (Simp_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   810
qed "lappend_LCons";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   811
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   812
goal LList.thy "lappend LNil l = l";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   813
by (res_inst_tac [("l","l")] llist_fun_equalityI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   814
by (ALLGOALS 
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   815
    (simp_tac (!simpset addsimps [lappend_LNil_LNil, lappend_LNil_LCons])));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   816
qed "lappend_LNil";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   817
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   818
goal LList.thy "lappend l LNil = l";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   819
by (res_inst_tac [("l","l")] llist_fun_equalityI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   820
by (ALLGOALS 
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   821
    (simp_tac (!simpset addsimps [lappend_LNil_LNil, lappend_LCons])));
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   822
qed "lappend_LNil2";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   823
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   824
(*The infinite first argument blocks the second*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   825
goal LList.thy "lappend (iterates f x) N = iterates f x";
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   826
by (res_inst_tac [("r", "range(%u.(lappend (iterates f u) N,iterates f u))")] 
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   827
    llist_equalityI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   828
by (rtac rangeI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   829
by (safe_tac set_cs);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   830
by (stac iterates 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   831
by (simp_tac (!simpset addsimps [lappend_LCons]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   832
qed "lappend_iterates";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   833
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   834
(** Two proofs that lmap distributes over lappend **)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   835
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   836
(*Long proof requiring case analysis on both both arguments*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   837
goal LList.thy "lmap f (lappend l n) = lappend (lmap f l) (lmap f n)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   838
by (res_inst_tac 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   839
    [("r",  
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 969
diff changeset
   840
      "UN n. range(%l.(lmap f (lappend l n),lappend (lmap f l) (lmap f n)))")] 
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   841
    llist_equalityI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   842
by (rtac UN1_I 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   843
by (rtac rangeI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   844
by (safe_tac set_cs);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   845
by (res_inst_tac [("l", "l")] llistE 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   846
by (res_inst_tac [("l", "n")] llistE 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   847
by (ALLGOALS (asm_simp_tac (!simpset addsimps
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   848
      [lappend_LNil_LNil,lappend_LCons,lappend_LNil_LCons,
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   849
       lmap_LNil,lmap_LCons])));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   850
by (REPEAT_SOME (ares_tac [llistD_Fun_LCons_I, UN1_I RS UnI1, rangeI]));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   851
by (rtac range_eqI 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   852
by (rtac (refl RS Pair_cong) 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   853
by (stac lmap_LNil 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   854
by (rtac refl 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   855
qed "lmap_lappend_distrib";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   856
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   857
(*Shorter proof of theorem above using llist_equalityI as strong coinduction*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   858
goal LList.thy "lmap f (lappend l n) = lappend (lmap f l) (lmap f n)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   859
by (res_inst_tac [("l","l")] llist_fun_equalityI 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   860
by (simp_tac (!simpset addsimps [lappend_LNil, lmap_LNil])1);
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   861
by (simp_tac (!simpset addsimps [lappend_LCons, lmap_LCons]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   862
qed "lmap_lappend_distrib";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   863
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   864
(*Without strong coinduction, three case analyses might be needed*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   865
goal LList.thy "lappend (lappend l1 l2) l3 = lappend l1 (lappend l2 l3)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   866
by (res_inst_tac [("l","l1")] llist_fun_equalityI 1);
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   867
by (simp_tac (!simpset addsimps [lappend_LNil])1);
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1046
diff changeset
   868
by (simp_tac (!simpset addsimps [lappend_LCons]) 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   869
qed "lappend_assoc";