test/Tools/isac/ADDTESTS/course/SignalProcess/Build_Inverse_Z_Transform.thy
author Jan Rocnik <jan.rocnik@student.tugraz.at>
Sat, 18 Feb 2012 15:12:19 +0100
changeset 42371 27f197861829
parent 42370 a37d7751b913
child 42374 12c1c82fdcb4
child 42376 9e59542132b3
permissions -rwxr-xr-x
tuned - bakk thesis, added some examples
neuper@42301
     1
(* Title:  Build_Inverse_Z_Transform
neuper@42279
     2
   Author: Jan Rocnik
neuper@42279
     3
   (c) copyright due to lincense terms.
neuper@42279
     4
12345678901234567890123456789012345678901234567890123456789012345678901234567890
neuper@42279
     5
        10        20        30        40        50        60        70        80
neuper@42279
     6
*)
neuper@42279
     7
jan@42298
     8
theory Build_Inverse_Z_Transform imports Isac
neuper@42289
     9
  
neuper@42289
    10
begin
neuper@42279
    11
jan@42368
    12
text{* We stepwise build \ttfamily Inverse\_Z\_Transform.thy \normalfont as an 
jan@42368
    13
  exercise. Because subsection~\ref{sec:stepcheck} requires 
jan@42368
    14
  \ttfamily Inverse\_Z\_Transform.thy \normalfont as a subtheory of \ttfamily 
jan@42368
    15
  Isac.thy\normalfont, the setup has been changed from \ttfamily theory 
jan@42368
    16
  Inverse\_Z\_Transform imports Isac \normalfont to the above one.
jan@42368
    17
  \par \noindent
jan@42368
    18
  \begin{center} 
jan@42368
    19
  \textbf{ATTENTION WITH NAMES OF IDENTIFIERS WHEN GOING INTO INTERNALS}
jan@42368
    20
  \end{center}
jan@42368
    21
  Here in this theory there are the internal names twice, for instance we have
jan@42368
    22
  \ttfamily (Thm.derivation\_name @{thm rule1} = 
jan@42368
    23
  "Build\_Inverse\_Z\_Transform.rule1") = true; \normalfont
jan@42368
    24
  but actually in us will be \ttfamily Inverse\_Z\_Transform.rule1 \normalfont
jan@42368
    25
*}
neuper@42279
    26
jan@42368
    27
section {*Trials towards the Z-Transform\label{sec:trials}*}
jan@42368
    28
neuper@42279
    29
ML {*val thy = @{theory Isac};*}
neuper@42279
    30
jan@42368
    31
subsection {*Notations and Terms*}
jan@42368
    32
text{*\noindent Try which notations we are able to use.*}
neuper@42279
    33
ML {*
jan@42368
    34
  @{term "1 < || z ||"};
jan@42368
    35
  @{term "z / (z - 1)"};
jan@42368
    36
  @{term "-u -n - 1"};
jan@42368
    37
  @{term "-u [-n - 1]"}; (*[ ] denotes lists !!!*)
jan@42368
    38
  @{term "z /(z - 1) = -u [-n - 1]"};Isac
jan@42368
    39
  @{term "1 < || z || ==> z / (z - 1) = -u [-n - 1]"};
jan@42368
    40
  term2str @{term "1 < || z || ==> z / (z - 1) = -u [-n - 1]"};
neuper@42279
    41
*}
jan@42368
    42
text{*\noindent Try which symbols we are able to use and how we generate them.*}
neuper@42279
    43
ML {*
jan@42368
    44
  (*alpha -->  "</alpha>" *)
jan@42368
    45
  @{term "\<alpha> "};
jan@42368
    46
  @{term "\<delta> "};
jan@42368
    47
  @{term "\<phi> "};
jan@42368
    48
  @{term "\<rho> "};
jan@42368
    49
  term2str @{term "\<rho> "};
neuper@42279
    50
*}
neuper@42279
    51
jan@42368
    52
subsection {*Rules*}
jan@42368
    53
(*axiomatization "z / (z - 1) = -u [-n - 1]"
jan@42368
    54
  Illegal variable name: "z / (z - 1) = -u [-n - 1]" *)
jan@42368
    55
(*definition     "z / (z - 1) = -u [-n - 1]"
jan@42368
    56
  Bad head of lhs: existing constant "op /"*)
neuper@42279
    57
axiomatization where 
neuper@42279
    58
  rule1: "1 = \<delta>[n]" and
neuper@42279
    59
  rule2: "|| z || > 1 ==> z / (z - 1) = u [n]" and
neuper@42279
    60
  rule3: "|| z || < 1 ==> z / (z - 1) = -u [-n - 1]" and 
neuper@42279
    61
  rule4: "|| z || > || \<alpha> || ==> z / (z - \<alpha>) = \<alpha>^^^n * u [n]" and
neuper@42279
    62
  rule5: "|| z || < || \<alpha> || ==> z / (z - \<alpha>) = -(\<alpha>^^^n) * u [-n - 1]" and
neuper@42279
    63
  rule6: "|| z || > 1 ==> z/(z - 1)^^^2 = n * u [n]"
jan@42368
    64
jan@42368
    65
text{*\noindent Check the rules for their correct notation. 
jan@42368
    66
      (See the machine output.)*}
neuper@42279
    67
ML {*
jan@42368
    68
  @{thm rule1};
jan@42368
    69
  @{thm rule2};
jan@42368
    70
  @{thm rule3};
jan@42368
    71
  @{thm rule4};
neuper@42279
    72
*}
neuper@42279
    73
jan@42368
    74
subsection {*Apply Rules*}
jan@42368
    75
text{*\noindent We try to apply the rules to a given expression.*}
jan@42368
    76
neuper@42279
    77
