doc-src/TutorialI/todo.tobias
author nipkow
Thu, 03 May 2001 17:51:29 +0200
changeset 11282 297a58ea405f
parent 11256 49afcce3bada
child 11548 0028bd06a19c
permissions -rw-r--r--
*** empty log message ***
nipkow@10281
     1
Implementation
nipkow@10281
     2
==============
nipkow@10177
     3
nipkow@11158
     4
- (#2 * x) = #2 * - x is not proved by arith
nipkow@11158
     5
nipkow@11160
     6
a simp command for terms
nipkow@11160
     7
nipkow@11160
     8
----------------------------------------------------------------------
nipkow@11160
     9
primrec 
nipkow@11160
    10
"(foorec [] []) = []"
nipkow@11160
    11
"(foorec [] (y # ys)) = (y # (foorec [] ys))"
nipkow@11160
    12
nipkow@11160
    13
*** Primrec definition error:
nipkow@11160
    14
*** extra variables on rhs: "y", "ys"
nipkow@11160
    15
*** in
nipkow@11160
    16
*** "((foorec [] ((y::'a_1) # (ys::'a_1 list))) = (y # (foorec [] ys)))"
nipkow@11160
    17
*** At command "primrec".
nipkow@11160
    18
nipkow@11160
    19
Bessere Fehlermeldung!
nipkow@11160
    20
----------------------------------------------------------------------
nipkow@11160
    21
nipkow@10608
    22
Relation: comp -> composition
nipkow@10177
    23
nipkow@10177
    24
Add map_cong?? (upto 10% slower)
nipkow@10177
    25
nipkow@10281
    26
Recdef: Get rid of function name in header.
nipkow@10281
    27
Support mutual recursion (Konrad?)
nipkow@10177
    28
nipkow@11282
    29
improve solver in simplifier: treat & and ! ...
nipkow@11282
    30
nipkow@11282
    31
better 1 point rules:
nipkow@11282
    32
!x. !y. x = f y --> P x y  should reduce to  !y. P (f y) y.
nipkow@11282
    33
nipkow@10177
    34
use arith_tac in recdef to solve termination conditions?
nipkow@10177
    35
-> new example in Recdef/termination
nipkow@10177
    36
nipkow@10177
    37
a tactic for replacing a specific occurrence:
nipkow@10654
    38
apply(subst [2] thm)
nipkow@10177
    39
nipkow@10186
    40
it would be nice if @term could deal with ?-vars.
nipkow@10186
    41
then a number of (unchecked!) @texts could be converted to @terms.
nipkow@10186
    42
nipkow@10189
    43
it would be nice if one could get id to the enclosing quotes in the [source] option.
nipkow@10189
    44
nipkow@10281
    45
More predefined functions for datatypes: map?
nipkow@10281
    46
nipkow@10281
    47
Induction rules for int: int_le/ge_induct?
nipkow@10281
    48
Needed for ifak example. But is that example worth it?
nipkow@10281
    49
nipkow@10608
    50
Komischerweise geht das Splitten von _Annahmen_ auch mit simp_tac, was
nipkow@10608
    51
ein generelles Feature ist, das man vielleicht mal abstellen sollte.
nipkow@10608
    52
nipkow@10520
    53
proper mutual simplification
nipkow@10520
    54
nipkow@10520
    55
defs with = and pattern matching??
nipkow@10340
    56
nipkow@10186
    57
nipkow@10177
    58
Minor fixes in the tutorial
nipkow@10177
    59
===========================
nipkow@10177
    60
nipkow@11282
    61
recdef: failed tcs no longer shown! (sec:Recursion over nested datatypes)
nipkow@11256
    62
say something about how conditions are proved?
nipkow@11256
    63
No, better show failed proof attempts.
nipkow@11160
    64
nipkow@11256
    65
Advanced recdef: explain recdef_tc? No. Adjust recdef!
nipkow@11160
    66
nipkow@10983
    67
Adjust FP textbook refs: new Bird, Hudak
nipkow@10983
    68
Discrete math textbook: Rosen?
nipkow@10983
    69
nipkow@10654
    70
adjust type of ^ in tab:overloading
nipkow@10654
    71
nipkow@10177
    72
an example of induction: !y. A --> B --> C ??
nipkow@10177
    73
nipkow@10509
    74
Explain type_definition and mention pre-proved thms in subset.thy?
nipkow@10509
    75
-> Types/typedef
nipkow@10509
    76
nipkow@10177
    77
Appendix: Lexical: long ids.
nipkow@10177
    78
nipkow@10177
    79
Warning: infixes automatically become reserved words!
nipkow@10177
    80
nipkow@10177
    81
Forward ref from blast proof of Puzzle (AdvancedInd) to Isar proof?
nipkow@10177
    82
nipkow@10177
    83
recdef with nested recursion: either an example or at least a pointer to the
nipkow@10177
    84
literature. In Recdef/termination.thy, at the end.
nipkow@10177
    85
%FIXME, with one exception: nested recursion.
nipkow@10177
    86
nipkow@11202
    87
Syntax section: syntax annotations not just for consts but also for constdefs and datatype.
nipkow@10186
    88
nipkow@10283
    89
Appendix with list functions.
nipkow@10283
    90
nipkow@11235
    91
All theory sources on the web?
nipkow@11235
    92
nipkow@10177
    93
nipkow@10177
    94
Minor additions to the tutorial, unclear where
nipkow@10177
    95
==============================================
nipkow@10177
    96
nipkow@10855
    97
unfold?
nipkow@10845
    98
nipkow@10177
    99
nipkow@10177
   100
Possible exercises
nipkow@10177
   101
==================
nipkow@10177
   102
nipkow@10177
   103
Exercises
nipkow@10971
   104
nipkow@10971
   105
For extensionality (in Sets chapter): prove
nipkow@10971
   106
valif o norm = valif
nipkow@10971
   107
in If-expression case study (Ifexpr)
nipkow@10177
   108
nipkow@10177
   109
Nested inductive datatypes: another example/exercise:
nipkow@10177
   110
 size(t) <= size(subst s t)?
nipkow@10177
   111
nipkow@10177
   112
insertion sort: primrec, later recdef
nipkow@10177
   113
nipkow@10177
   114
OTree:
nipkow@10177
   115
 first version only for non-empty trees:
nipkow@10177
   116
 Tip 'a | Node tree tree
nipkow@10177
   117
 Then real version?
nipkow@10177
   118
 First primrec, then recdef?
nipkow@10177
   119
nipkow@10177
   120
Ind. sets: define ABC inductively and prove
nipkow@10177
   121
ABC = {rep A n @ rep B n @ rep C n. True}
nipkow@10177
   122
nipkow@10654
   123
Partial rekursive functions / Nontermination:
nipkow@10654
   124
nipkow@10654
   125
Exercise: ?! f. !i. f i = if i=0 then 1 else i*f(i-1)
nipkow@10654
   126
(What about sum? Is there one, a unique one?)
nipkow@10654
   127
nipkow@10654
   128
Exercise
nipkow@10654
   129
Better(?) sum i = fst(while (%(s,i). i=0) (%(s,i). (s+i,i-1)) (0,i))
nipkow@10654
   130
Prove 0 <= i ==> sum i = i*(i+1) via while-rule
nipkow@10654
   131
nipkow@10177
   132
Possible examples/case studies
nipkow@10177
   133
==============================
nipkow@10177
   134
nipkow@10177
   135
Trie: Define functional version
nipkow@10177
   136
datatype ('a,'b)trie = Trie ('b option) ('a => ('a,'b)trie option)
nipkow@10177
   137
lookup t [] = value t
nipkow@10177
   138
lookup t (a#as) = case tries t a of None => None | Some s => lookup s as
nipkow@10177
   139
Maybe as an exercise?
nipkow@10177
   140
nipkow@10177
   141
Trie: function for partial matches (prefixes). Needs sets for spec/proof.
nipkow@10177
   142
nipkow@10177
   143
Sets via ordered list of intervals. (Isa/Interval(2))
nipkow@10177
   144
nipkow@10177
   145
propositional logic (soundness and completeness?),
nipkow@10177
   146
predicate logic (soundness?),
nipkow@10177
   147
nipkow@10177
   148
Tautology checker. Based on Ifexpr or prop.logic?
nipkow@10177
   149
Include forward reference in relevant section.
nipkow@10177
   150
nipkow@10177
   151
Sorting with comp-parameter and with type class (<)
nipkow@10177
   152
nipkow@10654
   153
Recdef:more example proofs:
nipkow@10654
   154
 if-normalization with measure function,
nipkow@10654
   155
 nested if-normalization,
nipkow@10654
   156
 quicksort
nipkow@10654
   157
 Trie?
nipkow@10654
   158
nipkow@10177
   159
New book by Bird?
nipkow@10177
   160
nipkow@10177
   161
Steps Towards Mechanizing Program Transformations Using PVS by N. Shankar,
nipkow@10177
   162
      Science of Computer Programming, 26(1-3):33-57, 1996. 
nipkow@10177
   163
You can get it from http://www.csl.sri.com/scp95.html
nipkow@10177
   164
nipkow@10177
   165
J Moore article Towards a ...
nipkow@10177
   166
Mergesort, JVM
nipkow@10177
   167
nipkow@10177
   168
nipkow@10177
   169
Additional topics
nipkow@10177
   170
=================
nipkow@10177
   171
nipkow@10281
   172
Recdef with nested recursion?
nipkow@10177
   173
nipkow@10177
   174
Extensionality: applications in
nipkow@10177
   175
- boolean expressions: valif o bool2if = value
nipkow@10177
   176
- Advanced datatypes exercise subst (f o g) = subst f o subst g
nipkow@10177
   177
nipkow@10177
   178
A look at the library?
nipkow@10281
   179
Map.
nipkow@10177
   180
nipkow@10177
   181
Prototyping?
nipkow@10177
   182
nipkow@10177
   183
==============================================================