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