ML {*
jan@42368
    78
  val inverse_Z = append_rls "inverse_Z" e_rls
jan@42368
    79
    [ Thm  ("rule3",num_str @{thm rule3}),
jan@42368
    80
      Thm  ("rule4",num_str @{thm rule4}),
jan@42368
    81
      Thm  ("rule1",num_str @{thm rule1})   
jan@42368
    82
    ];
neuper@42279
    83
jan@42368
    84
  val t = str2term "z / (z - 1) + z / (z - \<alpha>) + 1";
jan@42368
    85
  val SOME (t', asm) = rewrite_set_ thy true inverse_Z t;
jan@42368
    86
  term2str t' = "z / (z - ?\<delta> [?n]) + z / (z - \<alpha>) + ?\<delta> [?n]";
jan@42368
    87
  (*
jan@42368
    88
   * Attention rule1 is applied before the expression is 
jan@42368
    89
   * checked for rule4 which would be correct!!!
jan@42368
    90
   *)
neuper@42279
    91
*}
neuper@42279
    92
jan@42368
    93
ML {* val (thy, ro, er) = (@{theory Isac}, tless_true, eval_rls); *}
jan@42368
    94
ML {*
jan@42368
    95
  val SOME (t, asm1) = 
jan@42368
    96
    rewrite_ thy ro er true (num_str @{thm rule3}) t;
jan@42368
    97
  term2str t = "- ?u [- ?n - 1] + z / (z - \<alpha>) + 1";
jan@42368
    98
  (*- real *)
jan@42368
    99
  term2str t;
jan@42296
   100
jan@42368
   101
  val SOME (t, asm2) = 
jan@42368
   102
    rewrite_ thy ro er true (num_str @{thm rule4}) t;
jan@42368
   103
  term2str t = "- ?u [- ?n - 1] + \<alpha> ^^^ ?n * ?u [?n] + 1";
jan@42368
   104
  (*- real *)
jan@42368
   105
  term2str t;
jan@42296
   106
jan@42368
   107
  val SOME (t, asm3) = 
jan@42368
   108
    rewrite_ thy ro er true (num_str @{thm rule1}) t;
jan@42368
   109
  term2str t = "- ?u [- ?n - 1] + \<alpha> ^^^ ?n * ?u [?n] + ?\<delta> [?n]";
jan@42368
   110
  (*- real *)
jan@42368
   111
  term2str t;
jan@42368
   112
*}
jan@42368
   113
ML {* terms2str (asm1 @ asm2 @ asm3); *}
jan@42296
   114
jan@42368
   115
section{*Prepare Steps for CTP-based programming Language\label{sec:prepstep}*}
jan@42368
   116
text{*
jan@42368
   117
      \par \noindent The following sections are challanging with the CTP-based 
jan@42368
   118
      possibilities of building the programm. The goal is realized in 
jan@42368
   119
      Section~\ref{spec-meth} and Section~\ref{prog-steps}.
jan@42368
   120
      \par The reader is advised to jump between the subsequent subsections and 
jan@42368
   121
      the respective steps in Section~\ref{prog-steps}. By comparing 
jan@42368
   122
      Section~\ref{sec:calc:ztrans} the calculation can be comprehended step 
jan@42368
   123
      by step.
neuper@42279
   124
*}
neuper@42279
   125
jan@42368
   126
subsection {*Prepare Expression\label{prep-expr}*}
jan@42369
   127
text{*\noindent We try two different notations and check which of them 
jan@42369
   128
       isabelle can handle best.*}
jan@42368
   129
ML {*
jan@42368
   130
  val ctxt = ProofContext.init_global @{theory Isac};
jan@42368
   131
  val ctxt = declare_constraints' [@{term "z::real"}] ctxt;
jan@42368
   132
jan@42368
   133
  val SOME fun1 = 
jan@42368
   134
    parseNEW ctxt "X z = 3 / (z - 1/4 + -1/8 * z ^^^ -1)"; term2str fun1;
jan@42368
   135
  val SOME fun1' = 
jan@42368
   136
    parseNEW ctxt "X z = 3 / (z - 1/4 + -1/8 * (1/z))"; term2str fun1';
jan@42368
   137
*}
jan@42368
   138
jan@42368
   139
subsubsection {*Prepare Numerator and Denominator*}
jan@42368
   140
text{*\noindent The partial fraction decomposion is only possible ig we
jan@42368
   141
       get the bound variable out of the numerator. Therefor we divide
jan@42368
   142
       the expression by $z$. Follow up the Calculation at 
jan@42368
   143
       Section~\ref{sec:calc:ztrans} line number 02.*}
jan@42368
   144
neuper@42279
   145
axiomatization where
neuper@42279
   146
  ruleZY: "(X z = a / b) = (X' z = a / (z * b))"
neuper@42279
   147
neuper@42279
   148
ML {*
jan@42368
   149
  val (thy, ro, er) = (@{theory Isac}, tless_true, eval_rls);
jan@42368
   150
  val SOME (fun2, asm1) = 
jan@42368
   151
    rewrite_ thy ro er true  @{thm ruleZY} fun1; term2str fun2;
jan@42368
   152
  val SOME (fun2', asm1) = 
jan@42368
   153
    rewrite_ thy ro er true  @{thm ruleZY} fun1'; term2str fun2';
neuper@42279
   154
jan@42368
   155
  val SOME (fun3,_) = 
jan@42368
   156
    rewrite_set_ @{theory Isac} false norm_Rational fun2;
jan@42368
   157
  term2str fun3;
jan@42368
   158
  (*
jan@42368
   159
   * Fails on x^^^(-1)
jan@42368
   160
   * We solve this problem by using 1/x as a workaround.
jan@42368
   161
   *)
jan@42368
   162
  val SOME (fun3',_) = 
jan@42368
   163
    rewrite_set_ @{theory Isac} false norm_Rational fun2';
jan@42368
   164
  term2str fun3';
jan@42368
   165
  (*
jan@42368
   166
   * OK - workaround!
jan@42368
   167
   *)
neuper@42289
   168
*}
neuper@42279
   169
jan@42368
   170
subsubsection {*Get the Argument of the Expression X'*}
jan@42368
   171
text{*\noindent We use \texttt{grep} for finding possibilities how we can
jan@42368
   172
       extract the bound variable in the expression. \ttfamily Atools.thy, 
jan@42368
   173
       Tools.thy \normalfont contain general utilities: \ttfamily 
jan@42368
   174
       eval\_argument\_in, eval\_rhs, eval\_lhs,\ldots \normalfont
jan@42368
   175
       \ttfamily grep -r "fun eva\_" * \normalfont shows all functions 
jan@42368
   176
       witch can be used in a script. Lookup this files how to build 
jan@42368
   177
       and handle such functions.
jan@42368
   178
       \par The next section shows how to introduce such a function.
jan@42298
   179
*}
jan@42298
   180
jan@42370
   181
subsubsection{*Decompose the Given Term Into lhs and rhs*}
neuper@42302
   182
ML {*
neuper@42302
   183
  val (_, expr) = HOLogic.dest_eq fun3'; term2str expr;
jan@42368
   184
  val (_, denom) = 
jan@42368
   185
    HOLogic.dest_bin "Rings.inverse_class.divide" (type_of expr) expr;
neuper@42302
   186
  term2str denom = "-1 + -2 * z + 8 * z ^^^ 2";
neuper@42302
   187
*}
jan@42298
   188
jan@42370
   189
text{*\noindent We have rhs\footnote{Note: lhs means \em Left Hand Side
jan@42370
   190
      \normalfont and rhs means \em Right Hand Side \normalfont and indicates
jan@42370
   191
      the left or the right part of an equation.} in the Script language, but
jan@42370
   192
      we need a function which gets the denominator of a fraction.*}
jan@42298
   193
jan@42368
   194
subsubsection{*Get the Denominator and Numerator out of a Fraction*}
jan@42368
   195
text{*\noindent The selv written functions in e.g. \texttt{get\_denominator}
jan@42368
   196
       should become a constant for the isabelle parser:*}
jan@42298
   197
jan@42298
   198
consts
jan@42345
   199
  get_denominator :: "real => real"
jan@42344
   200
  get_numerator :: "real => real"
jan@42298
   201
jan@42368
   202
text {*\noindent With the above definition we run into problems when we parse
jan@42368
   203
        the Script \texttt{InverseZTransform}. This leads to \em ambiguous
jan@42368
   204
        parse trees. \normalfont We avoid this by moving the definition
jan@42369
   205
        to \ttfamily Rational.thy \normalfont and re-building {\sisac}.
jan@42368
   206
        \par \noindent ATTENTION: From now on \ttfamily 
jan@42368
   207
        Build\_Inverse\_Z\_Transform \normalfont mimics a build from scratch;
jan@42369
   208
        it only works due to re-building {\sisac} several times (indicated 
jan@42368
   209
        explicityl).
neuper@42302
   210
*}
jan@42300
   211
jan@42298
   212
ML {*
jan@42368
   213
(*
jan@42368
   214
 *("get_denominator",
jan@42368
   215
 *  ("Rational.get_denominator", eval_get_denominator ""))
jan@42368
   216
 *)
jan@42298
   217
fun eval_get_denominator (thmid:string) _ 
neuper@42301
   218
		      (t as Const ("Rational.get_denominator", _) $
jan@42369
   219
              (Const ("Rings.inverse_class.divide", _) $num 
jan@42369
   220
                $denom)) thy = 
neuper@42302
   221
        SOME (mk_thmid thmid "" 
jan@42368
   222
            (Print_Mode.setmp [] 
jan@42368
   223
              (Syntax.string_of_term (thy2ctxt thy)) denom) "", 
jan@42298
   224
	          Trueprop $ (mk_equality (t, denom)))
jan@42300
   225
  | eval_get_denominator _ _ _ _ = NONE; 
jan@42298
   226
*}
jan@42369
   227
text {*\noindent For the tests of \ttfamily eval\_get\_denominator \normalfont
jan@42369
   228
        see \ttfamily test/Knowledge/rational.sml\normalfont*}
neuper@42289
   229
jan@42369
   230
text {*\noindent \ttfamily get\_numerator \normalfont should also become a
jan@42369
   231
        constant for the isabelle parser, follow up the \texttt{const}
jan@42369
   232
        decleration above.*}
jan@42337
   233
jan@42337
   234
ML {*
jan@42369
   235
(*
jan@42369
   236
 *("get_numerator",
jan@42369
   237
 *  ("Rational.get_numerator", eval_get_numerator ""))
jan@42369
   238
 *)
jan@42337
   239
fun eval_get_numerator (thmid:string) _ 
jan@42337
   240
		      (t as Const ("Rational.get_numerator", _) $
jan@42338
   241
              (Const ("Rings.inverse_class.divide", _) $num
jan@42338
   242
                $denom )) thy = 
jan@42337
   243
        SOME (mk_thmid thmid "" 
jan@42369
   244
            (Print_Mode.setmp [] 
jan@42369
   245
              (Syntax.string_of_term (thy2ctxt thy)) num) "", 
jan@42338
   246
	          Trueprop $ (mk_equality (t, num)))
jan@42337
   247
  | eval_get_numerator _ _ _ _ = NONE; 
jan@42337
   248
*}
jan@42337
   249
jan@42369
   250
text {*\noindent We discovered severell problems by implementing the 
jan@42369
   251
       \ttfamily get\_numerator \normalfont function. Remember when 
jan@42369
   252
       putting new functions to {\sisac}, put them in a thy file and rebuild 
jan@42369
   253
       {\sisac}, also put them in the ruleset for the script!*}
jan@42369
   254
jan@42369
   255
subsection {*Solve Equation\label{sec:solveq}*}
jan@42369
   256
text {*\noindent We have to find the zeros of the term, therefor we use our
jan@42369
   257
       \ttfamily get\_denominator \normalfont function from the step before
jan@42369
   258
       and try to solve the second order eqeuation. (Follow up the Calculation
jan@42369
   259
       in Section~\ref{sec:calc:ztrans} Subproblem 2) Note: This type of
jan@42369
   260
       equation is too general for the present program.
jan@42369
   261
       \par We know that this equation can be categorized as \em univariate
jan@42369
   262
       equation \normalfont and solved with the functions {\sisac} provides
jan@42369
   263
       for this equation type. Later on {\sisac} should determine the type
jan@42369
   264
       of the given equation self.*}
jan@42369
   265
ML {*
jan@42369
   266
  val denominator = parseNEW ctxt "z^^^2 - 1/4*z - 1/8 = 0";
jan@42369
   267
  val fmz = ["equality (z^^^2 - 1/4*z - 1/8 = (0::real))",
jan@42369
   268
             "solveFor z",
jan@42369
   269
             "solutions L"];
jan@42369
   270
  val (dI',pI',mI') =("Isac", ["univariate","equation"], ["no_met"]);
jan@42369
   271
*}
jan@42369
   272
text {*\noindent Check if the given equation matches the specification of this
jan@42369
   273
        quation type.*}
jan@42369
   274
ML {*
jan@42369
   275
  match_pbl fmz (get_pbt ["univariate","equation"]);
jan@42345
   276
*}
jan@42345
   277
jan@42369
   278
text{*\noindent We switch up to the {\sisac} Context and try to solve the 
jan@42369
   279
       equation with a more specific type definition.*}
neuper@42279
   280
neuper@42279
   281
ML {*
jan@42369
   282
  Context.theory_name thy = "Isac";
jan@42369
   283
  val denominator = parseNEW ctxt "-1 + -2 * z + 8 * z ^^^ 2 = 0";
jan@42369
   284
  val fmz =                                             (*specification*)
jan@42369
   285
    ["equality (-1 + -2 * z + 8 * z ^^^ 2 = (0::real))",(*equality*)
jan@42369
   286
     "solveFor z",                                      (*bound variable*)
jan@42369
   287
     "solutions L"];                                    (*identifier for
jan@42369
   288
                                                          solution*)
jan@42369
   289
  val (dI',pI',mI') =
jan@42369
   290
    ("Isac", 
jan@42369
   291
      ["abcFormula","degree_2","polynomial","univariate","equation"],
jan@42369
   292
      ["no_met"]);
neuper@42279
   293
*}
neuper@42279
   294
jan@42369
   295
text {*\noindent Check if the (other) given equation matches the 
jan@42369
   296
        specification of this quation type.*}
jan@42369
   297
        
neuper@42279
   298
ML {*
jan@42369
   299
  match_pbl fmz (get_pbt 
jan@42369
   300
    ["abcFormula","degree_2","polynomial","univariate","equation"]);
neuper@42279
   301
*}
neuper@42279
   302
jan@42369
   303
text {*\noindent We stepwise solve the equation. This is done by the
jan@42369
   304
        use of a so called calc tree seen downwards.*}
jan@42369
   305
neuper@42279
   306
ML {*
jan@42369
   307
  val (p,_,f,nxt,_,pt) = CalcTreeTEST [(fmz, (dI',pI',mI'))];
jan@42369
   308
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42369
   309
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42369
   310
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42369
   311
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42369
   312
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42369
   313
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42369
   314
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42369
   315
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42369
   316
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42369
   317
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42369
   318
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;         
jan@42369
   319
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42369
   320
  (*
jan@42369
   321
   * nxt =..,Check_elementwise "Assumptions") 
jan@42369
   322
   *)
jan@42369
   323
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;         
jan@42369
   324
  val (p,_,f,nxt,_,pt) = me nxt p [] pt; f2str f;
jan@42369
   325
  (*
jan@42369
   326
   * [z = 1 / 2, z = -1 / 4]
jan@42369
   327
   *)
jan@42369
   328
  show_pt pt; 
jan@42369
   329
  val SOME f = parseNEW ctxt "[z=1/2, z=-1/4]";
neuper@42279
   330
*}
neuper@42279
   331
jan@42369
   332
subsection {*Partial Fraction Decomposition\label{sec:pbz}*}
jan@42369
   333
text{*\noindent We go on with the decomposion of our expression. Follow up the
jan@42369
   334
       Calculation in Section~\ref{sec:calc:ztrans} Step~3 and later on
jan@42369
   335
       Subproblem~1.*}
jan@42369
   336
subsubsection {*Solutions of the Equation*}
jan@42369
   337
text{*\noindent We get the solutions of the before solved equation in a list.*}
jan@42369
   338
jan@42369
   339
ML {*
jan@42369
   340
  val SOME solutions = parseNEW ctxt "[z=1/2, z=-1/4]";
jan@42369
   341
  term2str solutions;
jan@42369
   342
  atomty solutions;
neuper@42279
   343
*}
jan@42369
   344
jan@42369
   345
subsubsection {*Get Solutions out of a List*}
jan@42369
   346
text {*\noindent In {\sisac}'s CTP-based programming language: 
jan@42369
   347
       \ttfamily let\$ \$s\_1 = NTH 1\$ solutions; \$s\_2 = NTH 2...\$ \normalfont
jan@42369
   348
       can be usefull.*}
jan@42369
   349
neuper@42335
   350
ML {*
jan@42369
   351
  val Const ("List.list.Cons", _) $ s_1 $ (Const ("List.list.Cons", _)
jan@42369
   352
        $ s_2 $ Const ("List.list.Nil", _)) = solutions;
jan@42369
   353
  term2str s_1;
jan@42369
   354
  term2str s_2;
neuper@42335
   355
*}
jan@42369
   356
jan@42369
   357
text{*\noindent The ansatz for the \em Partial Fraction Decomposion \normalfont
jan@42369
   358
      requires to get the denominators of the partial fractions out of the 
jan@42369
   359
      Solutions as:
jan@42369
   360
      \begin{itemize}
jan@42371
   361
      \item $ \text{Denominator} _{1} = z - \text{Zeropoint}_{1}$
jan@42371
   362
      \item $ \text{Denominator} _{2} = z - \text{Zeropoint}_{2}$
jan@42369
   363
      \item \ldots
jan@42369
   364
      \end{itemize}*}
jan@42369
   365
      
neuper@42335
   366
ML {*
jan@42369
   367
  val xx = HOLogic.dest_eq s_1;
jan@42369
   368
  val s_1' = HOLogic.mk_binop "Groups.minus_class.minus" xx;
jan@42369
   369
  val xx = HOLogic.dest_eq s_2;
jan@42369
   370
  val s_2' = HOLogic.mk_binop "Groups.minus_class.minus" xx;
jan@42369
   371
  term2str s_1';
jan@42369
   372
  term2str s_2';
neuper@42335
   373
*}
jan@42369
   374
jan@42369
   375
text {*\noindent For the programming language a function collecting all the 
jan@42369
   376
        above manipulations is helpful.*}
jan@42369
   377
neuper@42335
   378
ML {*
jan@42369
   379
  fun fac_from_sol s =
jan@42369
   380
    let val (lhs, rhs) = HOLogic.dest_eq s
jan@42369
   381
    in HOLogic.mk_binop "Groups.minus_class.minus" (lhs, rhs) end;
neuper@42335
   382
*}
jan@42369
   383
neuper@42335
   384
ML {*
jan@42369
   385
  fun mk_prod prod [] =
jan@42369
   386
        if prod = e_term
jan@42369
   387
        then error "mk_prod called with []" 
jan@42369
   388
        else prod
jan@42369
   389
    | mk_prod prod (t :: []) =
jan@42369
   390
        if prod = e_term
jan@42369
   391
        then t
jan@42369
   392
        else HOLogic.mk_binop "Groups.times_class.times" (prod, t)
jan@42369
   393
    | mk_prod prod (t1 :: t2 :: ts) =
jan@42369
   394
          if prod = e_term 
jan@42369
   395
          then 
jan@42369
   396
             let val p = 
jan@42369
   397
               HOLogic.mk_binop "Groups.times_class.times" (t1, t2)
jan@42369
   398
             in mk_prod p ts end 
jan@42369
   399
          else 
jan@42369
   400
             let val p =
jan@42369
   401
               HOLogic.mk_binop "Groups.times_class.times" (prod, t1)
jan@42369
   402
             in mk_prod p (t2 :: ts) end 
neuper@42335
   403
*}
jan@42369
   404
(* ML {* 
jan@42369
   405
probably keept these test in test/Tools/isac/...
neuper@42335
   406
(*mk_prod e_term [];*)
neuper@42335
   407
neuper@42335
   408
val prod = mk_prod e_term [str2term "x + 123"]; 
neuper@42335
   409
term2str prod = "x + 123";
neuper@42335
   410
neuper@42335
   411
val sol = str2term "[z = 1 / 2, z = -1 / 4]";
neuper@42335
   412
val sols = HOLogic.dest_list sol;
neuper@42335
   413
val facs = map fac_from_sol sols;
neuper@42335
   414
val prod = mk_prod e_term facs; 
neuper@42335
   415
term2str prod = "(z + -1 * (1 / 2)) * (z + -1 * (-1 / 4))";
neuper@42335
   416
jan@42369
   417
val prod = 
jan@42369
   418
  mk_prod e_term [str2term "x + 1", str2term "x + 2", str2term "x + 3"]; 
neuper@42335
   419
term2str prod = "(x + 1) * (x + 2) * (x + 3)";
jan@42369
   420
*} *)
jan@42369
   421
ML {*
jan@42369
   422
  fun factors_from_solution sol = 
jan@42369
   423
    let val ts = HOLogic.dest_list sol
jan@42369
   424
    in mk_prod e_term (map fac_from_sol ts) end;
jan@42369
   425
*}
jan@42369
   426
(* ML {*
neuper@42335
   427
val sol = str2term "[z = 1 / 2, z = -1 / 4]";
neuper@42335
   428
val fs = factors_from_solution sol;
neuper@42335
   429
term2str fs = "(z + -1 * (1 / 2)) * (z + -1 * (-1 / 4))"
jan@42369
   430
*} *)
jan@42369
   431
text {*\noindent This function needs to be packed such that it can be evaluated
jan@42369
   432
        by the Lucas-Interpreter. Therefor we moved the function to the
jan@42369
   433
        corresponding \ttfamily Equation.thy \normalfont in our case
jan@42369
   434
        \ttfamily PartialFractions.thy \normalfont. The neccessary steps
jan@42369
   435
        are quit the same as we have done with \ttfamliy get\_denominator 
jan@42369
   436
        \normalfont before.*}
neuper@42335
   437
ML {*
jan@42369
   438
  (*("factors_from_solution",
jan@42369
   439
    ("Partial_Fractions.factors_from_solution",
jan@42369
   440
      eval_factors_from_solution ""))*)
jan@42369
   441
      
jan@42369
   442
  fun eval_factors_from_solution (thmid:string) _
jan@42369
   443
       (t as Const ("Partial_Fractions.factors_from_solution", _) $ sol)
jan@42369
   444
         thy = ((let val prod = factors_from_solution sol
jan@42369
   445
                   in SOME (mk_thmid thmid ""
jan@42369
   446
                     (Print_Mode.setmp []
jan@42369
   447
                       (Syntax.string_of_term (thy2ctxt thy)) prod) "",
jan@42369
   448
                         Trueprop $ (mk_equality (t, prod)))
jan@42369
   449
                end)
jan@42369
   450
               handle _ => NONE)
jan@42369
   451
   | eval_factors_from_solution _ _ _ _ = NONE;
jan@42352
   452
*}
jan@42352
   453
jan@42369
   454
text {*\noindent The tracing output of the calc tree after apllying this
jan@42369
   455
       function was \ttfamily 24 / factors\_from\_solution 
jan@42369
   456
       [z = 1/ 2, z = -1 / 4])] \normalfont and the next step \ttfamily
jan@42369
   457
       val nxt = ("Empty\_Tac", ...): tac'\_)\normalfont. These observations
jan@42369
   458
       indicate, that the Lucas-Interpreter (LIP) does not know how to
jan@42369
   459
       evaluate\\ \ttfamily factors\_from\_solution, \normalfont so we knew
jan@42369
   460
       that there is something wrong or missing.*}
jan@42369
   461
       
jan@42369
   462
text{*\noindent First we isolate the difficulty in the program as follows:\\
jan@42369
   463
      \ttfamily \par \noindent
jan@42369
   464
        "(L\_L::bool list) = (SubProblem (PolyEq',"\^\\
jan@42369
   465
        "[abcFormula,degree\_2,polynomial,univariate,equation],[no\_met])"\^\\
jan@42369
   466
        "[BOOL equ, REAL zzz]);"\^\\
jan@42369
   467
        "(facs::real) = factors\_from\_solution L\_L;"\^\\
jan@42369
   468
        "(foo::real) = Take facs"\^\\
jan@42369
   469
        
jan@42369
   470
      \normalfont \par \noindent And see the tracing output:\\
jan@42369
   471
         \ttfamily \par \noindent \lbrack\\
jan@42369
   472
        ((\lbrack\rbrack, Frm), Problem 
jan@42369
   473
          (Isac, \lbrack inverse, Z\_Transform, SignalProcessing\rbrack)),\\
jan@42369
   474
        ((\lbrack 1\rbrack, Frm), X z = 3 / (z - 1 / 4 + -1 / 8 * (1 / z))),\\
jan@42369
   475
        ((\lbrack 1\rbrack, Res), 
jan@42369
   476
          ?X' z = 3 / (z * (z - 1 / 4 + -1 / 8 * (1 / z)))),\\
jan@42369
   477
        ((\lbrack 2\rbrack, Res),
jan@42369
   478
          ?X' z = 24 / (-1 + -2 * z + 8 * z \^\^\^ ~2)),\\
jan@42369
   479
        ((\lbrack 3\rbrack, Pbl), 
jan@42369
   480
          solve (-1 + -2 * z + 8 * z \^\^\^ ~2 = 0, z)),\\
jan@42369
   481
        ((\lbrack 3,1\rbrack, Frm), -1 + -2 * z + 8 * z \^\^\^ ~2 = 0),\\
jan@42369
   482
        ((\lbrack 3,1\rbrack, Res), 
jan@42369
   483
          z = (- -2 + sqrt (-2 \^\^\^ ~2 - 4 * 8 * -1)) / (2 * 8)|\\
jan@42369
   484
          z = (- -2 - sqrt (-2 \^\^\^ ~2 - 4 * 8 * -1)) / (2 * 8)),\\
jan@42369
   485
        ((\lbrack 3,2\rbrack, Res), z = 1 / 2 | z = -1 / 4),\\
jan@42369
   486
        ((\lbrack 3,3\rbrack, Res), \lbrack z = 1 / 2, z = -1 / 4\rbrack),\\
jan@42369
   487
        ((\lbrack 3,4\rbrack, Res), \lbrack z = 1 / 2, z = -1 / 4\rbrack),\\
jan@42369
   488
        ((\lbrack 3\rbrack, Res), \lbrack z = 1 / 2, z = -1 / 4\rbrack),\\
jan@42369
   489
        ((\lbrack 4\rbrack, Frm), 
jan@42369
   490
          factors\_from\_solution \lbrackz = 1 / 2, z = -1 / 4])\\
jan@42369
   491
        \rbrack\\
jan@42369
   492
        
jan@42369
   493
      \normalfont \noindent In particular that:\\
jan@42369
   494
      \ttfamily \par \noindent ((\lbrack 3\rbrack, Pbl),
jan@42369
   495
        solve (-1 + -2 * z + 8 * z \^\^\^ ~2 = 0, z)),\\
jan@42369
   496
      \normalfont \par \noindent Shows the equation which has been created in
jan@42369
   497
      the program by: \ttfamily \\
jan@42352
   498
jan@42369
   499
      \noindent "(denom::real) = get\_denominator funterm;"\^ 
jan@42369
   500
        ~(*get\_denominator*)\\
jan@42369
   501
      "(equ::bool) = (denom = (0::real));"\^\\
jan@42369
   502
        
jan@42369
   503
      \noindent get\_denominator \normalfont has been evaluated successfully,
jan@42369
   504
      but not\\ \ttfamily factors\_from\_solution.\normalfont
jan@42369
   505
      So we stepwise compare with an analogous case, \ttfamily get\_denominator
jan@42369
   506
      \normalfont successfully done above: We know that LIP evaluates
jan@42369
   507
      expressions in the program by use of the \emph{srls}, so we try to get
jan@42369
   508
      the original \emph{srls}.\\
jan@42352
   509
jan@42369
   510
      \noindent \ttfamily val \lbrace srls,\ldots\rbrace\ttfamily 
jan@42369
   511
        = get\_met \lbrack "SignalProcessing",
jan@42369
   512
          "Z\_Transform","inverse"\rbrack;\\
jan@42369
   513
          
jan@42369
   514
      \par \noindent \normalfont Create 2 good example terms\\
jan@42369
   515
      \ttfamily \par \noindent val SOME t1 =\\ 
jan@42369
   516
      parseNEW ctxt "get\_denominator ((111::real) / 222)";
jan@42369
   517
      \par \noindent val SOME t2 =\\
jan@42369
   518
      parseNEW ctxt "factors\_from\_solution \lbrack(z::real)
jan@42369
   519
        = 1/2, z = -1/4\rbrack";\\
jan@42352
   520
jan@42369
   521
      \par \noindent \normalfont Rewrite the terms using srls:\\
jan@42369
   522
      \ttfamily \par \noindent rewrite\_set\_ thy true srls t1;\\
jan@42369
   523
        rewrite\_set\_ thy true srls t2;\\
jan@42369
   524
      \par \noindent \normalfont Now we see a difference: \texttt{t1} gives
jan@42369
   525
      \texttt{SOME} but \texttt{t2} gives \texttt{NONE}. We look at the 
jan@42369
   526
      \emph{srls}:\\
jan@42369
   527
      
jan@42369
   528
      \par \noindent \ttfamily  val srls = Rls \lbrace id =
jan@42369
   529
        "srls\_InverseZTransform", rules =\\
jan@42369
   530
            \lbrack Calc("Rational.get\_numerator",\\
jan@42369
   531
                eval\_get\_numerator "Rational.get\_numerator"),\\
jan@42369
   532
              Calc("Partial\_Fractions.factors\_from\_solution",\\
jan@42369
   533
                eval\_factors\_from\_solution 
jan@42369
   534
                  "Partial\_Fractions.factors\_from\_solution")\rbrack\rbrace\\
jan@42369
   535
                
jan@42369
   536
      \par \noindent \normalfont Here everthing is perfect. So the error can
jan@42369
   537
      only be in the SML code of \ttfamily eval\_factors\_from\_solution.
jan@42369
   538
      \normalfont We try to check the code with an existing test; since the 
jan@42369
   539
      \emph{code} is in 
jan@42369
   540
      \begin{center}\ttfamily src/Tools/isac/Knowledge/Partial\_Fractions.thy
jan@42369
   541
      \normalfont\end{center}
jan@42369
   542
      the \emph{test} should be in
jan@42369
   543
      \begin{center}\ttfamily test/Tools/isac/Knowledge/partial\_fractions.sml
jan@42369
   544
      \normalfont\end{center}
jan@42369
   545
      \par \noindent After updating the function \ttfamily
jan@42369
   546
      factors\_from\_solution \normalfont to a new version and putting a
jan@42369
   547
      testcase to \ttfamily Partial\_Fractions.sml \normalfont we tried again
jan@42369
   548
      to evaluate the term with the same result.
jan@42369
   549
      \par We opened the test \ttfamily Test\_Isac.thy \normalfont and saw that
jan@42369
   550
      everything is working fine. Also we checked that the test \ttfamily 
jan@42369
   551
      partial\_fractions.sml \normalfont is used in \ttfamily Test\_Isac.thy 
jan@42369
   552
      \normalfont
jan@42369
   553
      \begin{center}use \ttfamily "Knowledge/partial\_fractions.sml"
jan@42369
   554
      \normalfont \end{center}
jan@42369
   555
      and \ttfamily Partial\_Fractions.thy \normalfont is part is part of
jan@42369
   556
      {\sisac} by evaluating\\
jan@42352
   557
jan@42369
   558
      \par \noindent \ttfamily val thy = @\lbrace theory~Isac \rbrace;
jan@42369
   559
      \normalfont \\
jan@42352
   560
jan@42369
   561
      \par \noindent \normalfont After rebuilding {\sisac} again it worked.
neuper@42335
   562
*}
neuper@42279
   563
jan@42369
   564
subsubsection {*Build Expression*}
jan@42369
   565
text {*\noindent In {\sisac}'s CTP-based programming language we can build
jan@42369
   566
       expressions by:\\
jan@42369
   567
       \ttfamily let s\_1 = Take numerator / (s\_1 * s\_2) \normalfont*}
jan@42369
   568
       
neuper@42279
   569
ML {*
jan@42369
   570
  (*
jan@42369
   571
   * The main denominator is the multiplikation of the denominators of
jan@42369
   572
   * all partial fractions.
jan@42369
   573
   *)
jan@42369
   574
   
jan@42369
   575
  val denominator' = HOLogic.mk_binop 
jan@42369
   576
    "Groups.times_class.times" (s_1', s_2') ;
jan@42369
   577
  val SOME numerator = parseNEW ctxt "3::real";
neuper@42279
   578
jan@42369
   579
  val expr' = HOLogic.mk_binop
jan@42369
   580
    "Rings.inverse_class.divide" (numerator, denominator');
jan@42369
   581
  term2str expr';
neuper@42279
   582
*}
neuper@42279
   583
jan@42369
   584
subsubsection {*Apply the Partial Fraction Decomposion Ansatz*}
jan@42369
   585
jan@42369
   586
text{*\noindent We use the Ansatz of the Partial Fraction Decomposen for our
jan@42369
   587
      expression 2nd order. Follow up the calculation in 
jan@42369
   588
      Section~\ref{sec:calc:ztrans} Step~03.*}
jan@42369
   589
neuper@42302
   590
ML {*Context.theory_name thy = "Isac"*}
neuper@42279
   591
jan@42369
   592
text{*\noindent We define two aximatizations, the first one is the main ansatz,
jan@42369
   593
      the next one is just an eqivalent transformation of the resulting
jan@42369
   594
      equation. Both axiomatizations were moved to \ttfamily
jan@42369
   595
      Partial\_Fractions.thy \normalfont and got their own rulesets. In later
jan@42369
   596
      programms it is possible to use the rulesets and the machine will find
jan@42369
   597
      the correct ansatz and equivalent transformation itself.*}
jan@42369
   598
neuper@42279
   599
axiomatization where
jan@42369
   600
  ansatz_2nd_order: "n / (a*b) = A/a + B/b" and
jan@42369
   601
  equival_trans_2nd_order: "(n/(a*b) = A/a + B/b) = (n = A*b + B*a)"
jan@42369
   602
jan@42369
   603
text{*\noindent We use our \ttfamily ansatz\_2nd\_order \normalfont to rewrite
jan@42369
   604
       our expression and get an equilation with our expression on the left
jan@42369
   605
       and the partial fractions of it on the right hand side.*}
jan@42369
   606
  
jan@42369
   607
ML {*
jan@42369
   608
  val SOME (t1,_) = 
jan@42369
   609
    rewrite_ @{theory Isac} e_rew_ord e_rls false 
jan@42369
   610
             @{thm ansatz_2nd_order} expr';
jan@42369
   611
  term2str t1; atomty t1;
jan@42369
   612
  val eq1 = HOLogic.mk_eq (expr', t1);
jan@42369
   613
  term2str eq1;
jan@42369
   614
*}
jan@42369
   615
jan@42369
   616
text{*\noindent Eliminate the demoninators by multiplying the left and the
jan@42369
   617
      right hand side of the equation with the main denominator. This is an
jan@42369
   618
      simple equivalent transformation. Later on we use an own ruleset
jan@42369
   619
      defined in \ttfamily Partial\_Fractions.thy \normalfont for doing this.
jan@42369
   620
      Follow up the calculation in Section~\ref{sec:calc:ztrans} Step~04.*}
neuper@42279
   621
neuper@42279
   622
ML {*
jan@42369
   623
  val SOME (eq2,_) = 
jan@42369
   624
    rewrite_ @{theory Isac} e_rew_ord e_rls false 
jan@42369
   625
             @{thm equival_trans_2nd_order} eq1;
jan@42369
   626
  term2str eq2;
neuper@42342
   627
*}
neuper@42342
   628
jan@42369
   629
text{*\noindent We use the existing ruleset \ttfamily norm\_Rational \normalfont 
jan@42369
   630
     for simplifications on expressions.*}
neuper@42279
   631
neuper@42279
   632
ML {*
jan@42369
   633
  val SOME (eq3,_) = rewrite_set_ @{theory Isac} false norm_Rational eq2;
jan@42369
   634
  term2str eq3;
jan@42369
   635
  (*
jan@42369
   636
   * ?A ?B not simplified
jan@42369
   637
   *)
neuper@42279
   638
*}
neuper@42279
   639
jan@42369
   640
text{*\noindent In Example~\ref{eg:gap} of my thesis I'm describin a problem about
jan@42369
   641
      simplifications. The problem that we would like to have only a specific degree
jan@42369
   642
      of simplification occours right here, in the next step.*}
jan@42369
   643
jan@42369
   644
ML {*
jan@42369
   645
  val SOME fract1 =
jan@42369
   646
    parseNEW ctxt "(z - 1/2)*(z - -1/4) * (A/(z - 1/2) + B/(z - -1/4))";
jan@42369
   647
  (*
jan@42369
   648
   * A B !
jan@42369
   649
   *)
jan@42369
   650
  val SOME (fract2,_) = 
jan@42369
   651
    rewrite_set_ @{theory Isac} false norm_Rational fract1;
jan@42369
   652
  term2str fract2 = "(A + -2 * B + 4 * A * z + 4 * B * z) / 4";
jan@42369
   653
  (*
jan@42369
   654
   * term2str fract2 = "A * (1 / 4 + z) + B * (-1 / 2 + z)" 
jan@42369
   655
   * would be more traditional...
jan@42369
   656
   *)
jan@42369
   657
*}
jan@42369
   658
jan@42369
   659
text{*\noindent We walk around this problem by generating our new equation first.*}
jan@42369
   660
jan@42369
   661
ML {*
jan@42369
   662
  val (numerator, denominator) = HOLogic.dest_eq eq3;
jan@42369
   663
  val eq3' = HOLogic.mk_eq (numerator, fract1);
jan@42369
   664
  (*
jan@42369
   665
   * A B !
jan@42369
   666
   *)
jan@42369
   667
  term2str eq3';
jan@42369
   668
  (*
jan@42369
   669
   * MANDATORY: simplify (and remove denominator) otherwise 3 = 0
jan@42369
   670
   *)
jan@42369
   671
  val SOME (eq3'' ,_) = 
jan@42369
   672
    rewrite_set_ @{theory Isac} false norm_Rational eq3';
jan@42369
   673
  term2str eq3'';
jan@42369
   674
*}
jan@42369
   675
jan@42369
   676
text{*\noindent Still working at {\sisac}\ldots*}
jan@42369
   677
jan@42369
   678
ML {* Context.theory_name thy = "Isac" *}
jan@42369
   679
jan@42369
   680
subsubsection {*Build a Rule-Set for the Ansatz*}
jan@42369
   681
text {*\noindent The \emph{ansatz} rules violate the principle that each
jan@42369
   682
       variable on the right-hand-side must also occur on the
jan@42369
   683
       left-hand-side of the rule: A, B, etc. don't do that. Thus the
jan@42369
   684
       rewriter marks these variables with question marks: ?A, ?B, etc.
jan@42369
   685
       These question marks can be dropped by \ttfamily fun
jan@42369
   686
       drop\_questionmarks\normalfont.*}
jan@42369
   687
       
jan@42369
   688
ML {*
jan@42369
   689
  val ansatz_rls = prep_rls(
jan@42369
   690
    Rls {id = "ansatz_rls", preconds = [], rew_ord = ("dummy_ord",dummy_ord),
jan@42369
   691
      erls = e_rls, srls = Erls, calc = [],
jan@42369
   692
      rules = [
jan@42369
   693
        Thm ("ansatz_2nd_order",num_str @{thm ansatz_2nd_order}),
jan@42369
   694
        Thm ("equival_trans_2nd_order",num_str @{thm equival_trans_2nd_order})
jan@42369
   695
              ], 
jan@42369
   696
      scr = EmptyScr});
jan@42369
   697
*}
jan@42369
   698
jan@42369
   699
text{*\noindent We apply the ruleset\lodts*}
jan@42369
   700
jan@42369
   701
ML {*
jan@42369
   702
  val SOME (ttttt,_) = 
jan@42369
   703
    rewrite_set_ @{theory Isac} false ansatz_rls expr';
jan@42369
   704
*}
jan@42369
   705
jan@42369
   706
text{*\noindent And check the output\ldots*}
jan@42369
   707
jan@42369
   708
ML {*
jan@42369
   709
  term2str expr' = "3 / ((z - 1 / 2) * (z - -1 / 4))";
jan@42369
   710
  term2str ttttt = "?A / (z - 1 / 2) + ?B / (z - -1 / 4)";
jan@42369
   711
*}
jan@42369
   712
jan@42369
   713
subsubsection {*Get the First Koeffizient*}
jan@42369
   714
jan@42369
   715
text{*\noindent Now it's up to get the two koeffizients A and B, which will be
jan@42369
   716
      the numerators of our partial fractions. Continiue following up the 
jan@42369
   717
      Calculation in Section~\ref{sec:calc:ztrans} Subproblem~1.*}
jan@42369
   718
      
jan@42369
   719
text{*\noindent To get the first koeffizient we substitude $z$ with the first
jan@42369
   720
      zeropoint we determined in section~\ref{sec:solveq}.*}
jan@42369
   721
jan@42369
   722
ML {*
jan@42369
   723
  val SOME (eq4_1,_) =
jan@42369
   724
    rewrite_terms_ @{theory Isac} e_rew_ord e_rls [s_1] eq3'';
jan@42369
   725
  term2str eq4_1;
jan@42369
   726
  val SOME (eq4_2,_) =
jan@42369
   727
    rewrite_set_ @{theory Isac} false norm_Rational eq4_1;
jan@42369
   728
  term2str eq4_2;
jan@42369
   729
jan@42369
   730
  val fmz = ["equality (3=3*A/(4::real))", "solveFor A","solutions L"];
jan@42369
   731
  val (dI',pI',mI') =("Isac", ["univariate","equation"], ["no_met"]);
jan@42369
   732
  (*
jan@42369
   733
   * Solve the simple linear equilation for A TODO:
jan@42369
   734
   * Return eq, not list of eq's
jan@42369
   735
   *)
jan@42369
   736
  val (p,_,fa,nxt,_,pt) = CalcTreeTEST [(fmz, (dI',pI',mI'))];
jan@42369
   737
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   738
    (*Add_Given "equality (3=3*A/4)"*)
jan@42369
   739
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   740
    (*Add_Given "solveFor A"*)
jan@42369
   741
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt; 
jan@42369
   742
    (*Add_Find "solutions L"*)
jan@42369
   743
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   744
    (*Specify_Theory "Isac"*)
jan@42369
   745
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   746
    (*Specify_Problem ["normalize","polynomial",
jan@42369
   747
                       "univariate","equation"])*)
jan@42369
   748
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   749
    (* Specify_Method["PolyEq","normalize_poly"]*)
jan@42369
   750
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   751
    (*Apply_Method["PolyEq","normalize_poly"]*)
jan@42369
   752
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   753
    (*Rewrite ("all_left","PolyEq.all_left")*)
jan@42369
   754
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   755
    (*Rewrite_Set_Inst(["(bdv,A)"],"make_ratpoly_in")*)
jan@42369
   756
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   757
    (*Rewrite_Set "polyeq_simplify"*)
jan@42369
   758
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt; 
jan@42369
   759
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt; 
jan@42369
   760
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   761
    (*Add_Given "equality (3 + -3 / 4 * A =0)"*)
jan@42369
   762
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   763
    (*Add_Given "solveFor A"*)
jan@42369
   764
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   765
    (*Add_Find "solutions A_i"*)
jan@42369
   766
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt; 
jan@42369
   767
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt; 
jan@42369
   768
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt; 
jan@42369
   769
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt; 
jan@42369
   770
    (*Apply_Method ["PolyEq","solve_d1_polyeq_equation"]*)
jan@42369
   771
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   772
    (*Rewrite_Set_Inst(["(bdv,A)"],"d1_polyeq_simplify")*)
jan@42369
   773
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   774
    (*Rewrite_Set "polyeq_simplify"*)
jan@42369
   775
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   776
    (*Rewrite_Set "norm_Rational_parenthesized"*)
jan@42369
   777
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   778
    (*Or_to_List*)
jan@42369
   779
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   780
    (*Check_elementwise "Assumptions"*)
jan@42369
   781
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   782
    (*Check_Postcond ["degree_1","polynomial",
jan@42369
   783
                      "univariate","equation"]*)
jan@42369
   784
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   785
    (*Check_Postcond ["normalize","polynomial",
jan@42369
   786
                      "univariate","equation"]*)
jan@42369
   787
  val (p,_,fa,nxt,_,pt) = me nxt p [] pt;
jan@42369
   788
    (*End_Proof'*)
jan@42369
   789
  f2str fa;
jan@42369
   790
*}
jan@42369
   791
jan@42369
   792
subsubsection {*Get Second Koeffizient*}
jan@42369
   793
jan@42369
   794
text{*\noindent With the use of \texttt{thy} we check which theories the 
jan@42369
   795
      interpreter knows.*}
jan@42369
   796
neuper@42279
   797
ML {*thy*}
neuper@42279
   798
jan@42369
   799
text{*\noindent To get the second koeffizient we substitude $z$ with the second
jan@42369
   800
      zeropoint we determined in section~\ref{sec:solveq}.*}
jan@42369
   801
neuper@42279
   802
ML {*
jan@42369
   803
  val SOME (eq4b_1,_) =
jan@42369
   804
    rewrite_terms_ @{theory Isac} e_rew_ord e_rls [s_2] eq3'';
jan@42369
   805
  term2str eq4b_1;
jan@42369
   806
  val SOME (eq4b_2,_) =
jan@42369
   807
    rewrite_set_ @{theory Isac} false norm_Rational eq4b_1;
jan@42369
   808
  term2str eq4b_2;
neuper@42279
   809
jan@42369
   810
  val fmz = ["equality (3= -3*B/(4::real))", "solveFor B","solutions L"];
jan@42369
   811
  val (dI',pI',mI') =("Isac", ["univariate","equation"], ["no_met"]);
jan@42369
   812
  val (p,_,fb,nxt,_,pt) = CalcTreeTEST [(fmz, (dI',pI',mI'))];
jan@42369
   813
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   814
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   815
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   816
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   817
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   818
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   819
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   820
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   821
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   822
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   823
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   824
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   825
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   826
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   827
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   828
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   829
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   830
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   831
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   832
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   833
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   834
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   835
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   836
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   837
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   838
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt;
jan@42369
   839
  val (p,_,fb,nxt,_,pt) = me nxt p [] pt; 
jan@42369
   840
  f2str fb;
neuper@42279
   841
*}
neuper@42279
   842
jan@42369
   843
text{*\noindent We compare our results with the pre calculated upshot.*}
jan@42369
   844
jan@42369
   845
ML {*
jan@42369
   846
  if f2str fa = "[A = 4]" then () else error "part.fract. eq4_1";
jan@42369
   847
  if f2str fb = "[B = -4]" then () else error "part.fract. eq4_1";
neuper@42279
   848
*}
neuper@42279
   849
jan@42369
   850
section {*Implement the Specification and the Method \label{spec-meth}*}
neuper@42279
   851
jan@42369
   852
text{*\noindent Now everything we need for solving the problem has been
jan@42369
   853
      tested out. We now start by creating new nodes for our methods and
jan@42369
   854
      further on our new programm in the interpreter.*}
jan@42369
   855
jan@42369
   856
subsection{*Define the Field Descriptions for the 
jan@42369
   857
            Specification\label{sec:deffdes}*}
jan@42369
   858
jan@42369
   859
text{*\noindent We define the fields \em filterExpression \normalfont and
jan@42369
   860
      \em stepResponse \normalfont both as quations, they represent the in- and
jan@42369
   861
      output of the program.*}
jan@42369
   862
neuper@42279
   863
consts
neuper@42279
   864
  filterExpression  :: "bool => una"
neuper@42279
   865
  stepResponse      :: "bool => una"
neuper@42279
   866
neuper@42279
   867
subsection{*Define the Specification*}
jan@42369
   868
jan@42369
   869
text{*\noindent The next step is defining the specifications as nodes in the
jan@42369
   870
      designated part. We have to create the hierachy node by node and start
jan@42369
   871
      with \em SignalProcessing \normalfont and go on by creating the node
jan@42369
   872
      \em Z\_Transform\normalfont.*}
jan@42369
   873
neuper@42279
   874
ML {*
jan@42369
   875
  store_pbt
jan@42369
   876
   (prep_pbt thy "pbl_SP" [] e_pblID
jan@42369
   877
   (["SignalProcessing"], [], e_rls, NONE, []));
jan@42369
   878
  store_pbt
jan@42369
   879
   (prep_pbt thy "pbl_SP_Ztrans" [] e_pblID
jan@42369
   880
   (["Z_Transform","SignalProcessing"], [], e_rls, NONE, []));
neuper@42279
   881
*}
jan@42369
   882
jan@42369
   883
text{*\noindent For the suddenly created node we have to define the input
jan@42369
   884
       and output parameters. We already prepaired their definition in
jan@42369
   885
       section~\ref{sec:deffdes}.*}
jan@42369
   886
neuper@42279
   887
ML {*
jan@42369
   888
  store_pbt
jan@42369
   889
   (prep_pbt thy "pbl_SP_Ztrans_inv" [] e_pblID
jan@42369
   890
   (["inverse", "Z_Transform", "SignalProcessing"],
jan@42369
   891
    [("#Given" ,["filterExpression X_eq"]),
jan@42369
   892
     ("#Find"  ,["stepResponse n_eq"])
jan@42369
   893
    ],
jan@42369
   894
    append_rls "e_rls" e_rls [(*for preds in where_*)], NONE, 
jan@42369
   895
    [["SignalProcessing","Z_Transform","inverse"]]));
neuper@42279
   896
jan@42369
   897
  show_ptyps();
jan@42369
   898
  get_pbt ["inverse","Z_Transform","SignalProcessing"];
neuper@42279
   899
*}
neuper@42279
   900
neuper@42279
   901
subsection {*Define Name and Signature for the Method*}
jan@42369
   902
jan@42369
   903
text{*\noindent As a next step we store the definition of our new method as a
jan@42369
   904
      constant for the interpreter.*}
jan@42369
   905
neuper@42279
   906
consts
neuper@42279
   907
  InverseZTransform :: "[bool, bool] => bool"
neuper@42279
   908
    ("((Script InverseZTransform (_ =))// (_))" 9)
neuper@42279
   909
jan@42370
   910
subsection {*Setup Parent Nodes in Hierarchy of Method\label{sec:cparentnode}*}
jan@42369
   911
jan@42369
   912
text{*\noindent Again we have to generate the nodes step by step, first the
jan@42369
   913
      parent node and then the originally \em Z\_Transformation 
jan@42369
   914
      \normalfont node. We have to define both nodes first with an empty script
jan@42369
   915
      as content.*}
jan@42369
   916
neuper@42279
   917
ML {*
jan@42369
   918
  store_met
jan@42369
   919
   (prep_met thy "met_SP" [] e_metID
jan@42369
   920
   (["SignalProcessing"], [],
jan@42369
   921
     {rew_ord'="tless_true", rls'= e_rls, calc = [], 
jan@42369
   922
      srls = e_rls, prls = e_rls,
jan@42369
   923
      crls = e_rls, nrls = e_rls}, "empty_script"));
jan@42369
   924
  store_met
jan@42369
   925
   (prep_met thy "met_SP_Ztrans" [] e_metID
jan@42369
   926
   (["SignalProcessing", "Z_Transform"], [],
jan@42369
   927
     {rew_ord'="tless_true", rls'= e_rls, calc = [], 
jan@42369
   928
      srls = e_rls, prls = e_rls,
jan@42369
   929
      crls = e_rls, nrls = e_rls}, "empty_script"));
neuper@42279
   930
*}
jan@42369
   931
jan@42369
   932
text{*\noindent After we generated both nodes, we can fill the containing
jan@42369
   933
      script we want to implement later. First we define the specifications
jan@42369
   934
      of the script in e.g. the in- and output.*}
jan@42369
   935
neuper@42279
   936
ML {*
jan@42369
   937
  store_met
jan@42369
   938
   (prep_met thy "met_SP_Ztrans_inv" [] e_metID
jan@42369
   939
   (["SignalProcessing", "Z_Transform", "inverse"], 
jan@42369
   940
    [("#Given" ,["filterExpression X_eq"]),
jan@42369
   941
     ("#Find"  ,["stepResponse n_eq"])
jan@42369
   942
    ],
jan@42369
   943
     {rew_ord'="tless_true", rls'= e_rls, calc = [], 
jan@42369
   944
      srls = e_rls, prls = e_rls,
jan@42369
   945
      crls = e_rls, nrls = e_rls}, "empty_script"));
neuper@42279
   946
*}
jan@42369
   947
jan@42369
   948
text{*\noindent After we stored the definition we can start implementing the
jan@42369
   949
      script itself. As a first try we define only three rows containing one
jan@42369
   950
      simple operation.*}
jan@42369
   951
neuper@42279
   952
ML {*
jan@42369
   953
  store_met
jan@42369
   954
   (prep_met thy "met_SP_Ztrans_inv" [] e_metID
jan@42369
   955
   (["SignalProcessing", "Z_Transform", "inverse"], 
jan@42369
   956
    [("#Given" ,["filterExpression X_eq"]),
jan@42369
   957
     ("#Find"  ,["stepResponse n_eq"])
jan@42369
   958
    ],
jan@42369
   959
     {rew_ord'="tless_true", rls'= e_rls, calc = [], 
jan@42369
   960
      srls = e_rls, prls = e_rls,
jan@42369
   961
      crls = e_rls, nrls = e_rls},
jan@42369
   962
        "Script InverseZTransform (Xeq::bool) =" ^
jan@42369
   963
        " (let X = Take Xeq;" ^
jan@42369
   964
        "      X = Rewrite ruleZY False X" ^
jan@42369
   965
        "  in X)"));
jan@42299
   966
*}
jan@42369
   967
jan@42369
   968
text{*\noindent Check if the method has been stored correctly\ldots*}
jan@42369
   969
jan@42299
   970
ML {*
jan@42369
   971
  show_mets(); 
jan@42299
   972
*}
jan@42369
   973
jan@42369
   974
text{*\noindent If yes we can get the method by steping backwards through
jan@42369
   975
      the hierachy.*}
jan@42369
   976
jan@42299
   977
ML {*
jan@42369
   978
  get_met ["SignalProcessing","Z_Transform","inverse"];
neuper@42279
   979
*}
neuper@42279
   980
jan@42296
   981
section {*Program in CTP-based language \label{prog-steps}*}
jan@42369
   982
jan@42370
   983
text{*\noindent We start stepwise expanding our programm. The script is a
jan@42370
   984
      simple string containing severell manipulation instructions.
jan@42370
   985
      \par The first script we try contains no instruction, we only test if
jan@42370
   986
      building scripts that way work.*}
jan@42369
   987
jan@42370
   988
subsection {*Stepwise Extend the Program*}
neuper@42279
   989
ML {*
jan@42370
   990
  val str = 
jan@42370
   991
    "Script InverseZTransform (Xeq::bool) =" ^
jan@42370
   992
    " Xeq";
neuper@42279
   993
*}
jan@42300
   994
jan@42370
   995
text{*\noindent Next we put some instructions in the script and try if we are
jan@42370
   996
      able to solve our first equation.*}
jan@42370
   997
jan@42370
   998
ML {*
jan@42370
   999
  val str = 
jan@42370
  1000
    "Script InverseZTransform (Xeq::bool) =" ^
jan@42370
  1001
    (*
jan@42370
  1002
     * 1/z) instead of z ^^^ -1
jan@42370
  1003
     *)
jan@42370
  1004
    " (let X = Take Xeq;" ^
jan@42370
  1005
    "      X' = Rewrite ruleZY False X;" ^
jan@42370
  1006
    (*
jan@42370
  1007
     * z * denominator
jan@42370
  1008
     *)
jan@42370
  1009
    "      X' = (Rewrite_Set norm_Rational False) X'" ^
jan@42370
  1010
    (*
jan@42370
  1011
     * simplify
jan@42370
  1012
     *)
jan@42370
  1013
    "  in X)";
jan@42370
  1014
    (*
jan@42370
  1015
     * NONE
jan@42370
  1016
     *)
jan@42370
  1017
    "Script InverseZTransform (Xeq::bool) =" ^
jan@42370
  1018
    (*
jan@42370
  1019
     * (1/z) instead of z ^^^ -1
jan@42370
  1020
     *)
jan@42370
  1021
    " (let X = Take Xeq;" ^
jan@42370
  1022
    "      X' = Rewrite ruleZY False X;" ^
jan@42370
  1023
    (*
jan@42370
  1024
     * z * denominator
jan@42370
  1025
     *)
jan@42370
  1026
    "      X' = (Rewrite_Set norm_Rational False) X';" ^
jan@42370
  1027
    (*
jan@42370
  1028
     * simplify
jan@42370
  1029
     *)
jan@42370
  1030
    "      X' = (SubProblem (Isac',[pqFormula,degree_2," ^
jan@42370
  1031
    "                               polynomial,univariate,equation]," ^
jan@42370
  1032
    "                              [no_met])   " ^
jan@42370
  1033
    "                              [BOOL e_e, REAL v_v])" ^
jan@42370
  1034
    "            in X)";
jan@42370
  1035
*}
jan@42370
  1036
jan@42370
  1037
text{*\noindent To solve the equation it is neccessary to drop the left hand
jan@42370
  1038
      side, now we only need the denominator of the right hand side. The first
jan@42370
  1039
      equation solves the zeros of our expression.*}
jan@42370
  1040
jan@42370
  1041
ML {*
jan@42370
  1042
  val str = 
jan@42370
  1043
    "Script InverseZTransform (Xeq::bool) =" ^
jan@42370
  1044
    " (let X = Take Xeq;" ^
jan@42370
  1045
    "      X' = Rewrite ruleZY False X;" ^
jan@42370
  1046
    "      X' = (Rewrite_Set norm_Rational False) X';" ^
jan@42370
  1047
    "      funterm = rhs X'" ^ 
jan@42370
  1048
    (*
jan@42370
  1049
     * drop X'= for equation solving
jan@42370
  1050
     *)
jan@42370
  1051
    "  in X)";
jan@42370
  1052
*}
jan@42370
  1053
jan@42370
  1054
text{*\noindent As mentioned above, we need the denominator of the right hand
jan@42370
  1055
      side. The equation itself consists of this denominator and tries to find
jan@42370
  1056
      a $z$ for this the denominator is equal to zero.*}
jan@42370
  1057
jan@42370
  1058
ML {*
jan@42370
  1059
  val str = 
jan@42370
  1060
    "Script InverseZTransform (X_eq::bool) =" ^ 
jan@42370
  1061
    " (let X = Take X_eq;" ^
jan@42370
  1062
    "      X' = Rewrite ruleZY False X;" ^ 
jan@42370
  1063
    "      X' = (Rewrite_Set norm_Rational False) X';" ^ 
jan@42370
  1064
    "      (X'_z::real) = lhs X';" ^
jan@42370
  1065
    "      (z::real) = argument_in X'_z;" ^
jan@42370
  1066
    "      (funterm::real) = rhs X';" ^ 
jan@42370
  1067
    "      (denom::real) = get_denominator funterm;" ^ 
jan@42370
  1068
    (*
jan@42370
  1069
     * get_denominator
jan@42370
  1070
     *)
jan@42370
  1071
    "      (equ::bool) = (denom = (0::real));" ^
jan@42370
  1072
    "      (L_L::bool list) =                                    " ^
jan@42370
  1073
    "            (SubProblem (Test',                             " ^
jan@42370
  1074
    "                         [linear,univariate,equation,test], " ^
jan@42370
  1075
    "                         [Test,solve_linear])               " ^
jan@42370
  1076
    "                         [BOOL equ, REAL z])                " ^
jan@42370
  1077
    "  in X)";
jan@42370
  1078
jan@42370
  1079
  parse thy str;
jan@42370
  1080
  val sc = ((inst_abs thy) o term_of o the o (parse thy)) str;
jan@42370
  1081
  atomty sc;
jan@42370
  1082
*}
jan@42370
  1083
jan@42370
  1084
text {*\noindent This ruleset contains all functions that are in the script; 
jan@42370
  1085
       The evaluation of the functions is done by rewriting using this ruleset.*}
jan@42370
  1086
jan@42370
  1087
ML {*
jan@42370
  1088
  val srls = Rls {id="srls_InverseZTransform", 
jan@42370
  1089
                  preconds = [],
jan@42370
  1090
                  rew_ord = ("termlessI",termlessI),
jan@42370
  1091
                  erls = append_rls "erls_in_srls_InverseZTransform" e_rls
jan@42370
  1092
                    [(*for asm in NTH_CONS ...*)
jan@42370
  1093
                     Calc ("Orderings.ord_class.less",eval_equ "#less_"),
jan@42370
  1094
                     (*2nd NTH_CONS pushes n+-1 into asms*)
jan@42370
  1095
                     Calc("Groups.plus_class.plus", eval_binop "#add_")
jan@42370
  1096
                    ], 
jan@42370
  1097
                  srls = Erls, calc = [],
jan@42370
  1098
                  rules = [
jan@42370
  1099
                           Thm ("NTH_CONS",num_str @{thm NTH_CONS}),
jan@42370
  1100
                           Calc("Groups.plus_class.plus", 
jan@42370
  1101
                                eval_binop "#add_"),
jan@42370
  1102
                           Thm ("NTH_NIL",num_str @{thm NTH_NIL}),
jan@42370
  1103
                           Calc("Tools.lhs", eval_lhs"eval_lhs_"),
jan@42370
  1104
                           Calc("Tools.rhs", eval_rhs"eval_rhs_"),
jan@42370
  1105
                           Calc("Atools.argument'_in",
jan@42370
  1106
                                eval_argument_in "Atools.argument'_in"),
jan@42370
  1107
                           Calc("Rational.get_denominator",
jan@42370
  1108
                                eval_get_denominator "#get_denominator"),
jan@42370
  1109
                           Calc("Rational.get_numerator",
jan@42370
  1110
                                eval_get_numerator "#get_numerator"),
jan@42370
  1111
                           Calc("Partial_Fractions.factors_from_solution",
jan@42370
  1112
                                eval_factors_from_solution 
jan@42370
  1113
                                  "#factors_from_solution"),
jan@42370
  1114
                           Calc("Partial_Fractions.drop_questionmarks",
jan@42370
  1115
                                eval_drop_questionmarks "#drop_?")
jan@42370
  1116
                          ],
jan@42370
  1117
                  scr = EmptyScr
jan@42370
  1118
                 };
jan@42370
  1119
*}
jan@42370
  1120
jan@42370
  1121
jan@42370
  1122
subsection {*Store Final Version of Program for Execution*}
jan@42370
  1123
jan@42370
  1124
text{*\noindent After we also tested how to write scripts and run them,
jan@42370
  1125
      we start creating the final version of our script and store it into
jan@42370
  1126
      the method for which we created a node in section~\ref{sec:cparentnode}
jan@42370
  1127
      Note that we also did this stepwise, but we didn't kept every
jan@42370
  1128
      subversion.*}
jan@42370
  1129
jan@42370
  1130
ML {*
jan@42370
  1131
  store_met(
jan@42370
  1132
    prep_met thy "met_SP_Ztrans_inv" [] e_metID
jan@42370
  1133
    (["SignalProcessing",
jan@42370
  1134
      "Z_Transform",
jan@42370
  1135
      "inverse"], 
jan@42370
  1136
     [
jan@42370
  1137
       ("#Given" ,["filterExpression X_eq"]),
jan@42370
  1138
       ("#Find"  ,["stepResponse n_eq"])
jan@42370
  1139
     ],
jan@42370
  1140
     {
jan@42370
  1141
       rew_ord'="tless_true",
jan@42370
  1142
       rls'= e_rls, calc = [],
jan@42370
  1143
       srls = srls, 
jan@42370
  1144
       prls = e_rls,
jan@42370
  1145
       crls = e_rls, nrls = e_rls
jan@42370
  1146
     },
jan@42370
  1147
     "Script InverseZTransform (X_eq::bool) =                        "^
jan@42370
  1148
     (*(1/z) instead of z ^^^ -1*)
jan@42370
  1149
     "(let X = Take X_eq;                                            "^
jan@42370
  1150
     "      X' = Rewrite ruleZY False X;                             "^
jan@42370
  1151
     (*z * denominator*)
jan@42370
  1152
     "      (num_orig::real) = get_numerator (rhs X');               "^
jan@42370
  1153
     "      X' = (Rewrite_Set norm_Rational False) X';               "^
jan@42370
  1154
     (*simplify*)
jan@42370
  1155
     "      (X'_z::real) = lhs X';                                   "^
jan@42370
  1156
     "      (zzz::real) = argument_in X'_z;                          "^
jan@42370
  1157
     "      (funterm::real) = rhs X';                                "^
jan@42370
  1158
     (*drop X' z = for equation solving*)
jan@42370
  1159
     "      (denom::real) = get_denominator funterm;                 "^
jan@42370
  1160
     (*get_denominator*)
jan@42370
  1161
     "      (num::real) = get_numerator funterm;                     "^
jan@42370
  1162
     (*get_numerator*)
jan@42370
  1163
     "      (equ::bool) = (denom = (0::real));                       "^
jan@42370
  1164
     "      (L_L::bool list) = (SubProblem (PolyEq',                 "^
jan@42370
  1165
     "         [abcFormula,degree_2,polynomial,univariate,equation], "^
jan@42370
  1166
     "         [no_met])                                             "^
jan@42370
  1167
     "         [BOOL equ, REAL zzz]);                                "^
jan@42370
  1168
     "      (facs::real) = factors_from_solution L_L;                "^
jan@42370
  1169
     "      (eql::real) = Take (num_orig / facs);                    "^ 
jan@42370
  1170
jan@42370
  1171
     "      (eqr::real) = (Try (Rewrite_Set ansatz_rls False)) eql;  "^
jan@42370
  1172
jan@42370
  1173
     "      (eq::bool) = Take (eql = eqr);                           "^
jan@42370
  1174
     (*Maybe possible to use HOLogic.mk_eq ??*)
jan@42370
  1175
     "      eq = (Try (Rewrite_Set equival_trans False)) eq;         "^ 
jan@42370
  1176
jan@42370
  1177
     "      eq = drop_questionmarks eq;                              "^
jan@42370
  1178
     "      (z1::real) = (rhs (NTH 1 L_L));                          "^
jan@42370
  1179
     (* 
jan@42370
  1180
      * prepare equliation for a - eq_a
jan@42370
  1181
      * therfor subsitude z with solution 1 - z1
jan@42370
  1182
      *)
jan@42370
  1183
     "      (z2::real) = (rhs (NTH 2 L_L));                          "^
jan@42370
  1184
 
jan@42370
  1185
     "      (eq_a::bool) = Take eq;                                  "^
jan@42370
  1186
     "      eq_a = (Substitute [zzz=z1]) eq;                         "^
jan@42370
  1187
     "      eq_a = (Rewrite_Set norm_Rational False) eq_a;           "^
jan@42370
  1188
     "      (sol_a::bool list) =                                     "^
jan@42370
  1189
     "                 (SubProblem (Isac',                           "^
jan@42370
  1190
     "                              [univariate,equation],[no_met])  "^
jan@42370
  1191
     "                              [BOOL eq_a, REAL (A::real)]);    "^
jan@42370
  1192
     "      (a::real) = (rhs(NTH 1 sol_a));                          "^
jan@42370
  1193
jan@42370
  1194
     "      (eq_b::bool) = Take eq;                                  "^
jan@42370
  1195
     "      eq_b =  (Substitute [zzz=z2]) eq_b;                      "^
jan@42370
  1196
     "      eq_b = (Rewrite_Set norm_Rational False) eq_b;           "^
jan@42370
  1197
     "      (sol_b::bool list) =                                     "^
jan@42370
  1198
     "                 (SubProblem (Isac',                           "^
jan@42370
  1199
     "                              [univariate,equation],[no_met])  "^
jan@42370
  1200
     "                              [BOOL eq_b, REAL (B::real)]);    "^
jan@42370
  1201
     "      (b::real) = (rhs(NTH 1 sol_b));                          "^
jan@42370
  1202
jan@42370
  1203
     "      eqr = drop_questionmarks eqr;                            "^
jan@42370
  1204
     "      (pbz::real) = Take eqr;                                  "^
jan@42370
  1205
     "      pbz = ((Substitute [A=a]) pbz);                          "^
jan@42370
  1206
     "      pbz = ((Substitute [B=b]) pbz);                          "^
jan@42370
  1207
jan@42370
  1208
     "      pbz = Rewrite ruleYZ False pbz;                          "^
jan@42370
  1209
     "      pbz = drop_questionmarks pbz;                            "^
jan@42370
  1210
jan@42370
  1211
     "      (iztrans::real) = Take pbz;                              "^
jan@42370
  1212
     "      iztrans = (Rewrite_Set inverse_z False) iztrans;         "^
jan@42370
  1213
     "      iztrans = drop_questionmarks iztrans;                    "^
jan@42370
  1214
     "      (n_eq::bool) = Take (X_n = iztrans)                      "^ 
jan@42370
  1215
     "in n_eq)" 
jan@42370
  1216
    )
jan@42370
  1217
           );
jan@42370
  1218
*}
jan@42370
  1219
jan@42370
  1220
jan@42370
  1221
subsection {*Check the Program*}
jan@42370
  1222
text{*\noindent When the script is ready we can start checking our work.*}
jan@42370
  1223
subsubsection {*Check the Formalization*}
jan@42370
  1224
text{*\noindent First we want to check the formalization of the in and
jan@42370
  1225
       output of our programm.*}
jan@42370
  1226
jan@42370
  1227
ML {*
jan@42370
  1228
  val fmz = 
jan@42370
  1229
    ["filterExpression (X  = 3 / (z - 1/4 + -1/8 * (1/(z::real))))",
jan@42370
  1230
     "stepResponse (x[n::real]::bool)"];
jan@42370
  1231
  val (dI,pI,mI) = 
jan@42370
  1232
    ("Isac", ["inverse", "Z_Transform", "SignalProcessing"], 
jan@42370
  1233
             ["SignalProcessing","Z_Transform","inverse"]);
jan@42370
  1234
jan@42370
  1235
  val ([
jan@42370
  1236
          (
jan@42370
  1237
            1,
jan@42370
  1238
            [1],
jan@42370
  1239
            "#Given",
jan@42370
  1240
            Const ("Inverse_Z_Transform.filterExpression", _),
jan@42370
  1241
            [Const ("HOL.eq", _) $ _ $ _]
jan@42370
  1242
          ),
jan@42370
  1243
          (
jan@42370
  1244
            2,
jan@42370
  1245
            [1],
jan@42370
  1246
            "#Find",
jan@42370
  1247
            Const ("Inverse_Z_Transform.stepResponse", _),
jan@42370
  1248
            [Free ("x", _) $ _]
jan@42370
  1249
          )
jan@42370
  1250
       ],_
jan@42370
  1251
      ) = prep_ori fmz thy ((#ppc o get_pbt) pI);
jan@42370
  1252
jan@42370
  1253
  val Script sc 
jan@42370
  1254
    = (#scr o get_met) ["SignalProcessing",
jan@42370
  1255
                        "Z_Transform",
jan@42370
  1256
                        "inverse"];
jan@42370
  1257
  atomty sc;
jan@42370
  1258
*}
jan@42370
  1259
jan@42370
  1260
subsubsection {*Stepwise Check the Program\label{sec:stepcheck}*}
jan@42370
  1261
text{*\noindent We start to stepwise execute our new programm in a calculation
jan@42370
  1262
      tree and check if every node implements that what we have wanted.*}
jan@42370
  1263
      
jan@42370
  1264
ML {*
jan@42370
  1265
  trace_rewrite := false;
jan@42370
  1266
  trace_script := false;
jan@42370
  1267
  print_depth 9;
jan@42370
  1268
  
jan@42370
  1269
  val fmz =
jan@42370
  1270
    ["filterExpression (X z = 3 / (z - 1/4 + -1/8 * (1/(z::real))))",
jan@42370
  1271
     "stepResponse (x[n::real]::bool)"];
jan@42370
  1272
     
jan@42370
  1273
  val (dI,pI,mI) =
jan@42370
  1274
    ("Isac", ["inverse", "Z_Transform", "SignalProcessing"], 
jan@42370
  1275
             ["SignalProcessing","Z_Transform","inverse"]);
jan@42370
  1276
             
jan@42370
  1277
  val (p,_,f,nxt,_,pt)  = CalcTreeTEST [(fmz, (dI,pI,mI))];
jan@42370
  1278
  val (p,_,f,nxt,_,pt) = me nxt p [] pt; 
jan@42370
  1279
    "Add_Given";
jan@42370
  1280
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1281
    "Add_Find";
jan@42370
  1282
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1283
    "Specify_Theory";
jan@42370
  1284
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1285
    "Specify_Problem";
jan@42370
  1286
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1287
    "Specify_Method";
jan@42370
  1288
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1289
    "Apply_Method";
jan@42370
  1290
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1291
    "Rewrite (ruleZY, Inverse_Z_Transform.ruleZY)";
jan@42370
  1292
    "--> X z = 3 / (z - 1 / 4 + -1 / 8 * (1 / z))";
jan@42370
  1293
  (*
jan@42370
  1294
   * TODO naming!
jan@42370
  1295
   *)
jan@42370
  1296
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1297
    "Rewrite_Set norm_Rational";
jan@42370
  1298
    " --> X' z = 3 / (z * (z - 1 / 4 + -1 / 8 * (1 / z)))";
jan@42370
  1299
  val (p,_,f,nxt,_,pt) = me nxt p [] pt; 
jan@42370
  1300
    "SubProblem";
jan@42370
  1301
*}
jan@42370
  1302
jan@42370
  1303
text {*\noindent Instead of \ttfamily nxt = Subproblem \normalfont above we had
jan@42370
  1304
       \ttfamily Empty\_Tac; \normalfont the search for the reason considered
jan@42370
  1305
       the following points:\begin{itemize}
jan@42370
  1306
       \item What shows \ttfamily show\_pt pt;\normalfont\ldots?\\
jan@42370
  1307
         \ttfamily ((\lbrack 2\rbrack, Res), ?X' z = 24 /
jan@42370
  1308
         (-1 + -2 * z + 8 * z \^\^\^ ~2))\rbrack\normalfont\\
jan@42370
  1309
         The calculation is ok but no \ttfamily next \normalfont step found:
jan@42370
  1310
         Should be\\ \ttfamily nxt = Subproblem\normalfont!
jan@42370
  1311
       \item What shows \ttfamily trace\_script := true; \normalfont we read
jan@42370
  1312
         bottom up\ldots\\
jan@42370
  1313
         \ttfamily @@@next leaf 'SubProbfrom\\
jan@42370
  1314
         (PolyEq',\\
jan@42370
  1315
         \lbrack abcFormula, degree\_2, polynomial, univariate, 
jan@42370
  1316
         equation\rbrack,\\
jan@42370
  1317
         no\_meth)\\
jan@42370
  1318
         \lbrack BOOL equ, REAL z\rbrack' ---> STac 'SubProblem\\
jan@42370
  1319
         (PolyEq',\\
jan@42370
  1320
         [abcFormula, degree\_2, polynomial, univariate, equation],\\
jan@42370
  1321
         no\_meth)\\
jan@42370
  1322
         \lbrack BOOL (-1 + -2 * z + 8 * z \^\^\^ ~2 = 0), 
jan@42370
  1323
         REAL z\rbrack'\normalfont\\
jan@42370
  1324
         We see the SubProblem with correct arguments from searching next
jan@42370
  1325
         step (program text !!!--->!!! STac (script tactic) with arguments
jan@42370
  1326
         evaluated.)
jan@42370
  1327
     \item Do we have the right Script \ldots difference in the
jan@42370
  1328
         argumentsdifference in the arguments\ldots\\
jan@42370
  1329
         \ttfamily val Script s =\\
jan@42370
  1330
         (#scr o get\_met) ["SignalProcessing","Z\_Transform","inverse"];\\
jan@42370
  1331
         writeln (term2str s);\normalfont\\
jan@42370
  1332
         \ldots shows the right script. Difference in the arguments.
jan@42370
  1333
     \item Test --- Why helpless here ? --- shows: \ttfamily replace
jan@42370
  1334
         no\_meth by [no\_meth] \normalfont in Script
jan@42370
  1335
     \end{itemize}
jan@42300
  1336
*}
jan@42300
  1337
neuper@42279
  1338
ML {*
jan@42370
  1339
  val (p,_,f,nxt,_,pt) = me nxt p [] pt; 
jan@42370
  1340
    (*Model_Problem";*)
neuper@42279
  1341
*}
neuper@42279
  1342
jan@42370
  1343
text {*\noindent Instead of \ttfamily nxt = Model\_Problem \normalfont above
jan@42370
  1344
       we had \ttfamily Empty\_Tac; \normalfont the search for the reason 
jan@42370
  1345
       considered the following points:\begin{itemize}
jan@42370
  1346
       \item Difference in the arguments
jan@42370
  1347
       \item Comparison with subsection~ref{sec:solveq}: There solving this
jan@42370
  1348
         equation works, so there must be some difference in the arguments
jan@42370
  1349
         of the Subproblem: RIGHT: we had \ttfamily [no\_meth] \normalfont
jan@42370
  1350
         instead of \ttfamily [no\_met] \normalfont ;-)
jan@42370
  1351
       \end{itemize}*}
jan@42338
  1352
neuper@42279
  1353
ML {*
jan@42370
  1354
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1355
    (*Add_Given equality (-1 + -2 * z + 8 * z ^^^ 2 = 0)";*)
jan@42370
  1356
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1357
    (*Add_Given solveFor z";*)
jan@42370
  1358
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1359
    (*Add_Find solutions z_i";*)
jan@42370
  1360
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1361
    (*Specify_Theory Isac";*)
neuper@42279
  1362
*}
neuper@42279
  1363
jan@42370
  1364
text {*\noindent We had \ttfamily nxt = Empty\_Tac instead Specify\_Theory;
jan@42370
  1365
       \normalfont The search for the reason considered the following points:
jan@42370
  1366
       \begin{itemize}
jan@42370
  1367
       \item Was there an error message? NO -- ok
jan@42370
  1368
       \item Has \ttfamily nxt = Add\_Find \normalfont been inserted in pt:\\
jan@42370
  1369
         \ttfamily get\_obj g\_pbl pt (fst p);\normalfont? YES -- ok
jan@42370
  1370
       \item What is the returned formula: 
jan@42370
  1371
         \ttfamily print\_depth 999; f; print\_depth 999;\\
jan@42370
  1372
         \lbrace Find = \lbrack Correct "solutions z\_i"\rbrack,
jan@42370
  1373
           With = \lbrack\rbrack,\\
jan@42370
  1374
         Given = \lbrack Correct "equality (-1 + -2 * z + 8 * z ^^^ 2 = 0)",
jan@42370
  1375
           Correct "solveFor z"\rbrack,\\
jan@42370
  1376
         Where = \lbrack \ldots \rbrack,
jan@42370
  1377
     Relate = \lbrack\rbrack\rbrace $ \normalfont\\
jan@42370
  1378
     \normalfont The only False is the reason: the Where (the precondition) is
jan@42370
  1379
     False for good reasons: The precondition seems to check for linear
jan@42370
  1380
     equations, not for the one we want to solve! Removed this error by
jan@42370
  1381
     correcting the Script from \ttfamily SubProblem (PolyEq',
jan@42370
  1382
     \lbrack linear,univariate,equation,
jan@42370
  1383
       test\rbrack, \lbrack Test,solve\_linear\rbrack \normalfont to
jan@42370
  1384
     \ttfamily SubProblem (PolyEq',\\ \lbrack abcFormula,degree\_2,
jan@42370
  1385
       polynomial,univariate,equation\rbrack,\\
jan@42370
  1386
                   \lbrack PolyEq,solve\_d2\_polyeq\_abc\_equation
jan@42370
  1387
                   \rbrack\normalfont
jan@42370
  1388
     You find the appropriate type of equation at the
jan@42370
  1389
     {\sisac}-WEB-Page\footnote{
jan@42370
  1390
     \href{http://www.ist.tugraz.at/projects/isac/www/kbase/pbl/index\_pbl.html}
jan@42370
  1391
          {http://www.ist.tugraz.at/projects/isac/www/kbase/pbl/index\_pbl.html}
jan@42370
  1392
                               }
jan@42370
  1393
     And the respective method in \ttfamily Knowledge/PolyEq.thy \normalfont
jan@42370
  1394
     at the respective \ttfamily store\_pbt. \normalfont Or you leave the
jan@42370
  1395
     selection of the appropriate type to isac as done in the final Script ;-))
jan@42370
  1396
  \end{itemize}*}
jan@42370
  1397
  
neuper@42279
  1398
ML {*
jan@42370
  1399
  val (p,_,f,nxt,_,pt) = me nxt p [] pt; 
jan@42370
  1400
    (*Specify_Problem [abcFormula,...";*)
jan@42370
  1401
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1402
    (*Specify_Method [PolyEq,solve_d2_polyeq_abc_equation";*)
jan@42370
  1403
  val (p,_,f,nxt,_,pt) = me nxt p [] pt; 
jan@42370
  1404
    (*Apply_Method [PolyEq,solve_d2_polyeq_abc_equation";*)
jan@42370
  1405
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1406
    (*Rewrite_Set_Inst ([(bdv, z)], d2_polyeq_abcFormula_simplify";*)
jan@42370
  1407
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1408
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1409
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1410
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1411
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1412
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1413
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1414
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1415
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1416
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1417
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1418
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1419
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1420
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1421
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1422
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1423
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1424
    (*Specify_Problem ["normalize","polynomial","univariate","equation"]*)
jan@42370
  1425
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1426
    (*Specify_Method ["PolyEq", "normalize_poly"]*)
jan@42370
  1427
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1428
    (*Apply_Method ["PolyEq", "normalize_poly"]*)
jan@42370
  1429
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1430
    (*Rewrite ("all_left", "PolyEq.all_left")*)
jan@42370
  1431
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1432
    (*Rewrite_Set_Inst (["(bdv, A)"], "make_ratpoly_in")*)
jan@42370
  1433
  val (p,_,f,nxt,_,pt) = me nxt p [] pt; 
jan@42370
  1434
    (*Rewrite_Set "polyeq_simplify"*)
jan@42370
  1435
  val (p,_,f,nxt,_,pt) = me nxt p [] pt; 
jan@42370
  1436
    (*Subproblem("Isac",["degree_1","polynomial","univariate","equation"])*)
jan@42370
  1437
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1438
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1439
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1440
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1441
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1442
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1443
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1444
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1445
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1446
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1447
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1448
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1449
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1450
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1451
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1452
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1453
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1454
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1455
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1456
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1457
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1458
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1459
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1460
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1461
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1462
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1463
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1464
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1465
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1466
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1467
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1468
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1469
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1470
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1471
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1472
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1473
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1474
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1475
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1476
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1477
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1478
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1479
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1480
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1481
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1482
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1483
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1484
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1485
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1486
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1487
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1488
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1489
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1490
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1491
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1492
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1493
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1494
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
neuper@42290
  1495
*}
neuper@42281
  1496
jan@42370
  1497
text{*\noindent As a last step we check the tracing output of the last calc
jan@42370
  1498
      tree instruction and compare it with the pre-calculated result.*}
neuper@42315
  1499
neuper@42301
  1500
ML {*
jan@42370
  1501
  trace_script := true;
jan@42370
  1502
  val (p,_,f,nxt,_,pt) = me nxt p [] pt;
jan@42370
  1503
  show_pt pt;
neuper@42279
  1504
*}
neuper@42279
  1505
neuper@42279
  1506
end
neuper@42279
  1507