|\^/| Maple 2016 (X86 64 LINUX) ._|\| |/|_. Copyright (c) Maplesoft, a division of Waterloo Maple Inc. 2016 \ MAPLE / All rights reserved. Maple is a trademark of <____ ____> Waterloo Maple Inc. | Type ? for help. #BEGIN OUTFILE1 # before write maple top matter # before write_ats library and user def block #BEGIN ATS LIBRARY BLOCK # Begin Function number 2 > omniout_str := proc(iolevel,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > printf("%s\n",str); > fi;# end if 1; > end; omniout_str := proc(iolevel, str) global glob_iolevel; if iolevel <= glob_iolevel then printf("%s\n", str) end if end proc # End Function number 2 # Begin Function number 3 > omniout_str_noeol := proc(iolevel,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > printf("%s",str); > fi;# end if 1; > end; omniout_str_noeol := proc(iolevel, str) global glob_iolevel; if iolevel <= glob_iolevel then printf("%s", str) end if end proc # End Function number 3 # Begin Function number 4 > omniout_labstr := proc(iolevel,label,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > print(label,str); > fi;# end if 1; > end; omniout_labstr := proc(iolevel, label, str) global glob_iolevel; if iolevel <= glob_iolevel then print(label, str) end if end proc # End Function number 4 # Begin Function number 5 > omniout_float := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > if vallen = 4 then > printf("%-30s = %-42.4g %s \n",prelabel,value, postlabel); > else > printf("%-30s = %-42.32g %s \n",prelabel,value, postlabel); > fi;# end if 1; > fi;# end if 0; > end; omniout_float := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 4 then printf("%-30s = %-42.4g %s \n", prelabel, value, postlabel) else printf("%-30s = %-42.32g %s \n", prelabel, value, postlabel) end if end if end proc # End Function number 5 # Begin Function number 6 > omniout_complex := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > if vallen = 4 then > printf("%-30s = %-20.4g %-20g %s \n",prelabel,Re(value), Im(value), postlabel); > else > printf("%-30s = %-20.12g %-20.12g %s \n",prelabel,Re(value),Im(value), postlabel); > fi;# end if 0; > fi;# end if -1; > end; omniout_complex := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 4 then printf("%-30s = %-20.4g %-20g %s \n", prelabel, Re(value), Im(value), postlabel) else printf("%-30s = %-20.12g %-20.12g %s \n", prelabel, Re(value), Im(value), postlabel) end if end if end proc # End Function number 6 # Begin Function number 7 > omniout_int := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number -1 > if vallen = 5 then # if number 0 > printf("%-30s = %-32d %s\n",prelabel,value, postlabel); > else > printf("%-30s = %-32d %s \n",prelabel,value, postlabel); > fi;# end if 0; > fi;# end if -1; > end; omniout_int := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 5 then printf("%-30s = %-32d %s\n", prelabel, value, postlabel) else printf("%-30s = %-32d %s \n", prelabel, value, postlabel) end if end if end proc # End Function number 7 # Begin Function number 8 > logitem_time := proc(fd,secs_in) > global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; > local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int; > fprintf(fd,""); > if (secs_in >= 0) then # if number -1 > years_int := int_trunc(secs_in / glob_sec_in_year); > sec_temp := int_trunc(secs_in) mod int_trunc(glob_sec_in_year); > days_int := int_trunc(sec_temp / glob_sec_in_day) ; > sec_temp := sec_temp mod int_trunc(glob_sec_in_day) ; > hours_int := int_trunc(sec_temp / glob_sec_in_hour); > sec_temp := sec_temp mod int_trunc(glob_sec_in_hour); > minutes_int := int_trunc(sec_temp / glob_sec_in_minute); > sec_int := sec_temp mod int_trunc(glob_sec_in_minute); > if (years_int > 0) then # if number 0 > fprintf(fd,"%d Years %d Days %d Hours %d Minutes %d Seconds",years_int,days_int,hours_int,minutes_int,sec_int); > elif > (days_int > 0) then # if number 1 > fprintf(fd,"%d Days %d Hours %d Minutes %d Seconds",days_int,hours_int,minutes_int,sec_int); > elif > (hours_int > 0) then # if number 2 > fprintf(fd,"%d Hours %d Minutes %d Seconds",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 3 > fprintf(fd,"%d Minutes %d Seconds",minutes_int,sec_int); > else > fprintf(fd,"%d Seconds",sec_int); > fi;# end if 3 > else > fprintf(fd," 0.0 Seconds"); > fi;# end if 2 > fprintf(fd,"\n"); > end; logitem_time := proc(fd, secs_in) local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int; global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; fprintf(fd, ""); if 0 <= secs_in then years_int := int_trunc(secs_in/glob_sec_in_year); sec_temp := int_trunc(secs_in) mod int_trunc(glob_sec_in_year); days_int := int_trunc(sec_temp/glob_sec_in_day); sec_temp := sec_temp mod int_trunc(glob_sec_in_day); hours_int := int_trunc(sec_temp/glob_sec_in_hour); sec_temp := sec_temp mod int_trunc(glob_sec_in_hour); minutes_int := int_trunc(sec_temp/glob_sec_in_minute); sec_int := sec_temp mod int_trunc(glob_sec_in_minute); if 0 < years_int then fprintf(fd, "%d Years %d Days %d Hours %d Minutes %d Seconds", years_int, days_int, hours_int, minutes_int, sec_int) elif 0 < days_int then fprintf(fd, "%d Days %d Hours %d Minutes %d Seconds", days_int, hours_int, minutes_int, sec_int) elif 0 < hours_int then fprintf(fd, "%d Hours %d Minutes %d Seconds", hours_int, minutes_int, sec_int) elif 0 < minutes_int then fprintf(fd, "%d Minutes %d Seconds", minutes_int, sec_int) else fprintf(fd, "%d Seconds", sec_int) end if else fprintf(fd, " 0.0 Seconds") end if; fprintf(fd, "\n") end proc # End Function number 8 # Begin Function number 9 > omniout_timestr := proc(secs_in) > global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; > local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int; > if (secs_in >= 0) then # if number 2 > years_int := int_trunc(secs_in / glob_sec_in_year); > sec_temp := (int_trunc(secs_in) mod int_trunc(glob_sec_in_year)); > days_int := int_trunc(sec_temp / glob_sec_in_day) ; > sec_temp := (sec_temp mod int_trunc(glob_sec_in_day)) ; > hours_int := int_trunc(sec_temp / glob_sec_in_hour); > sec_temp := (sec_temp mod int_trunc(glob_sec_in_hour)); > minutes_int := int_trunc(sec_temp / glob_sec_in_minute); > sec_int := (sec_temp mod int_trunc(glob_sec_in_minute)); > if (years_int > 0) then # if number 3 > printf(" = %d Years %d Days %d Hours %d Minutes %d Seconds\n",years_int,days_int,hours_int,minutes_int,sec_int); > elif > (days_int > 0) then # if number 4 > printf(" = %d Days %d Hours %d Minutes %d Seconds\n",days_int,hours_int,minutes_int,sec_int); > elif > (hours_int > 0) then # if number 5 > printf(" = %d Hours %d Minutes %d Seconds\n",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 6 > printf(" = %d Minutes %d Seconds\n",minutes_int,sec_int); > else > printf(" = %d Seconds\n",sec_int); > fi;# end if 6 > else > printf(" 0.0 Seconds\n"); > fi;# end if 5 > end; omniout_timestr := proc(secs_in) local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int; global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; if 0 <= secs_in then years_int := int_trunc(secs_in/glob_sec_in_year); sec_temp := int_trunc(secs_in) mod int_trunc(glob_sec_in_year); days_int := int_trunc(sec_temp/glob_sec_in_day); sec_temp := sec_temp mod int_trunc(glob_sec_in_day); hours_int := int_trunc(sec_temp/glob_sec_in_hour); sec_temp := sec_temp mod int_trunc(glob_sec_in_hour); minutes_int := int_trunc(sec_temp/glob_sec_in_minute); sec_int := sec_temp mod int_trunc(glob_sec_in_minute); if 0 < years_int then printf( " = %d Years %d Days %d Hours %d Minutes %d Seconds\n", years_int, days_int, hours_int, minutes_int, sec_int) elif 0 < days_int then printf( " = %d Days %d Hours %d Minutes %d Seconds\n", days_int, hours_int, minutes_int, sec_int) elif 0 < hours_int then printf( " = %d Hours %d Minutes %d Seconds\n", hours_int, minutes_int, sec_int) elif 0 < minutes_int then printf(" = %d Minutes %d Seconds\n", minutes_int, sec_int) else printf(" = %d Seconds\n", sec_int) end if else printf(" 0.0 Seconds\n") end if end proc # End Function number 9 # Begin Function number 10 > zero_ats_ar := proc(arr_a) > global ATS_MAX_TERMS; > local iii; > iii := 1; > while (iii <= ATS_MAX_TERMS) do # do number 1 > arr_a [iii] := glob__0; > iii := iii + 1; > od;# end do number 1 > end; zero_ats_ar := proc(arr_a) local iii; global ATS_MAX_TERMS; iii := 1; while iii <= ATS_MAX_TERMS do arr_a[iii] := glob__0; iii := iii + 1 end do end proc # End Function number 10 # Begin Function number 11 > ats := proc(mmm_ats,arr_a,arr_b,jjj_ats) > global ATS_MAX_TERMS; > local iii_ats, lll_ats,ma_ats, ret_ats; > ret_ats := glob__0; > if (jjj_ats <= mmm_ats) then # if number 5 > ma_ats := mmm_ats + 1; > iii_ats := jjj_ats; > while (iii_ats <= mmm_ats) do # do number 1 > lll_ats := ma_ats - iii_ats; > if ((lll_ats <= ATS_MAX_TERMS and (iii_ats <= ATS_MAX_TERMS) )) then # if number 6 > ret_ats := ret_ats + c(arr_a[iii_ats])*c(arr_b[lll_ats]); > fi;# end if 6; > iii_ats := iii_ats + 1; > od;# end do number 1 > fi;# end if 5; > ret_ats; > end; ats := proc(mmm_ats, arr_a, arr_b, jjj_ats) local iii_ats, lll_ats, ma_ats, ret_ats; global ATS_MAX_TERMS; ret_ats := glob__0; if jjj_ats <= mmm_ats then ma_ats := mmm_ats + 1; iii_ats := jjj_ats; while iii_ats <= mmm_ats do lll_ats := ma_ats - iii_ats; if lll_ats <= ATS_MAX_TERMS and iii_ats <= ATS_MAX_TERMS then ret_ats := ret_ats + c(arr_a[iii_ats])*c(arr_b[lll_ats]) end if; iii_ats := iii_ats + 1 end do end if; ret_ats end proc # End Function number 11 # Begin Function number 12 > att := proc(mmm_att,arr_aa,arr_bb,jjj_att) > global ATS_MAX_TERMS; > local al_att, iii_att,lll_att, ma_att, ret_att; > ret_att := glob__0; > if (jjj_att < mmm_att) then # if number 5 > ma_att := mmm_att + 2; > iii_att := jjj_att; > while ((iii_att < mmm_att) and (iii_att <= ATS_MAX_TERMS) ) do # do number 1 > lll_att := ma_att - iii_att; > al_att := (lll_att - 1); > if ((lll_att <= ATS_MAX_TERMS and (iii_att <= ATS_MAX_TERMS) )) then # if number 6 > ret_att := ret_att + c(arr_aa[iii_att])*c(arr_bb[lll_att])* c(al_att); > fi;# end if 6; > iii_att := iii_att + 1; > od;# end do number 1; > ret_att := ret_att / c(mmm_att) ; > fi;# end if 5; > ret_att; > end; att := proc(mmm_att, arr_aa, arr_bb, jjj_att) local al_att, iii_att, lll_att, ma_att, ret_att; global ATS_MAX_TERMS; ret_att := glob__0; if jjj_att < mmm_att then ma_att := mmm_att + 2; iii_att := jjj_att; while iii_att < mmm_att and iii_att <= ATS_MAX_TERMS do lll_att := ma_att - iii_att; al_att := lll_att - 1; if lll_att <= ATS_MAX_TERMS and iii_att <= ATS_MAX_TERMS then ret_att := ret_att + c(arr_aa[iii_att])*c(arr_bb[lll_att])*c(al_att) end if; iii_att := iii_att + 1 end do; ret_att := ret_att/c(mmm_att) end if; ret_att end proc # End Function number 12 # Begin Function number 13 > logditto := proc(file) > fprintf(file,""); > fprintf(file,"ditto"); > fprintf(file,""); > end; logditto := proc(file) fprintf(file, ""); fprintf(file, "ditto"); fprintf(file, "") end proc # End Function number 13 # Begin Function number 14 > logitem_integer := proc(file,n) > fprintf(file,""); > fprintf(file,"%d",n); > fprintf(file,""); > end; logitem_integer := proc(file, n) fprintf(file, ""); fprintf(file, "%d", n); fprintf(file, "") end proc # End Function number 14 # Begin Function number 15 > logitem_str := proc(file,str) > fprintf(file,""); > fprintf(file,str); > fprintf(file,""); > end; logitem_str := proc(file, str) fprintf(file, ""); fprintf(file, str); fprintf(file, "") end proc # End Function number 15 # Begin Function number 16 > logitem_good_digits := proc(file,rel_error) > global glob_small_float,glob_prec; > local good_digits; > fprintf(file,""); > fprintf(file,"%d",glob_min_good_digits); > fprintf(file,""); > end; logitem_good_digits := proc(file, rel_error) local good_digits; global glob_small_float, glob_prec; fprintf(file, ""); fprintf(file, "%d", glob_min_good_digits); fprintf(file, "") end proc # End Function number 16 # Begin Function number 17 > log_revs := proc(file,revs) > fprintf(file,revs); > end; log_revs := proc(file, revs) fprintf(file, revs) end proc # End Function number 17 # Begin Function number 18 > logitem_float := proc(file,x) > fprintf(file,""); > fprintf(file,"%g",x); > fprintf(file,""); > end; logitem_float := proc(file, x) fprintf(file, ""); fprintf(file, "%g", x); fprintf(file, "") end proc # End Function number 18 # Begin Function number 19 > logitem_complex := proc(file,x) > fprintf(file,""); > fprintf(file,"%g + %g I",Re(x),Im(x)); > fprintf(file,""); > end; logitem_complex := proc(file, x) fprintf(file, ""); fprintf(file, "%g + %g I", Re(x), Im(x)); fprintf(file, "") end proc # End Function number 19 # Begin Function number 20 > logitem_h_reason := proc(file) > global glob_h_reason; > fprintf(file,""); > if (glob_h_reason = 1) then # if number 5 > fprintf(file,"Max H"); > elif > (glob_h_reason = 2) then # if number 6 > fprintf(file,"Display Interval"); > elif > (glob_h_reason = 3) then # if number 7 > fprintf(file,"Optimal"); > elif > (glob_h_reason = 4) then # if number 8 > fprintf(file,"Pole Accuracy"); > elif > (glob_h_reason = 5) then # if number 9 > fprintf(file,"Min H (Pole)"); > elif > (glob_h_reason = 6) then # if number 10 > fprintf(file,"Pole"); > elif > (glob_h_reason = 7) then # if number 11 > fprintf(file,"Opt Iter"); > else > fprintf(file,"Impossible"); > fi;# end if 11 > fprintf(file,""); > end; logitem_h_reason := proc(file) global glob_h_reason; fprintf(file, ""); if glob_h_reason = 1 then fprintf(file, "Max H") elif glob_h_reason = 2 then fprintf(file, "Display Interval") elif glob_h_reason = 3 then fprintf(file, "Optimal") elif glob_h_reason = 4 then fprintf(file, "Pole Accuracy") elif glob_h_reason = 5 then fprintf(file, "Min H (Pole)") elif glob_h_reason = 6 then fprintf(file, "Pole") elif glob_h_reason = 7 then fprintf(file, "Opt Iter") else fprintf(file, "Impossible") end if; fprintf(file, "") end proc # End Function number 20 # Begin Function number 21 > logstart := proc(file) > fprintf(file,""); > end; logstart := proc(file) fprintf(file, "") end proc # End Function number 21 # Begin Function number 22 > logend := proc(file) > fprintf(file,"\n"); > end; logend := proc(file) fprintf(file, "\n") end proc # End Function number 22 # Begin Function number 23 > chk_data := proc() > global glob_max_iter,ALWAYS, ATS_MAX_TERMS; > local errflag; > errflag := false; > if (glob_max_iter < 2) then # if number 11 > omniout_str(ALWAYS,"Illegal max_iter"); > errflag := true; > fi;# end if 11; > if (errflag) then # if number 11 > quit; > fi;# end if 11 > end; chk_data := proc() local errflag; global glob_max_iter, ALWAYS, ATS_MAX_TERMS; errflag := false; if glob_max_iter < 2 then omniout_str(ALWAYS, "Illegal max_iter"); errflag := true end if; if errflag then quit end if end proc # End Function number 23 # Begin Function number 24 > comp_expect_sec := proc(t_end2,t_start2,t2,clock_sec2) > global glob_small_float; > local ms2, rrr, sec_left, sub1, sub2; > ; > ms2 := c(clock_sec2); > sub1 := c(t_end2-t_start2); > sub2 := c(t2-t_start2); > if (sub1 = glob__0) then # if number 11 > sec_left := glob__0; > else > if (sub2 > glob__0) then # if number 12 > rrr := (sub1/sub2); > sec_left := rrr * c(ms2) - c(ms2); > else > sec_left := glob__0; > fi;# end if 12 > fi;# end if 11; > sec_left; > end; comp_expect_sec := proc(t_end2, t_start2, t2, clock_sec2) local ms2, rrr, sec_left, sub1, sub2; global glob_small_float; ms2 := c(clock_sec2); sub1 := c(t_end2 - t_start2); sub2 := c(t2 - t_start2); if sub1 = glob__0 then sec_left := glob__0 else if glob__0 < sub2 then rrr := sub1/sub2; sec_left := rrr*c(ms2) - c(ms2) else sec_left := glob__0 end if end if; sec_left end proc # End Function number 24 # Begin Function number 25 > comp_percent := proc(t_end2,t_start2, t2) > global glob_small_float; > local rrr, sub1, sub2; > sub1 := (t_end2-t_start2); > sub2 := (t2-t_start2); > if (sub2 > glob_small_float) then # if number 11 > rrr := (glob__100*sub2)/sub1; > else > rrr := 0.0; > fi;# end if 11; > rrr; > end; comp_percent := proc(t_end2, t_start2, t2) local rrr, sub1, sub2; global glob_small_float; sub1 := t_end2 - t_start2; sub2 := t2 - t_start2; if glob_small_float < sub2 then rrr := glob__100*sub2/sub1 else rrr := 0. end if; rrr end proc # End Function number 25 # Begin Function number 26 > comp_rad_from_ratio := proc(term1,term2,last_no) > #TOP TWO TERM RADIUS ANALYSIS > global glob_h,glob_larger_float; > local ret; > if (float_abs(term2) > glob__0) then # if number 11 > ret := float_abs(term1 * glob_h / term2); > else > ret := glob_larger_float; > fi;# end if 11; > ret; > #BOTTOM TWO TERM RADIUS ANALYSIS > end; comp_rad_from_ratio := proc(term1, term2, last_no) local ret; global glob_h, glob_larger_float; if glob__0 < float_abs(term2) then ret := float_abs(term1*glob_h/term2) else ret := glob_larger_float end if; ret end proc # End Function number 26 # Begin Function number 27 > comp_ord_from_ratio := proc(term1,term2,last_no) > #TOP TWO TERM ORDER ANALYSIS > global glob_h,glob_larger_float; > local ret; > if (float_abs(term2) > glob__0) then # if number 11 > ret := glob__1 + float_abs(term2) * c(last_no) * ln(float_abs(term1 * glob_h / term2))/ln(c(last_no)); > else > ret := glob_larger_float; > fi;# end if 11; > ret; > #BOTTOM TWO TERM ORDER ANALYSIS > end; comp_ord_from_ratio := proc(term1, term2, last_no) local ret; global glob_h, glob_larger_float; if glob__0 < float_abs(term2) then ret := glob__1 + float_abs(term2)* c(last_no)*ln(float_abs(term1*glob_h/term2))/ln(c(last_no)) else ret := glob_larger_float end if; ret end proc # End Function number 27 # Begin Function number 28 > c := proc(in_val) > #To Force Conversion when needed > local ret; > ret := evalc(in_val); > ret; > #End Conversion > end; c := proc(in_val) local ret; ret := evalc(in_val); ret end proc # End Function number 28 # Begin Function number 29 > comp_rad_from_three_terms := proc(term1,term2,term3,last_no) > #TOP THREE TERM RADIUS ANALYSIS > global glob_h,glob_larger_float; > local ret,temp; > temp := float_abs(term2*term2*c(last_no)+glob__m2*term2*term2-term1*term3*c(last_no)+term1*term3); > if (float_abs(temp) > glob__0) then # if number 11 > ret := float_abs((term2*glob_h*term1)/(temp)); > else > ret := glob_larger_float; > fi;# end if 11; > ret; > #BOTTOM THREE TERM RADIUS ANALYSIS > end; comp_rad_from_three_terms := proc(term1, term2, term3, last_no) local ret, temp; global glob_h, glob_larger_float; temp := float_abs(term2*term2*c(last_no) + glob__m2*term2*term2 - term1*term3*c(last_no) + term1*term3); if glob__0 < float_abs(temp) then ret := float_abs(term2*glob_h*term1/temp) else ret := glob_larger_float end if; ret end proc # End Function number 29 # Begin Function number 30 > comp_ord_from_three_terms := proc(term1,term2,term3,last_no) > #TOP THREE TERM ORDER ANALYSIS > local ret; > ret := float_abs((glob__4*term1*term3*c(last_no)-glob__3*term1*term3-glob__4*term2*term2*c(last_no)+glob__4*term2*term2+term2*term2*c(last_no*last_no)-term1*term3*c(last_no*last_no))/(term2*term2*c(last_no)-glob__2*term2*term2-term1*term3*c(last_no)+term1*term3)); > ret; > #TOP THREE TERM ORDER ANALYSIS > end; comp_ord_from_three_terms := proc(term1, term2, term3, last_no) local ret; ret := float_abs((glob__4*term1*term3*c(last_no) - glob__3*term1*term3 - glob__4*term2*term2*c(last_no) + glob__4*term2*term2 + term2*term2*c(last_no*last_no) - term1*term3*c(last_no*last_no)) /(term2*term2*c(last_no) - glob__2*term2*term2 - term1*term3*c(last_no) + term1*term3)); ret end proc # End Function number 30 # Begin Function number 31 > comp_rad_from_six_terms := proc(term1,term2,term3,term4,term5,term6,last_no) > #TOP SIX TERM RADIUS ANALYSIS > global glob_h,glob_larger_float,glob_six_term_ord_save; > local ret,rm0,rm1,rm2,rm3,rm4,nr1,nr2,dr1,dr2,ds2,rad_c,ord_no,ds1,rcs; > if ((term5 <> glob__0) and (term4 <> glob__0) and (term3 <> glob__0) and (term2 <> glob__0) and (term1 <> glob__0)) then # if number 11 > rm0 := term6/term5; > rm1 := term5/term4; > rm2 := term4/term3; > rm3 := term3/term2; > rm4 := term2/term1; > nr1 := c(last_no-1)*rm0 - glob__2*c(last_no-2)*rm1 + c(last_no-3)*rm2; > nr2 := c(last_no-2)*rm1 - glob__2*c(last_no-3)*rm2 + c(last_no-4)*rm3; > dr1 := glob__m1/rm1 + glob__2/rm2 - glob__1/rm3; > dr2 := glob__m1/rm2 + glob__2/rm3 - glob__1/rm4; > ds1 := glob__3/rm1 - glob__8/rm2 + glob__5/rm3; > ds2 := glob__3/rm2 - glob__8/rm3 + glob__5/rm4; > if ((float_abs(nr1 * dr2 - nr2 * dr1) = glob__0) or (float_abs(dr1) = glob__0)) then # if number 12 > rad_c := glob_larger_float; > ord_no := glob_larger_float; > else > if (float_abs(nr1*dr2 - nr2 * dr1) > glob__0) then # if number 13 > rcs := ((ds1*dr2 - ds2*dr1 +dr1*dr2)/(nr1*dr2 - nr2 * dr1)); > #(Manuels) rcs := (ds1*dr2 - ds2*dr1)/(nr1*dr2 - nr2 * dr1) > ord_no := (rcs*nr1 - ds1)/(glob__2*dr1) -c(last_no)/glob__2; > if (float_abs(rcs) <> glob__0) then # if number 14 > if (rcs > glob__0) then # if number 15 > rad_c := float_abs( sqrt(rcs) * float_abs(glob_h)); > else > rad_c := glob_larger_float; > ord_no := glob_larger_float; > fi;# end if 15 > else > rad_c := glob_larger_float; > ord_no := glob_larger_float; > fi;# end if 14 > else > rad_c := glob_larger_float; > ord_no := glob_larger_float; > fi;# end if 13 > fi;# end if 12 > else > rad_c := glob_larger_float; > ord_no := glob_larger_float; > fi;# end if 11; > glob_six_term_ord_save := ord_no; > rad_c; > #BOTTOM SIX TERM RADIUS ANALYSIS > end; comp_rad_from_six_terms := proc( term1, term2, term3, term4, term5, term6, last_no) local ret, rm0, rm1, rm2, rm3, rm4, nr1, nr2, dr1, dr2, ds2, rad_c, ord_no, ds1, rcs; global glob_h, glob_larger_float, glob_six_term_ord_save; if term5 <> glob__0 and term4 <> glob__0 and term3 <> glob__0 and term2 <> glob__0 and term1 <> glob__0 then rm0 := term6/term5; rm1 := term5/term4; rm2 := term4/term3; rm3 := term3/term2; rm4 := term2/term1; nr1 := c(last_no - 1)*rm0 - glob__2*c(last_no - 2)*rm1 + c(last_no - 3)*rm2; nr2 := c(last_no - 2)*rm1 - glob__2*c(last_no - 3)*rm2 + c(last_no - 4)*rm3; dr1 := glob__m1/rm1 + glob__2/rm2 - glob__1/rm3; dr2 := glob__m1/rm2 + glob__2/rm3 - glob__1/rm4; ds1 := glob__3/rm1 - glob__8/rm2 + glob__5/rm3; ds2 := glob__3/rm2 - glob__8/rm3 + glob__5/rm4; if float_abs(nr1*dr2 - nr2*dr1) = glob__0 or float_abs(dr1) = glob__0 then rad_c := glob_larger_float; ord_no := glob_larger_float else if glob__0 < float_abs(nr1*dr2 - nr2*dr1) then rcs := (ds1*dr2 - ds2*dr1 + dr1*dr2)/(nr1*dr2 - nr2*dr1); ord_no := (rcs*nr1 - ds1)/(glob__2*dr1) - c(last_no)/glob__2; if float_abs(rcs) <> glob__0 then if glob__0 < rcs then rad_c := float_abs(sqrt(rcs)*float_abs(glob_h)) else rad_c := glob_larger_float; ord_no := glob_larger_float end if else rad_c := glob_larger_float; ord_no := glob_larger_float end if else rad_c := glob_larger_float; ord_no := glob_larger_float end if end if else rad_c := glob_larger_float; ord_no := glob_larger_float end if; glob_six_term_ord_save := ord_no; rad_c end proc # End Function number 31 # Begin Function number 32 > comp_ord_from_six_terms := proc(term1,term2,term3,term4,term5,term6,last_no) > global glob_six_term_ord_save; > #TOP SIX TERM ORDER ANALYSIS > #TOP SAVED FROM SIX TERM RADIUS ANALYSIS > glob_six_term_ord_save; > #BOTTOM SIX TERM ORDER ANALYSIS > end; comp_ord_from_six_terms := proc( term1, term2, term3, term4, term5, term6, last_no) global glob_six_term_ord_save; glob_six_term_ord_save end proc # End Function number 32 # Begin Function number 33 > factorial_2 := proc(nnn) > ret := nnn!; > ret;; > end; Warning, `ret` is implicitly declared local to procedure `factorial_2` factorial_2 := proc(nnn) local ret; ret := nnn!; ret end proc # End Function number 33 # Begin Function number 34 > factorial_1 := proc(nnn) > global ATS_MAX_TERMS,array_fact_1; > local ret; > if (nnn <= ATS_MAX_TERMS) then # if number 11 > if (array_fact_1[nnn] = 0) then # if number 12 > ret := factorial_2(nnn); > array_fact_1[nnn] := ret; > else > ret := array_fact_1[nnn]; > fi;# end if 12; > else > ret := factorial_2(nnn); > fi;# end if 11; > ret; > end; factorial_1 := proc(nnn) local ret; global ATS_MAX_TERMS, array_fact_1; if nnn <= ATS_MAX_TERMS then if array_fact_1[nnn] = 0 then ret := factorial_2(nnn); array_fact_1[nnn] := ret else ret := array_fact_1[nnn] end if else ret := factorial_2(nnn) end if; ret end proc # End Function number 34 # Begin Function number 35 > factorial_3 := proc(mmm,nnn) > global ATS_MAX_TERMS,array_fact_2; > local ret; > if ((nnn <= ATS_MAX_TERMS) and (mmm <= ATS_MAX_TERMS)) then # if number 11 > if (array_fact_2[mmm,nnn] = 0) then # if number 12 > ret := factorial_1(mmm)/factorial_1(nnn); > array_fact_2[mmm,nnn] := ret; > else > ret := array_fact_2[mmm,nnn]; > fi;# end if 12; > else > ret := factorial_2(mmm)/factorial_2(nnn); > fi;# end if 11; > ret; > end; factorial_3 := proc(mmm, nnn) local ret; global ATS_MAX_TERMS, array_fact_2; if nnn <= ATS_MAX_TERMS and mmm <= ATS_MAX_TERMS then if array_fact_2[mmm, nnn] = 0 then ret := factorial_1(mmm)/factorial_1(nnn); array_fact_2[mmm, nnn] := ret else ret := array_fact_2[mmm, nnn] end if else ret := factorial_2(mmm)/factorial_2(nnn) end if; ret end proc # End Function number 35 # Begin Function number 36 > convfloat := proc(mmm) > (mmm); > end; convfloat := proc(mmm) mmm end proc # End Function number 36 # Begin Function number 37 > elapsed_time_seconds := proc() > time(); > end; elapsed_time_seconds := proc() time() end proc # End Function number 37 # Begin Function number 38 > float_abs := proc(x) > abs(x); > end; float_abs := proc(x) abs(x) end proc # End Function number 38 # Begin Function number 39 > expt := proc(x,y) > x^y; > end; expt := proc(x, y) x^y end proc # End Function number 39 # Begin Function number 40 > neg := proc(x) > -x; > end; neg := proc(x) -x end proc # End Function number 40 # Begin Function number 41 > int_trunc := proc(x) > trunc(x); > end; int_trunc := proc(x) trunc(x) end proc # End Function number 41 # Begin Function number 42 > estimated_needed_step_error := proc(x_start,x_end,estimated_h,estimated_answer) > local desired_abs_gbl_error,range,estimated_steps,step_error; > global glob_desired_digits_correct,ALWAYS,ATS_MAX_TERMS; > omniout_float(ALWAYS,"glob_desired_digits_correct",32,glob_desired_digits_correct,32,""); > desired_abs_gbl_error := expt(glob__10,c( -glob_desired_digits_correct)) * c(float_abs(c(estimated_answer))); > omniout_float(ALWAYS,"estimated_h",32,estimated_h,32,""); > omniout_float(ALWAYS,"estimated_answer",32,estimated_answer,32,""); > omniout_float(ALWAYS,"desired_abs_gbl_error",32,desired_abs_gbl_error,32,""); > range := (x_end - x_start); > omniout_float(ALWAYS,"range",32,range,32,""); > estimated_steps := range / estimated_h; > omniout_float(ALWAYS,"estimated_steps",32,estimated_steps,32,""); > step_error := (c(float_abs(desired_abs_gbl_error) /sqrt(c( estimated_steps))/c(ATS_MAX_TERMS))); > omniout_float(ALWAYS,"step_error",32,step_error,32,""); > (step_error);; > end; estimated_needed_step_error := proc( x_start, x_end, estimated_h, estimated_answer) local desired_abs_gbl_error, range, estimated_steps, step_error; global glob_desired_digits_correct, ALWAYS, ATS_MAX_TERMS; omniout_float(ALWAYS, "glob_desired_digits_correct", 32, glob_desired_digits_correct, 32, ""); desired_abs_gbl_error := expt(glob__10, c(-glob_desired_digits_correct))* c(float_abs(c(estimated_answer))); omniout_float(ALWAYS, "estimated_h", 32, estimated_h, 32, ""); omniout_float(ALWAYS, "estimated_answer", 32, estimated_answer, 32, "") ; omniout_float(ALWAYS, "desired_abs_gbl_error", 32, desired_abs_gbl_error, 32, ""); range := x_end - x_start; omniout_float(ALWAYS, "range", 32, range, 32, ""); estimated_steps := range/estimated_h; omniout_float(ALWAYS, "estimated_steps", 32, estimated_steps, 32, ""); step_error := c(float_abs(desired_abs_gbl_error)/( sqrt(c(estimated_steps))*c(ATS_MAX_TERMS))); omniout_float(ALWAYS, "step_error", 32, step_error, 32, ""); step_error end proc # End Function number 42 #END ATS LIBRARY BLOCK #BEGIN USER FUNCTION BLOCK #BEGIN BLOCK 3 #BEGIN USER DEF BLOCK > exact_soln_y := proc(x) > return(c(2.0) - cos(c(x)) - c(x)); > end; exact_soln_y := proc(x) return c(2.0) - cos(c(x)) - c(x) end proc > next_delta := proc() > global glob_nxt, x_delta; > x_delta := [ 0.001 + 0.00004 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.0001 + 0.004 * I, > 0.003 + 0.006 * I, > 0.0001 + 0.005 * I, > 0.0001 + 0.003 * I, > 0.001 + 0.001 * I, > 0.001 + 0.003 * I, > 0.000 + 0.000 * I ]; > glob_nxt := glob_nxt + 1; > it := x_delta[glob_nxt]; > return it; > end; Warning, `it` is implicitly declared local to procedure `next_delta` next_delta := proc() local it; global glob_nxt, x_delta; x_delta := [0.001 + 0.00004*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0. + 0.*I]; glob_nxt := glob_nxt + 1; it := x_delta[glob_nxt]; return it end proc #END USER DEF BLOCK #END BLOCK 3 #END USER FUNCTION BLOCK # before write_aux functions # Begin Function number 2 > display_poles := proc() > local rad_given; > global ALWAYS,glob_display_flag,glob_larger_float, glob_large_float, glob_diff_ord_fm, glob_diff_ord_fmm1, glob_diff_ord_fmm2, glob_diff_rc_fm, glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_guess_error_ord, glob_guess_error_rc, glob_type_given_pole,array_given_rad_poles,array_given_ord_poles,array_rad_test_poles,array_ord_test_poles,glob_least_3_sing,glob_least_6_sing,glob_least_given_sing,glob_least_ratio_sing,array_x ; > if ((glob_type_given_pole = 1) or (glob_type_given_pole = 2)) then # if number 1 > rad_given := float_abs(array_x[1] - (array_given_rad_poles[1,1] + array_given_rad_poles[1,2] * I )); > omniout_float(ALWAYS,"Radius of convergence (given) for eq 1 ",4,rad_given,4," "); > omniout_complex(ALWAYS,"Order of pole (given) ",4,array_given_ord_poles[1,1],4," "); > if ((float_abs(rad_given) < float_abs(glob_least_given_sing)) and > (float_abs(rad_given) > 0.0)) then # if number 2 > glob_least_given_sing := rad_given; > fi;# end if 2; > elif > (glob_type_given_pole = 3) then # if number 2 > omniout_str(ALWAYS,"NO POLE (given) for Equation 1"); > elif > (glob_type_given_pole = 5) then # if number 3 > omniout_str(ALWAYS,"SOME POLE (given) for Equation 1"); > else > omniout_str(ALWAYS,"NO INFO (given) for Equation 1"); > fi;# end if 3; > if (array_rad_test_poles[1,1] < glob_large_float) then # if number 3 > omniout_float(ALWAYS,"Radius of convergence (ratio test) for eq 1 ",4,array_rad_test_poles[1,1],4," "); > if ((float_abs(array_rad_test_poles[1,1]) < glob_least_ratio_sing)) then # if number 4 > glob_least_ratio_sing := array_rad_test_poles[1,1]; > fi;# end if 4; > omniout_complex(ALWAYS,"Order of pole (ratio test) ",4, array_ord_test_poles[1,1],4," "); > else > omniout_str(ALWAYS,"NO POLE (ratio test) for Equation 1"); > fi;# end if 3; > if ((array_rad_test_poles[1,2] > glob__small) and (array_rad_test_poles[1,2] < glob_large_float)) then # if number 3 > omniout_float(ALWAYS,"Radius of convergence (three term test) for eq 1 ",4,array_rad_test_poles[1,2],4," "); > if ((float_abs(array_rad_test_poles[1,2]) < glob_least_3_sing)) then # if number 4 > glob_least_3_sing := array_rad_test_poles[1,2]; > fi;# end if 4; > omniout_complex(ALWAYS,"Order of pole (three term test) ",4, array_ord_test_poles[1,2],4," "); > else > omniout_str(ALWAYS,"NO REAL POLE (three term test) for Equation 1"); > fi;# end if 3; > if ((array_rad_test_poles[1,3] > glob__small) and (array_rad_test_poles[1,3] < glob_large_float)) then # if number 3 > omniout_float(ALWAYS,"Radius of convergence (six term test) for eq 1 ",4,array_rad_test_poles[1,3],4," "); > if ((float_abs(array_rad_test_poles[1,3]) < glob_least_6_sing)) then # if number 4 > glob_least_6_sing := array_rad_test_poles[1,3]; > fi;# end if 4; > omniout_complex(ALWAYS,"Order of pole (six term test) ",4, array_ord_test_poles[1,3],4," "); > else > omniout_str(ALWAYS,"NO COMPLEX POLE (six term test) for Equation 1"); > fi;# end if 3 > ; > end; display_poles := proc() local rad_given; global ALWAYS, glob_display_flag, glob_larger_float, glob_large_float, glob_diff_ord_fm, glob_diff_ord_fmm1, glob_diff_ord_fmm2, glob_diff_rc_fm, glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_guess_error_ord, glob_guess_error_rc, glob_type_given_pole, array_given_rad_poles, array_given_ord_poles, array_rad_test_poles, array_ord_test_poles, glob_least_3_sing, glob_least_6_sing, glob_least_given_sing, glob_least_ratio_sing, array_x; if glob_type_given_pole = 1 or glob_type_given_pole = 2 then rad_given := float_abs(array_x[1] - array_given_rad_poles[1, 1] - array_given_rad_poles[1, 2]*I); omniout_float(ALWAYS, "Radius of convergence (given) for eq 1 ", 4, rad_given, 4, " "); omniout_complex(ALWAYS, "Order of pole (given) ", 4, array_given_ord_poles[1, 1], 4, " "); if float_abs(rad_given) < float_abs(glob_least_given_sing) and 0. < float_abs(rad_given) then glob_least_given_sing := rad_given end if elif glob_type_given_pole = 3 then omniout_str(ALWAYS, "NO POLE (given) for Equation 1") elif glob_type_given_pole = 5 then omniout_str(ALWAYS, "SOME POLE (given) for Equation 1") else omniout_str(ALWAYS, "NO INFO (given) for Equation 1") end if; if array_rad_test_poles[1, 1] < glob_large_float then omniout_float(ALWAYS, "Radius of convergence (ratio test) for eq 1 ", 4, array_rad_test_poles[1, 1], 4, " "); if float_abs(array_rad_test_poles[1, 1]) < glob_least_ratio_sing then glob_least_ratio_sing := array_rad_test_poles[1, 1] end if; omniout_complex(ALWAYS, "Order of pole (ratio test) ", 4, array_ord_test_poles[1, 1], 4, " ") else omniout_str(ALWAYS, "NO POLE (ratio test) for Equation 1") end if; if glob__small < array_rad_test_poles[1, 2] and array_rad_test_poles[1, 2] < glob_large_float then omniout_float(ALWAYS, "Radius of convergence (three term test) for eq 1 ", 4, array_rad_test_poles[1, 2], 4, " "); if float_abs(array_rad_test_poles[1, 2]) < glob_least_3_sing then glob_least_3_sing := array_rad_test_poles[1, 2] end if; omniout_complex(ALWAYS, "Order of pole (three term test) ", 4, array_ord_test_poles[1, 2], 4, " ") else omniout_str(ALWAYS, "NO REAL POLE (three term test) for Equation 1") end if; if glob__small < array_rad_test_poles[1, 3] and array_rad_test_poles[1, 3] < glob_large_float then omniout_float(ALWAYS, "Radius of convergence (six term test) for eq 1 ", 4, array_rad_test_poles[1, 3], 4, " "); if float_abs(array_rad_test_poles[1, 3]) < glob_least_6_sing then glob_least_6_sing := array_rad_test_poles[1, 3] end if; omniout_complex(ALWAYS, "Order of pole (six term test) ", 4, array_ord_test_poles[1, 3], 4, " ") else omniout_str(ALWAYS, "NO COMPLEX POLE (six term test) for Equation 1") end if end proc # End Function number 2 # Begin Function number 3 > my_check_sign := proc( x0 ,xf) > local ret; > if (xf > x0) then # if number 3 > ret := glob__1; > else > ret := glob__m1; > fi;# end if 3; > ret;; > end; my_check_sign := proc(x0, xf) local ret; if x0 < xf then ret := glob__1 else ret := glob__m1 end if; ret end proc # End Function number 3 # Begin Function number 4 > est_size_answer := proc() > global > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > glob_iolevel, > glob_yes_pole, > glob_no_pole, > glob_not_given, > glob_no_sing_tests, > glob_ratio_test, > glob_three_term_test, > glob_six_term_test, > glob_log_10, #Top Generate Globals Decl > MAX_UNCHANGED, > glob__small, > glob_small_float, > glob_smallish_float, > glob_large_float, > glob_larger_float, > glob__m2, > glob__m1, > glob__0, > glob__1, > glob__2, > glob__3, > glob__4, > glob__5, > glob__8, > glob__10, > glob__100, > glob__pi, > glob__0_5, > glob__0_8, > glob__m0_8, > glob__0_25, > glob__0_125, > glob_h, > glob_nxt, > glob_prec, > glob_check_sign, > glob_desired_digits_correct, > glob_max_estimated_step_error, > glob_ratio_of_radius, > glob_percent_done, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_estimated_size_answer, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_disp_incr, > glob_diff_rc_fm, > glob_diff_rc_fmm1, > glob_diff_rc_fmm2, > glob_diff_ord_fm, > glob_diff_ord_fmm1, > glob_diff_ord_fmm2, > glob_six_term_ord_save, > glob_guess_error_rc, > glob_guess_error_ord, > glob_least_given_sing, > glob_least_ratio_sing, > glob_least_3_sing, > glob_least_6_sing, > glob_last_good_h, > glob_max_h, > glob_min_h, > glob_display_interval, > glob_abserr, > glob_relerr, > glob_min_pole_est, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_max_hours, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_upper_ratio_limit, > glob_lower_ratio_limit, > glob_max_sec, > glob_orig_start_sec, > glob_normmax, > glob_max_minutes, > glob_next_display, > glob_est_digits, > glob_subiter_method, > glob_html_log, > glob_min_good_digits, > glob_good_digits, > glob_min_apfp_est_good_digits, > glob_apfp_est_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_h_reason, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_type_given_pole, > glob_optimize, > glob_look_poles, > glob_dump_closed_form, > glob_max_iter, > glob_no_eqs, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_start, > glob_iter, #Bottom Generate Globals Decl #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_0, #END CONST > array_y_init, > array_norms, > array_fact_1, > array_1st_rel_error, > array_last_rel_error, > array_est_rel_error, > array_max_est_error, > array_type_pole, > array_type_real_pole, > array_type_complex_pole, > array_est_digits, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_given_rad_poles, > array_given_ord_poles, > array_rad_test_poles, > array_ord_test_poles, > array_fact_2, > ATS_MAX_TERMS, > glob_last; > local min_size; > min_size := glob_estimated_size_answer; > if (float_abs(array_y[1]) < min_size) then # if number 3 > min_size := float_abs(array_y[1]); > omniout_float(ALWAYS,"min_size",32,min_size,32,""); > fi;# end if 3; > if (min_size < glob__1) then # if number 3 > min_size := glob__1; > omniout_float(ALWAYS,"min_size",32,min_size,32,""); > fi;# end if 3; > min_size; > end; est_size_answer := proc() local min_size; global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole, glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test, glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED, glob__small, glob_small_float, glob_smallish_float, glob_large_float, glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3, glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5, glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec, glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error, glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec, glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm, glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1, glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc, glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing, glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h, glob_min_h, glob_display_interval, glob_abserr, glob_relerr, glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err, glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start, glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec, glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display, glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits, glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form, glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_start, glob_iter, array_const_1, array_const_0D0, array_const_0, array_y_init, array_norms, array_fact_1, array_1st_rel_error, array_last_rel_error, array_est_rel_error, array_max_est_error, array_type_pole, array_type_real_pole, array_type_complex_pole, array_est_digits, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_given_rad_poles, array_given_ord_poles, array_rad_test_poles, array_ord_test_poles, array_fact_2, ATS_MAX_TERMS, glob_last; min_size := glob_estimated_size_answer; if float_abs(array_y[1]) < min_size then min_size := float_abs(array_y[1]); omniout_float(ALWAYS, "min_size", 32, min_size, 32, "") end if; if min_size < glob__1 then min_size := glob__1; omniout_float(ALWAYS, "min_size", 32, min_size, 32, "") end if; min_size end proc # End Function number 4 # Begin Function number 5 > test_suggested_h := proc() > global > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > glob_iolevel, > glob_yes_pole, > glob_no_pole, > glob_not_given, > glob_no_sing_tests, > glob_ratio_test, > glob_three_term_test, > glob_six_term_test, > glob_log_10, #Top Generate Globals Decl > MAX_UNCHANGED, > glob__small, > glob_small_float, > glob_smallish_float, > glob_large_float, > glob_larger_float, > glob__m2, > glob__m1, > glob__0, > glob__1, > glob__2, > glob__3, > glob__4, > glob__5, > glob__8, > glob__10, > glob__100, > glob__pi, > glob__0_5, > glob__0_8, > glob__m0_8, > glob__0_25, > glob__0_125, > glob_h, > glob_nxt, > glob_prec, > glob_check_sign, > glob_desired_digits_correct, > glob_max_estimated_step_error, > glob_ratio_of_radius, > glob_percent_done, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_estimated_size_answer, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_disp_incr, > glob_diff_rc_fm, > glob_diff_rc_fmm1, > glob_diff_rc_fmm2, > glob_diff_ord_fm, > glob_diff_ord_fmm1, > glob_diff_ord_fmm2, > glob_six_term_ord_save, > glob_guess_error_rc, > glob_guess_error_ord, > glob_least_given_sing, > glob_least_ratio_sing, > glob_least_3_sing, > glob_least_6_sing, > glob_last_good_h, > glob_max_h, > glob_min_h, > glob_display_interval, > glob_abserr, > glob_relerr, > glob_min_pole_est, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_max_hours, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_upper_ratio_limit, > glob_lower_ratio_limit, > glob_max_sec, > glob_orig_start_sec, > glob_normmax, > glob_max_minutes, > glob_next_display, > glob_est_digits, > glob_subiter_method, > glob_html_log, > glob_min_good_digits, > glob_good_digits, > glob_min_apfp_est_good_digits, > glob_apfp_est_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_h_reason, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_type_given_pole, > glob_optimize, > glob_look_poles, > glob_dump_closed_form, > glob_max_iter, > glob_no_eqs, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_start, > glob_iter, #Bottom Generate Globals Decl #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_0, #END CONST > array_y_init, > array_norms, > array_fact_1, > array_1st_rel_error, > array_last_rel_error, > array_est_rel_error, > array_max_est_error, > array_type_pole, > array_type_real_pole, > array_type_complex_pole, > array_est_digits, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_given_rad_poles, > array_given_ord_poles, > array_rad_test_poles, > array_ord_test_poles, > array_fact_2, > ATS_MAX_TERMS, > glob_last; > local max_estimated_step_error,hn_div_ho,hn_div_ho_2,hn_div_ho_3,no_terms,est_tmp; > max_estimated_step_error := glob__small; > no_terms := ATS_MAX_TERMS; > hn_div_ho := glob__0_5; > hn_div_ho_2 := glob__0_25; > hn_div_ho_3 := glob__0_125; > omniout_float(ALWAYS,"hn_div_ho",32,hn_div_ho,32,""); > omniout_float(ALWAYS,"hn_div_ho_2",32,hn_div_ho_2,32,""); > omniout_float(ALWAYS,"hn_div_ho_3",32,hn_div_ho_3,32,""); > est_tmp := float_abs(array_y[no_terms-3] + array_y[no_terms - 2] * hn_div_ho + array_y[no_terms - 1] * hn_div_ho_2 + array_y[no_terms] * hn_div_ho_3); > if (est_tmp >= max_estimated_step_error) then # if number 3 > max_estimated_step_error := est_tmp; > fi;# end if 3; > omniout_float(ALWAYS,"max_estimated_step_error",32,max_estimated_step_error,32,""); > max_estimated_step_error; > end; test_suggested_h := proc() local max_estimated_step_error, hn_div_ho, hn_div_ho_2, hn_div_ho_3, no_terms, est_tmp; global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole, glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test, glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED, glob__small, glob_small_float, glob_smallish_float, glob_large_float, glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3, glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5, glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec, glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error, glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec, glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm, glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1, glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc, glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing, glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h, glob_min_h, glob_display_interval, glob_abserr, glob_relerr, glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err, glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start, glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec, glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display, glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits, glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form, glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_start, glob_iter, array_const_1, array_const_0D0, array_const_0, array_y_init, array_norms, array_fact_1, array_1st_rel_error, array_last_rel_error, array_est_rel_error, array_max_est_error, array_type_pole, array_type_real_pole, array_type_complex_pole, array_est_digits, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_given_rad_poles, array_given_ord_poles, array_rad_test_poles, array_ord_test_poles, array_fact_2, ATS_MAX_TERMS, glob_last; max_estimated_step_error := glob__small; no_terms := ATS_MAX_TERMS; hn_div_ho := glob__0_5; hn_div_ho_2 := glob__0_25; hn_div_ho_3 := glob__0_125; omniout_float(ALWAYS, "hn_div_ho", 32, hn_div_ho, 32, ""); omniout_float(ALWAYS, "hn_div_ho_2", 32, hn_div_ho_2, 32, ""); omniout_float(ALWAYS, "hn_div_ho_3", 32, hn_div_ho_3, 32, ""); est_tmp := float_abs(array_y[no_terms - 3] + array_y[no_terms - 2]*hn_div_ho + array_y[no_terms - 1]*hn_div_ho_2 + array_y[no_terms]*hn_div_ho_3); if max_estimated_step_error <= est_tmp then max_estimated_step_error := est_tmp end if; omniout_float(ALWAYS, "max_estimated_step_error", 32, max_estimated_step_error, 32, ""); max_estimated_step_error end proc # End Function number 5 # Begin Function number 6 > track_estimated_error := proc() > global > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > glob_iolevel, > glob_yes_pole, > glob_no_pole, > glob_not_given, > glob_no_sing_tests, > glob_ratio_test, > glob_three_term_test, > glob_six_term_test, > glob_log_10, #Top Generate Globals Decl > MAX_UNCHANGED, > glob__small, > glob_small_float, > glob_smallish_float, > glob_large_float, > glob_larger_float, > glob__m2, > glob__m1, > glob__0, > glob__1, > glob__2, > glob__3, > glob__4, > glob__5, > glob__8, > glob__10, > glob__100, > glob__pi, > glob__0_5, > glob__0_8, > glob__m0_8, > glob__0_25, > glob__0_125, > glob_h, > glob_nxt, > glob_prec, > glob_check_sign, > glob_desired_digits_correct, > glob_max_estimated_step_error, > glob_ratio_of_radius, > glob_percent_done, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_estimated_size_answer, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_disp_incr, > glob_diff_rc_fm, > glob_diff_rc_fmm1, > glob_diff_rc_fmm2, > glob_diff_ord_fm, > glob_diff_ord_fmm1, > glob_diff_ord_fmm2, > glob_six_term_ord_save, > glob_guess_error_rc, > glob_guess_error_ord, > glob_least_given_sing, > glob_least_ratio_sing, > glob_least_3_sing, > glob_least_6_sing, > glob_last_good_h, > glob_max_h, > glob_min_h, > glob_display_interval, > glob_abserr, > glob_relerr, > glob_min_pole_est, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_max_hours, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_upper_ratio_limit, > glob_lower_ratio_limit, > glob_max_sec, > glob_orig_start_sec, > glob_normmax, > glob_max_minutes, > glob_next_display, > glob_est_digits, > glob_subiter_method, > glob_html_log, > glob_min_good_digits, > glob_good_digits, > glob_min_apfp_est_good_digits, > glob_apfp_est_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_h_reason, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_type_given_pole, > glob_optimize, > glob_look_poles, > glob_dump_closed_form, > glob_max_iter, > glob_no_eqs, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_start, > glob_iter, #Bottom Generate Globals Decl #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_0, #END CONST > array_y_init, > array_norms, > array_fact_1, > array_1st_rel_error, > array_last_rel_error, > array_est_rel_error, > array_max_est_error, > array_type_pole, > array_type_real_pole, > array_type_complex_pole, > array_est_digits, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_given_rad_poles, > array_given_ord_poles, > array_rad_test_poles, > array_ord_test_poles, > array_fact_2, > ATS_MAX_TERMS, > glob_last; > local hn_div_ho,hn_div_ho_2,hn_div_ho_3,no_terms,est_tmp; > no_terms := ATS_MAX_TERMS; > hn_div_ho := glob__0_5; > hn_div_ho_2 := glob__0_25; > hn_div_ho_3 := glob__0_125; > est_tmp := c(float_abs(array_y[no_terms-3])) + c(float_abs(array_y[no_terms - 2])) * c(hn_div_ho) + c(float_abs(array_y[no_terms - 1])) * c(hn_div_ho_2) + c(float_abs(array_y[no_terms])) * c(hn_div_ho_3); > if (glob_prec * c(float_abs(array_y[1])) > c(est_tmp)) then # if number 3 > est_tmp := c(glob_prec) * c(float_abs(array_y[1])); > fi;# end if 3; > if (c(est_tmp) >= c(array_max_est_error[1])) then # if number 3 > array_max_est_error[1] := c(est_tmp); > fi;# end if 3 > ; > end; track_estimated_error := proc() local hn_div_ho, hn_div_ho_2, hn_div_ho_3, no_terms, est_tmp; global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole, glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test, glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED, glob__small, glob_small_float, glob_smallish_float, glob_large_float, glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3, glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5, glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec, glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error, glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec, glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm, glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1, glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc, glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing, glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h, glob_min_h, glob_display_interval, glob_abserr, glob_relerr, glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err, glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start, glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec, glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display, glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits, glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form, glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_start, glob_iter, array_const_1, array_const_0D0, array_const_0, array_y_init, array_norms, array_fact_1, array_1st_rel_error, array_last_rel_error, array_est_rel_error, array_max_est_error, array_type_pole, array_type_real_pole, array_type_complex_pole, array_est_digits, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_given_rad_poles, array_given_ord_poles, array_rad_test_poles, array_ord_test_poles, array_fact_2, ATS_MAX_TERMS, glob_last; no_terms := ATS_MAX_TERMS; hn_div_ho := glob__0_5; hn_div_ho_2 := glob__0_25; hn_div_ho_3 := glob__0_125; est_tmp := c(float_abs(array_y[no_terms - 3])) + c(float_abs(array_y[no_terms - 2]))*c(hn_div_ho) + c(float_abs(array_y[no_terms - 1]))*c(hn_div_ho_2) + c(float_abs(array_y[no_terms]))*c(hn_div_ho_3); if c(est_tmp) < glob_prec*c(float_abs(array_y[1])) then est_tmp := c(glob_prec)*c(float_abs(array_y[1])) end if; if c(array_max_est_error[1]) <= c(est_tmp) then array_max_est_error[1] := c(est_tmp) end if end proc # End Function number 6 # Begin Function number 7 > reached_interval := proc() > global > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > glob_iolevel, > glob_yes_pole, > glob_no_pole, > glob_not_given, > glob_no_sing_tests, > glob_ratio_test, > glob_three_term_test, > glob_six_term_test, > glob_log_10, #Top Generate Globals Decl > MAX_UNCHANGED, > glob__small, > glob_small_float, > glob_smallish_float, > glob_large_float, > glob_larger_float, > glob__m2, > glob__m1, > glob__0, > glob__1, > glob__2, > glob__3, > glob__4, > glob__5, > glob__8, > glob__10, > glob__100, > glob__pi, > glob__0_5, > glob__0_8, > glob__m0_8, > glob__0_25, > glob__0_125, > glob_h, > glob_nxt, > glob_prec, > glob_check_sign, > glob_desired_digits_correct, > glob_max_estimated_step_error, > glob_ratio_of_radius, > glob_percent_done, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_estimated_size_answer, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_disp_incr, > glob_diff_rc_fm, > glob_diff_rc_fmm1, > glob_diff_rc_fmm2, > glob_diff_ord_fm, > glob_diff_ord_fmm1, > glob_diff_ord_fmm2, > glob_six_term_ord_save, > glob_guess_error_rc, > glob_guess_error_ord, > glob_least_given_sing, > glob_least_ratio_sing, > glob_least_3_sing, > glob_least_6_sing, > glob_last_good_h, > glob_max_h, > glob_min_h, > glob_display_interval, > glob_abserr, > glob_relerr, > glob_min_pole_est, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_max_hours, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_upper_ratio_limit, > glob_lower_ratio_limit, > glob_max_sec, > glob_orig_start_sec, > glob_normmax, > glob_max_minutes, > glob_next_display, > glob_est_digits, > glob_subiter_method, > glob_html_log, > glob_min_good_digits, > glob_good_digits, > glob_min_apfp_est_good_digits, > glob_apfp_est_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_h_reason, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_type_given_pole, > glob_optimize, > glob_look_poles, > glob_dump_closed_form, > glob_max_iter, > glob_no_eqs, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_start, > glob_iter, #Bottom Generate Globals Decl #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_0, #END CONST > array_y_init, > array_norms, > array_fact_1, > array_1st_rel_error, > array_last_rel_error, > array_est_rel_error, > array_max_est_error, > array_type_pole, > array_type_real_pole, > array_type_complex_pole, > array_est_digits, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_given_rad_poles, > array_given_ord_poles, > array_rad_test_poles, > array_ord_test_poles, > array_fact_2, > ATS_MAX_TERMS, > glob_last; > local ret; > if ((glob_check_sign * array_x[1]) >= (glob_check_sign * glob_next_display - glob_h/glob__10)) then # if number 3 > ret := true; > else > ret := false; > fi;# end if 3; > return(ret); > end; reached_interval := proc() local ret; global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole, glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test, glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED, glob__small, glob_small_float, glob_smallish_float, glob_large_float, glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3, glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5, glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec, glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error, glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec, glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm, glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1, glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc, glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing, glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h, glob_min_h, glob_display_interval, glob_abserr, glob_relerr, glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err, glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start, glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec, glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display, glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits, glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form, glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_start, glob_iter, array_const_1, array_const_0D0, array_const_0, array_y_init, array_norms, array_fact_1, array_1st_rel_error, array_last_rel_error, array_est_rel_error, array_max_est_error, array_type_pole, array_type_real_pole, array_type_complex_pole, array_est_digits, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_given_rad_poles, array_given_ord_poles, array_rad_test_poles, array_ord_test_poles, array_fact_2, ATS_MAX_TERMS, glob_last; if glob_check_sign*glob_next_display - glob_h/glob__10 <= glob_check_sign*array_x[1] then ret := true else ret := false end if; return ret end proc # End Function number 7 # Begin Function number 8 > display_alot := proc(iter) > global > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > glob_iolevel, > glob_yes_pole, > glob_no_pole, > glob_not_given, > glob_no_sing_tests, > glob_ratio_test, > glob_three_term_test, > glob_six_term_test, > glob_log_10, #Top Generate Globals Decl > MAX_UNCHANGED, > glob__small, > glob_small_float, > glob_smallish_float, > glob_large_float, > glob_larger_float, > glob__m2, > glob__m1, > glob__0, > glob__1, > glob__2, > glob__3, > glob__4, > glob__5, > glob__8, > glob__10, > glob__100, > glob__pi, > glob__0_5, > glob__0_8, > glob__m0_8, > glob__0_25, > glob__0_125, > glob_h, > glob_nxt, > glob_prec, > glob_check_sign, > glob_desired_digits_correct, > glob_max_estimated_step_error, > glob_ratio_of_radius, > glob_percent_done, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_estimated_size_answer, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_disp_incr, > glob_diff_rc_fm, > glob_diff_rc_fmm1, > glob_diff_rc_fmm2, > glob_diff_ord_fm, > glob_diff_ord_fmm1, > glob_diff_ord_fmm2, > glob_six_term_ord_save, > glob_guess_error_rc, > glob_guess_error_ord, > glob_least_given_sing, > glob_least_ratio_sing, > glob_least_3_sing, > glob_least_6_sing, > glob_last_good_h, > glob_max_h, > glob_min_h, > glob_display_interval, > glob_abserr, > glob_relerr, > glob_min_pole_est, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_max_hours, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_upper_ratio_limit, > glob_lower_ratio_limit, > glob_max_sec, > glob_orig_start_sec, > glob_normmax, > glob_max_minutes, > glob_next_display, > glob_est_digits, > glob_subiter_method, > glob_html_log, > glob_min_good_digits, > glob_good_digits, > glob_min_apfp_est_good_digits, > glob_apfp_est_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_h_reason, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_type_given_pole, > glob_optimize, > glob_look_poles, > glob_dump_closed_form, > glob_max_iter, > glob_no_eqs, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_start, > glob_iter, #Bottom Generate Globals Decl #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_0, #END CONST > array_y_init, > array_norms, > array_fact_1, > array_1st_rel_error, > array_last_rel_error, > array_est_rel_error, > array_max_est_error, > array_type_pole, > array_type_real_pole, > array_type_complex_pole, > array_est_digits, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_given_rad_poles, > array_given_ord_poles, > array_rad_test_poles, > array_ord_test_poles, > array_fact_2, > ATS_MAX_TERMS, > glob_last; > local abserr, closed_form_val_y, ind_var, numeric_val, relerr, term_no, est_rel_err; > #TOP DISPLAY ALOT > ind_var := array_x[1]; > omniout_complex(ALWAYS,"x[1] ",33,ind_var,20," "); > term_no := 1; > numeric_val := array_y[term_no]; > omniout_complex(ALWAYS,"h ",33,glob_h,20," "); > omniout_complex(ALWAYS,"y[1] (numeric) ",33,numeric_val,20," "); > closed_form_val_y := evalf(exact_soln_y(ind_var)); > omniout_complex(ALWAYS,"y[1] (closed_form) ",33,closed_form_val_y,20," "); > abserr := float_abs(numeric_val - closed_form_val_y); > if (float_abs(closed_form_val_y) > 0.0) then # if number 3 > relerr := abserr/float_abs(closed_form_val_y); > if (float_abs(c(relerr)) > 0.0) then # if number 4 > glob_good_digits := round(-log10(relerr)); > else > relerr := 0.0 ; > glob_good_digits := Digits - 2; > fi;# end if 4; > else > ; > relerr := glob__m1 ; > glob_good_digits := -16; > fi;# end if 3; > if (glob_good_digits < glob_min_good_digits) then # if number 3 > glob_min_good_digits := glob_good_digits; > fi;# end if 3; > omniout_float(ALWAYS,"absolute error ",4,abserr,4," "); > omniout_float(ALWAYS,"relative error ",4,relerr * glob__100 ,4,"%"); > omniout_int(INFO,"Correct digits ",32,glob_good_digits,4," ") > ; > #BOTTOM DISPLAY ALOT > end; display_alot := proc(iter) local abserr, closed_form_val_y, ind_var, numeric_val, relerr, term_no, est_rel_err; global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole, glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test, glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED, glob__small, glob_small_float, glob_smallish_float, glob_large_float, glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3, glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5, glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec, glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error, glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec, glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm, glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1, glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc, glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing, glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h, glob_min_h, glob_display_interval, glob_abserr, glob_relerr, glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err, glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start, glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec, glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display, glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits, glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form, glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_start, glob_iter, array_const_1, array_const_0D0, array_const_0, array_y_init, array_norms, array_fact_1, array_1st_rel_error, array_last_rel_error, array_est_rel_error, array_max_est_error, array_type_pole, array_type_real_pole, array_type_complex_pole, array_est_digits, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_given_rad_poles, array_given_ord_poles, array_rad_test_poles, array_ord_test_poles, array_fact_2, ATS_MAX_TERMS, glob_last; ind_var := array_x[1]; omniout_complex(ALWAYS, "x[1] ", 33, ind_var, 20, " "); term_no := 1; numeric_val := array_y[term_no]; omniout_complex(ALWAYS, "h ", 33, glob_h, 20, " "); omniout_complex(ALWAYS, "y[1] (numeric) ", 33, numeric_val, 20, " "); closed_form_val_y := evalf(exact_soln_y(ind_var)); omniout_complex(ALWAYS, "y[1] (closed_form) ", 33, closed_form_val_y, 20, " "); abserr := float_abs(numeric_val - closed_form_val_y); if 0. < float_abs(closed_form_val_y) then relerr := abserr/float_abs(closed_form_val_y); if 0. < float_abs(c(relerr)) then glob_good_digits := round(-log10(relerr)) else relerr := 0.; glob_good_digits := Digits - 2 end if else relerr := glob__m1; glob_good_digits := -16 end if; if glob_good_digits < glob_min_good_digits then glob_min_good_digits := glob_good_digits end if; omniout_float(ALWAYS, "absolute error ", 4, abserr, 4, " "); omniout_float(ALWAYS, "relative error ", 4, relerr*glob__100, 4, "%"); omniout_int(INFO, "Correct digits ", 32, glob_good_digits, 4, " ") end proc # End Function number 8 # Begin Function number 9 > prog_report := proc(x_start,x_end) > global > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > glob_iolevel, > glob_yes_pole, > glob_no_pole, > glob_not_given, > glob_no_sing_tests, > glob_ratio_test, > glob_three_term_test, > glob_six_term_test, > glob_log_10, #Top Generate Globals Decl > MAX_UNCHANGED, > glob__small, > glob_small_float, > glob_smallish_float, > glob_large_float, > glob_larger_float, > glob__m2, > glob__m1, > glob__0, > glob__1, > glob__2, > glob__3, > glob__4, > glob__5, > glob__8, > glob__10, > glob__100, > glob__pi, > glob__0_5, > glob__0_8, > glob__m0_8, > glob__0_25, > glob__0_125, > glob_h, > glob_nxt, > glob_prec, > glob_check_sign, > glob_desired_digits_correct, > glob_max_estimated_step_error, > glob_ratio_of_radius, > glob_percent_done, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_estimated_size_answer, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_disp_incr, > glob_diff_rc_fm, > glob_diff_rc_fmm1, > glob_diff_rc_fmm2, > glob_diff_ord_fm, > glob_diff_ord_fmm1, > glob_diff_ord_fmm2, > glob_six_term_ord_save, > glob_guess_error_rc, > glob_guess_error_ord, > glob_least_given_sing, > glob_least_ratio_sing, > glob_least_3_sing, > glob_least_6_sing, > glob_last_good_h, > glob_max_h, > glob_min_h, > glob_display_interval, > glob_abserr, > glob_relerr, > glob_min_pole_est, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_max_hours, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_upper_ratio_limit, > glob_lower_ratio_limit, > glob_max_sec, > glob_orig_start_sec, > glob_normmax, > glob_max_minutes, > glob_next_display, > glob_est_digits, > glob_subiter_method, > glob_html_log, > glob_min_good_digits, > glob_good_digits, > glob_min_apfp_est_good_digits, > glob_apfp_est_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_h_reason, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_type_given_pole, > glob_optimize, > glob_look_poles, > glob_dump_closed_form, > glob_max_iter, > glob_no_eqs, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_start, > glob_iter, #Bottom Generate Globals Decl #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_0, #END CONST > array_y_init, > array_norms, > array_fact_1, > array_1st_rel_error, > array_last_rel_error, > array_est_rel_error, > array_max_est_error, > array_type_pole, > array_type_real_pole, > array_type_complex_pole, > array_est_digits, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_given_rad_poles, > array_given_ord_poles, > array_rad_test_poles, > array_ord_test_poles, > array_fact_2, > ATS_MAX_TERMS, > glob_last; > local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec; > #TOP PROGRESS REPORT > clock_sec1 := elapsed_time_seconds(); > total_clock_sec := (clock_sec1) - (glob_orig_start_sec); > glob_clock_sec := (clock_sec1) - (glob_clock_start_sec); > left_sec := (glob_max_sec) + (glob_orig_start_sec) - (clock_sec1); > expect_sec := comp_expect_sec((x_end),(x_start),(array_x[1]) + (glob_h) ,( clock_sec1) - (glob_orig_start_sec)); > opt_clock_sec := ( clock_sec1) - (glob_optimal_clock_start_sec); > glob_optimal_expect_sec := comp_expect_sec((x_end),(x_start),(array_x[1]) +( glob_h) ,( opt_clock_sec)); > glob_total_exp_sec := glob_optimal_expect_sec + c(total_clock_sec); > percent_done := comp_percent((x_end),(x_start),(array_x[1]) + (glob_h)); > glob_percent_done := percent_done; > omniout_str_noeol(INFO,"Total Elapsed Time "); > omniout_timestr((total_clock_sec)); > if (c(percent_done) < glob__100) then # if number 3 > omniout_str_noeol(INFO,"Expected Time Remaining "); > omniout_timestr((expect_sec)); > omniout_str_noeol(INFO,"Optimized Time Remaining "); > omniout_timestr((glob_optimal_expect_sec)); > omniout_str_noeol(INFO,"Expected Total Time "); > omniout_timestr((glob_total_exp_sec)); > fi;# end if 3; > #BOTTOM PROGRESS REPORT > end; prog_report := proc(x_start, x_end) local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec; global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole, glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test, glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED, glob__small, glob_small_float, glob_smallish_float, glob_large_float, glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3, glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5, glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec, glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error, glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec, glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm, glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1, glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc, glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing, glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h, glob_min_h, glob_display_interval, glob_abserr, glob_relerr, glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err, glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start, glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec, glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display, glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits, glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form, glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_start, glob_iter, array_const_1, array_const_0D0, array_const_0, array_y_init, array_norms, array_fact_1, array_1st_rel_error, array_last_rel_error, array_est_rel_error, array_max_est_error, array_type_pole, array_type_real_pole, array_type_complex_pole, array_est_digits, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_given_rad_poles, array_given_ord_poles, array_rad_test_poles, array_ord_test_poles, array_fact_2, ATS_MAX_TERMS, glob_last; clock_sec1 := elapsed_time_seconds(); total_clock_sec := clock_sec1 - glob_orig_start_sec; glob_clock_sec := clock_sec1 - glob_clock_start_sec; left_sec := glob_max_sec + glob_orig_start_sec - clock_sec1; expect_sec := comp_expect_sec(x_end, x_start, array_x[1] + glob_h, clock_sec1 - glob_orig_start_sec); opt_clock_sec := clock_sec1 - glob_optimal_clock_start_sec; glob_optimal_expect_sec := comp_expect_sec(x_end, x_start, array_x[1] + glob_h, opt_clock_sec) ; glob_total_exp_sec := glob_optimal_expect_sec + c(total_clock_sec); percent_done := comp_percent(x_end, x_start, array_x[1] + glob_h); glob_percent_done := percent_done; omniout_str_noeol(INFO, "Total Elapsed Time "); omniout_timestr(total_clock_sec); if c(percent_done) < glob__100 then omniout_str_noeol(INFO, "Expected Time Remaining "); omniout_timestr(expect_sec); omniout_str_noeol(INFO, "Optimized Time Remaining "); omniout_timestr(glob_optimal_expect_sec); omniout_str_noeol(INFO, "Expected Total Time "); omniout_timestr(glob_total_exp_sec) end if end proc # End Function number 9 # Begin Function number 10 > check_for_pole := proc() > global > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > glob_iolevel, > glob_yes_pole, > glob_no_pole, > glob_not_given, > glob_no_sing_tests, > glob_ratio_test, > glob_three_term_test, > glob_six_term_test, > glob_log_10, #Top Generate Globals Decl > MAX_UNCHANGED, > glob__small, > glob_small_float, > glob_smallish_float, > glob_large_float, > glob_larger_float, > glob__m2, > glob__m1, > glob__0, > glob__1, > glob__2, > glob__3, > glob__4, > glob__5, > glob__8, > glob__10, > glob__100, > glob__pi, > glob__0_5, > glob__0_8, > glob__m0_8, > glob__0_25, > glob__0_125, > glob_h, > glob_nxt, > glob_prec, > glob_check_sign, > glob_desired_digits_correct, > glob_max_estimated_step_error, > glob_ratio_of_radius, > glob_percent_done, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_estimated_size_answer, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_disp_incr, > glob_diff_rc_fm, > glob_diff_rc_fmm1, > glob_diff_rc_fmm2, > glob_diff_ord_fm, > glob_diff_ord_fmm1, > glob_diff_ord_fmm2, > glob_six_term_ord_save, > glob_guess_error_rc, > glob_guess_error_ord, > glob_least_given_sing, > glob_least_ratio_sing, > glob_least_3_sing, > glob_least_6_sing, > glob_last_good_h, > glob_max_h, > glob_min_h, > glob_display_interval, > glob_abserr, > glob_relerr, > glob_min_pole_est, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_max_hours, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_upper_ratio_limit, > glob_lower_ratio_limit, > glob_max_sec, > glob_orig_start_sec, > glob_normmax, > glob_max_minutes, > glob_next_display, > glob_est_digits, > glob_subiter_method, > glob_html_log, > glob_min_good_digits, > glob_good_digits, > glob_min_apfp_est_good_digits, > glob_apfp_est_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_h_reason, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_type_given_pole, > glob_optimize, > glob_look_poles, > glob_dump_closed_form, > glob_max_iter, > glob_no_eqs, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_start, > glob_iter, #Bottom Generate Globals Decl #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_0, #END CONST > array_y_init, > array_norms, > array_fact_1, > array_1st_rel_error, > array_last_rel_error, > array_est_rel_error, > array_max_est_error, > array_type_pole, > array_type_real_pole, > array_type_complex_pole, > array_est_digits, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_given_rad_poles, > array_given_ord_poles, > array_rad_test_poles, > array_ord_test_poles, > array_fact_2, > ATS_MAX_TERMS, > glob_last; > local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, term1, term2, term3, part1, part2, part3, part4, part5, part6, part7, part8, part9, part10, part11, part12, part13, part14, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found_sing, h_new, ratio, term, local_test, tmp_rad,tmp_ord, tmp_ratio, prev_tmp_rad, last_no; > #TOP CHECK FOR POLE > tmp_rad := glob_larger_float; > prev_tmp_rad := glob_larger_float; > tmp_ratio := glob_larger_float; > rad_c := glob_larger_float; > array_rad_test_poles[1,1] := glob_larger_float; > array_ord_test_poles[1,1] := glob_larger_float; > found_sing := 1; > last_no := ATS_MAX_TERMS - 1 - 10; > cnt := 0; > while (last_no < ATS_MAX_TERMS-3 and found_sing = 1) do # do number 1 > tmp_rad := comp_rad_from_ratio(array_y_higher[1,last_no-1],array_y_higher[1,last_no],last_no); > if (float_abs(prev_tmp_rad) > glob__0) then # if number 3 > tmp_ratio := tmp_rad / prev_tmp_rad; > else > tmp_ratio := glob_large_float; > fi;# end if 3; > if ((cnt > 0 ) and (tmp_ratio < glob_upper_ratio_limit) and (tmp_ratio > glob_lower_ratio_limit)) then # if number 3 > rad_c := tmp_rad; > elif > (cnt = 0) then # if number 4 > rad_c := tmp_rad; > elif > (cnt > 0) then # if number 5 > found_sing := 0; > fi;# end if 5; > prev_tmp_rad := tmp_rad;; > cnt := cnt + 1; > last_no := last_no + 1; > od;# end do number 1; > if (found_sing = 1) then # if number 5 > if (rad_c < array_rad_test_poles[1,1]) then # if number 6 > array_rad_test_poles[1,1] := rad_c; > last_no := last_no - 1; > tmp_ord := comp_ord_from_ratio(array_y_higher[1,last_no-1],array_y_higher[1,last_no],last_no); > array_rad_test_poles[1,1] := rad_c; > array_ord_test_poles[1,1] := tmp_ord; > fi;# end if 6; > fi;# end if 5; > #BOTTOM general radius test1 > tmp_rad := glob_larger_float; > prev_tmp_rad := glob_larger_float; > tmp_ratio := glob_larger_float; > rad_c := glob_larger_float; > array_rad_test_poles[1,2] := glob_larger_float; > array_ord_test_poles[1,2] := glob_larger_float; > found_sing := 1; > last_no := ATS_MAX_TERMS - 1 - 10; > cnt := 0; > while (last_no < ATS_MAX_TERMS-4 and found_sing = 1) do # do number 1 > tmp_rad := comp_rad_from_three_terms(array_y_higher[1,last_no-2],array_y_higher[1,last_no-1],array_y_higher[1,last_no],last_no); > if (float_abs(prev_tmp_rad) > glob__0) then # if number 5 > tmp_ratio := tmp_rad / prev_tmp_rad; > else > tmp_ratio := glob_large_float; > fi;# end if 5; > if ((cnt > 0 ) and (tmp_ratio < glob_upper_ratio_limit) and (tmp_ratio > glob_lower_ratio_limit)) then # if number 5 > rad_c := tmp_rad; > elif > (cnt = 0) then # if number 6 > rad_c := tmp_rad; > elif > (cnt > 0) then # if number 7 > found_sing := 0; > fi;# end if 7; > prev_tmp_rad := tmp_rad;; > cnt := cnt + 1; > last_no := last_no + 1; > od;# end do number 1; > if (found_sing = 1) then # if number 7 > if (rad_c < array_rad_test_poles[1,2]) then # if number 8 > array_rad_test_poles[1,2] := rad_c; > last_no := last_no - 1; > tmp_ord := comp_ord_from_three_terms(array_y_higher[1,last_no-2],array_y_higher[1,last_no-1],array_y_higher[1,last_no],last_no); > array_rad_test_poles[1,2] := rad_c; > if (rad_c < glob_min_pole_est) then # if number 9 > glob_min_pole_est := rad_c; > fi;# end if 9; > array_ord_test_poles[1,2] := tmp_ord; > fi;# end if 8; > fi;# end if 7; > #BOTTOM general radius test1 > tmp_rad := glob_larger_float; > prev_tmp_rad := glob_larger_float; > tmp_ratio := glob_larger_float; > rad_c := glob_larger_float; > array_rad_test_poles[1,3] := glob_larger_float; > array_ord_test_poles[1,3] := glob_larger_float; > found_sing := 1; > last_no := ATS_MAX_TERMS - 1 - 10; > cnt := 0; > while (last_no < ATS_MAX_TERMS-7 and found_sing = 1) do # do number 1 > tmp_rad := comp_rad_from_six_terms(array_y_higher[1,last_no-5],array_y_higher[1,last_no-4],array_y_higher[1,last_no-3],array_y_higher[1,last_no-2],array_y_higher[1,last_no-1],array_y_higher[1,last_no],last_no); > if (float_abs(prev_tmp_rad) > glob__0) then # if number 7 > tmp_ratio := tmp_rad / prev_tmp_rad; > else > tmp_ratio := glob_large_float; > fi;# end if 7; > if ((cnt > 0 ) and (tmp_ratio < glob_upper_ratio_limit) and (tmp_ratio > glob_lower_ratio_limit)) then # if number 7 > rad_c := tmp_rad; > elif > (cnt = 0) then # if number 8 > rad_c := tmp_rad; > elif > (cnt > 0) then # if number 9 > found_sing := 0; > fi;# end if 9; > prev_tmp_rad := tmp_rad;; > cnt := cnt + 1; > last_no := last_no + 1; > od;# end do number 1; > if (found_sing = 1) then # if number 9 > if (rad_c < array_rad_test_poles[1,3]) then # if number 10 > array_rad_test_poles[1,3] := rad_c; > last_no := last_no - 1; > tmp_ord := comp_ord_from_six_terms(array_y_higher[1,last_no-5],array_y_higher[1,last_no-4],array_y_higher[1,last_no-3],array_y_higher[1,last_no-2],array_y_higher[1,last_no-1],array_y_higher[1,last_no],last_no); > array_rad_test_poles[1,3] := rad_c; > if (rad_c < glob_min_pole_est) then # if number 11 > glob_min_pole_est := rad_c; > fi;# end if 11; > array_ord_test_poles[1,3] := tmp_ord; > fi;# end if 10; > fi;# end if 9; > #BOTTOM general radius test1 > ; > if (true) then # if number 9 > display_poles(); > fi;# end if 9 > end; check_for_pole := proc() local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, term1, term2, term3, part1, part2, part3, part4, part5, part6, part7, part8, part9, part10, part11, part12, part13, part14, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found_sing, h_new, ratio, term, local_test, tmp_rad, tmp_ord, tmp_ratio, prev_tmp_rad, last_no; global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole, glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test, glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED, glob__small, glob_small_float, glob_smallish_float, glob_large_float, glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3, glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5, glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec, glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error, glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec, glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm, glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1, glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc, glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing, glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h, glob_min_h, glob_display_interval, glob_abserr, glob_relerr, glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err, glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start, glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec, glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display, glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits, glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form, glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_start, glob_iter, array_const_1, array_const_0D0, array_const_0, array_y_init, array_norms, array_fact_1, array_1st_rel_error, array_last_rel_error, array_est_rel_error, array_max_est_error, array_type_pole, array_type_real_pole, array_type_complex_pole, array_est_digits, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_given_rad_poles, array_given_ord_poles, array_rad_test_poles, array_ord_test_poles, array_fact_2, ATS_MAX_TERMS, glob_last; tmp_rad := glob_larger_float; prev_tmp_rad := glob_larger_float; tmp_ratio := glob_larger_float; rad_c := glob_larger_float; array_rad_test_poles[1, 1] := glob_larger_float; array_ord_test_poles[1, 1] := glob_larger_float; found_sing := 1; last_no := ATS_MAX_TERMS - 11; cnt := 0; while last_no < ATS_MAX_TERMS - 3 and found_sing = 1 do tmp_rad := comp_rad_from_ratio(array_y_higher[1, last_no - 1], array_y_higher[1, last_no], last_no); if glob__0 < float_abs(prev_tmp_rad) then tmp_ratio := tmp_rad/prev_tmp_rad else tmp_ratio := glob_large_float end if; if 0 < cnt and tmp_ratio < glob_upper_ratio_limit and glob_lower_ratio_limit < tmp_ratio then rad_c := tmp_rad elif cnt = 0 then rad_c := tmp_rad elif 0 < cnt then found_sing := 0 end if; prev_tmp_rad := tmp_rad; cnt := cnt + 1; last_no := last_no + 1 end do; if found_sing = 1 then if rad_c < array_rad_test_poles[1, 1] then array_rad_test_poles[1, 1] := rad_c; last_no := last_no - 1; tmp_ord := comp_ord_from_ratio(array_y_higher[1, last_no - 1], array_y_higher[1, last_no], last_no); array_rad_test_poles[1, 1] := rad_c; array_ord_test_poles[1, 1] := tmp_ord end if end if; tmp_rad := glob_larger_float; prev_tmp_rad := glob_larger_float; tmp_ratio := glob_larger_float; rad_c := glob_larger_float; array_rad_test_poles[1, 2] := glob_larger_float; array_ord_test_poles[1, 2] := glob_larger_float; found_sing := 1; last_no := ATS_MAX_TERMS - 11; cnt := 0; while last_no < ATS_MAX_TERMS - 4 and found_sing = 1 do tmp_rad := comp_rad_from_three_terms( array_y_higher[1, last_no - 2], array_y_higher[1, last_no - 1], array_y_higher[1, last_no], last_no); if glob__0 < float_abs(prev_tmp_rad) then tmp_ratio := tmp_rad/prev_tmp_rad else tmp_ratio := glob_large_float end if; if 0 < cnt and tmp_ratio < glob_upper_ratio_limit and glob_lower_ratio_limit < tmp_ratio then rad_c := tmp_rad elif cnt = 0 then rad_c := tmp_rad elif 0 < cnt then found_sing := 0 end if; prev_tmp_rad := tmp_rad; cnt := cnt + 1; last_no := last_no + 1 end do; if found_sing = 1 then if rad_c < array_rad_test_poles[1, 2] then array_rad_test_poles[1, 2] := rad_c; last_no := last_no - 1; tmp_ord := comp_ord_from_three_terms( array_y_higher[1, last_no - 2], array_y_higher[1, last_no - 1], array_y_higher[1, last_no], last_no); array_rad_test_poles[1, 2] := rad_c; if rad_c < glob_min_pole_est then glob_min_pole_est := rad_c end if; array_ord_test_poles[1, 2] := tmp_ord end if end if; tmp_rad := glob_larger_float; prev_tmp_rad := glob_larger_float; tmp_ratio := glob_larger_float; rad_c := glob_larger_float; array_rad_test_poles[1, 3] := glob_larger_float; array_ord_test_poles[1, 3] := glob_larger_float; found_sing := 1; last_no := ATS_MAX_TERMS - 11; cnt := 0; while last_no < ATS_MAX_TERMS - 7 and found_sing = 1 do tmp_rad := comp_rad_from_six_terms(array_y_higher[1, last_no - 5], array_y_higher[1, last_no - 4], array_y_higher[1, last_no - 3], array_y_higher[1, last_no - 2], array_y_higher[1, last_no - 1], array_y_higher[1, last_no], last_no); if glob__0 < float_abs(prev_tmp_rad) then tmp_ratio := tmp_rad/prev_tmp_rad else tmp_ratio := glob_large_float end if; if 0 < cnt and tmp_ratio < glob_upper_ratio_limit and glob_lower_ratio_limit < tmp_ratio then rad_c := tmp_rad elif cnt = 0 then rad_c := tmp_rad elif 0 < cnt then found_sing := 0 end if; prev_tmp_rad := tmp_rad; cnt := cnt + 1; last_no := last_no + 1 end do; if found_sing = 1 then if rad_c < array_rad_test_poles[1, 3] then array_rad_test_poles[1, 3] := rad_c; last_no := last_no - 1; tmp_ord := comp_ord_from_six_terms( array_y_higher[1, last_no - 5], array_y_higher[1, last_no - 4], array_y_higher[1, last_no - 3], array_y_higher[1, last_no - 2], array_y_higher[1, last_no - 1], array_y_higher[1, last_no], last_no); array_rad_test_poles[1, 3] := rad_c; if rad_c < glob_min_pole_est then glob_min_pole_est := rad_c end if; array_ord_test_poles[1, 3] := tmp_ord end if end if; display_poles() end proc # End Function number 10 # Begin Function number 11 > atomall := proc() > global > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > glob_iolevel, > glob_yes_pole, > glob_no_pole, > glob_not_given, > glob_no_sing_tests, > glob_ratio_test, > glob_three_term_test, > glob_six_term_test, > glob_log_10, #Top Generate Globals Decl > MAX_UNCHANGED, > glob__small, > glob_small_float, > glob_smallish_float, > glob_large_float, > glob_larger_float, > glob__m2, > glob__m1, > glob__0, > glob__1, > glob__2, > glob__3, > glob__4, > glob__5, > glob__8, > glob__10, > glob__100, > glob__pi, > glob__0_5, > glob__0_8, > glob__m0_8, > glob__0_25, > glob__0_125, > glob_h, > glob_nxt, > glob_prec, > glob_check_sign, > glob_desired_digits_correct, > glob_max_estimated_step_error, > glob_ratio_of_radius, > glob_percent_done, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_estimated_size_answer, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_disp_incr, > glob_diff_rc_fm, > glob_diff_rc_fmm1, > glob_diff_rc_fmm2, > glob_diff_ord_fm, > glob_diff_ord_fmm1, > glob_diff_ord_fmm2, > glob_six_term_ord_save, > glob_guess_error_rc, > glob_guess_error_ord, > glob_least_given_sing, > glob_least_ratio_sing, > glob_least_3_sing, > glob_least_6_sing, > glob_last_good_h, > glob_max_h, > glob_min_h, > glob_display_interval, > glob_abserr, > glob_relerr, > glob_min_pole_est, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_max_hours, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_upper_ratio_limit, > glob_lower_ratio_limit, > glob_max_sec, > glob_orig_start_sec, > glob_normmax, > glob_max_minutes, > glob_next_display, > glob_est_digits, > glob_subiter_method, > glob_html_log, > glob_min_good_digits, > glob_good_digits, > glob_min_apfp_est_good_digits, > glob_apfp_est_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_h_reason, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_type_given_pole, > glob_optimize, > glob_look_poles, > glob_dump_closed_form, > glob_max_iter, > glob_no_eqs, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_start, > glob_iter, #Bottom Generate Globals Decl #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_0, #END CONST > array_y_init, > array_norms, > array_fact_1, > array_1st_rel_error, > array_last_rel_error, > array_est_rel_error, > array_max_est_error, > array_type_pole, > array_type_real_pole, > array_type_complex_pole, > array_est_digits, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_given_rad_poles, > array_given_ord_poles, > array_rad_test_poles, > array_ord_test_poles, > array_fact_2, > ATS_MAX_TERMS, > glob_last; > local kkk, order_d, adj2, adj3 , temporary, term; > #TOP ATOMALL > # before write maple main top matter > # before generate constants assign > # before generate globals assign > #END OUTFILE1 > #BEGIN OUTFILE2 > #END OUTFILE2 > #BEGIN ATOMHDR1 > #emit pre sin 1 $eq_no = 1 > array_tmp1[1] := sin(array_x[1]); > array_tmp1_g[1] := cos(array_x[1]); > #emit pre add CONST FULL $eq_no = 1 i = 1 > array_tmp2[1] := array_const_0D0[1] + array_tmp1[1]; > #emit pre sub FULL - CONST $eq_no = 1 i = 1 > array_tmp3[1] := array_tmp2[1] - array_const_1[1]; > #emit pre assign xxx $eq_no = 1 i = 1 $min_hdrs = 5 > if ( not array_y_set_initial[1,2]) then # if number 1 > if (1 <= ATS_MAX_TERMS) then # if number 2 > temporary := c(array_tmp3[1]) * (expt((glob_h) , c(1))) * c(factorial_3(0,1)); > if (2 <= ATS_MAX_TERMS) then # if number 3 > array_y[2] := temporary; > array_y_higher[1,2] := temporary; > fi;# end if 3; > temporary := c(temporary) / c(glob_h) * c(1); > array_y_higher[2,1] := c(temporary); > fi;# end if 2; > fi;# end if 1; > kkk := 2; > #emit pre assign xxx $eq_no = 1 i = 1 $min_hdrs = 5 > if ( not array_y_set_initial[1,2]) then # if number 1 > if (1 <= ATS_MAX_TERMS) then # if number 2 > temporary := c(array_tmp3[1]) * (expt((glob_h) , c(1))) * c(factorial_3(0,1)); > if (2 <= ATS_MAX_TERMS) then # if number 3 > array_y[2] := temporary; > array_y_higher[1,2] := temporary; > fi;# end if 3; > temporary := c(temporary) / c(glob_h) * c(1); > array_y_higher[2,1] := c(temporary); > fi;# end if 2; > fi;# end if 1; > kkk := 2; > #END ATOMHDR1 > #BEGIN ATOMHDR2 > #emit pre sin ID_LINEAR iii = 2 $eq_no = 1 > array_tmp1[2] := array_tmp1_g[1] * array_x[2] / c(1); > array_tmp1_g[2] := neg(array_tmp1[1]) * array_x[2] / c(1); > #emit pre add CONST FULL $eq_no = 1 i = 2 > array_tmp2[2] := array_tmp1[2]; > #emit pre sub FULL CONST $eq_no = 1 i = 2 > array_tmp3[2] := array_tmp2[2]; > #emit pre assign xxx $eq_no = 1 i = 2 $min_hdrs = 5 > if ( not array_y_set_initial[1,3]) then # if number 1 > if (2 <= ATS_MAX_TERMS) then # if number 2 > temporary := c(array_tmp3[2]) * (expt((glob_h) , c(1))) * c(factorial_3(1,2)); > if (3 <= ATS_MAX_TERMS) then # if number 3 > array_y[3] := temporary; > array_y_higher[1,3] := temporary; > fi;# end if 3; > temporary := c(temporary) / c(glob_h) * c(2); > array_y_higher[2,2] := c(temporary); > fi;# end if 2; > fi;# end if 1; > kkk := 3; > #emit pre assign xxx $eq_no = 1 i = 2 $min_hdrs = 5 > if ( not array_y_set_initial[1,3]) then # if number 1 > if (2 <= ATS_MAX_TERMS) then # if number 2 > temporary := c(array_tmp3[2]) * (expt((glob_h) , c(1))) * c(factorial_3(1,2)); > if (3 <= ATS_MAX_TERMS) then # if number 3 > array_y[3] := temporary; > array_y_higher[1,3] := temporary; > fi;# end if 3; > temporary := c(temporary) / c(glob_h) * c(2); > array_y_higher[2,2] := c(temporary); > fi;# end if 2; > fi;# end if 1; > kkk := 3; > #END ATOMHDR2 > #BEGIN ATOMHDR3 > #emit pre sin ID_LINEAR iii = 3 $eq_no = 1 > array_tmp1[3] := array_tmp1_g[2] * array_x[2] / c(2); > array_tmp1_g[3] := neg(array_tmp1[2]) * array_x[2] / c(2); > #emit pre add CONST FULL $eq_no = 1 i = 3 > array_tmp2[3] := array_tmp1[3]; > #emit pre sub FULL CONST $eq_no = 1 i = 3 > array_tmp3[3] := array_tmp2[3]; > #emit pre assign xxx $eq_no = 1 i = 3 $min_hdrs = 5 > if ( not array_y_set_initial[1,4]) then # if number 1 > if (3 <= ATS_MAX_TERMS) then # if number 2 > temporary := c(array_tmp3[3]) * (expt((glob_h) , c(1))) * c(factorial_3(2,3)); > if (4 <= ATS_MAX_TERMS) then # if number 3 > array_y[4] := temporary; > array_y_higher[1,4] := temporary; > fi;# end if 3; > temporary := c(temporary) / c(glob_h) * c(3); > array_y_higher[2,3] := c(temporary); > fi;# end if 2; > fi;# end if 1; > kkk := 4; > #emit pre assign xxx $eq_no = 1 i = 3 $min_hdrs = 5 > if ( not array_y_set_initial[1,4]) then # if number 1 > if (3 <= ATS_MAX_TERMS) then # if number 2 > temporary := c(array_tmp3[3]) * (expt((glob_h) , c(1))) * c(factorial_3(2,3)); > if (4 <= ATS_MAX_TERMS) then # if number 3 > array_y[4] := temporary; > array_y_higher[1,4] := temporary; > fi;# end if 3; > temporary := c(temporary) / c(glob_h) * c(3); > array_y_higher[2,3] := c(temporary); > fi;# end if 2; > fi;# end if 1; > kkk := 4; > #END ATOMHDR3 > #BEGIN ATOMHDR4 > #emit pre sin ID_LINEAR iii = 4 $eq_no = 1 > array_tmp1[4] := array_tmp1_g[3] * array_x[2] / c(3); > array_tmp1_g[4] := neg(array_tmp1[3]) * array_x[2] / c(3); > #emit pre add CONST FULL $eq_no = 1 i = 4 > array_tmp2[4] := array_tmp1[4]; > #emit pre sub FULL CONST $eq_no = 1 i = 4 > array_tmp3[4] := array_tmp2[4]; > #emit pre assign xxx $eq_no = 1 i = 4 $min_hdrs = 5 > if ( not array_y_set_initial[1,5]) then # if number 1 > if (4 <= ATS_MAX_TERMS) then # if number 2 > temporary := c(array_tmp3[4]) * (expt((glob_h) , c(1))) * c(factorial_3(3,4)); > if (5 <= ATS_MAX_TERMS) then # if number 3 > array_y[5] := temporary; > array_y_higher[1,5] := temporary; > fi;# end if 3; > temporary := c(temporary) / c(glob_h) * c(4); > array_y_higher[2,4] := c(temporary); > fi;# end if 2; > fi;# end if 1; > kkk := 5; > #emit pre assign xxx $eq_no = 1 i = 4 $min_hdrs = 5 > if ( not array_y_set_initial[1,5]) then # if number 1 > if (4 <= ATS_MAX_TERMS) then # if number 2 > temporary := c(array_tmp3[4]) * (expt((glob_h) , c(1))) * c(factorial_3(3,4)); > if (5 <= ATS_MAX_TERMS) then # if number 3 > array_y[5] := temporary; > array_y_higher[1,5] := temporary; > fi;# end if 3; > temporary := c(temporary) / c(glob_h) * c(4); > array_y_higher[2,4] := c(temporary); > fi;# end if 2; > fi;# end if 1; > kkk := 5; > #END ATOMHDR4 > #BEGIN ATOMHDR5 > #emit pre sin ID_LINEAR iii = 5 $eq_no = 1 > array_tmp1[5] := array_tmp1_g[4] * array_x[2] / c(4); > array_tmp1_g[5] := neg(array_tmp1[4]) * array_x[2] / c(4); > #emit pre add CONST FULL $eq_no = 1 i = 5 > array_tmp2[5] := array_tmp1[5]; > #emit pre sub FULL CONST $eq_no = 1 i = 5 > array_tmp3[5] := array_tmp2[5]; > #emit pre assign xxx $eq_no = 1 i = 5 $min_hdrs = 5 > if ( not array_y_set_initial[1,6]) then # if number 1 > if (5 <= ATS_MAX_TERMS) then # if number 2 > temporary := c(array_tmp3[5]) * (expt((glob_h) , c(1))) * c(factorial_3(4,5)); > if (6 <= ATS_MAX_TERMS) then # if number 3 > array_y[6] := temporary; > array_y_higher[1,6] := temporary; > fi;# end if 3; > temporary := c(temporary) / c(glob_h) * c(5); > array_y_higher[2,5] := c(temporary); > fi;# end if 2; > fi;# end if 1; > kkk := 6; > #emit pre assign xxx $eq_no = 1 i = 5 $min_hdrs = 5 > if ( not array_y_set_initial[1,6]) then # if number 1 > if (5 <= ATS_MAX_TERMS) then # if number 2 > temporary := c(array_tmp3[5]) * (expt((glob_h) , c(1))) * c(factorial_3(4,5)); > if (6 <= ATS_MAX_TERMS) then # if number 3 > array_y[6] := temporary; > array_y_higher[1,6] := temporary; > fi;# end if 3; > temporary := c(temporary) / c(glob_h) * c(5); > array_y_higher[2,5] := c(temporary); > fi;# end if 2; > fi;# end if 1; > kkk := 6; > #END ATOMHDR5 > #BEGIN OUTFILE3 > #Top Atomall While Loop-- outfile3 > while (kkk <= ATS_MAX_TERMS) do # do number 1 > #END OUTFILE3 > #BEGIN OUTFILE4 > #emit sin LINEAR $eq_no = 1 > array_tmp1[kkk] := array_tmp1_g[kkk - 1] * array_x[2] / c(kkk - 1); > array_tmp1_g[kkk] := neg(array_tmp1[kkk - 1]) * array_x[2] / c(kkk - 1); > #emit NOT FULL - FULL add $eq_no = 1 > array_tmp2[kkk] := array_tmp1[kkk]; > #emit FULL - NOT FULL sub $eq_no = 1 > array_tmp3[kkk] := array_tmp2[kkk]; > #emit assign $eq_no = 1 > order_d := 1; > if (kkk + order_d <= ATS_MAX_TERMS) then # if number 1 > if ( not array_y_set_initial[1,kkk + order_d]) then # if number 2 > temporary := c(array_tmp3[kkk]) * expt((glob_h) , c(order_d)) * c(factorial_3((kkk - 1),(kkk + order_d - 1))); > array_y[kkk + order_d] := c(temporary); > array_y_higher[1,kkk + order_d] := c(temporary); > term := kkk + order_d - 1; > adj2 := kkk + order_d - 1; > adj3 := 2; > while ((term >= 1) and (term <= ATS_MAX_TERMS) and (adj3 < order_d + 1)) do # do number 1 > if (adj3 <= order_d + 1) then # if number 3 > if (adj2 > 0) then # if number 4 > temporary := c(temporary) / c(glob_h) * c(adj2); > else > temporary := c(temporary); > fi;# end if 4; > array_y_higher[adj3,term] := c(temporary); > fi;# end if 3; > term := term - 1; > adj2 := adj2 - 1; > adj3 := adj3 + 1; > od;# end do number 1 > fi;# end if 2 > fi;# end if 1; > #emit assign $eq_no = 1 > order_d := 1; > if (kkk + order_d <= ATS_MAX_TERMS) then # if number 1 > if ( not array_y_set_initial[1,kkk + order_d]) then # if number 2 > temporary := c(array_tmp3[kkk]) * expt((glob_h) , c(order_d)) * c(factorial_3((kkk - 1),(kkk + order_d - 1))); > array_y[kkk + order_d] := c(temporary); > array_y_higher[1,kkk + order_d] := c(temporary); > term := kkk + order_d - 1; > adj2 := kkk + order_d - 1; > adj3 := 2; > while ((term >= 1) and (term <= ATS_MAX_TERMS) and (adj3 < order_d + 1)) do # do number 1 > if (adj3 <= order_d + 1) then # if number 3 > if (adj2 > 0) then # if number 4 > temporary := c(temporary) / c(glob_h) * c(adj2); > else > temporary := c(temporary); > fi;# end if 4; > array_y_higher[adj3,term] := c(temporary); > fi;# end if 3; > term := term - 1; > adj2 := adj2 - 1; > adj3 := adj3 + 1; > od;# end do number 1 > fi;# end if 2 > fi;# end if 1; > kkk := kkk + 1; > od;# end do number 1; > #BOTTOM ATOMALL > #END OUTFILE4 > #BEGIN OUTFILE5 > #BOTTOM ATOMALL ??? > end; atomall := proc() local kkk, order_d, adj2, adj3, temporary, term; global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole, glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test, glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED, glob__small, glob_small_float, glob_smallish_float, glob_large_float, glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3, glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5, glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec, glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error, glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec, glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm, glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1, glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc, glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing, glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h, glob_min_h, glob_display_interval, glob_abserr, glob_relerr, glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err, glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start, glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec, glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display, glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits, glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form, glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_start, glob_iter, array_const_1, array_const_0D0, array_const_0, array_y_init, array_norms, array_fact_1, array_1st_rel_error, array_last_rel_error, array_est_rel_error, array_max_est_error, array_type_pole, array_type_real_pole, array_type_complex_pole, array_est_digits, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_given_rad_poles, array_given_ord_poles, array_rad_test_poles, array_ord_test_poles, array_fact_2, ATS_MAX_TERMS, glob_last; array_tmp1[1] := sin(array_x[1]); array_tmp1_g[1] := cos(array_x[1]); array_tmp2[1] := array_const_0D0[1] + array_tmp1[1]; array_tmp3[1] := array_tmp2[1] - array_const_1[1]; if not array_y_set_initial[1, 2] then if 1 <= ATS_MAX_TERMS then temporary := c(array_tmp3[1])*expt(glob_h, c(1))*c(factorial_3(0, 1)); if 2 <= ATS_MAX_TERMS then array_y[2] := temporary; array_y_higher[1, 2] := temporary end if; temporary := c(temporary)*c(1)/c(glob_h); array_y_higher[2, 1] := c(temporary) end if end if; kkk := 2; if not array_y_set_initial[1, 2] then if 1 <= ATS_MAX_TERMS then temporary := c(array_tmp3[1])*expt(glob_h, c(1))*c(factorial_3(0, 1)); if 2 <= ATS_MAX_TERMS then array_y[2] := temporary; array_y_higher[1, 2] := temporary end if; temporary := c(temporary)*c(1)/c(glob_h); array_y_higher[2, 1] := c(temporary) end if end if; kkk := 2; array_tmp1[2] := array_tmp1_g[1]*array_x[2]/c(1); array_tmp1_g[2] := neg(array_tmp1[1])*array_x[2]/c(1); array_tmp2[2] := array_tmp1[2]; array_tmp3[2] := array_tmp2[2]; if not array_y_set_initial[1, 3] then if 2 <= ATS_MAX_TERMS then temporary := c(array_tmp3[2])*expt(glob_h, c(1))*c(factorial_3(1, 2)); if 3 <= ATS_MAX_TERMS then array_y[3] := temporary; array_y_higher[1, 3] := temporary end if; temporary := c(temporary)*c(2)/c(glob_h); array_y_higher[2, 2] := c(temporary) end if end if; kkk := 3; if not array_y_set_initial[1, 3] then if 2 <= ATS_MAX_TERMS then temporary := c(array_tmp3[2])*expt(glob_h, c(1))*c(factorial_3(1, 2)); if 3 <= ATS_MAX_TERMS then array_y[3] := temporary; array_y_higher[1, 3] := temporary end if; temporary := c(temporary)*c(2)/c(glob_h); array_y_higher[2, 2] := c(temporary) end if end if; kkk := 3; array_tmp1[3] := array_tmp1_g[2]*array_x[2]/c(2); array_tmp1_g[3] := neg(array_tmp1[2])*array_x[2]/c(2); array_tmp2[3] := array_tmp1[3]; array_tmp3[3] := array_tmp2[3]; if not array_y_set_initial[1, 4] then if 3 <= ATS_MAX_TERMS then temporary := c(array_tmp3[3])*expt(glob_h, c(1))*c(factorial_3(2, 3)); if 4 <= ATS_MAX_TERMS then array_y[4] := temporary; array_y_higher[1, 4] := temporary end if; temporary := c(temporary)*c(3)/c(glob_h); array_y_higher[2, 3] := c(temporary) end if end if; kkk := 4; if not array_y_set_initial[1, 4] then if 3 <= ATS_MAX_TERMS then temporary := c(array_tmp3[3])*expt(glob_h, c(1))*c(factorial_3(2, 3)); if 4 <= ATS_MAX_TERMS then array_y[4] := temporary; array_y_higher[1, 4] := temporary end if; temporary := c(temporary)*c(3)/c(glob_h); array_y_higher[2, 3] := c(temporary) end if end if; kkk := 4; array_tmp1[4] := array_tmp1_g[3]*array_x[2]/c(3); array_tmp1_g[4] := neg(array_tmp1[3])*array_x[2]/c(3); array_tmp2[4] := array_tmp1[4]; array_tmp3[4] := array_tmp2[4]; if not array_y_set_initial[1, 5] then if 4 <= ATS_MAX_TERMS then temporary := c(array_tmp3[4])*expt(glob_h, c(1))*c(factorial_3(3, 4)); if 5 <= ATS_MAX_TERMS then array_y[5] := temporary; array_y_higher[1, 5] := temporary end if; temporary := c(temporary)*c(4)/c(glob_h); array_y_higher[2, 4] := c(temporary) end if end if; kkk := 5; if not array_y_set_initial[1, 5] then if 4 <= ATS_MAX_TERMS then temporary := c(array_tmp3[4])*expt(glob_h, c(1))*c(factorial_3(3, 4)); if 5 <= ATS_MAX_TERMS then array_y[5] := temporary; array_y_higher[1, 5] := temporary end if; temporary := c(temporary)*c(4)/c(glob_h); array_y_higher[2, 4] := c(temporary) end if end if; kkk := 5; array_tmp1[5] := array_tmp1_g[4]*array_x[2]/c(4); array_tmp1_g[5] := neg(array_tmp1[4])*array_x[2]/c(4); array_tmp2[5] := array_tmp1[5]; array_tmp3[5] := array_tmp2[5]; if not array_y_set_initial[1, 6] then if 5 <= ATS_MAX_TERMS then temporary := c(array_tmp3[5])*expt(glob_h, c(1))*c(factorial_3(4, 5)); if 6 <= ATS_MAX_TERMS then array_y[6] := temporary; array_y_higher[1, 6] := temporary end if; temporary := c(temporary)*c(5)/c(glob_h); array_y_higher[2, 5] := c(temporary) end if end if; kkk := 6; if not array_y_set_initial[1, 6] then if 5 <= ATS_MAX_TERMS then temporary := c(array_tmp3[5])*expt(glob_h, c(1))*c(factorial_3(4, 5)); if 6 <= ATS_MAX_TERMS then array_y[6] := temporary; array_y_higher[1, 6] := temporary end if; temporary := c(temporary)*c(5)/c(glob_h); array_y_higher[2, 5] := c(temporary) end if end if; kkk := 6; while kkk <= ATS_MAX_TERMS do array_tmp1[kkk] := array_tmp1_g[kkk - 1]*array_x[2]/c(kkk - 1); array_tmp1_g[kkk] := neg(array_tmp1[kkk - 1])*array_x[2]/c(kkk - 1) ; array_tmp2[kkk] := array_tmp1[kkk]; array_tmp3[kkk] := array_tmp2[kkk]; order_d := 1; if kkk + order_d <= ATS_MAX_TERMS then if not array_y_set_initial[1, kkk + order_d] then temporary := c(array_tmp3[kkk])*expt(glob_h, c(order_d))* c(factorial_3(kkk - 1, kkk + order_d - 1)); array_y[kkk + order_d] := c(temporary); array_y_higher[1, kkk + order_d] := c(temporary); term := kkk + order_d - 1; adj2 := kkk + order_d - 1; adj3 := 2; while 1 <= term and term <= ATS_MAX_TERMS and adj3 < order_d + 1 do if adj3 <= order_d + 1 then if 0 < adj2 then temporary := c(temporary)*c(adj2)/c(glob_h) else temporary := c(temporary) end if; array_y_higher[adj3, term] := c(temporary) end if; term := term - 1; adj2 := adj2 - 1; adj3 := adj3 + 1 end do end if end if; order_d := 1; if kkk + order_d <= ATS_MAX_TERMS then if not array_y_set_initial[1, kkk + order_d] then temporary := c(array_tmp3[kkk])*expt(glob_h, c(order_d))* c(factorial_3(kkk - 1, kkk + order_d - 1)); array_y[kkk + order_d] := c(temporary); array_y_higher[1, kkk + order_d] := c(temporary); term := kkk + order_d - 1; adj2 := kkk + order_d - 1; adj3 := 2; while 1 <= term and term <= ATS_MAX_TERMS and adj3 < order_d + 1 do if adj3 <= order_d + 1 then if 0 < adj2 then temporary := c(temporary)*c(adj2)/c(glob_h) else temporary := c(temporary) end if; array_y_higher[adj3, term] := c(temporary) end if; term := term - 1; adj2 := adj2 - 1; adj3 := adj3 + 1 end do end if end if; kkk := kkk + 1 end do end proc # End Function number 12 #END OUTFILE5 # Begin Function number 12 > main := proc() > #BEGIN OUTFIEMAIN > local d1,d2,d3,d4,est_err_2,niii,done_once,max_terms,display_max, > term,ord,order_diff,term_no,html_log_file,iiif,jjjf, > rows,r_order,sub_iter,calc_term,iii,temp_sum,current_iter, > x_start,x_end > ,it,last_min_pole_est, opt_iter, tmp,subiter, est_needed_step_err,estimated_step_error,min_value,est_answer,found_h,repeat_it; > global > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > glob_iolevel, > glob_yes_pole, > glob_no_pole, > glob_not_given, > glob_no_sing_tests, > glob_ratio_test, > glob_three_term_test, > glob_six_term_test, > glob_log_10, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob__small, > glob_small_float, > glob_smallish_float, > glob_large_float, > glob_larger_float, > glob__m2, > glob__m1, > glob__0, > glob__1, > glob__2, > glob__3, > glob__4, > glob__5, > glob__8, > glob__10, > glob__100, > glob__pi, > glob__0_5, > glob__0_8, > glob__m0_8, > glob__0_25, > glob__0_125, > glob_h, > glob_nxt, > glob_prec, > glob_check_sign, > glob_desired_digits_correct, > glob_max_estimated_step_error, > glob_ratio_of_radius, > glob_percent_done, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_estimated_size_answer, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_disp_incr, > glob_diff_rc_fm, > glob_diff_rc_fmm1, > glob_diff_rc_fmm2, > glob_diff_ord_fm, > glob_diff_ord_fmm1, > glob_diff_ord_fmm2, > glob_six_term_ord_save, > glob_guess_error_rc, > glob_guess_error_ord, > glob_least_given_sing, > glob_least_ratio_sing, > glob_least_3_sing, > glob_least_6_sing, > glob_last_good_h, > glob_max_h, > glob_min_h, > glob_display_interval, > glob_abserr, > glob_relerr, > glob_min_pole_est, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_max_hours, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_upper_ratio_limit, > glob_lower_ratio_limit, > glob_max_sec, > glob_orig_start_sec, > glob_normmax, > glob_max_minutes, > glob_next_display, > glob_est_digits, > glob_subiter_method, > glob_html_log, > glob_min_good_digits, > glob_good_digits, > glob_min_apfp_est_good_digits, > glob_apfp_est_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_h_reason, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_type_given_pole, > glob_optimize, > glob_look_poles, > glob_dump_closed_form, > glob_max_iter, > glob_no_eqs, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_start, > glob_iter, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_1st_rel_error, > array_last_rel_error, > array_est_rel_error, > array_max_est_error, > array_type_pole, > array_type_real_pole, > array_type_complex_pole, > array_est_digits, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_given_rad_poles, > array_given_ord_poles, > array_rad_test_poles, > array_ord_test_poles, > array_fact_2, > ATS_MAX_TERMS, > glob_last; > ATS_MAX_TERMS := 40; > # before first input block > #BEGIN FIRST INPUT BLOCK > #BEGIN BLOCK 1 > #BEGIN FIRST INPUT BLOCK > Digits:=32; > max_terms:=40; > #END BLOCK 1 > #END FIRST INPUT BLOCK > #START OF INITS AFTER INPUT BLOCK > glob_html_log := true; > #END OF INITS AFTER INPUT BLOCK > # before generate arrays > array_y_init:= Array(0..(40),[]); > array_norms:= Array(0..(40),[]); > array_fact_1:= Array(0..(40),[]); > array_1st_rel_error:= Array(0..(2),[]); > array_last_rel_error:= Array(0..(2),[]); > array_est_rel_error:= Array(0..(2),[]); > array_max_est_error:= Array(0..(2),[]); > array_type_pole:= Array(0..(2),[]); > array_type_real_pole:= Array(0..(2),[]); > array_type_complex_pole:= Array(0..(2),[]); > array_est_digits:= Array(0..(2),[]); > array_y:= Array(0..(40),[]); > array_x:= Array(0..(40),[]); > array_tmp0:= Array(0..(40),[]); > array_tmp1_g:= Array(0..(40),[]); > array_tmp1:= Array(0..(40),[]); > array_tmp2:= Array(0..(40),[]); > array_tmp3:= Array(0..(40),[]); > array_m1:= Array(0..(40),[]); > array_y_higher := Array(0..(2) ,(0..40+ 1),[]); > array_y_higher_work := Array(0..(2) ,(0..40+ 1),[]); > array_y_higher_work2 := Array(0..(2) ,(0..40+ 1),[]); > array_y_set_initial := Array(0..(2) ,(0..40+ 1),[]); > array_given_rad_poles := Array(0..(2) ,(0..3+ 1),[]); > array_given_ord_poles := Array(0..(2) ,(0..3+ 1),[]); > array_rad_test_poles := Array(0..(2) ,(0..4+ 1),[]); > array_ord_test_poles := Array(0..(2) ,(0..4+ 1),[]); > array_fact_2 := Array(0..(40) ,(0..40+ 1),[]); > # before generate constants > # before generate globals definition > #Top Generate Globals Definition > #Bottom Generate Globals Deninition > # before generate const definition > # before arrays initialized > term := 1; > while (term <= 40) do # do number 1 > array_y_init[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 40) do # do number 1 > array_norms[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 40) do # do number 1 > array_fact_1[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 2) do # do number 1 > array_1st_rel_error[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 2) do # do number 1 > array_last_rel_error[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 2) do # do number 1 > array_est_rel_error[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 2) do # do number 1 > array_max_est_error[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 2) do # do number 1 > array_type_pole[term] := 0; > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 2) do # do number 1 > array_type_real_pole[term] := 0; > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 2) do # do number 1 > array_type_complex_pole[term] := 0; > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 2) do # do number 1 > array_est_digits[term] := 0; > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 40) do # do number 1 > array_y[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 40) do # do number 1 > array_x[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 40) do # do number 1 > array_tmp0[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 40) do # do number 1 > array_tmp1_g[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 40) do # do number 1 > array_tmp1[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 40) do # do number 1 > array_tmp2[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 40) do # do number 1 > array_tmp3[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 40) do # do number 1 > array_m1[term] := c(0.0); > term := term + 1; > od;# end do number 1; > ord := 1; > while (ord <=2) do # do number 1 > term := 1; > while (term <= 40) do # do number 2 > array_y_higher[ord,term] := c(0.0); > term := term + 1; > od;# end do number 2; > ord := ord + 1; > od;# end do number 1; > ord := 1; > while (ord <=2) do # do number 1 > term := 1; > while (term <= 40) do # do number 2 > array_y_higher_work[ord,term] := c(0.0); > term := term + 1; > od;# end do number 2; > ord := ord + 1; > od;# end do number 1; > ord := 1; > while (ord <=2) do # do number 1 > term := 1; > while (term <= 40) do # do number 2 > array_y_higher_work2[ord,term] := c(0.0); > term := term + 1; > od;# end do number 2; > ord := ord + 1; > od;# end do number 1; > ord := 1; > while (ord <=2) do # do number 1 > term := 1; > while (term <= 40) do # do number 2 > array_y_set_initial[ord,term] := c(0.0); > term := term + 1; > od;# end do number 2; > ord := ord + 1; > od;# end do number 1; > ord := 1; > while (ord <=2) do # do number 1 > term := 1; > while (term <= 3) do # do number 2 > array_given_rad_poles[ord,term] := c(0.0); > term := term + 1; > od;# end do number 2; > ord := ord + 1; > od;# end do number 1; > ord := 1; > while (ord <=2) do # do number 1 > term := 1; > while (term <= 3) do # do number 2 > array_given_ord_poles[ord,term] := c(0.0); > term := term + 1; > od;# end do number 2; > ord := ord + 1; > od;# end do number 1; > ord := 1; > while (ord <=2) do # do number 1 > term := 1; > while (term <= 4) do # do number 2 > array_rad_test_poles[ord,term] := c(0.0); > term := term + 1; > od;# end do number 2; > ord := ord + 1; > od;# end do number 1; > ord := 1; > while (ord <=2) do # do number 1 > term := 1; > while (term <= 4) do # do number 2 > array_ord_test_poles[ord,term] := c(0.0); > term := term + 1; > od;# end do number 2; > ord := ord + 1; > od;# end do number 1; > ord := 1; > while (ord <=40) do # do number 1 > term := 1; > while (term <= 40) do # do number 2 > array_fact_2[ord,term] := c(0.0); > term := term + 1; > od;# end do number 2; > ord := ord + 1; > od;# end do number 1; > # before symbols initialized > #BEGIN SYMBOLS INITIALIZATED > zero_ats_ar(array_y); > zero_ats_ar(array_x); > zero_ats_ar(array_tmp0); > zero_ats_ar(array_tmp1_g); > zero_ats_ar(array_tmp1); > zero_ats_ar(array_tmp2); > zero_ats_ar(array_tmp3); > zero_ats_ar(array_m1); > zero_ats_ar(array_const_1); > array_const_1[1] := c(1); > zero_ats_ar(array_const_0D0); > array_const_0D0[1] := c(0.0); > zero_ats_ar(array_const_0); > array_const_0[1] := c(0); > zero_ats_ar(array_m1); > array_m1[1] := glob__m1; > #END SYMBOLS INITIALIZATED > # before generate factorials init > #Initing Factorial Tables > iiif := 0; > while (iiif <= ATS_MAX_TERMS) do # do number 1 > jjjf := 0; > while (jjjf <= ATS_MAX_TERMS) do # do number 2 > array_fact_1[iiif] := 0; > array_fact_2[iiif,jjjf] := 0; > jjjf := jjjf + 1; > od;# end do number 2; > iiif := iiif + 1; > od;# end do number 1; > #Done Initing Factorial Table > ALWAYS := 1; > INFO := 2; > DEBUGL := 3; > DEBUGMASSIVE := 4; > glob_iolevel := 5; > glob_yes_pole := 4; > glob_no_pole := 3; > glob_not_given := 0; > glob_no_sing_tests := 4; > glob_ratio_test := 1; > glob_three_term_test := 2; > glob_six_term_test := 3; > glob_log_10 := log(c(10.0)); > MAX_UNCHANGED := 10; > glob__small := c(0.1e-50); > glob_small_float := c(0.1e-50); > glob_smallish_float := c(0.1e-60); > glob_large_float := c(1.0e100); > glob_larger_float := c(1.1e100); > glob__m2 := c(-2); > glob__m1 := c(-1); > glob__0 := c(0); > glob__1 := c(1); > glob__2 := c(2); > glob__3 := c(3); > glob__4 := c(4); > glob__5 := c(5); > glob__8 := c(8); > glob__10 := c(10); > glob__100 := c(100); > glob__pi := c(0.0); > glob__0_5 := c(0.5); > glob__0_8 := c(0.8); > glob__m0_8 := c(-0.8); > glob__0_25 := c(0.25); > glob__0_125 := c(0.125); > glob_h := 0.1; > glob_nxt := 1; > glob_prec := c(1.0e-16); > glob_check_sign := c(1.0); > glob_desired_digits_correct := c(8.0); > glob_max_estimated_step_error := c(0.0); > glob_ratio_of_radius := c(0.1); > glob_percent_done := c(0.0); > glob_total_exp_sec := c(0.1); > glob_optimal_expect_sec := c(0.1); > glob_estimated_size_answer := c(100.0); > glob_almost_1 := c(0.9990); > glob_clock_sec := c(0.0); > glob_clock_start_sec := c(0.0); > glob_disp_incr := c(0.1); > glob_diff_rc_fm := c(0.1); > glob_diff_rc_fmm1 := c(0.1); > glob_diff_rc_fmm2 := c(0.1); > glob_diff_ord_fm := c(0.1); > glob_diff_ord_fmm1 := c(0.1); > glob_diff_ord_fmm2 := c(0.1); > glob_six_term_ord_save := c(0.1); > glob_guess_error_rc := c(0.1); > glob_guess_error_ord := c(0.1); > glob_least_given_sing := c(9.9e200); > glob_least_ratio_sing := c(9.9e200); > glob_least_3_sing := c(9.9e100); > glob_least_6_sing := c(9.9e100); > glob_last_good_h := c(0.1); > glob_max_h := c(0.1); > glob_min_h := c(0.000001); > glob_display_interval := c(0.1); > glob_abserr := c(0.1e-10); > glob_relerr := c(0.1e-10); > glob_min_pole_est := c(0.1e+10); > glob_max_rel_trunc_err := c(0.1e-10); > glob_max_trunc_err := c(0.1e-10); > glob_max_hours := c(0.0); > glob_optimal_clock_start_sec := c(0.0); > glob_optimal_start := c(0.0); > glob_upper_ratio_limit := c(1.0001); > glob_lower_ratio_limit := c(0.9999); > glob_max_sec := c(10000.0); > glob_orig_start_sec := c(0.0); > glob_normmax := c(0.0); > glob_max_minutes := c(0.0); > glob_next_display := c(0.0); > glob_est_digits := 1; > glob_subiter_method := 3; > glob_html_log := true; > glob_min_good_digits := 99999; > glob_good_digits := 0; > glob_min_apfp_est_good_digits := 99999; > glob_apfp_est_good_digits := 0; > glob_max_opt_iter := 10; > glob_dump := false; > glob_djd_debug := true; > glob_display_flag := true; > glob_djd_debug2 := true; > glob_h_reason := 0; > glob_sec_in_minute := 60 ; > glob_min_in_hour := 60; > glob_hours_in_day := 24; > glob_days_in_year := 365; > glob_sec_in_hour := 3600; > glob_sec_in_day := 86400; > glob_sec_in_year := 31536000; > glob_not_yet_finished := true; > glob_initial_pass := true; > glob_not_yet_start_msg := true; > glob_reached_optimal_h := false; > glob_optimal_done := false; > glob_type_given_pole := 0; > glob_optimize := false; > glob_look_poles := false; > glob_dump_closed_form := false; > glob_max_iter := 10000; > glob_no_eqs := 0; > glob_unchanged_h_cnt := 0; > glob_warned := false; > glob_warned2 := false; > glob_start := 0; > glob_iter := 0; > # before generate set diff initial > array_y_set_initial[1,1] := true; > array_y_set_initial[1,2] := false; > array_y_set_initial[1,3] := false; > array_y_set_initial[1,4] := false; > array_y_set_initial[1,5] := false; > array_y_set_initial[1,6] := false; > array_y_set_initial[1,7] := false; > array_y_set_initial[1,8] := false; > array_y_set_initial[1,9] := false; > array_y_set_initial[1,10] := false; > array_y_set_initial[1,11] := false; > array_y_set_initial[1,12] := false; > array_y_set_initial[1,13] := false; > array_y_set_initial[1,14] := false; > array_y_set_initial[1,15] := false; > array_y_set_initial[1,16] := false; > array_y_set_initial[1,17] := false; > array_y_set_initial[1,18] := false; > array_y_set_initial[1,19] := false; > array_y_set_initial[1,20] := false; > array_y_set_initial[1,21] := false; > array_y_set_initial[1,22] := false; > array_y_set_initial[1,23] := false; > array_y_set_initial[1,24] := false; > array_y_set_initial[1,25] := false; > array_y_set_initial[1,26] := false; > array_y_set_initial[1,27] := false; > array_y_set_initial[1,28] := false; > array_y_set_initial[1,29] := false; > array_y_set_initial[1,30] := false; > array_y_set_initial[1,31] := false; > array_y_set_initial[1,32] := false; > array_y_set_initial[1,33] := false; > array_y_set_initial[1,34] := false; > array_y_set_initial[1,35] := false; > array_y_set_initial[1,36] := false; > array_y_set_initial[1,37] := false; > array_y_set_initial[1,38] := false; > array_y_set_initial[1,39] := false; > array_y_set_initial[1,40] := false; > # before generate init omniout const > ALWAYS := 1; > INFO := 2; > DEBUGL := 3; > DEBUGMASSIVE := 4; > ATS_MAX_TERMS := 40; > glob_iolevel := INFO; > # set default block > #Write Set Defaults > glob_orig_start_sec := elapsed_time_seconds(); > glob_display_flag := true; > glob_no_eqs := 1; > glob_iter := -1; > opt_iter := -1; > glob_max_iter := 10000; > glob_max_hours := (0.0); > glob_max_minutes := (15.0); > omniout_str(ALWAYS,"##############ECHO OF PROBLEM#################"); > omniout_str(ALWAYS,"##############temp/sub_sin_cpostcpx.cpx#################"); > omniout_str(ALWAYS,"diff ( y , x , 1 ) = sin ( x ) - 1 , 0 ; "); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"Digits:=32;"); > omniout_str(ALWAYS,"max_terms:=40;"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#END FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"x_start := 0.1 + 0.1 * I;"); > omniout_str(ALWAYS,"x_end := 99.0 + 99.0 * I;"); > omniout_str(ALWAYS,"array_y_init[0 + 1] := exact_soln_y(x_start);"); > omniout_str(ALWAYS,"glob_look_poles := true;"); > omniout_str(ALWAYS,""); > omniout_str(ALWAYS,""); > omniout_str(ALWAYS,""); > omniout_str(ALWAYS,""); > omniout_str(ALWAYS,""); > omniout_str(ALWAYS,""); > omniout_str(ALWAYS,""); > omniout_str(ALWAYS,"glob_type_given_pole := 3;"); > omniout_str(ALWAYS,""); > omniout_str(ALWAYS,"#END SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN OVERRIDE BLOCK"); > omniout_str(ALWAYS,"glob_desired_digits_correct:=8;"); > omniout_str(ALWAYS,"glob_max_minutes:=(3.0);"); > omniout_str(ALWAYS,"glob_subiter_method:=3;"); > omniout_str(ALWAYS,"glob_max_iter:=10000;"); > omniout_str(ALWAYS,"glob_upper_ratio_limit:=c(1.000001);"); > omniout_str(ALWAYS,"glob_lower_ratio_limit:=c(0.999999);"); > omniout_str(ALWAYS,"glob_look_poles:=true;"); > omniout_str(ALWAYS,"glob_h:=c(0.001);"); > omniout_str(ALWAYS,"glob_display_interval:=c(0.01);"); > omniout_str(ALWAYS,"#END OVERRIDE BLOCK"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN USER DEF BLOCK"); > omniout_str(ALWAYS,"exact_soln_y := proc(x)"); > omniout_str(ALWAYS,"return(c(2.0) - cos(c(x)) - c(x));"); > omniout_str(ALWAYS,"end;"); > omniout_str(ALWAYS,"next_delta := proc()"); > omniout_str(ALWAYS,"global glob_nxt, x_delta;"); > omniout_str(ALWAYS,""); > omniout_str(ALWAYS,"x_delta := [ 0.001 + 0.00004 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.004 * I,"); > omniout_str(ALWAYS,"0.003 + 0.006 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.005 * I,"); > omniout_str(ALWAYS,"0.0001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.001 + 0.001 * I,"); > omniout_str(ALWAYS,"0.001 + 0.003 * I,"); > omniout_str(ALWAYS,"0.000 + 0.000 * I ];"); > omniout_str(ALWAYS,""); > omniout_str(ALWAYS,"glob_nxt := glob_nxt + 1;"); > omniout_str(ALWAYS,"it := x_delta[glob_nxt];"); > omniout_str(ALWAYS,"return it;"); > omniout_str(ALWAYS,"end;"); > omniout_str(ALWAYS,"#END USER DEF BLOCK"); > omniout_str(ALWAYS,"#######END OF ECHO OF PROBLEM#################"); > glob_unchanged_h_cnt := 0; > glob_warned := false; > glob_warned2 := false; > glob_small_float := glob__0; > glob_smallish_float := glob__0; > glob_large_float := c(1.0e100); > glob_larger_float := c( 1.1e100); > glob_almost_1 := c( 0.99); > # before second block > #TOP SECOND INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > #BEGIN BLOCK 2 > #END FIRST INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > x_start := 0.1 + 0.1 * I; > x_end := 99.0 + 99.0 * I; > array_y_init[0 + 1] := exact_soln_y(x_start); > glob_look_poles := true; > glob_type_given_pole := 3; > #END SECOND INPUT BLOCK > #BEGIN OVERRIDE BLOCK > glob_desired_digits_correct:=8; > glob_max_minutes:=(3.0); > glob_subiter_method:=3; > glob_max_iter:=10000; > glob_upper_ratio_limit:=c(1.000001); > glob_lower_ratio_limit:=c(0.999999); > glob_look_poles:=true; > glob_h:=c(0.001); > glob_display_interval:=c(0.01); > #END OVERRIDE BLOCK > #END BLOCK 2 > #END SECOND INPUT BLOCK > #BEGIN INITS AFTER SECOND INPUT BLOCK > glob_last_good_h := glob_h; > glob_max_sec := (60.0) * (glob_max_minutes) + (3600.0) * (glob_max_hours); > # after second input block > found_h := true; > glob_h := next_delta(); > #START ADJUST ALL SERIES > if (float_abs(glob_min_pole_est) * glob_ratio_of_radius < float_abs(glob_h)) then # if number 9 > h_new := glob_check_sign * glob_min_pole_est * glob_ratio_of_radius; > omniout_str(ALWAYS,"SETTING H FOR POLE"); > glob_h_reason := 6; > if (glob_check_sign * glob_min_h > glob_check_sign * h_new) then # if number 10 > omniout_str(ALWAYS,"SETTING H FOR MIN H"); > h_new := glob_min_h; > glob_h_reason := 5; > fi;# end if 10; > term := 1; > ratio := c(1.0); > while (term <= ATS_MAX_TERMS) do # do number 1 > array_y[term] := array_y[term]* ratio; > array_y_higher[1,term] := array_y_higher[1,term]* ratio; > array_x[term] := array_x[term]* ratio; > ratio := ratio * h_new / float_abs(glob_h); > term := term + 1; > od;# end do number 1; > glob_h := h_new; > fi;# end if 9; > #BOTTOM ADJUST ALL SERIES > #END OPTIMIZE CODE > if (glob_html_log) then # if number 9 > html_log_file := fopen("entry.html",WRITE,TEXT); > fi;# end if 9; > #BEGIN SOLUTION CODE > found_h := true; > if (found_h) then # if number 9 > omniout_str(ALWAYS,"START of Soultion"); > #Start Series -- INITIALIZE FOR SOLUTION > array_x[1] := c(x_start); > array_x[2] := c(glob_h); > glob_next_display := c(x_start); > glob_min_pole_est := glob_larger_float; > glob_least_given_sing := glob_larger_float; > glob_least_ratio_sing := glob_larger_float; > glob_least_3_sing := glob_larger_float; > glob_least_6_sing := glob_larger_float; > order_diff := 1; > #Start Series array_y > term_no := 1; > while (term_no <= order_diff) do # do number 1 > array_y[term_no] := array_y_init[term_no] * expt(glob_h , c(term_no - 1)) / c(factorial_1(term_no - 1)); > term_no := term_no + 1; > od;# end do number 1; > rows := order_diff; > r_order := 1; > while (r_order <= rows) do # do number 1 > term_no := 1; > while (term_no <= (rows - r_order + 1)) do # do number 2 > it := term_no + r_order - 1; > if (term_no < ATS_MAX_TERMS) then # if number 10 > array_y_higher[r_order,term_no] := array_y_init[it]* expt(glob_h , c(term_no - 1)) / (c(factorial_1(term_no - 1))); > fi;# end if 10; > term_no := term_no + 1; > od;# end do number 2; > r_order := r_order + 1; > od;# end do number 1 > ; > current_iter := 1; > glob_clock_start_sec := elapsed_time_seconds(); > glob_clock_sec := elapsed_time_seconds(); > glob_iter := 0; > omniout_str(DEBUGL," "); > glob_reached_optimal_h := true; > found_h := true; > glob_h := next_delta(); > #START ADJUST ALL SERIES > if (float_abs(glob_min_pole_est) * glob_ratio_of_radius < float_abs(glob_h)) then # if number 10 > h_new := glob_check_sign * glob_min_pole_est * glob_ratio_of_radius; > omniout_str(ALWAYS,"SETTING H FOR POLE"); > glob_h_reason := 6; > if (glob_check_sign * glob_min_h > glob_check_sign * h_new) then # if number 11 > omniout_str(ALWAYS,"SETTING H FOR MIN H"); > h_new := glob_min_h; > glob_h_reason := 5; > fi;# end if 11; > term := 1; > ratio := c(1.0); > while (term <= ATS_MAX_TERMS) do # do number 1 > array_y[term] := array_y[term]* ratio; > array_y_higher[1,term] := array_y_higher[1,term]* ratio; > array_x[term] := array_x[term]* ratio; > ratio := ratio * h_new / float_abs(glob_h); > term := term + 1; > od;# end do number 1; > glob_h := h_new; > fi;# end if 10; > #BOTTOM ADJUST ALL SERIES > #END OPTIMIZE CODE > glob_optimal_clock_start_sec := elapsed_time_seconds(); > while ((glob_iter < glob_max_iter) and ((glob_iter < 10) or ( not ((Re(glob_h) = 0.0) and (Im(glob_h) = 0.0))))) do # do number 1 > #left paren 0001C > if (true) then # if number 10 > omniout_str(INFO," "); > fi;# end if 10; > found_h := true; > glob_h := next_delta(); > #START ADJUST ALL SERIES > if (float_abs(glob_min_pole_est) * glob_ratio_of_radius < float_abs(glob_h)) then # if number 10 > h_new := glob_check_sign * glob_min_pole_est * glob_ratio_of_radius; > omniout_str(ALWAYS,"SETTING H FOR POLE"); > glob_h_reason := 6; > if (glob_check_sign * glob_min_h > glob_check_sign * h_new) then # if number 11 > omniout_str(ALWAYS,"SETTING H FOR MIN H"); > h_new := glob_min_h; > glob_h_reason := 5; > fi;# end if 11; > term := 1; > ratio := c(1.0); > while (term <= ATS_MAX_TERMS) do # do number 2 > array_y[term] := array_y[term]* ratio; > array_y_higher[1,term] := array_y_higher[1,term]* ratio; > array_x[term] := array_x[term]* ratio; > ratio := ratio * h_new / float_abs(glob_h); > term := term + 1; > od;# end do number 2; > glob_h := h_new; > fi;# end if 10; > #BOTTOM ADJUST ALL SERIES > #END OPTIMIZE CODE > glob_iter := glob_iter + 1; > glob_clock_sec := elapsed_time_seconds(); > atomall(); > if ( not ((Re(glob_h) = 0.0) and (Im(glob_h) = 0.0))) then # if number 10 > display_alot(current_iter); > fi;# end if 10; > if ((glob_look_poles) and ( not ((Re(glob_h) = 0.0) and (Im(glob_h) = 0.0)))) then # if number 10 > check_for_pole(); > fi;# end if 10; > if (true) then # if number 10 > glob_next_display := glob_next_display + glob_display_interval; > fi;# end if 10; > array_x[1] := array_x[1] + glob_h; > array_x[2] := glob_h; > #Jump Series array_y; > order_diff := 2; > #START PART 1 SUM AND ADJUST > #START SUM AND ADJUST EQ =1 > #sum_and_adjust array_y > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 2; > calc_term := 1; > #adjust_subseriesarray_y > iii := ATS_MAX_TERMS; > while (iii >= calc_term) do # do number 2 > array_y_higher_work[2,iii] := array_y_higher[2,iii] / expt(glob_h , c(calc_term - 1)) / c(factorial_3(iii - calc_term , iii - 1)); > iii := iii - 1; > od;# end do number 2; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := glob__0; > ord := 2; > calc_term := 1; > #sum_subseriesarray_y > iii := ATS_MAX_TERMS; > while (iii >= calc_term) do # do number 2 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 2; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , c(calc_term - 1)) / c(factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 1; > calc_term := 2; > #adjust_subseriesarray_y > iii := ATS_MAX_TERMS; > while (iii >= calc_term) do # do number 2 > array_y_higher_work[1,iii] := array_y_higher[1,iii] / expt(glob_h , c(calc_term - 1)) / c(factorial_3(iii - calc_term , iii - 1)); > iii := iii - 1; > od;# end do number 2; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := glob__0; > ord := 1; > calc_term := 2; > #sum_subseriesarray_y > iii := ATS_MAX_TERMS; > while (iii >= calc_term) do # do number 2 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 2; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , c(calc_term - 1)) / c(factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 1; > calc_term := 1; > #adjust_subseriesarray_y > iii := ATS_MAX_TERMS; > while (iii >= calc_term) do # do number 2 > array_y_higher_work[1,iii] := array_y_higher[1,iii] / expt(glob_h , c(calc_term - 1)) / c(factorial_3(iii - calc_term , iii - 1)); > iii := iii - 1; > od;# end do number 2; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := glob__0; > ord := 1; > calc_term := 1; > #sum_subseriesarray_y > iii := ATS_MAX_TERMS; > while (iii >= calc_term) do # do number 2 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 2; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , c(calc_term - 1)) / c(factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #END SUM AND ADJUST EQ =1 > #END PART 1 > #START PART 2 MOVE TERMS to REGULAR Array > term_no := ATS_MAX_TERMS; > while (term_no >= 1) do # do number 2 > array_y[term_no] := array_y_higher_work2[1,term_no]; > ord := 1; > while (ord <= order_diff) do # do number 3 > array_y_higher[ord,term_no] := array_y_higher_work2[ord,term_no]; > ord := ord + 1; > od;# end do number 3; > term_no := term_no - 1; > od;# end do number 2; > #END PART 2 HEVE MOVED TERMS to REGULAR Array > ; > od;# end do number 1;#right paren 0001C > omniout_str(ALWAYS,"Finished!"); > if (glob_iter >= glob_max_iter) then # if number 10 > omniout_str(ALWAYS,"Maximum Iterations Reached before Solution Completed!"); > fi;# end if 10; > if (elapsed_time_seconds() - (glob_orig_start_sec) >= (glob_max_sec )) then # if number 10 > omniout_str(ALWAYS,"Maximum Time Reached before Solution Completed!"); > fi;# end if 10; > glob_clock_sec := elapsed_time_seconds(); > omniout_str(INFO,"diff ( y , x , 1 ) = sin ( x ) - 1 , 0 ; "); > omniout_int(INFO,"Iterations ",32,glob_iter,4," ") > ; > prog_report(x_start,x_end); > if (glob_html_log) then # if number 10 > logstart(html_log_file); > logitem_str(html_log_file,"2017-11-26T16:38:41-06:00") > ; > logitem_str(html_log_file,"Maple") > ; > logitem_str(html_log_file,"sub_sin_c") > ; > logitem_str(html_log_file,"diff ( y , x , 1 ) = sin ( x ) - 1 , 0 ; ") > ; > logitem_complex(html_log_file,x_start) > ; > logitem_complex(html_log_file,x_end) > ; > logitem_complex(html_log_file,array_x[1]) > ; > logitem_complex(html_log_file,glob_h) > ; > logitem_h_reason(html_log_file) > ; > logitem_integer(html_log_file,Digits) > ; > ; > glob_desired_digits_correct := 0.0; > logitem_float(html_log_file,glob_desired_digits_correct) > ; > if (array_est_digits[1] <> -16) then # if number 11 > logitem_integer(html_log_file,array_est_digits[1]) > ; > else > logitem_str(html_log_file,"Unknown") > ; > fi;# end if 11; > if (glob_min_good_digits <> -16) then # if number 11 > logitem_integer(html_log_file,glob_min_good_digits) > ; > else > logitem_str(html_log_file,"Unknown") > ; > fi;# end if 11; > if (glob_good_digits <> -16) then # if number 11 > logitem_integer(html_log_file,glob_good_digits) > ; > else > logitem_str(html_log_file,"Unknown") > ; > fi;# end if 11; > logitem_str(html_log_file,"NA") > ; > logitem_str(html_log_file,"NA") > ; > logitem_integer(html_log_file,ATS_MAX_TERMS) > ; > if (glob_type_given_pole = 0) then # if number 11 > logitem_str(html_log_file,"Not Given") > ; > logitem_str(html_log_file,"NA") > ; > elif > (glob_type_given_pole = 4) then # if number 12 > logitem_str(html_log_file,"No Solution") > ; > logitem_str(html_log_file,"NA") > ; > elif > (glob_type_given_pole = 5) then # if number 13 > logitem_str(html_log_file,"Some Pole") > ; > logitem_str(html_log_file,"????") > ; > elif > (glob_type_given_pole = 3) then # if number 14 > logitem_str(html_log_file,"No Pole") > ; > logitem_str(html_log_file,"NA") > ; > elif > (glob_type_given_pole = 1) then # if number 15 > logitem_str(html_log_file,"Real Sing") > ; > logitem_float(html_log_file,glob_least_given_sing) > ; > elif > (glob_type_given_pole = 2) then # if number 16 > logitem_str(html_log_file,"Complex Sing") > ; > logitem_float(html_log_file,glob_least_given_sing) > ; > fi;# end if 16; > if (glob_least_ratio_sing < glob_large_float) then # if number 16 > glob_least_ratio_sing := 0; > logitem_float(html_log_file,glob_least_ratio_sing) > ; > else > logitem_str(html_log_file,"NONE") > ; > fi;# end if 16; > if (glob_least_3_sing < glob_large_float) then # if number 16 > logitem_float(html_log_file,glob_least_3_sing) > ; > else > logitem_str(html_log_file,"NONE") > ; > fi;# end if 16; > if (glob_least_6_sing < glob_large_float) then # if number 16 > glob_least_6_sing := 0.0; > logitem_float(html_log_file,glob_least_6_sing) > ; > else > logitem_str(html_log_file,"NONE") > ; > fi;# end if 16; > logitem_integer(html_log_file,glob_iter) > ; > logitem_time(html_log_file,(glob_clock_sec)) > ; > if (c(glob_percent_done) < glob__100) then # if number 16 > logitem_time(html_log_file,(glob_total_exp_sec)) > ; > 0; > else > logitem_str(html_log_file,"Done") > ; > 0; > fi;# end if 16; > log_revs(html_log_file," 309 ") > ; > logitem_str(html_log_file,"sub_sin_c diffeq.mxt") > ; > logitem_str(html_log_file,"sub_sin_c maple results") > ; > logitem_str(html_log_file,"OK") > ; > logend(html_log_file) > ; > ; > fi;# end if 15; > if (glob_html_log) then # if number 15 > fclose(html_log_file); > fi;# end if 15 > ; > ;; > end; > # End Function number 12 > #END OUTFILEMAIN > end; Warning, `h_new` is implicitly declared local to procedure `main` Warning, `ratio` is implicitly declared local to procedure `main` main := proc() local d1, d2, d3, d4, est_err_2, niii, done_once, max_terms, display_max, term, ord, order_diff, term_no, html_log_file, iiif, jjjf, rows, r_order, sub_iter, calc_term, iii, temp_sum, current_iter, x_start, x_end, it, last_min_pole_est, opt_iter, tmp, subiter, est_needed_step_err, estimated_step_error, min_value, est_answer, found_h, repeat_it, h_new, ratio; global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole, glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test, glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED, glob__small, glob_small_float, glob_smallish_float, glob_large_float, glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3, glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5, glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec, glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error, glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec, glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm, glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1, glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc, glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing, glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h, glob_min_h, glob_display_interval, glob_abserr, glob_relerr, glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err, glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start, glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec, glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display, glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits, glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form, glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_start, glob_iter, array_const_1, array_const_0D0, array_const_0, array_y_init, array_norms, array_fact_1, array_1st_rel_error, array_last_rel_error, array_est_rel_error, array_max_est_error, array_type_pole, array_type_real_pole, array_type_complex_pole, array_est_digits, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_given_rad_poles, array_given_ord_poles, array_rad_test_poles, array_ord_test_poles, array_fact_2, ATS_MAX_TERMS, glob_last; ATS_MAX_TERMS := 40; Digits := 32; max_terms := 40; glob_html_log := true; array_y_init := Array(0 .. 40, []); array_norms := Array(0 .. 40, []); array_fact_1 := Array(0 .. 40, []); array_1st_rel_error := Array(0 .. 2, []); array_last_rel_error := Array(0 .. 2, []); array_est_rel_error := Array(0 .. 2, []); array_max_est_error := Array(0 .. 2, []); array_type_pole := Array(0 .. 2, []); array_type_real_pole := Array(0 .. 2, []); array_type_complex_pole := Array(0 .. 2, []); array_est_digits := Array(0 .. 2, []); array_y := Array(0 .. 40, []); array_x := Array(0 .. 40, []); array_tmp0 := Array(0 .. 40, []); array_tmp1_g := Array(0 .. 40, []); array_tmp1 := Array(0 .. 40, []); array_tmp2 := Array(0 .. 40, []); array_tmp3 := Array(0 .. 40, []); array_m1 := Array(0 .. 40, []); array_y_higher := Array(0 .. 2, 0 .. 41, []); array_y_higher_work := Array(0 .. 2, 0 .. 41, []); array_y_higher_work2 := Array(0 .. 2, 0 .. 41, []); array_y_set_initial := Array(0 .. 2, 0 .. 41, []); array_given_rad_poles := Array(0 .. 2, 0 .. 4, []); array_given_ord_poles := Array(0 .. 2, 0 .. 4, []); array_rad_test_poles := Array(0 .. 2, 0 .. 5, []); array_ord_test_poles := Array(0 .. 2, 0 .. 5, []); array_fact_2 := Array(0 .. 40, 0 .. 41, []); term := 1; while term <= 40 do array_y_init[term] := c(0.); term := term + 1 end do; term := 1; while term <= 40 do array_norms[term] := c(0.); term := term + 1 end do ; term := 1; while term <= 40 do array_fact_1[term] := c(0.); term := term + 1 end do; term := 1; while term <= 2 do array_1st_rel_error[term] := c(0.); term := term + 1 end do; term := 1; while term <= 2 do array_last_rel_error[term] := c(0.); term := term + 1 end do; term := 1; while term <= 2 do array_est_rel_error[term] := c(0.); term := term + 1 end do; term := 1; while term <= 2 do array_max_est_error[term] := c(0.); term := term + 1 end do; term := 1; while term <= 2 do array_type_pole[term] := 0; term := term + 1 end do; term := 1; while term <= 2 do array_type_real_pole[term] := 0; term := term + 1 end do; term := 1; while term <= 2 do array_type_complex_pole[term] := 0; term := term + 1 end do; term := 1; while term <= 2 do array_est_digits[term] := 0; term := term + 1 end do ; term := 1; while term <= 40 do array_y[term] := c(0.); term := term + 1 end do; term := 1; while term <= 40 do array_x[term] := c(0.); term := term + 1 end do; term := 1; while term <= 40 do array_tmp0[term] := c(0.); term := term + 1 end do; term := 1; while term <= 40 do array_tmp1_g[term] := c(0.); term := term + 1 end do; term := 1; while term <= 40 do array_tmp1[term] := c(0.); term := term + 1 end do; term := 1; while term <= 40 do array_tmp2[term] := c(0.); term := term + 1 end do; term := 1; while term <= 40 do array_tmp3[term] := c(0.); term := term + 1 end do; term := 1; while term <= 40 do array_m1[term] := c(0.); term := term + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= 40 do array_y_higher[ord, term] := c(0.); term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= 40 do array_y_higher_work[ord, term] := c(0.); term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= 40 do array_y_higher_work2[ord, term] := c(0.); term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= 40 do array_y_set_initial[ord, term] := c(0.); term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= 3 do array_given_rad_poles[ord, term] := c(0.); term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= 3 do array_given_ord_poles[ord, term] := c(0.); term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= 4 do array_rad_test_poles[ord, term] := c(0.); term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= 4 do array_ord_test_poles[ord, term] := c(0.); term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 40 do term := 1; while term <= 40 do array_fact_2[ord, term] := c(0.); term := term + 1 end do; ord := ord + 1 end do; zero_ats_ar(array_y); zero_ats_ar(array_x); zero_ats_ar(array_tmp0); zero_ats_ar(array_tmp1_g); zero_ats_ar(array_tmp1); zero_ats_ar(array_tmp2); zero_ats_ar(array_tmp3); zero_ats_ar(array_m1); zero_ats_ar(array_const_1); array_const_1[1] := c(1); zero_ats_ar(array_const_0D0); array_const_0D0[1] := c(0.); zero_ats_ar(array_const_0); array_const_0[1] := c(0); zero_ats_ar(array_m1); array_m1[1] := glob__m1; iiif := 0; while iiif <= ATS_MAX_TERMS do jjjf := 0; while jjjf <= ATS_MAX_TERMS do array_fact_1[iiif] := 0; array_fact_2[iiif, jjjf] := 0; jjjf := jjjf + 1 end do; iiif := iiif + 1 end do; ALWAYS := 1; INFO := 2; DEBUGL := 3; DEBUGMASSIVE := 4; glob_iolevel := 5; glob_yes_pole := 4; glob_no_pole := 3; glob_not_given := 0; glob_no_sing_tests := 4; glob_ratio_test := 1; glob_three_term_test := 2; glob_six_term_test := 3; glob_log_10 := log(c(10.0)); MAX_UNCHANGED := 10; glob__small := c(0.1*10^(-50)); glob_small_float := c(0.1*10^(-50)); glob_smallish_float := c(0.1*10^(-60)); glob_large_float := c(0.10*10^101); glob_larger_float := c(0.11*10^101); glob__m2 := c(-2); glob__m1 := c(-1); glob__0 := c(0); glob__1 := c(1); glob__2 := c(2); glob__3 := c(3); glob__4 := c(4); glob__5 := c(5); glob__8 := c(8); glob__10 := c(10); glob__100 := c(100); glob__pi := c(0.); glob__0_5 := c(0.5); glob__0_8 := c(0.8); glob__m0_8 := c(-0.8); glob__0_25 := c(0.25); glob__0_125 := c(0.125); glob_h := 0.1; glob_nxt := 1; glob_prec := c(0.10*10^(-15)); glob_check_sign := c(1.0); glob_desired_digits_correct := c(8.0); glob_max_estimated_step_error := c(0.); glob_ratio_of_radius := c(0.1); glob_percent_done := c(0.); glob_total_exp_sec := c(0.1); glob_optimal_expect_sec := c(0.1); glob_estimated_size_answer := c(100.0); glob_almost_1 := c(0.9990); glob_clock_sec := c(0.); glob_clock_start_sec := c(0.); glob_disp_incr := c(0.1); glob_diff_rc_fm := c(0.1); glob_diff_rc_fmm1 := c(0.1); glob_diff_rc_fmm2 := c(0.1); glob_diff_ord_fm := c(0.1); glob_diff_ord_fmm1 := c(0.1); glob_diff_ord_fmm2 := c(0.1); glob_six_term_ord_save := c(0.1); glob_guess_error_rc := c(0.1); glob_guess_error_ord := c(0.1); glob_least_given_sing := c(0.99*10^201); glob_least_ratio_sing := c(0.99*10^201); glob_least_3_sing := c(0.99*10^101); glob_least_6_sing := c(0.99*10^101); glob_last_good_h := c(0.1); glob_max_h := c(0.1); glob_min_h := c(0.1*10^(-5)); glob_display_interval := c(0.1); glob_abserr := c(0.1*10^(-10)); glob_relerr := c(0.1*10^(-10)); glob_min_pole_est := c(0.1*10^10); glob_max_rel_trunc_err := c(0.1*10^(-10)); glob_max_trunc_err := c(0.1*10^(-10)); glob_max_hours := c(0.); glob_optimal_clock_start_sec := c(0.); glob_optimal_start := c(0.); glob_upper_ratio_limit := c(1.0001); glob_lower_ratio_limit := c(0.9999); glob_max_sec := c(10000.0); glob_orig_start_sec := c(0.); glob_normmax := c(0.); glob_max_minutes := c(0.); glob_next_display := c(0.); glob_est_digits := 1; glob_subiter_method := 3; glob_html_log := true; glob_min_good_digits := 99999; glob_good_digits := 0; glob_min_apfp_est_good_digits := 99999; glob_apfp_est_good_digits := 0; glob_max_opt_iter := 10; glob_dump := false; glob_djd_debug := true; glob_display_flag := true; glob_djd_debug2 := true; glob_h_reason := 0; glob_sec_in_minute := 60; glob_min_in_hour := 60; glob_hours_in_day := 24; glob_days_in_year := 365; glob_sec_in_hour := 3600; glob_sec_in_day := 86400; glob_sec_in_year := 31536000; glob_not_yet_finished := true; glob_initial_pass := true; glob_not_yet_start_msg := true; glob_reached_optimal_h := false; glob_optimal_done := false; glob_type_given_pole := 0; glob_optimize := false; glob_look_poles := false; glob_dump_closed_form := false; glob_max_iter := 10000; glob_no_eqs := 0; glob_unchanged_h_cnt := 0; glob_warned := false; glob_warned2 := false; glob_start := 0; glob_iter := 0; array_y_set_initial[1, 1] := true; array_y_set_initial[1, 2] := false; array_y_set_initial[1, 3] := false; array_y_set_initial[1, 4] := false; array_y_set_initial[1, 5] := false; array_y_set_initial[1, 6] := false; array_y_set_initial[1, 7] := false; array_y_set_initial[1, 8] := false; array_y_set_initial[1, 9] := false; array_y_set_initial[1, 10] := false; array_y_set_initial[1, 11] := false; array_y_set_initial[1, 12] := false; array_y_set_initial[1, 13] := false; array_y_set_initial[1, 14] := false; array_y_set_initial[1, 15] := false; array_y_set_initial[1, 16] := false; array_y_set_initial[1, 17] := false; array_y_set_initial[1, 18] := false; array_y_set_initial[1, 19] := false; array_y_set_initial[1, 20] := false; array_y_set_initial[1, 21] := false; array_y_set_initial[1, 22] := false; array_y_set_initial[1, 23] := false; array_y_set_initial[1, 24] := false; array_y_set_initial[1, 25] := false; array_y_set_initial[1, 26] := false; array_y_set_initial[1, 27] := false; array_y_set_initial[1, 28] := false; array_y_set_initial[1, 29] := false; array_y_set_initial[1, 30] := false; array_y_set_initial[1, 31] := false; array_y_set_initial[1, 32] := false; array_y_set_initial[1, 33] := false; array_y_set_initial[1, 34] := false; array_y_set_initial[1, 35] := false; array_y_set_initial[1, 36] := false; array_y_set_initial[1, 37] := false; array_y_set_initial[1, 38] := false; array_y_set_initial[1, 39] := false; array_y_set_initial[1, 40] := false; ALWAYS := 1; INFO := 2; DEBUGL := 3; DEBUGMASSIVE := 4; ATS_MAX_TERMS := 40; glob_iolevel := INFO; glob_orig_start_sec := elapsed_time_seconds(); glob_display_flag := true; glob_no_eqs := 1; glob_iter := -1; opt_iter := -1; glob_max_iter := 10000; glob_max_hours := 0.; glob_max_minutes := 15.0; omniout_str(ALWAYS, "##############ECHO OF PROBLEM#################"); omniout_str(ALWAYS, "##############temp/sub_sin_cpostcpx.cpx#################"); omniout_str(ALWAYS, "diff ( y , x , 1 ) = sin ( x ) - 1 , 0 ; "); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN FIRST INPUT BLOCK"); omniout_str(ALWAYS, "Digits:=32;"); omniout_str(ALWAYS, "max_terms:=40;"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#END FIRST INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN SECOND INPUT BLOCK"); omniout_str(ALWAYS, "x_start := 0.1 + 0.1 * I;"); omniout_str(ALWAYS, "x_end := 99.0 + 99.0 * I;"); omniout_str(ALWAYS, "array_y_init[0 + 1] := exact_soln_y(x_start);"); omniout_str(ALWAYS, "glob_look_poles := true;"); omniout_str(ALWAYS, ""); omniout_str(ALWAYS, ""); omniout_str(ALWAYS, ""); omniout_str(ALWAYS, ""); omniout_str(ALWAYS, ""); omniout_str(ALWAYS, ""); omniout_str(ALWAYS, ""); omniout_str(ALWAYS, "glob_type_given_pole := 3;"); omniout_str(ALWAYS, ""); omniout_str(ALWAYS, "#END SECOND INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN OVERRIDE BLOCK"); omniout_str(ALWAYS, "glob_desired_digits_correct:=8;"); omniout_str(ALWAYS, "glob_max_minutes:=(3.0);"); omniout_str(ALWAYS, "glob_subiter_method:=3;"); omniout_str(ALWAYS, "glob_max_iter:=10000;"); omniout_str(ALWAYS, "glob_upper_ratio_limit:=c(1.000001);"); omniout_str(ALWAYS, "glob_lower_ratio_limit:=c(0.999999);"); omniout_str(ALWAYS, "glob_look_poles:=true;"); omniout_str(ALWAYS, "glob_h:=c(0.001);"); omniout_str(ALWAYS, "glob_display_interval:=c(0.01);"); omniout_str(ALWAYS, "#END OVERRIDE BLOCK"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN USER DEF BLOCK"); omniout_str(ALWAYS, "exact_soln_y := proc(x)"); omniout_str(ALWAYS, "return(c(2.0) - cos(c(x)) - c(x));"); omniout_str(ALWAYS, "end;"); omniout_str(ALWAYS, "next_delta := proc()"); omniout_str(ALWAYS, "global glob_nxt, x_delta;"); omniout_str(ALWAYS, ""); omniout_str(ALWAYS, "x_delta := [ 0.001 + 0.00004 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.0001 + 0.004 * I,"); omniout_str(ALWAYS, "0.003 + 0.006 * I,"); omniout_str(ALWAYS, "0.0001 + 0.005 * I,"); omniout_str(ALWAYS, "0.0001 + 0.003 * I,"); omniout_str(ALWAYS, "0.001 + 0.001 * I,"); omniout_str(ALWAYS, "0.001 + 0.003 * I,"); omniout_str(ALWAYS, "0.000 + 0.000 * I ];"); omniout_str(ALWAYS, ""); omniout_str(ALWAYS, "glob_nxt := glob_nxt + 1;"); omniout_str(ALWAYS, "it := x_delta[glob_nxt];"); omniout_str(ALWAYS, "return it;"); omniout_str(ALWAYS, "end;"); omniout_str(ALWAYS, "#END USER DEF BLOCK"); omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"); glob_unchanged_h_cnt := 0; glob_warned := false; glob_warned2 := false; glob_small_float := glob__0; glob_smallish_float := glob__0; glob_large_float := c(0.10*10^101); glob_larger_float := c(0.11*10^101); glob_almost_1 := c(0.99); x_start := 0.1 + 0.1*I; x_end := 99.0 + 99.0*I; array_y_init[1] := exact_soln_y(x_start); glob_look_poles := true; glob_type_given_pole := 3; glob_desired_digits_correct := 8; glob_max_minutes := 3.0; glob_subiter_method := 3; glob_max_iter := 10000; glob_upper_ratio_limit := c(1.000001); glob_lower_ratio_limit := c(0.999999); glob_look_poles := true; glob_h := c(0.001); glob_display_interval := c(0.01); glob_last_good_h := glob_h; glob_max_sec := 60.0*glob_max_minutes + 3600.0*glob_max_hours; found_h := true; glob_h := next_delta(); if float_abs(glob_min_pole_est)*glob_ratio_of_radius < float_abs(glob_h) then h_new := glob_check_sign*glob_min_pole_est*glob_ratio_of_radius; omniout_str(ALWAYS, "SETTING H FOR POLE"); glob_h_reason := 6; if glob_check_sign*h_new < glob_check_sign*glob_min_h then omniout_str(ALWAYS, "SETTING H FOR MIN H"); h_new := glob_min_h; glob_h_reason := 5 end if; term := 1; ratio := c(1.0); while term <= ATS_MAX_TERMS do array_y[term] := array_y[term]*ratio; array_y_higher[1, term] := array_y_higher[1, term]*ratio; array_x[term] := array_x[term]*ratio; ratio := ratio*h_new/float_abs(glob_h); term := term + 1 end do; glob_h := h_new end if; if glob_html_log then html_log_file := fopen("entry.html", WRITE, TEXT) end if; found_h := true; if found_h then omniout_str(ALWAYS, "START of Soultion"); array_x[1] := c(x_start); array_x[2] := c(glob_h); glob_next_display := c(x_start); glob_min_pole_est := glob_larger_float; glob_least_given_sing := glob_larger_float; glob_least_ratio_sing := glob_larger_float; glob_least_3_sing := glob_larger_float; glob_least_6_sing := glob_larger_float; order_diff := 1; term_no := 1; while term_no <= order_diff do array_y[term_no] := array_y_init[term_no]* expt(glob_h, c(term_no - 1))/c(factorial_1(term_no - 1)); term_no := term_no + 1 end do; rows := order_diff; r_order := 1; while r_order <= rows do term_no := 1; while term_no <= rows - r_order + 1 do it := term_no + r_order - 1; if term_no < ATS_MAX_TERMS then array_y_higher[r_order, term_no] := array_y_init[it]* expt(glob_h, c(term_no - 1))/ c(factorial_1(term_no - 1)) end if; term_no := term_no + 1 end do; r_order := r_order + 1 end do; current_iter := 1; glob_clock_start_sec := elapsed_time_seconds(); glob_clock_sec := elapsed_time_seconds(); glob_iter := 0; omniout_str(DEBUGL, " "); glob_reached_optimal_h := true; found_h := true; glob_h := next_delta(); if float_abs(glob_min_pole_est)*glob_ratio_of_radius < float_abs(glob_h) then h_new := glob_check_sign*glob_min_pole_est*glob_ratio_of_radius ; omniout_str(ALWAYS, "SETTING H FOR POLE"); glob_h_reason := 6; if glob_check_sign*h_new < glob_check_sign*glob_min_h then omniout_str(ALWAYS, "SETTING H FOR MIN H"); h_new := glob_min_h; glob_h_reason := 5 end if; term := 1; ratio := c(1.0); while term <= ATS_MAX_TERMS do array_y[term] := array_y[term]*ratio; array_y_higher[1, term] := array_y_higher[1, term]*ratio; array_x[term] := array_x[term]*ratio; ratio := ratio*h_new/float_abs(glob_h); term := term + 1 end do; glob_h := h_new end if; glob_optimal_clock_start_sec := elapsed_time_seconds(); while glob_iter < glob_max_iter and (glob_iter < 10 or not (Re(glob_h) = 0. and Im(glob_h) = 0.)) do omniout_str(INFO, " "); found_h := true; glob_h := next_delta(); if float_abs(glob_min_pole_est)*glob_ratio_of_radius < float_abs(glob_h) then h_new := glob_check_sign*glob_min_pole_est*glob_ratio_of_radius; omniout_str(ALWAYS, "SETTING H FOR POLE"); glob_h_reason := 6; if glob_check_sign*h_new < glob_check_sign*glob_min_h then omniout_str(ALWAYS, "SETTING H FOR MIN H"); h_new := glob_min_h; glob_h_reason := 5 end if; term := 1; ratio := c(1.0); while term <= ATS_MAX_TERMS do array_y[term] := array_y[term]*ratio; array_y_higher[1, term] := array_y_higher[1, term]*ratio; array_x[term] := array_x[term]*ratio; ratio := ratio*h_new/float_abs(glob_h); term := term + 1 end do; glob_h := h_new end if; glob_iter := glob_iter + 1; glob_clock_sec := elapsed_time_seconds(); atomall(); if not (Re(glob_h) = 0. and Im(glob_h) = 0.) then display_alot(current_iter) end if; if glob_look_poles and not (Re(glob_h) = 0. and Im(glob_h) = 0.) then check_for_pole() end if; glob_next_display := glob_next_display + glob_display_interval; array_x[1] := array_x[1] + glob_h; array_x[2] := glob_h; order_diff := 2; ord := 2; calc_term := 1; iii := ATS_MAX_TERMS; while calc_term <= iii do array_y_higher_work[2, iii] := array_y_higher[2, iii]/( expt(glob_h, c(calc_term - 1))* c(factorial_3(iii - calc_term, iii - 1))); iii := iii - 1 end do; temp_sum := glob__0; ord := 2; calc_term := 1; iii := ATS_MAX_TERMS; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, c(calc_term - 1))/ c(factorial_1(calc_term - 1)); ord := 1; calc_term := 2; iii := ATS_MAX_TERMS; while calc_term <= iii do array_y_higher_work[1, iii] := array_y_higher[1, iii]/( expt(glob_h, c(calc_term - 1))* c(factorial_3(iii - calc_term, iii - 1))); iii := iii - 1 end do; temp_sum := glob__0; ord := 1; calc_term := 2; iii := ATS_MAX_TERMS; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, c(calc_term - 1))/ c(factorial_1(calc_term - 1)); ord := 1; calc_term := 1; iii := ATS_MAX_TERMS; while calc_term <= iii do array_y_higher_work[1, iii] := array_y_higher[1, iii]/( expt(glob_h, c(calc_term - 1))* c(factorial_3(iii - calc_term, iii - 1))); iii := iii - 1 end do; temp_sum := glob__0; ord := 1; calc_term := 1; iii := ATS_MAX_TERMS; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, c(calc_term - 1))/ c(factorial_1(calc_term - 1)); term_no := ATS_MAX_TERMS; while 1 <= term_no do array_y[term_no] := array_y_higher_work2[1, term_no]; ord := 1; while ord <= order_diff do array_y_higher[ord, term_no] := array_y_higher_work2[ord, term_no]; ord := ord + 1 end do; term_no := term_no - 1 end do end do; omniout_str(ALWAYS, "Finished!"); if glob_max_iter <= glob_iter then omniout_str(ALWAYS, "Maximum Iterations Reached before Solution Completed!") end if; if glob_max_sec <= elapsed_time_seconds() - glob_orig_start_sec then omniout_str(ALWAYS, "Maximum Time Reached before Solution Completed!") end if; glob_clock_sec := elapsed_time_seconds(); omniout_str(INFO, "diff ( y , x , 1 ) = sin ( x ) - 1 , 0 ; "); omniout_int(INFO, "Iterations ", 32, glob_iter, 4, " "); prog_report(x_start, x_end); if glob_html_log then logstart(html_log_file); logitem_str(html_log_file, "2017-11-26T16:38:41-06:00"); logitem_str(html_log_file, "Maple"); logitem_str(html_log_file, "sub_sin_c"); logitem_str(html_log_file, "diff ( y , x , 1 ) = sin ( x ) - 1 , 0 ; "); logitem_complex(html_log_file, x_start); logitem_complex(html_log_file, x_end); logitem_complex(html_log_file, array_x[1]); logitem_complex(html_log_file, glob_h); logitem_h_reason(html_log_file); logitem_integer(html_log_file, Digits); glob_desired_digits_correct := 0.; logitem_float(html_log_file, glob_desired_digits_correct); if array_est_digits[1] <> -16 then logitem_integer(html_log_file, array_est_digits[1]) else logitem_str(html_log_file, "Unknown") end if; if glob_min_good_digits <> -16 then logitem_integer(html_log_file, glob_min_good_digits) else logitem_str(html_log_file, "Unknown") end if; if glob_good_digits <> -16 then logitem_integer(html_log_file, glob_good_digits) else logitem_str(html_log_file, "Unknown") end if; logitem_str(html_log_file, "NA"); logitem_str(html_log_file, "NA"); logitem_integer(html_log_file, ATS_MAX_TERMS); if glob_type_given_pole = 0 then logitem_str(html_log_file, "Not Given"); logitem_str(html_log_file, "NA") elif glob_type_given_pole = 4 then logitem_str(html_log_file, "No Solution"); logitem_str(html_log_file, "NA") elif glob_type_given_pole = 5 then logitem_str(html_log_file, "Some Pole"); logitem_str(html_log_file, "????") elif glob_type_given_pole = 3 then logitem_str(html_log_file, "No Pole"); logitem_str(html_log_file, "NA") elif glob_type_given_pole = 1 then logitem_str(html_log_file, "Real Sing"); logitem_float(html_log_file, glob_least_given_sing) elif glob_type_given_pole = 2 then logitem_str(html_log_file, "Complex Sing"); logitem_float(html_log_file, glob_least_given_sing) end if; if glob_least_ratio_sing < glob_large_float then glob_least_ratio_sing := 0; logitem_float(html_log_file, glob_least_ratio_sing) else logitem_str(html_log_file, "NONE") end if; if glob_least_3_sing < glob_large_float then logitem_float(html_log_file, glob_least_3_sing) else logitem_str(html_log_file, "NONE") end if; if glob_least_6_sing < glob_large_float then glob_least_6_sing := 0.; logitem_float(html_log_file, glob_least_6_sing) else logitem_str(html_log_file, "NONE") end if; logitem_integer(html_log_file, glob_iter); logitem_time(html_log_file, glob_clock_sec); if c(glob_percent_done) < glob__100 then logitem_time(html_log_file, glob_total_exp_sec); 0 else logitem_str(html_log_file, "Done"); 0 end if; log_revs(html_log_file, " 309 "); logitem_str(html_log_file, "sub_sin_c diffeq.mxt"); logitem_str(html_log_file, "sub_sin_c maple results"); logitem_str(html_log_file, "OK"); logend(html_log_file) end if; if glob_html_log then fclose(html_log_file) end if end if end proc # End Function number 12 > main(); memory used=3.8MB, alloc=40.3MB, time=0.08 ##############ECHO OF PROBLEM################# ##############temp/sub_sin_cpostcpx.cpx################# diff ( y , x , 1 ) = sin ( x ) - 1 , 0 ; ! #BEGIN FIRST INPUT BLOCK Digits:=32; max_terms:=40; ! #END FIRST INPUT BLOCK #BEGIN SECOND INPUT BLOCK x_start := 0.1 + 0.1 * I; x_end := 99.0 + 99.0 * I; array_y_init[0 + 1] := exact_soln_y(x_start); glob_look_poles := true; glob_type_given_pole := 3; #END SECOND INPUT BLOCK #BEGIN OVERRIDE BLOCK glob_desired_digits_correct:=8; glob_max_minutes:=(3.0); glob_subiter_method:=3; glob_max_iter:=10000; glob_upper_ratio_limit:=c(1.000001); glob_lower_ratio_limit:=c(0.999999); glob_look_poles:=true; glob_h:=c(0.001); glob_display_interval:=c(0.01); #END OVERRIDE BLOCK ! #BEGIN USER DEF BLOCK exact_soln_y := proc(x) return(c(2.0) - cos(c(x)) - c(x)); end; next_delta := proc() global glob_nxt, x_delta; x_delta := [ 0.001 + 0.00004 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.0001 + 0.004 * I, 0.003 + 0.006 * I, 0.0001 + 0.005 * I, 0.0001 + 0.003 * I, 0.001 + 0.001 * I, 0.001 + 0.003 * I, 0.000 + 0.000 * I ]; glob_nxt := glob_nxt + 1; it := x_delta[glob_nxt]; return it; end; #END USER DEF BLOCK #######END OF ECHO OF PROBLEM################# START of Soultion x[1] = 0.1 0.1 h = 0.0001 0.005 y[1] (numeric) = 0.900016666663 -0.0900000111111 y[1] (closed_form) = 0.900016666663 -0.0900000111111 absolute error = 0 relative error = 0 % Correct digits = 30 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1768 Order of pole (three term test) = 32 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1001 0.105 h = 0.0001 0.003 y[1] (numeric) = 0.899418376715 -0.0944878281062 y[1] (closed_form) = 0.899415876529 -0.0944877523224 absolute error = 2.501e-06 relative error = 0.0002766 % Correct digits = 6 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.08713 Order of pole (three term test) = 32 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1002 0.108 h = 0.001 0.001 y[1] (numeric) = 0.899006930094 -0.097175428216 y[1] (closed_form) = 0.899007431111 -0.0971754848705 absolute error = 5.042e-07 relative error = 5.576e-05 % Correct digits = 6 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.06949 Order of pole (three term test) = 32 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1012 0.109 h = 0.001 0.003 y[1] (numeric) = 0.897998444792 -0.097965577294 y[1] (closed_form) = 0.898000391065 -0.0979662003917 absolute error = 2.044e-06 relative error = 0.0002262 % Correct digits = 6 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.333 Order of pole (three term test) = 32 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1022 0.112 h = 0.0001 0.004 y[1] (numeric) = 0.896773122758 -0.100550023116 y[1] (closed_form) = 0.89677207764 -0.100549611608 absolute error = 1.123e-06 relative error = 0.0001245 % Correct digits = 6 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1921 Order of pole (three term test) = 32 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1023 0.116 h = 0.003 0.006 y[1] (numeric) = 0.896230862663 -0.104125985966 y[1] (closed_form) = 0.896227749451 -0.104127302661 absolute error = 3.380e-06 relative error = 0.0003746 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2598 Order of pole (three term test) = 32 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1053 0.122 h = 0.0001 0.005 y[1] (numeric) = 0.892833582582 -0.10915571882 y[1] (closed_form) = 0.892828960839 -0.109145294598 absolute error = 1.140e-05 relative error = 0.001268 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1205 Order of pole (three term test) = 32 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1054 0.127 h = 0.0001 0.003 y[1] (numeric) = 0.892121267282 -0.113606101316 y[1] (closed_form) = 0.892118908129 -0.113603024752 absolute error = 3.877e-06 relative error = 0.0004311 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.0994 Order of pole (three term test) = 32 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1055 0.13 h = 0.001 0.001 y[1] (numeric) = 0.891644458005 -0.116274771401 y[1] (closed_form) = 0.891645105931 -0.116271836184 absolute error = 3.006e-06 relative error = 0.0003343 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.07919 Order of pole (three term test) = 31.99 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=33.3MB, alloc=40.3MB, time=0.42 x[1] = 0.1065 0.131 h = 0.001 0.003 y[1] (numeric) = 0.890619578967 -0.117037359592 y[1] (closed_form) = 0.890621673573 -0.1170349962 absolute error = 3.158e-06 relative error = 0.0003516 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.379 Order of pole (three term test) = 31.99 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1075 0.134 h = 0.0001 0.004 y[1] (numeric) = 0.889333924371 -0.119583072539 y[1] (closed_form) = 0.889333024228 -0.119579663577 absolute error = 3.526e-06 relative error = 0.0003929 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2183 Order of pole (three term test) = 31.99 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1076 0.138 h = 0.003 0.006 y[1] (numeric) = 0.888704309907 -0.123134435094 y[1] (closed_form) = 0.888701331959 -0.123132752047 absolute error = 3.421e-06 relative error = 0.0003813 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2949 Order of pole (three term test) = 31.99 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1106 0.144 h = 0.0001 0.005 y[1] (numeric) = 0.885191931864 -0.128064519064 y[1] (closed_form) = 0.885187477121 -0.128051063252 absolute error = 1.417e-05 relative error = 0.001585 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1361 Order of pole (three term test) = 31.99 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1107 0.149 h = 0.0001 0.003 y[1] (numeric) = 0.884370219532 -0.132484475966 y[1] (closed_form) = 0.884368010165 -0.132478392841 absolute error = 6.472e-06 relative error = 0.0007237 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1122 Order of pole (three term test) = 31.99 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1108 0.152 h = 0.001 0.001 y[1] (numeric) = 0.883827953076 -0.135133977087 y[1] (closed_form) = 0.883828758002 -0.135128044983 absolute error = 5.986e-06 relative error = 0.0006696 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.08927 Order of pole (three term test) = 31.99 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1118 0.153 h = 0.001 0.003 y[1] (numeric) = 0.882786724327 -0.135868890347 y[1] (closed_form) = 0.882788977884 -0.135863536049 absolute error = 5.809e-06 relative error = 0.0006504 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4269 Order of pole (three term test) = 31.99 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1128 0.156 h = 0.0001 0.004 y[1] (numeric) = 0.881440712881 -0.138375596678 y[1] (closed_form) = 0.881439967207 -0.138369184671 absolute error = 6.455e-06 relative error = 0.0007235 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2455 Order of pole (three term test) = 31.99 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1129 0.16 h = 0.003 0.006 y[1] (numeric) = 0.880723607214 -0.141902030878 y[1] (closed_form) = 0.880720772677 -0.141897342801 absolute error = 5.478e-06 relative error = 0.0006141 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3312 Order of pole (three term test) = 31.99 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1159 0.166 h = 0.0001 0.005 y[1] (numeric) = 0.877096147128 -0.14673185867 y[1] (closed_form) = 0.877091869603 -0.146715360267 absolute error = 1.704e-05 relative error = 0.001917 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1524 Order of pole (three term test) = 31.99 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.116 0.171 h = 0.0001 0.003 y[1] (numeric) = 0.876164843995 -0.151120957208 y[1] (closed_form) = 0.876162793937 -0.151111860405 absolute error = 9.325e-06 relative error = 0.001049 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1254 Order of pole (three term test) = 31.98 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1161 0.174 h = 0.001 0.001 y[1] (numeric) = 0.875557000464 -0.153751026419 y[1] (closed_form) = 0.875557973251 -0.153742091084 absolute error = 8.988e-06 relative error = 0.001011 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.09967 Order of pole (three term test) = 31.98 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1171 0.175 h = 0.001 0.003 y[1] (numeric) = 0.87449946503 -0.154458134274 y[1] (closed_form) = 0.874501888924 -0.154449783326 absolute error = 8.696e-06 relative error = 0.0009792 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4762 Order of pole (three term test) = 31.98 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1181 0.178 h = 0.0001 0.004 y[1] (numeric) = 0.873093054024 -0.156925528391 y[1] (closed_form) = 0.873092473085 -0.156916106413 absolute error = 9.440e-06 relative error = 0.001064 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2735 Order of pole (three term test) = 31.98 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1182 0.182 h = 0.003 0.006 y[1] (numeric) = 0.872288286246 -0.160426674406 y[1] (closed_form) = 0.872285604031 -0.160418974672 absolute error = 8.154e-06 relative error = 0.0009193 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3686 Order of pole (three term test) = 31.98 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1212 0.188 h = 0.0001 0.005 y[1] (numeric) = 0.868545730948 -0.165155566176 y[1] (closed_form) = 0.86854164165 -0.165136012836 absolute error = 1.998e-05 relative error = 0.00226 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1691 Order of pole (three term test) = 31.98 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1213 0.193 h = 0.0001 0.003 y[1] (numeric) = 0.867504600478 -0.169513333951 y[1] (closed_form) = 0.867502720026 -0.169501215018 absolute error = 1.226e-05 relative error = 0.001387 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1389 Order of pole (three term test) = 31.98 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1214 0.196 h = 0.001 0.001 y[1] (numeric) = 0.866831034608 -0.172123684156 y[1] (closed_form) = 0.866832186894 -0.172111737915 absolute error = 1.200e-05 relative error = 0.001358 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1104 Order of pole (three term test) = 31.98 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=77.8MB, alloc=44.3MB, time=0.96 x[1] = 0.1224 0.197 h = 0.0001 0.004 y[1] (numeric) = 0.865757234565 -0.172802839651 y[1] (closed_form) = 0.86575984096 -0.172791484983 absolute error = 1.165e-05 relative error = 0.00132 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6668 Order of pole (three term test) = 31.98 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1225 0.201 h = 0.003 0.006 y[1] (numeric) = 0.864880585263 -0.176283152754 y[1] (closed_form) = 0.86487703296 -0.176273320056 absolute error = 1.045e-05 relative error = 0.001184 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4014 Order of pole (three term test) = 31.98 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1255 0.207 h = 0.0001 0.005 y[1] (numeric) = 0.861037712475 -0.180925933901 y[1] (closed_form) = 0.861032785087 -0.180904205291 absolute error = 2.228e-05 relative error = 0.002532 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1838 Order of pole (three term test) = 31.97 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1256 0.212 h = 0.0001 0.003 y[1] (numeric) = 0.859901442617 -0.185257637352 y[1] (closed_form) = 0.859898707918 -0.185243374747 absolute error = 1.452e-05 relative error = 0.001651 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1508 Order of pole (three term test) = 31.97 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1257 0.215 h = 0.001 0.001 y[1] (numeric) = 0.859170929459 -0.187851551339 y[1] (closed_form) = 0.859171237236 -0.187837471579 absolute error = 1.408e-05 relative error = 0.001601 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1198 Order of pole (three term test) = 31.97 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1267 0.216 h = 0.001 0.003 y[1] (numeric) = 0.858082826733 -0.188506709151 y[1] (closed_form) = 0.858084591718 -0.188493227592 absolute error = 1.360e-05 relative error = 0.001548 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.5716 Order of pole (three term test) = 31.97 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1277 0.219 h = 0.0001 0.004 y[1] (numeric) = 0.856563371307 -0.190900750821 y[1] (closed_form) = 0.856562117862 -0.190886170372 absolute error = 1.463e-05 relative error = 0.001668 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3277 Order of pole (three term test) = 31.97 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1278 0.223 h = 0.003 0.006 y[1] (numeric) = 0.855594600373 -0.194354824674 y[1] (closed_form) = 0.855591218917 -0.1943419643 absolute error = 1.330e-05 relative error = 0.001516 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4407 Order of pole (three term test) = 31.97 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1308 0.229 h = 0.0001 0.005 y[1] (numeric) = 0.851636520825 -0.198895211546 y[1] (closed_form) = 0.851631804093 -0.198870401275 absolute error = 2.525e-05 relative error = 0.002888 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2013 Order of pole (three term test) = 31.97 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1309 0.234 h = 0.0001 0.003 y[1] (numeric) = 0.850389862905 -0.203194602814 y[1] (closed_form) = 0.850387318923 -0.20317729864 absolute error = 1.749e-05 relative error = 0.002 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1651 Order of pole (three term test) = 31.96 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.131 0.237 h = 0.001 0.001 y[1] (numeric) = 0.849593285487 -0.205768201153 y[1] (closed_form) = 0.849593796381 -0.205751092502 absolute error = 1.712e-05 relative error = 0.001958 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.131 Order of pole (three term test) = 31.96 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.132 0.238 h = 0.001 0.003 y[1] (numeric) = 0.848488991885 -0.206395088616 y[1] (closed_form) = 0.848490963974 -0.206378586483 absolute error = 1.662e-05 relative error = 0.001903 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6248 Order of pole (three term test) = 31.96 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.133 0.241 h = 0.0001 0.004 y[1] (numeric) = 0.84690890852 -0.208748767707 y[1] (closed_form) = 0.846907853359 -0.208731149951 absolute error = 1.765e-05 relative error = 0.002023 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3579 Order of pole (three term test) = 31.96 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1331 0.245 h = 0.003 0.006 y[1] (numeric) = 0.845851792813 -0.212176350026 y[1] (closed_form) = 0.845848593324 -0.21216045151 absolute error = 1.622e-05 relative error = 0.00186 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4809 Order of pole (three term test) = 31.96 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1361 0.251 h = 0.0001 0.005 y[1] (numeric) = 0.841778410102 -0.216613453712 y[1] (closed_form) = 0.841773917325 -0.216585545555 absolute error = 2.827e-05 relative error = 0.003252 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2193 Order of pole (three term test) = 31.96 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1362 0.256 h = 0.0001 0.003 y[1] (numeric) = 0.840421004728 -0.220879945951 y[1] (closed_form) = 0.840418664001 -0.220859587912 absolute error = 2.049e-05 relative error = 0.002358 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1796 Order of pole (three term test) = 31.95 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1363 0.259 h = 0.001 0.001 y[1] (numeric) = 0.839558144907 -0.223432871783 y[1] (closed_form) = 0.839558872806 -0.223412722746 absolute error = 2.016e-05 relative error = 0.002321 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1425 Order of pole (three term test) = 31.95 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1373 0.26 h = 0.001 0.003 y[1] (numeric) = 0.838437699897 -0.224031294464 y[1] (closed_form) = 0.838439893501 -0.224011760878 absolute error = 1.966e-05 relative error = 0.002265 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6793 Order of pole (three term test) = 31.95 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=122.4MB, alloc=44.3MB, time=1.50 x[1] = 0.1383 0.263 h = 0.0001 0.004 y[1] (numeric) = 0.836796874853 -0.226344181016 y[1] (closed_form) = 0.836796031267 -0.226323513862 absolute error = 2.068e-05 relative error = 0.002386 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3888 Order of pole (three term test) = 31.95 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1384 0.267 h = 0.003 0.006 y[1] (numeric) = 0.8356511115 -0.229744787607 y[1] (closed_form) = 0.835648105891 -0.229725839141 absolute error = 1.919e-05 relative error = 0.002214 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.5221 Order of pole (three term test) = 31.95 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1414 0.273 h = 0.0001 0.005 y[1] (numeric) = 0.831462300742 -0.234077645214 y[1] (closed_form) = 0.831458046043 -0.234046621585 absolute error = 3.131e-05 relative error = 0.003625 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2377 Order of pole (three term test) = 31.95 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1415 0.278 h = 0.0001 0.003 y[1] (numeric) = 0.829993745701 -0.238310610754 y[1] (closed_form) = 0.829991621572 -0.238287185207 absolute error = 2.352e-05 relative error = 0.002724 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1946 Order of pole (three term test) = 31.94 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1416 0.281 h = 0.001 0.001 y[1] (numeric) = 0.829064359937 -0.240842482335 y[1] (closed_form) = 0.829065319535 -0.24081928008 absolute error = 2.322e-05 relative error = 0.00269 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1542 Order of pole (three term test) = 31.94 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1426 0.282 h = 0.001 0.003 y[1] (numeric) = 0.827927802261 -0.241412229055 y[1] (closed_form) = 0.827930232598 -0.241389651808 absolute error = 2.271e-05 relative error = 0.002633 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.7352 Order of pole (three term test) = 31.94 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1436 0.285 h = 0.0001 0.004 y[1] (numeric) = 0.826226103618 -0.243683860347 y[1] (closed_form) = 0.826225485705 -0.24366013036 absolute error = 2.374e-05 relative error = 0.002756 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4206 Order of pole (three term test) = 31.94 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1437 0.289 h = 0.003 0.006 y[1] (numeric) = 0.82499135562 -0.247056974042 y[1] (closed_form) = 0.824988556603 -0.24703496247 absolute error = 2.219e-05 relative error = 0.002577 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.5644 Order of pole (three term test) = 31.94 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1467 0.295 h = 0.0001 0.005 y[1] (numeric) = 0.820686963616 -0.25128454823 y[1] (closed_form) = 0.820682961955 -0.251250390178 absolute error = 3.439e-05 relative error = 0.004007 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2566 Order of pole (three term test) = 31.94 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1468 0.3 h = 0.0001 0.003 y[1] (numeric) = 0.819106813838 -0.25548331819 y[1] (closed_form) = 0.819104920467 -0.255456810146 absolute error = 2.658e-05 relative error = 0.003097 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2099 Order of pole (three term test) = 31.93 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1469 0.303 h = 0.001 0.001 y[1] (numeric) = 0.818110633172 -0.257993728662 y[1] (closed_form) = 0.818111839981 -0.257967459021 absolute error = 2.630e-05 relative error = 0.003066 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1663 Order of pole (three term test) = 31.93 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1479 0.304 h = 0.0001 0.004 y[1] (numeric) = 0.816958000912 -0.258534571411 y[1] (closed_form) = 0.81696068402 -0.258508936963 absolute error = 2.577e-05 relative error = 0.003008 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.003 Order of pole (three term test) = 31.93 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.148 0.308 h = 0.003 0.006 y[1] (numeric) = 0.81565016265 -0.261884933827 y[1] (closed_form) = 0.815646509926 -0.26186073088 absolute error = 2.448e-05 relative error = 0.002857 % Correct digits = 5 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6016 Order of pole (three term test) = 31.93 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.151 0.314 h = 0.0001 0.005 y[1] (numeric) = 0.811244865647 -0.266022375476 y[1] (closed_form) = 0.811240051141 -0.265985959411 absolute error = 3.673e-05 relative error = 0.004303 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2733 Order of pole (three term test) = 31.93 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1511 0.319 h = 0.0001 0.003 y[1] (numeric) = 0.809567850729 -0.270192480963 y[1] (closed_form) = 0.80956512536 -0.270163763067 absolute error = 2.885e-05 relative error = 0.00338 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2234 Order of pole (three term test) = 31.92 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1512 0.322 h = 0.001 0.001 y[1] (numeric) = 0.80851367772 -0.272684873761 y[1] (closed_form) = 0.808514067975 -0.272656407724 absolute error = 2.847e-05 relative error = 0.003337 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1769 Order of pole (three term test) = 31.92 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1522 0.323 h = 0.001 0.003 y[1] (numeric) = 0.807346890725 -0.273200832304 y[1] (closed_form) = 0.807348762616 -0.273173010658 absolute error = 2.788e-05 relative error = 0.003272 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.843 Order of pole (three term test) = 31.92 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1532 0.326 h = 0.0001 0.004 y[1] (numeric) = 0.805531001347 -0.275395082071 y[1] (closed_form) = 0.80552980116 -0.275366068874 absolute error = 2.904e-05 relative error = 0.003411 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4817 Order of pole (three term test) = 31.92 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=166.9MB, alloc=44.3MB, time=2.03 x[1] = 0.1533 0.33 h = 0.003 0.006 y[1] (numeric) = 0.80412931613 -0.278716618236 y[1] (closed_form) = 0.804125895617 -0.278689323941 absolute error = 2.751e-05 relative error = 0.003232 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6459 Order of pole (three term test) = 31.92 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1563 0.336 h = 0.0001 0.005 y[1] (numeric) = 0.799608063572 -0.282746648913 y[1] (closed_form) = 0.799603531936 -0.282707059309 absolute error = 3.985e-05 relative error = 0.004698 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2931 Order of pole (three term test) = 31.91 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1564 0.341 h = 0.0001 0.003 y[1] (numeric) = 0.797818502369 -0.286881209603 y[1] (closed_form) = 0.797816036086 -0.286849377525 absolute error = 3.193e-05 relative error = 0.003766 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2394 Order of pole (three term test) = 31.91 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1565 0.344 h = 0.001 0.001 y[1] (numeric) = 0.796696960665 -0.289351320439 y[1] (closed_form) = 0.796697629 -0.289319756872 absolute error = 3.157e-05 relative error = 0.003725 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.1896 Order of pole (three term test) = 31.91 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1575 0.345 h = 0.001 0.003 y[1] (numeric) = 0.795514165247 -0.28983790517 y[1] (closed_form) = 0.795516321764 -0.289806997356 absolute error = 3.098e-05 relative error = 0.003659 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.9032 Order of pole (three term test) = 31.91 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1585 0.348 h = 0.0001 0.004 y[1] (numeric) = 0.793636918063 -0.291989395053 y[1] (closed_form) = 0.793635988217 -0.29195727296 absolute error = 3.214e-05 relative error = 0.0038 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.5159 Order of pole (three term test) = 31.91 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1586 0.352 h = 0.003 0.006 y[1] (numeric) = 0.792145087841 -0.295281779213 y[1] (closed_form) = 0.792141914573 -0.29525137654 absolute error = 3.057e-05 relative error = 0.003616 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6914 Order of pole (three term test) = 31.9 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1616 0.358 h = 0.0001 0.005 y[1] (numeric) = 0.787507645586 -0.299203145981 y[1] (closed_form) = 0.787503414215 -0.299160359943 absolute error = 4.299e-05 relative error = 0.005104 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3135 Order of pole (three term test) = 31.9 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1617 0.363 h = 0.0001 0.003 y[1] (numeric) = 0.785604969623 -0.303301373265 y[1] (closed_form) = 0.785602778956 -0.303266408128 absolute error = 3.503e-05 relative error = 0.00416 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.256 Order of pole (three term test) = 31.9 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1618 0.366 h = 0.001 0.001 y[1] (numeric) = 0.784415717059 -0.305748722309 y[1] (closed_form) = 0.78441668137 -0.305714043188 absolute error = 3.469e-05 relative error = 0.004121 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2026 Order of pole (three term test) = 31.89 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1628 0.367 h = 0.001 0.003 y[1] (numeric) = 0.783216949616 -0.306205656519 y[1] (closed_form) = 0.783219409178 -0.30617164516 absolute error = 3.410e-05 relative error = 0.004055 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.965 Order of pole (three term test) = 31.89 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1638 0.37 h = 0.0001 0.004 y[1] (numeric) = 0.781278142556 -0.308313795074 y[1] (closed_form) = 0.781277500347 -0.308278545434 absolute error = 3.526e-05 relative error = 0.004198 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.5511 Order of pole (three term test) = 31.89 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1639 0.374 h = 0.003 0.006 y[1] (numeric) = 0.779695697791 -0.311576380012 y[1] (closed_form) = 0.779692787641 -0.311542850569 absolute error = 3.366e-05 relative error = 0.004008 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.7383 Order of pole (three term test) = 31.89 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1669 0.38 h = 0.0001 0.005 y[1] (numeric) = 0.774941804065 -0.315387753294 y[1] (closed_form) = 0.774937891238 -0.315341746539 absolute error = 4.617e-05 relative error = 0.005519 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3345 Order of pole (three term test) = 31.88 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.167 0.385 h = 0.0001 0.003 y[1] (numeric) = 0.772925401772 -0.319448815618 y[1] (closed_form) = 0.772923504104 -0.31941069718 absolute error = 3.817e-05 relative error = 0.004564 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.273 Order of pole (three term test) = 31.88 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1671 0.388 h = 0.001 0.001 y[1] (numeric) = 0.771668070621 -0.32187289687 y[1] (closed_form) = 0.771669349663 -0.32183508282 absolute error = 3.784e-05 relative error = 0.004525 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.216 Order of pole (three term test) = 31.88 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1681 0.389 h = 0.001 0.003 y[1] (numeric) = 0.770453367182 -0.322299886607 y[1] (closed_form) = 0.770456149072 -0.32226275298 absolute error = 3.724e-05 relative error = 0.004459 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.029 Order of pole (three term test) = 31.88 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1691 0.392 h = 0.0001 0.004 y[1] (numeric) = 0.768452780221 -0.324364048268 y[1] (closed_form) = 0.768452443805 -0.32432565107 absolute error = 3.840e-05 relative error = 0.004604 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.5872 Order of pole (three term test) = 31.88 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1692 0.396 h = 0.003 0.006 y[1] (numeric) = 0.76677921701 -0.327596152046 y[1] (closed_form) = 0.7667765867 -0.32755947608 absolute error = 3.677e-05 relative error = 0.00441 % Correct digits = 4 memory used=211.4MB, alloc=44.3MB, time=2.57 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.7864 Order of pole (three term test) = 31.87 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1722 0.402 h = 0.0001 0.005 y[1] (numeric) = 0.7619085826 -0.331296124959 y[1] (closed_form) = 0.761905007491 -0.331246871808 absolute error = 4.938e-05 relative error = 0.005944 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.356 Order of pole (three term test) = 31.87 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1723 0.407 h = 0.0001 0.003 y[1] (numeric) = 0.759777799222 -0.335319147299 y[1] (closed_form) = 0.759776212807 -0.33527785395 absolute error = 4.132e-05 relative error = 0.004976 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2904 Order of pole (three term test) = 31.87 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1724 0.41 h = 0.001 0.001 y[1] (numeric) = 0.758451996144 -0.337719428276 y[1] (closed_form) = 0.758453609549 -0.337678458566 absolute error = 4.100e-05 relative error = 0.004939 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2298 Order of pole (three term test) = 31.86 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1734 0.411 h = 0.0001 0.004 y[1] (numeric) = 0.757221392457 -0.338116162218 y[1] (closed_form) = 0.757224516833 -0.338075886254 absolute error = 4.040e-05 relative error = 0.004871 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.384 Order of pole (three term test) = 31.86 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1735 0.415 h = 0.003 0.006 y[1] (numeric) = 0.755472864806 -0.341322950931 y[1] (closed_form) = 0.755469399924 -0.34128399683 absolute error = 3.911e-05 relative error = 0.004718 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.829 Order of pole (three term test) = 31.86 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1765 0.421 h = 0.0001 0.005 y[1] (numeric) = 0.750500140249 -0.344927243785 y[1] (closed_form) = 0.750495781103 -0.344875621036 absolute error = 5.181e-05 relative error = 0.006272 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3751 Order of pole (three term test) = 31.85 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1766 0.426 h = 0.0001 0.003 y[1] (numeric) = 0.748269875958 -0.348918162212 y[1] (closed_form) = 0.748267482885 -0.348874564402 absolute error = 4.366e-05 relative error = 0.005289 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3059 Order of pole (three term test) = 31.85 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1767 0.429 h = 0.001 0.001 y[1] (numeric) = 0.746884507318 -0.351298332326 y[1] (closed_form) = 0.746885335308 -0.351255075144 absolute error = 4.327e-05 relative error = 0.005242 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.242 Order of pole (three term test) = 31.85 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1777 0.43 h = 0.001 0.003 y[1] (numeric) = 0.745639879925 -0.351668949259 y[1] (closed_form) = 0.745642226469 -0.35162639772 absolute error = 4.262e-05 relative error = 0.005169 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.152 Order of pole (three term test) = 31.85 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1787 0.433 h = 0.0001 0.004 y[1] (numeric) = 0.743523145004 -0.353650239871 y[1] (closed_form) = 0.743522339136 -0.35360637445 absolute error = 4.387e-05 relative error = 0.005329 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6574 Order of pole (three term test) = 31.85 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1788 0.437 h = 0.003 0.006 y[1] (numeric) = 0.741678188554 -0.35682479079 y[1] (closed_form) = 0.741675036656 -0.356782649534 absolute error = 4.226e-05 relative error = 0.005135 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.8799 Order of pole (three term test) = 31.84 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1818 0.443 h = 0.0001 0.005 y[1] (numeric) = 0.73658809383 -0.360314861384 y[1] (closed_form) = 0.736584110173 -0.360259940471 absolute error = 5.507e-05 relative error = 0.006716 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3979 Order of pole (three term test) = 31.84 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1819 0.448 h = 0.0001 0.003 y[1] (numeric) = 0.734242103173 -0.364266003033 y[1] (closed_form) = 0.734240057382 -0.364219186193 absolute error = 4.686e-05 relative error = 0.005718 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3244 Order of pole (three term test) = 31.83 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.182 0.451 h = 0.001 0.001 y[1] (numeric) = 0.732787455229 -0.3666213158 y[1] (closed_form) = 0.732788656201 -0.366574860496 absolute error = 4.647e-05 relative error = 0.005672 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2566 Order of pole (three term test) = 31.83 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.183 0.452 h = 0.001 0.003 y[1] (numeric) = 0.731526989462 -0.366961050529 y[1] (closed_form) = 0.731529718099 -0.366915315435 absolute error = 4.582e-05 relative error = 0.005598 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.221 Order of pole (three term test) = 31.83 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.184 0.455 h = 0.0001 0.004 y[1] (numeric) = 0.729347737596 -0.368896386458 y[1] (closed_form) = 0.729347294043 -0.368849308434 absolute error = 4.708e-05 relative error = 0.00576 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6967 Order of pole (three term test) = 31.83 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1841 0.459 h = 0.003 0.006 y[1] (numeric) = 0.727410021172 -0.372038317077 y[1] (closed_form) = 0.727407201462 -0.371992964969 absolute error = 4.544e-05 relative error = 0.005562 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.9324 Order of pole (three term test) = 31.82 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1871 0.465 h = 0.0001 0.005 y[1] (numeric) = 0.722202188719 -0.375412533631 y[1] (closed_form) = 0.722198602357 -0.375354284836 absolute error = 5.836e-05 relative error = 0.00717 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4215 Order of pole (three term test) = 31.82 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=255.9MB, alloc=44.3MB, time=3.11 x[1] = 0.1872 0.47 h = 0.0001 0.003 y[1] (numeric) = 0.71973969231 -0.379322896499 y[1] (closed_form) = 0.7197380146 -0.379272835057 absolute error = 5.009e-05 relative error = 0.006157 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3435 Order of pole (three term test) = 31.81 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1873 0.473 h = 0.001 0.001 y[1] (numeric) = 0.718215297801 -0.381652742062 y[1] (closed_form) = 0.71821689395 -0.381603063988 absolute error = 4.970e-05 relative error = 0.006111 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2716 Order of pole (three term test) = 31.81 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1883 0.474 h = 0.001 0.003 y[1] (numeric) = 0.716939028891 -0.381961232811 y[1] (closed_form) = 0.716942162346 -0.381912290199 absolute error = 4.904e-05 relative error = 0.006037 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.293 Order of pole (three term test) = 31.81 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1893 0.477 h = 0.0001 0.004 y[1] (numeric) = 0.714696970732 -0.383849853631 y[1] (closed_form) = 0.714696911084 -0.383799537688 absolute error = 5.032e-05 relative error = 0.006202 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.7374 Order of pole (three term test) = 31.81 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1894 0.481 h = 0.003 0.006 y[1] (numeric) = 0.712665856595 -0.38695834415 y[1] (closed_form) = 0.712663389178 -0.386909756105 absolute error = 4.865e-05 relative error = 0.005999 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.9866 Order of pole (three term test) = 31.8 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1924 0.487 h = 0.0001 0.005 y[1] (numeric) = 0.707339892192 -0.390214994603 y[1] (closed_form) = 0.707336725887 -0.390153386784 absolute error = 6.169e-05 relative error = 0.007637 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4458 Order of pole (three term test) = 31.8 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1925 0.492 h = 0.0001 0.003 y[1] (numeric) = 0.704760067037 -0.394083530924 y[1] (closed_form) = 0.704758779132 -0.394030197915 absolute error = 5.335e-05 relative error = 0.006607 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3632 Order of pole (three term test) = 31.79 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1926 0.495 h = 0.001 0.001 y[1] (numeric) = 0.70316543284 -0.39638727155 y[1] (closed_form) = 0.703167447293 -0.396334344679 absolute error = 5.297e-05 relative error = 0.006562 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.2872 Order of pole (three term test) = 31.79 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1936 0.496 h = 0.001 0.003 y[1] (numeric) = 0.701873396104 -0.396664138615 y[1] (closed_form) = 0.701876958032 -0.396611963151 absolute error = 5.230e-05 relative error = 0.006487 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.367 Order of pole (three term test) = 31.79 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1946 0.499 h = 0.0001 0.004 y[1] (numeric) = 0.699568224561 -0.398505247952 y[1] (closed_form) = 0.69956857134 -0.398451667385 absolute error = 5.358e-05 relative error = 0.006655 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.7794 Order of pole (three term test) = 31.79 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1947 0.503 h = 0.003 0.006 y[1] (numeric) = 0.697443040188 -0.40157944154 y[1] (closed_form) = 0.697440946085 -0.401527591081 absolute error = 5.189e-05 relative error = 0.006448 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.043 Order of pole (three term test) = 31.78 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1977 0.509 h = 0.0001 0.005 y[1] (numeric) = 0.691998523172 -0.404716732682 y[1] (closed_form) = 0.691995800662 -0.40465173326 absolute error = 6.506e-05 relative error = 0.008116 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4709 Order of pole (three term test) = 31.78 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1978 0.514 h = 0.0001 0.003 y[1] (numeric) = 0.68930050254 -0.408542348255 y[1] (closed_form) = 0.689299627104 -0.408485715313 absolute error = 5.664e-05 relative error = 0.007069 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3836 Order of pole (three term test) = 31.77 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1979 0.517 h = 0.001 0.001 y[1] (numeric) = 0.687635109598 -0.410819317929 y[1] (closed_form) = 0.68763756643 -0.410763114851 absolute error = 5.626e-05 relative error = 0.007023 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3033 Order of pole (three term test) = 31.77 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1989 0.518 h = 0.0001 0.004 y[1] (numeric) = 0.686327340535 -0.411064163508 y[1] (closed_form) = 0.686331355543 -0.411008728487 absolute error = 5.558e-05 relative error = 0.006948 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.826 Order of pole (three term test) = 31.77 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.199 0.522 h = 0.003 0.006 y[1] (numeric) = 0.684124645875 -0.414109794872 y[1] (closed_form) = 0.68412173977 -0.414055550338 absolute error = 5.432e-05 relative error = 0.006793 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.092 Order of pole (three term test) = 31.77 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.202 0.528 h = 0.0001 0.005 y[1] (numeric) = 0.678576273442 -0.417144266408 y[1] (closed_form) = 0.678572800185 -0.417076755911 absolute error = 6.760e-05 relative error = 0.008487 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4932 Order of pole (three term test) = 31.76 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2021 0.533 h = 0.0001 0.003 y[1] (numeric) = 0.675775256645 -0.420933447868 y[1] (closed_form) = 0.675773603772 -0.420874386545 absolute error = 5.908e-05 relative error = 0.007422 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4018 Order of pole (three term test) = 31.75 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=300.3MB, alloc=44.3MB, time=3.65 x[1] = 0.2022 0.536 h = 0.001 0.001 y[1] (numeric) = 0.674048191198 -0.423187670538 y[1] (closed_form) = 0.674049897772 -0.423129059901 absolute error = 5.864e-05 relative error = 0.007368 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3176 Order of pole (three term test) = 31.75 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2032 0.537 h = 0.001 0.003 y[1] (numeric) = 0.672726520697 -0.42340480742 y[1] (closed_form) = 0.672729795292 -0.423346979605 absolute error = 5.792e-05 relative error = 0.007287 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.511 Order of pole (three term test) = 31.75 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2042 0.54 h = 0.0001 0.004 y[1] (numeric) = 0.670302441914 -0.425156025721 y[1] (closed_form) = 0.670302456885 -0.425096730261 absolute error = 5.930e-05 relative error = 0.00747 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.8615 Order of pole (three term test) = 31.75 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2043 0.544 h = 0.003 0.006 y[1] (numeric) = 0.667999870842 -0.428165132227 y[1] (closed_form) = 0.667997379299 -0.428107572002 absolute error = 5.761e-05 relative error = 0.007262 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.152 Order of pole (three term test) = 31.74 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2073 0.55 h = 0.0001 0.005 y[1] (numeric) = 0.662332069763 -0.43107669429 y[1] (closed_form) = 0.662329086702 -0.431005727416 absolute error = 7.103e-05 relative error = 0.008989 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.52 Order of pole (three term test) = 31.74 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2074 0.555 h = 0.0001 0.003 y[1] (numeric) = 0.659411113434 -0.434820804508 y[1] (closed_form) = 0.659409917388 -0.434758386419 absolute error = 6.243e-05 relative error = 0.007904 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4235 Order of pole (three term test) = 31.73 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2075 0.558 h = 0.001 0.001 y[1] (numeric) = 0.657612245336 -0.437046947097 y[1] (closed_form) = 0.657614441306 -0.436985005228 absolute error = 6.198e-05 relative error = 0.00785 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3347 Order of pole (three term test) = 31.73 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2085 0.559 h = 0.001 0.003 y[1] (numeric) = 0.656274904184 -0.437231273085 y[1] (closed_form) = 0.656278679875 -0.437170132017 absolute error = 6.126e-05 relative error = 0.007768 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.593 Order of pole (three term test) = 31.73 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2095 0.562 h = 0.0001 0.004 y[1] (numeric) = 0.653786724989 -0.438932503549 y[1] (closed_form) = 0.653787215726 -0.438869859046 absolute error = 6.265e-05 relative error = 0.007956 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.9078 Order of pole (three term test) = 31.72 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2096 0.566 h = 0.003 0.006 y[1] (numeric) = 0.651387954941 -0.441904661865 y[1] (closed_form) = 0.651385901672 -0.441843755433 absolute error = 6.094e-05 relative error = 0.007742 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.214 Order of pole (three term test) = 31.72 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2126 0.572 h = 0.0001 0.005 y[1] (numeric) = 0.645600229184 -0.444691284186 y[1] (closed_form) = 0.645597762932 -0.444616824194 absolute error = 7.450e-05 relative error = 0.009504 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.5477 Order of pole (three term test) = 31.71 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2127 0.577 h = 0.0001 0.003 y[1] (numeric) = 0.642558340079 -0.448389092676 y[1] (closed_form) = 0.642557626296 -0.448323285394 absolute error = 6.581e-05 relative error = 0.0084 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.446 Order of pole (three term test) = 31.71 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2128 0.58 h = 0.001 0.001 y[1] (numeric) = 0.640687075255 -0.450586406159 y[1] (closed_form) = 0.640689787492 -0.450521101639 absolute error = 6.536e-05 relative error = 0.008345 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3525 Order of pole (three term test) = 31.7 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2138 0.581 h = 0.001 0.003 y[1] (numeric) = 0.639334099882 -0.450737470695 y[1] (closed_form) = 0.639338404071 -0.450672985688 absolute error = 6.463e-05 relative error = 0.008262 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.677 Order of pole (three term test) = 31.7 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2148 0.584 h = 0.0001 0.004 y[1] (numeric) = 0.636781444675 -0.452387774114 y[1] (closed_form) = 0.636782437434 -0.452321748429 absolute error = 6.603e-05 relative error = 0.008454 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.9558 Order of pole (three term test) = 31.7 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2149 0.588 h = 0.003 0.006 y[1] (numeric) = 0.6342856673 -0.455321979509 y[1] (closed_form) = 0.634284076997 -0.455257694931 absolute error = 6.430e-05 relative error = 0.008236 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.278 Order of pole (three term test) = 31.69 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2179 0.594 h = 0.0001 0.005 y[1] (numeric) = 0.628377495293 -0.45798154689 y[1] (closed_form) = 0.628375573515 -0.457903555564 absolute error = 7.801e-05 relative error = 0.01003 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.5765 Order of pole (three term test) = 31.69 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.218 0.599 h = 0.0001 0.003 y[1] (numeric) = 0.625213635834 -0.461631773852 y[1] (closed_form) = 0.625213430758 -0.461562543516 absolute error = 6.923e-05 relative error = 0.008908 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4693 Order of pole (three term test) = 31.68 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=344.7MB, alloc=44.3MB, time=4.18 x[1] = 0.2181 0.602 h = 0.001 0.001 y[1] (numeric) = 0.623269353923 -0.463799479176 y[1] (closed_form) = 0.623272610317 -0.463730779171 absolute error = 6.878e-05 relative error = 0.008853 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.3709 Order of pole (three term test) = 31.68 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2191 0.603 h = 0.001 0.003 y[1] (numeric) = 0.621900781386 -0.46391681289 y[1] (closed_form) = 0.621905642498 -0.463848951857 absolute error = 6.803e-05 relative error = 0.008769 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.765 Order of pole (three term test) = 31.68 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2201 0.606 h = 0.0001 0.004 y[1] (numeric) = 0.619283257049 -0.4655152118 y[1] (closed_form) = 0.619284779105 -0.465445771371 absolute error = 6.946e-05 relative error = 0.008966 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.006 Order of pole (three term test) = 31.67 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2202 0.61 h = 0.003 0.006 y[1] (numeric) = 0.616689628621 -0.468410419616 y[1] (closed_form) = 0.616688526973 -0.468342723522 absolute error = 6.771e-05 relative error = 0.008743 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.344 Order of pole (three term test) = 31.67 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2232 0.616 h = 0.0001 0.005 y[1] (numeric) = 0.61066046351 -0.47094073084 y[1] (closed_form) = 0.610659114942 -0.470859168484 absolute error = 8.157e-05 relative error = 0.01058 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6063 Order of pole (three term test) = 31.66 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2233 0.621 h = 0.0001 0.003 y[1] (numeric) = 0.607373551604 -0.474542046337 y[1] (closed_form) = 0.607373882711 -0.474469357643 absolute error = 7.269e-05 relative error = 0.009431 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4936 Order of pole (three term test) = 31.66 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2234 0.624 h = 0.001 0.001 y[1] (numeric) = 0.605355605863 -0.476679333919 y[1] (closed_form) = 0.605359435344 -0.476607204177 absolute error = 7.223e-05 relative error = 0.009375 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.39 Order of pole (three term test) = 31.65 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2244 0.625 h = 0.0001 0.004 y[1] (numeric) = 0.603971473974 -0.476762448427 y[1] (closed_form) = 0.603976921475 -0.47669117787 absolute error = 7.148e-05 relative error = 0.00929 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.348 Order of pole (three term test) = 31.65 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2245 0.629 h = 0.003 0.006 y[1] (numeric) = 0.601297107981 -0.47962511448 y[1] (closed_form) = 0.601295221216 -0.479554878062 absolute error = 7.026e-05 relative error = 0.009135 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.404 Order of pole (three term test) = 31.65 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2275 0.635 h = 0.0001 0.005 y[1] (numeric) = 0.595161762023 -0.482043787727 y[1] (closed_form) = 0.595159701612 -0.481959541577 absolute error = 8.427e-05 relative error = 0.011 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6329 Order of pole (three term test) = 31.64 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2276 0.64 h = 0.0001 0.003 y[1] (numeric) = 0.5917674249 -0.485603382141 y[1] (closed_form) = 0.591767012665 -0.485528110655 absolute error = 7.527e-05 relative error = 0.009834 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.5151 Order of pole (three term test) = 31.63 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2277 0.643 h = 0.001 0.001 y[1] (numeric) = 0.589685157634 -0.487714703622 y[1] (closed_form) = 0.589688277068 -0.487640016115 absolute error = 7.475e-05 relative error = 0.009769 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.407 Order of pole (three term test) = 31.63 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2287 0.644 h = 0.001 0.003 y[1] (numeric) = 0.588287247833 -0.487768142328 y[1] (closed_form) = 0.588291997422 -0.487694331854 absolute error = 7.396e-05 relative error = 0.009679 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.937 Order of pole (three term test) = 31.63 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2297 0.647 h = 0.0001 0.004 y[1] (numeric) = 0.585547263487 -0.489268008808 y[1] (closed_form) = 0.585548619036 -0.489192543247 absolute error = 7.548e-05 relative error = 0.009892 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.103 Order of pole (three term test) = 31.62 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2298 0.651 h = 0.003 0.006 y[1] (numeric) = 0.58276869388 -0.492088922246 y[1] (closed_form) = 0.582767345863 -0.492015208037 absolute error = 7.373e-05 relative error = 0.009667 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.475 Order of pole (three term test) = 31.62 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2328 0.657 h = 0.0001 0.005 y[1] (numeric) = 0.576511242177 -0.494374017751 y[1] (closed_form) = 0.576509810861 -0.494286122343 absolute error = 8.791e-05 relative error = 0.01158 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6648 Order of pole (three term test) = 31.61 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2329 0.662 h = 0.0001 0.003 y[1] (numeric) = 0.572991702688 -0.497882103731 y[1] (closed_form) = 0.572991880113 -0.497803303969 absolute error = 7.880e-05 relative error = 0.01038 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.5411 Order of pole (three term test) = 31.6 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.233 0.665 h = 0.001 0.001 y[1] (numeric) = 0.570834487033 -0.499961426434 y[1] (closed_form) = 0.570838235778 -0.499883241262 absolute error = 7.827e-05 relative error = 0.01032 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4275 Order of pole (three term test) = 31.6 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=389.3MB, alloc=44.3MB, time=4.73 x[1] = 0.234 0.666 h = 0.001 0.003 y[1] (numeric) = 0.569421084342 -0.499979685333 y[1] (closed_form) = 0.569426477555 -0.499902398843 absolute error = 7.747e-05 relative error = 0.01022 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.034 Order of pole (three term test) = 31.6 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.235 0.669 h = 0.0001 0.004 y[1] (numeric) = 0.56661499672 -0.501424640228 y[1] (closed_form) = 0.566616964937 -0.501345655593 absolute error = 7.901e-05 relative error = 0.01044 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.159 Order of pole (three term test) = 31.59 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2351 0.673 h = 0.003 0.006 y[1] (numeric) = 0.5637359516 -0.504203352419 y[1] (closed_form) = 0.563735170971 -0.504126122886 absolute error = 7.723e-05 relative error = 0.01021 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.549 Order of pole (three term test) = 31.59 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2381 0.679 h = 0.0001 0.005 y[1] (numeric) = 0.557355775388 -0.506352416778 y[1] (closed_form) = 0.557355005078 -0.506260828093 absolute error = 9.159e-05 relative error = 0.01216 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.698 Order of pole (three term test) = 31.58 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2382 0.684 h = 0.0001 0.003 y[1] (numeric) = 0.553709822428 -0.509807516628 y[1] (closed_form) = 0.553710620036 -0.509725149094 absolute error = 8.237e-05 relative error = 0.01094 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.5681 Order of pole (three term test) = 31.57 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2383 0.687 h = 0.001 0.001 y[1] (numeric) = 0.551476935171 -0.511853941015 y[1] (closed_form) = 0.551481345234 -0.511772219797 absolute error = 8.184e-05 relative error = 0.01088 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4488 Order of pole (three term test) = 31.57 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2393 0.688 h = 0.001 0.003 y[1] (numeric) = 0.55004808007 -0.511836476096 y[1] (closed_form) = 0.550054149454 -0.511755676002 absolute error = 8.103e-05 relative error = 0.01078 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.135 Order of pole (three term test) = 31.57 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2403 0.691 h = 0.0001 0.004 y[1] (numeric) = 0.5471754284 -0.513225389215 y[1] (closed_form) = 0.547178040666 -0.513142846344 absolute error = 8.258e-05 relative error = 0.01101 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.216 Order of pole (three term test) = 31.56 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2404 0.695 h = 0.003 0.006 y[1] (numeric) = 0.544194925562 -0.515960695224 y[1] (closed_form) = 0.544194742042 -0.515879911362 absolute error = 8.078e-05 relative error = 0.01077 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.625 Order of pole (three term test) = 31.56 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2434 0.701 h = 0.0001 0.005 y[1] (numeric) = 0.537691381847 -0.51797118439 y[1] (closed_form) = 0.537691305616 -0.51787585688 absolute error = 9.533e-05 relative error = 0.01277 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.7325 Order of pole (three term test) = 31.55 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2435 0.706 h = 0.0001 0.003 y[1] (numeric) = 0.533917759033 -0.521371766777 y[1] (closed_form) = 0.533919208462 -0.521285790492 absolute error = 8.599e-05 relative error = 0.01152 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.5961 Order of pole (three term test) = 31.54 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2436 0.709 h = 0.001 0.001 y[1] (numeric) = 0.531608450133 -0.523384360664 y[1] (closed_form) = 0.531613554649 -0.523299063558 absolute error = 8.545e-05 relative error = 0.01146 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4709 Order of pole (three term test) = 31.54 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2446 0.71 h = 0.001 0.003 y[1] (numeric) = 0.530164184388 -0.523330608025 y[1] (closed_form) = 0.530170963619 -0.523246255292 absolute error = 8.462e-05 relative error = 0.01136 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.24 Order of pole (three term test) = 31.54 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2456 0.713 h = 0.0001 0.004 y[1] (numeric) = 0.52722449062 -0.5246623081 y[1] (closed_form) = 0.527227779441 -0.524576166358 absolute error = 8.620e-05 relative error = 0.01159 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.276 Order of pole (three term test) = 31.53 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2457 0.717 h = 0.003 0.006 y[1] (numeric) = 0.524141511727 -0.527352959539 y[1] (closed_form) = 0.524141956135 -0.527268580865 absolute error = 8.438e-05 relative error = 0.01135 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.705 Order of pole (three term test) = 31.53 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2487 0.723 h = 0.0001 0.005 y[1] (numeric) = 0.517513933589 -0.529222237516 y[1] (closed_form) = 0.517514585698 -0.52912312409 absolute error = 9.912e-05 relative error = 0.01339 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.7683 Order of pole (three term test) = 31.52 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2488 0.728 h = 0.0001 0.003 y[1] (numeric) = 0.513611339045 -0.532566716474 y[1] (closed_form) = 0.51361347307 -0.532477088967 absolute error = 8.965e-05 relative error = 0.01212 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6252 Order of pole (three term test) = 31.51 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2489 0.731 h = 0.001 0.001 y[1] (numeric) = 0.511224831507 -0.53454451443 y[1] (closed_form) = 0.51123066476 -0.534455600127 absolute error = 8.911e-05 relative error = 0.01205 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.4939 Order of pole (three term test) = 31.51 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=433.8MB, alloc=44.3MB, time=5.27 x[1] = 0.2499 0.732 h = 0.0001 0.004 y[1] (numeric) = 0.509765198321 -0.534453890031 y[1] (closed_form) = 0.509772722227 -0.534365944171 absolute error = 8.827e-05 relative error = 0.01195 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.973 Order of pole (three term test) = 31.5 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.25 0.736 h = 0.003 0.006 y[1] (numeric) = 0.506597560038 -0.537107227147 y[1] (closed_form) = 0.506597251617 -0.537020130158 absolute error = 8.710e-05 relative error = 0.0118 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.776 Order of pole (three term test) = 31.5 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.253 0.742 h = 0.0001 0.005 y[1] (numeric) = 0.499860938538 -0.538854261942 y[1] (closed_form) = 0.499860924688 -0.538752259115 absolute error = 0.000102 relative error = 0.01388 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.8004 Order of pole (three term test) = 31.49 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2531 0.747 h = 0.0001 0.003 y[1] (numeric) = 0.495845556973 -0.542150694737 y[1] (closed_form) = 0.495846987839 -0.542058298052 absolute error = 9.241e-05 relative error = 0.01258 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6513 Order of pole (three term test) = 31.48 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2532 0.75 h = 0.001 0.001 y[1] (numeric) = 0.493391525784 -0.54409867527 y[1] (closed_form) = 0.493396695512 -0.544007021476 absolute error = 9.180e-05 relative error = 0.0125 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.5144 Order of pole (three term test) = 31.48 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2542 0.751 h = 0.001 0.003 y[1] (numeric) = 0.491918251562 -0.543976011967 y[1] (closed_form) = 0.491925126398 -0.543885347805 absolute error = 9.092e-05 relative error = 0.0124 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.447 Order of pole (three term test) = 31.47 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2552 0.754 h = 0.0001 0.004 y[1] (numeric) = 0.488851760372 -0.54519880401 y[1] (closed_form) = 0.488855079126 -0.545106260881 absolute error = 9.260e-05 relative error = 0.01265 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.394 Order of pole (three term test) = 31.47 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2553 0.758 h = 0.0001 0.004 y[1] (numeric) = 0.485574693504 -0.547804139911 y[1] (closed_form) = 0.485575072849 -0.547713368396 absolute error = 9.077e-05 relative error = 0.0124 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.111 Order of pole (three term test) = 31.46 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2554 0.762 h = 0.003 0.006 y[1] (numeric) = 0.482274722023 -0.550406877636 y[1] (closed_form) = 0.482275101368 -0.550316106121 absolute error = 9.077e-05 relative error = 0.01241 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.878 Order of pole (three term test) = 31.46 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2584 0.768 h = 0.0001 0.005 y[1] (numeric) = 0.475385478535 -0.551986633221 y[1] (closed_form) = 0.475386270569 -0.551880712314 absolute error = 0.0001059 relative error = 0.01454 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.8461 Order of pole (three term test) = 31.45 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2585 0.773 h = 0.0001 0.003 y[1] (numeric) = 0.471213438026 -0.555218388741 y[1] (closed_form) = 0.47121562541 -0.55512224447 absolute error = 9.617e-05 relative error = 0.01321 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6883 Order of pole (three term test) = 31.44 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2586 0.776 h = 0.001 0.001 y[1] (numeric) = 0.468665594706 -0.557126192426 y[1] (closed_form) = 0.4686715776 -0.55703083189 absolute error = 9.555e-05 relative error = 0.01313 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.5437 Order of pole (three term test) = 31.43 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2596 0.777 h = 0.001 0.003 y[1] (numeric) = 0.467172965312 -0.556959445734 y[1] (closed_form) = 0.467180674238 -0.556865104336 absolute error = 9.466e-05 relative error = 0.01302 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.586 Order of pole (three term test) = 31.43 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2606 0.78 h = 0.0001 0.004 y[1] (numeric) = 0.464023765136 -0.558113360839 y[1] (closed_form) = 0.464027872902 -0.558017081922 absolute error = 9.637e-05 relative error = 0.01328 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.473 Order of pole (three term test) = 31.43 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2607 0.784 h = 0.003 0.006 y[1] (numeric) = 0.460620884818 -0.560665664503 y[1] (closed_form) = 0.460621990328 -0.560571164469 absolute error = 9.451e-05 relative error = 0.01303 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.968 Order of pole (three term test) = 31.42 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2637 0.79 h = 0.0001 0.005 y[1] (numeric) = 0.453605294906 -0.562095672267 y[1] (closed_form) = 0.453606924185 -0.561985811115 absolute error = 0.0001099 relative error = 0.01521 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.8865 Order of pole (three term test) = 31.41 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2638 0.795 h = 0.0001 0.003 y[1] (numeric) = 0.449299965003 -0.565266239977 y[1] (closed_form) = 0.449302941295 -0.56516630457 absolute error = 9.998e-05 relative error = 0.01385 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.7212 Order of pole (three term test) = 31.4 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2639 0.798 h = 0.001 0.001 y[1] (numeric) = 0.446672346374 -0.567136151894 y[1] (closed_form) = 0.446679167029 -0.567037037857 absolute error = 9.935e-05 relative error = 0.01376 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.5697 Order of pole (three term test) = 31.4 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2649 0.799 h = 0.001 0.003 y[1] (numeric) = 0.445164458801 -0.566930633375 y[1] (closed_form) = 0.445173023128 -0.566832565102 absolute error = 9.844e-05 relative error = 0.01366 % Correct digits = 4 memory used=478.3MB, alloc=44.3MB, time=5.81 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.71 Order of pole (three term test) = 31.4 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2659 0.802 h = 0.0001 0.004 y[1] (numeric) = 0.441946047061 -0.568022207723 y[1] (closed_form) = 0.441950972087 -0.567922148997 absolute error = 0.0001002 relative error = 0.01392 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.543 Order of pole (three term test) = 31.39 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.266 0.806 h = 0.003 0.006 y[1] (numeric) = 0.438436141298 -0.57052442134 y[1] (closed_form) = 0.438438008406 -0.570426146148 absolute error = 9.829e-05 relative error = 0.01366 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.062 Order of pole (three term test) = 31.38 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.269 0.812 h = 0.0001 0.005 y[1] (numeric) = 0.431293439966 -0.571801661212 y[1] (closed_form) = 0.431295945745 -0.571687806295 absolute error = 0.0001139 relative error = 0.0159 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.9287 Order of pole (three term test) = 31.37 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2691 0.817 h = 0.0001 0.003 y[1] (numeric) = 0.426853330018 -0.574909226275 y[1] (closed_form) = 0.426857132775 -0.574805451052 absolute error = 0.0001038 relative error = 0.0145 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.7555 Order of pole (three term test) = 31.36 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2692 0.82 h = 0.001 0.001 y[1] (numeric) = 0.424145047237 -0.576740141705 y[1] (closed_form) = 0.424152744771 -0.576637226759 absolute error = 0.0001032 relative error = 0.01442 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.5967 Order of pole (three term test) = 31.36 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2702 0.821 h = 0.001 0.003 y[1] (numeric) = 0.422621951077 -0.576495183288 y[1] (closed_form) = 0.422631410472 -0.576393341616 absolute error = 0.0001023 relative error = 0.01431 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.838 Order of pole (three term test) = 31.36 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2712 0.824 h = 0.0001 0.004 y[1] (numeric) = 0.419333761427 -0.577523029411 y[1] (closed_form) = 0.419339542185 -0.577419142594 absolute error = 0.000104 relative error = 0.01458 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.616 Order of pole (three term test) = 31.35 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2713 0.828 h = 0.003 0.006 y[1] (numeric) = 0.415715624875 -0.579973674856 y[1] (closed_form) = 0.415718290244 -0.579871576325 absolute error = 0.0001021 relative error = 0.01431 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.159 Order of pole (three term test) = 31.34 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2743 0.834 h = 0.0001 0.005 y[1] (numeric) = 0.408445024803 -0.581095027472 y[1] (closed_form) = 0.408448447669 -0.580977123654 absolute error = 0.000118 relative error = 0.01661 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.9726 Order of pole (three term test) = 31.34 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2744 0.839 h = 0.0001 0.003 y[1] (numeric) = 0.403868597405 -0.584137714892 y[1] (closed_form) = 0.403873265453 -0.584030049616 absolute error = 0.0001078 relative error = 0.01518 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.7911 Order of pole (three term test) = 31.33 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2745 0.842 h = 0.001 0.001 y[1] (numeric) = 0.401078733948 -0.585928492526 y[1] (closed_form) = 0.401087348762 -0.585821727733 absolute error = 0.0001071 relative error = 0.01509 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6249 Order of pole (three term test) = 31.32 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2755 0.843 h = 0.001 0.003 y[1] (numeric) = 0.399540481056 -0.585643404609 y[1] (closed_form) = 0.399550876474 -0.585537741501 absolute error = 0.0001062 relative error = 0.01498 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.972 Order of pole (three term test) = 31.32 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2765 0.846 h = 0.0001 0.004 y[1] (numeric) = 0.3961819302 -0.586606089711 y[1] (closed_form) = 0.396188606445 -0.586498324977 absolute error = 0.000108 relative error = 0.01526 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.692 Order of pole (three term test) = 31.31 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2766 0.85 h = 0.003 0.006 y[1] (numeric) = 0.392454320196 -0.589003640107 y[1] (closed_form) = 0.392457821745 -0.588897668498 absolute error = 0.000106 relative error = 0.01498 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.261 Order of pole (three term test) = 31.3 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2796 0.856 h = 0.0001 0.005 y[1] (numeric) = 0.385055012107 -0.589965885199 y[1] (closed_form) = 0.385059394009 -0.589843875714 absolute error = 0.0001221 relative error = 0.01733 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.018 Order of pole (three term test) = 31.3 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2797 0.861 h = 0.0001 0.003 y[1] (numeric) = 0.380340682833 -0.592941758611 y[1] (closed_form) = 0.380346256302 -0.592830151473 absolute error = 0.0001117 relative error = 0.01587 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.8283 Order of pole (three term test) = 31.28 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2798 0.864 h = 0.001 0.001 y[1] (numeric) = 0.377468294343 -0.594691219813 y[1] (closed_form) = 0.377477868156 -0.594580554696 absolute error = 0.0001111 relative error = 0.01577 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6542 Order of pole (three term test) = 31.28 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2808 0.865 h = 0.0001 0.004 y[1] (numeric) = 0.375914939021 -0.594365290967 y[1] (closed_form) = 0.375926312737 -0.594255756861 absolute error = 0.0001101 relative error = 0.01566 % Correct digits = 4 memory used=522.7MB, alloc=44.3MB, time=6.34 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.937 Order of pole (three term test) = 31.28 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2809 0.869 h = 0.003 0.006 y[1] (numeric) = 0.372096765921 -0.596718425148 y[1] (closed_form) = 0.372099562573 -0.596609467154 absolute error = 0.000109 relative error = 0.0155 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.352 Order of pole (three term test) = 31.27 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2839 0.875 h = 0.0001 0.005 y[1] (numeric) = 0.364584056335 -0.597542605514 y[1] (closed_form) = 0.364587839519 -0.597417402217 absolute error = 0.0001253 relative error = 0.0179 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.059 Order of pole (three term test) = 31.26 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.284 0.88 h = 0.0001 0.003 y[1] (numeric) = 0.359748892417 -0.600461038534 y[1] (closed_form) = 0.359753821544 -0.600346383269 absolute error = 0.0001148 relative error = 0.0164 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.8616 Order of pole (three term test) = 31.25 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2841 0.883 h = 0.001 0.001 y[1] (numeric) = 0.356804179571 -0.602174961916 y[1] (closed_form) = 0.356813156961 -0.602061284854 absolute error = 0.000114 relative error = 0.01629 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.6805 Order of pole (three term test) = 31.24 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2851 0.884 h = 0.001 0.003 y[1] (numeric) = 0.355237371635 -0.601813470937 y[1] (closed_form) = 0.35524816635 -0.60170095064 absolute error = 0.000113 relative error = 0.01618 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.237 Order of pole (three term test) = 31.24 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2861 0.887 h = 0.0001 0.004 y[1] (numeric) = 0.351745466093 -0.602651789915 y[1] (closed_form) = 0.351752462268 -0.602537058525 absolute error = 0.0001149 relative error = 0.01647 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.843 Order of pole (three term test) = 31.24 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2862 0.891 h = 0.003 0.006 y[1] (numeric) = 0.347810037701 -0.604947648609 y[1] (closed_form) = 0.347813743893 -0.604834720306 absolute error = 0.000113 relative error = 0.01619 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.462 Order of pole (three term test) = 31.23 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2892 0.897 h = 0.0001 0.005 y[1] (numeric) = 0.340167015828 -0.605606465263 y[1] (closed_form) = 0.340171839121 -0.605477045727 absolute error = 0.0001295 relative error = 0.01865 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.109 Order of pole (three term test) = 31.22 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2893 0.902 h = 0.0001 0.003 y[1] (numeric) = 0.335190850861 -0.608454333699 y[1] (closed_form) = 0.335196762987 -0.608335635419 absolute error = 0.0001188 relative error = 0.01711 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.9018 Order of pole (three term test) = 31.2 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2894 0.905 h = 0.001 0.001 y[1] (numeric) = 0.332161766009 -0.610124657566 y[1] (closed_form) = 0.33217178299 -0.610006981566 absolute error = 0.0001181 relative error = 0.017 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.7122 Order of pole (three term test) = 31.2 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2904 0.906 h = 0.001 0.003 y[1] (numeric) = 0.330579954762 -0.609720941948 y[1] (closed_form) = 0.330591809416 -0.60960445379 absolute error = 0.0001171 relative error = 0.01688 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.387 Order of pole (three term test) = 31.2 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2914 0.909 h = 0.0001 0.004 y[1] (numeric) = 0.327015907402 -0.610489751145 y[1] (closed_form) = 0.327023919493 -0.610370990107 absolute error = 0.000119 relative error = 0.01719 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.929 Order of pole (three term test) = 31.19 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2915 0.913 h = 0.003 0.006 y[1] (numeric) = 0.322967222378 -0.612727884883 y[1] (closed_form) = 0.322971879762 -0.612610931985 absolute error = 0.000117 relative error = 0.0169 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.577 Order of pole (three term test) = 31.18 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2945 0.919 h = 0.0001 0.005 y[1] (numeric) = 0.315193017017 -0.613217819823 y[1] (closed_form) = 0.315198926428 -0.613084122504 absolute error = 0.0001338 relative error = 0.01941 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.16 Order of pole (three term test) = 31.17 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2946 0.924 h = 0.0001 0.003 y[1] (numeric) = 0.310074129761 -0.615993005263 y[1] (closed_form) = 0.310081068891 -0.615870207563 absolute error = 0.000123 relative error = 0.01784 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.9436 Order of pole (three term test) = 31.16 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2947 0.927 h = 0.001 0.001 y[1] (numeric) = 0.306959647571 -0.617618440269 y[1] (closed_form) = 0.306970749782 -0.617496710353 absolute error = 0.0001222 relative error = 0.01773 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.7452 Order of pole (three term test) = 31.15 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2957 0.928 h = 0.001 0.003 y[1] (numeric) = 0.305362895123 -0.617171724337 y[1] (closed_form) = 0.305375855914 -0.617051214309 absolute error = 0.0001212 relative error = 0.0176 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.545 Order of pole (three term test) = 31.15 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2967 0.931 h = 0.0001 0.004 y[1] (numeric) = 0.30172605729 -0.617869408521 y[1] (closed_form) = 0.301735130275 -0.617746561894 absolute error = 0.0001232 relative error = 0.01792 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.018 Order of pole (three term test) = 31.15 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=567.2MB, alloc=44.3MB, time=6.88 x[1] = 0.2968 0.935 h = 0.003 0.006 y[1] (numeric) = 0.297562726237 -0.620048093127 y[1] (closed_form) = 0.297568377841 -0.619927059733 absolute error = 0.0001212 relative error = 0.01762 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.696 Order of pole (three term test) = 31.14 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2998 0.941 h = 0.0001 0.005 y[1] (numeric) = 0.289656445764 -0.620365520759 y[1] (closed_form) = 0.289663488795 -0.620227482415 absolute error = 0.0001382 relative error = 0.02019 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.214 Order of pole (three term test) = 31.13 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.2999 0.946 h = 0.0001 0.003 y[1] (numeric) = 0.28439306686 -0.623065838364 y[1] (closed_form) = 0.284401078424 -0.622938883212 absolute error = 0.0001272 relative error = 0.01858 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.9873 Order of pole (three term test) = 31.11 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3 0.949 h = 0.001 0.001 y[1] (numeric) = 0.281192133534 -0.624645054784 y[1] (closed_form) = 0.281204368052 -0.624519214378 absolute error = 0.0001264 relative error = 0.01846 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.7797 Order of pole (three term test) = 31.11 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.301 0.95 h = 0.001 0.003 y[1] (numeric) = 0.279580505211 -0.624154539774 y[1] (closed_form) = 0.279594619781 -0.624029952291 absolute error = 0.0001254 relative error = 0.01834 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.708 Order of pole (three term test) = 31.11 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.302 0.953 h = 0.0001 0.004 y[1] (numeric) = 0.275870211653 -0.62477943431 y[1] (closed_form) = 0.275880391944 -0.624652444537 absolute error = 0.0001274 relative error = 0.01866 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.111 Order of pole (three term test) = 31.1 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3021 0.957 h = 0.003 0.006 y[1] (numeric) = 0.271590806768 -0.626896891762 y[1] (closed_form) = 0.271597497022 -0.626771720345 absolute error = 0.0001254 relative error = 0.01835 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.82 Order of pole (three term test) = 31.09 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3051 0.963 h = 0.0001 0.005 y[1] (numeric) = 0.263551539575 -0.627038077041 y[1] (closed_form) = 0.263559765256 -0.626895632715 absolute error = 0.0001427 relative error = 0.02098 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.27 Order of pole (three term test) = 31.08 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3052 0.968 h = 0.0001 0.003 y[1] (numeric) = 0.258141851247 -0.629661274143 y[1] (closed_form) = 0.258150982132 -0.629530101862 absolute error = 0.0001315 relative error = 0.01933 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.033 Order of pole (three term test) = 31.07 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3053 0.971 h = 0.001 0.001 y[1] (numeric) = 0.254853384351 -0.631192901016 y[1] (closed_form) = 0.25486679973 -0.631062891934 absolute error = 0.0001307 relative error = 0.0192 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.8157 Order of pole (three term test) = 31.06 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3063 0.972 h = 0.0001 0.004 y[1] (numeric) = 0.253226948913 -0.630657764725 y[1] (closed_form) = 0.253242266379 -0.630529042613 absolute error = 0.0001296 relative error = 0.01908 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.908 Order of pole (three term test) = 31.06 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3064 0.976 h = 0.003 0.006 y[1] (numeric) = 0.248851431616 -0.632723976036 y[1] (closed_form) = 0.248857466298 -0.632595562193 absolute error = 0.0001286 relative error = 0.01891 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.932 Order of pole (three term test) = 31.05 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3094 0.982 h = 0.0001 0.005 y[1] (numeric) = 0.240694786958 -0.632711981144 y[1] (closed_form) = 0.240702481487 -0.632566055933 absolute error = 0.0001461 relative error = 0.02159 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.32 Order of pole (three term test) = 31.04 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3095 0.987 h = 0.0001 0.003 y[1] (numeric) = 0.235156711076 -0.635268711959 y[1] (closed_form) = 0.235165256861 -0.635134226424 absolute error = 0.0001348 relative error = 0.0199 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.074 Order of pole (three term test) = 31.02 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3096 0.99 h = 0.001 0.001 y[1] (numeric) = 0.231791419531 -0.63675930616 y[1] (closed_form) = 0.231804304729 -0.636626025995 absolute error = 0.0001339 relative error = 0.01976 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.8479 Order of pole (three term test) = 31.01 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3106 0.991 h = 0.001 0.003 y[1] (numeric) = 0.230151751168 -0.636185260001 y[1] (closed_form) = 0.230166558298 -0.636053296663 absolute error = 0.0001328 relative error = 0.01963 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.033 Order of pole (three term test) = 31.01 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3116 0.994 h = 0.0001 0.004 y[1] (numeric) = 0.226302030297 -0.63667100094 y[1] (closed_form) = 0.226312812548 -0.636536508275 absolute error = 0.0001349 relative error = 0.01997 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.296 Order of pole (three term test) = 31.01 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3117 0.998 h = 0.003 0.006 y[1] (numeric) = 0.221801924486 -0.638671032113 y[1] (closed_form) = 0.221809083617 -0.63853836824 absolute error = 0.0001329 relative error = 0.01965 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.067 Order of pole (three term test) = 31 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=611.7MB, alloc=44.3MB, time=7.41 x[1] = 0.3147 1.004 h = 0.0001 0.005 y[1] (numeric) = 0.213510497541 -0.638475558305 y[1] (closed_form) = 0.213519469332 -0.638325100988 absolute error = 0.0001507 relative error = 0.02239 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.381 Order of pole (three term test) = 30.99 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3148 1.009 h = 0.0001 0.003 y[1] (numeric) = 0.207822571063 -0.640950814416 y[1] (closed_form) = 0.207832326662 -0.640811995669 absolute error = 0.0001392 relative error = 0.02066 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.123 Order of pole (three term test) = 30.97 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3149 1.012 h = 0.001 0.001 y[1] (numeric) = 0.204367637444 -0.64239116897 y[1] (closed_form) = 0.204381797158 -0.642253606903 absolute error = 0.0001383 relative error = 0.02052 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.8868 Order of pole (three term test) = 30.96 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3159 1.013 h = 0.001 0.003 y[1] (numeric) = 0.202713289347 -0.641770907059 y[1] (closed_form) = 0.202729394098 -0.641634697793 absolute error = 0.0001372 relative error = 0.02038 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.218 Order of pole (three term test) = 30.96 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3169 1.016 h = 0.0001 0.004 y[1] (numeric) = 0.198788096837 -0.642178823685 y[1] (closed_form) = 0.198800126668 -0.642040013545 absolute error = 0.0001393 relative error = 0.02073 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.401 Order of pole (three term test) = 30.96 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.317 1.02 h = 0.003 0.006 y[1] (numeric) = 0.19416759493 -0.644112252066 y[1] (closed_form) = 0.194175927129 -0.64397527587 absolute error = 0.0001372 relative error = 0.0204 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.208 Order of pole (three term test) = 30.95 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.32 1.026 h = 0.0001 0.005 y[1] (numeric) = 0.185740418109 -0.643729240631 y[1] (closed_form) = 0.185750720758 -0.643574181223 absolute error = 0.0001554 relative error = 0.0232 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.444 Order of pole (three term test) = 30.93 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3201 1.031 h = 0.0001 0.003 y[1] (numeric) = 0.179900682188 -0.646120567745 y[1] (closed_form) = 0.17991169884 -0.645977351291 absolute error = 0.0001436 relative error = 0.02142 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.174 Order of pole (three term test) = 30.92 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3202 1.034 h = 0.001 0.001 y[1] (numeric) = 0.176354940642 -0.647509189145 y[1] (closed_form) = 0.176370427825 -0.647367282281 absolute error = 0.0001427 relative error = 0.02128 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.9274 Order of pole (three term test) = 30.91 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3212 1.035 h = 0.001 0.003 y[1] (numeric) = 0.17468599235 -0.646841820162 y[1] (closed_form) = 0.174703448249 -0.646701303143 absolute error = 0.0001416 relative error = 0.02114 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.411 Order of pole (three term test) = 30.91 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3222 1.038 h = 0.0001 0.004 y[1] (numeric) = 0.170684599061 -0.647170048479 y[1] (closed_form) = 0.170697928746 -0.647026856902 absolute error = 0.0001438 relative error = 0.02149 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.511 Order of pole (three term test) = 30.9 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3223 1.042 h = 0.003 0.006 y[1] (numeric) = 0.165942122018 -0.649034877609 y[1] (closed_form) = 0.165951677446 -0.648893525103 absolute error = 0.0001417 relative error = 0.02115 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.354 Order of pole (three term test) = 30.89 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3253 1.048 h = 0.0001 0.005 y[1] (numeric) = 0.157378209579 -0.648460152672 y[1] (closed_form) = 0.157389898362 -0.648300419402 absolute error = 0.0001602 relative error = 0.02401 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.51 Order of pole (three term test) = 30.88 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3254 1.053 h = 0.0001 0.003 y[1] (numeric) = 0.151384655728 -0.650765022828 y[1] (closed_form) = 0.151396986271 -0.650617342462 absolute error = 0.0001482 relative error = 0.02218 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.228 Order of pole (three term test) = 30.87 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3255 1.056 h = 0.001 0.001 y[1] (numeric) = 0.147746911064 -0.652100372801 y[1] (closed_form) = 0.147763780289 -0.651954056574 absolute error = 0.0001473 relative error = 0.02203 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 0.9698 Order of pole (three term test) = 30.86 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3265 1.057 h = 0.001 0.003 y[1] (numeric) = 0.14606344645 -0.651384980545 y[1] (closed_form) = 0.14608230864 -0.651240092299 absolute error = 0.0001461 relative error = 0.02189 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.612 Order of pole (three term test) = 30.86 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3275 1.06 h = 0.0001 0.004 y[1] (numeric) = 0.141985107082 -0.651631602453 y[1] (closed_form) = 0.141999790508 -0.651483963784 absolute error = 0.0001484 relative error = 0.02225 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.626 Order of pole (three term test) = 30.85 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3276 1.064 h = 0.003 0.006 y[1] (numeric) = 0.137119036252 -0.653425776151 y[1] (closed_form) = 0.137129866647 -0.653279981638 absolute error = 0.0001462 relative error = 0.0219 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.507 Order of pole (three term test) = 30.84 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=656.3MB, alloc=44.3MB, time=7.95 x[1] = 0.3306 1.07 h = 0.0001 0.005 y[1] (numeric) = 0.128417384823 -0.652655042542 y[1] (closed_form) = 0.128430516738 -0.652490561831 absolute error = 0.000165 relative error = 0.02481 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.579 Order of pole (three term test) = 30.83 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3307 1.075 h = 0.0001 0.003 y[1] (numeric) = 0.122267954587 -0.654870852488 y[1] (closed_form) = 0.122281653502 -0.654718640275 absolute error = 0.0001528 relative error = 0.02295 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.284 Order of pole (three term test) = 30.81 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3308 1.078 h = 0.001 0.001 y[1] (numeric) = 0.118536982093 -0.656151347018 y[1] (closed_form) = 0.118555289591 -0.656000555174 absolute error = 0.0001519 relative error = 0.02279 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.014 Order of pole (three term test) = 30.8 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3318 1.079 h = 0.0001 0.004 y[1] (numeric) = 0.11683908961 -0.655386990006 y[1] (closed_form) = 0.116859414898 -0.655237665395 absolute error = 0.0001507 relative error = 0.02264 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.102 Order of pole (three term test) = 30.8 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3319 1.083 h = 0.003 0.006 y[1] (numeric) = 0.111870598618 -0.657122008439 y[1] (closed_form) = 0.111880833407 -0.656972676839 absolute error = 0.0001497 relative error = 0.02246 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.645 Order of pole (three term test) = 30.79 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3349 1.089 h = 0.0001 0.005 y[1] (numeric) = 0.103047162786 -0.65618068227 y[1] (closed_form) = 0.103059844403 -0.656012393084 absolute error = 0.0001688 relative error = 0.02541 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.641 Order of pole (three term test) = 30.78 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.335 1.094 h = 0.0001 0.003 y[1] (numeric) = 0.0967607680912 -0.658319579929 y[1] (closed_form) = 0.096773952937 -0.658163750332 absolute error = 0.0001564 relative error = 0.02351 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.334 Order of pole (three term test) = 30.76 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3351 1.097 h = 0.001 0.001 y[1] (numeric) = 0.0929478648077 -0.659552683548 y[1] (closed_form) = 0.0929657205194 -0.659398323237 absolute error = 0.0001554 relative error = 0.02333 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.054 Order of pole (three term test) = 30.75 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3361 1.098 h = 0.001 0.003 y[1] (numeric) = 0.091237028808 -0.65874557613 y[1] (closed_form) = 0.0912569246283 -0.658592717446 absolute error = 0.0001541 relative error = 0.02318 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.011 Order of pole (three term test) = 30.75 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3371 1.101 h = 0.0001 0.004 y[1] (numeric) = 0.0870124435782 -0.65883599105 y[1] (closed_form) = 0.0870280585147 -0.65868023547 absolute error = 0.0001565 relative error = 0.02356 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.853 Order of pole (three term test) = 30.74 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3372 1.105 h = 0.003 0.006 y[1] (numeric) = 0.0819110463436 -0.660494528451 y[1] (closed_form) = 0.0819226558758 -0.660340627322 absolute error = 0.0001543 relative error = 0.02319 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.811 Order of pole (three term test) = 30.73 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3402 1.111 h = 0.0001 0.005 y[1] (numeric) = 0.0729479048141 -0.659348888661 y[1] (closed_form) = 0.0729621394255 -0.659175709508 absolute error = 0.0001738 relative error = 0.0262 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.715 Order of pole (three term test) = 30.72 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3403 1.116 h = 0.0001 0.003 y[1] (numeric) = 0.0665016361025 -0.661393701872 y[1] (closed_form) = 0.0665162943396 -0.661233208657 absolute error = 0.0001612 relative error = 0.02425 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.395 Order of pole (three term test) = 30.7 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3404 1.119 h = 0.001 0.001 y[1] (numeric) = 0.0625931266577 -0.662568892767 y[1] (closed_form) = 0.0626125289915 -0.662409928286 absolute error = 0.0001601 relative error = 0.02407 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.102 Order of pole (three term test) = 30.69 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3414 1.12 h = 0.001 0.003 y[1] (numeric) = 0.0608680285232 -0.661710998827 y[1] (closed_form) = 0.0608894968824 -0.661553577357 absolute error = 0.0001589 relative error = 0.02391 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.239 Order of pole (three term test) = 30.69 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3424 1.123 h = 0.0001 0.004 y[1] (numeric) = 0.0565642517423 -0.661714021343 y[1] (closed_form) = 0.0565813830071 -0.661553620624 absolute error = 0.0001613 relative error = 0.0243 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.983 Order of pole (three term test) = 30.69 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3425 1.127 h = 0.003 0.006 y[1] (numeric) = 0.0513343820545 -0.663295700221 y[1] (closed_form) = 0.0513474227808 -0.663137158855 absolute error = 0.0001591 relative error = 0.02392 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.984 Order of pole (three term test) = 30.67 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3455 1.133 h = 0.0001 0.005 y[1] (numeric) = 0.0422304825853 -0.661941098239 y[1] (closed_form) = 0.0422463323354 -0.661762950234 absolute error = 0.0001789 relative error = 0.02697 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.793 Order of pole (three term test) = 30.66 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=700.9MB, alloc=44.3MB, time=8.48 x[1] = 0.3456 1.138 h = 0.0001 0.003 y[1] (numeric) = 0.0356221356505 -0.663888999603 y[1] (closed_form) = 0.0356383266574 -0.663723769766 absolute error = 0.000166 relative error = 0.02498 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.458 Order of pole (three term test) = 30.64 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3457 1.141 h = 0.001 0.001 y[1] (numeric) = 0.0316167092358 -0.66500455759 y[1] (closed_form) = 0.0316377193768 -0.664840917739 absolute error = 0.000165 relative error = 0.02479 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.152 Order of pole (three term test) = 30.63 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3467 1.142 h = 0.001 0.003 y[1] (numeric) = 0.0298774516717 -0.664094860966 y[1] (closed_form) = 0.0299005543368 -0.663932806696 absolute error = 0.0001637 relative error = 0.02463 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.477 Order of pole (three term test) = 30.63 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3477 1.145 h = 0.0001 0.004 y[1] (numeric) = 0.0254936760206 -0.664008354189 y[1] (closed_form) = 0.0255123840984 -0.663843235946 absolute error = 0.0001662 relative error = 0.02501 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.118 Order of pole (three term test) = 30.63 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3478 1.149 h = 0.003 0.006 y[1] (numeric) = 0.0201335590506 -0.665510875599 y[1] (closed_form) = 0.020148089157 -0.665347621504 absolute error = 0.0001639 relative error = 0.02462 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.165 Order of pole (three term test) = 30.61 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3508 1.155 h = 0.0001 0.005 y[1] (numeric) = 0.0108878339583 -0.663942534757 y[1] (closed_form) = 0.0109053628862 -0.663759337126 absolute error = 0.000184 relative error = 0.02772 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.875 Order of pole (three term test) = 30.6 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3509 1.16 h = 0.0001 0.003 y[1] (numeric) = 0.00411515329997 -0.665790614892 y[1] (closed_form) = 0.0041329382589 -0.665620573627 absolute error = 0.000171 relative error = 0.02569 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.525 Order of pole (three term test) = 30.58 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.351 1.163 h = 0.001 0.001 y[1] (numeric) = 1.14688279375e-05 -0.666844769996 y[1] (closed_form) = 3.41497844051e-05 -0.666676381817 absolute error = 0.0001699 relative error = 0.02549 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.204 Order of pole (three term test) = 30.57 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.352 1.164 h = 0.001 0.003 y[1] (numeric) = -0.00174183983519 -0.665882227605 y[1] (closed_form) = -0.00171703927146 -0.66571546879 absolute error = 0.0001686 relative error = 0.02532 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.725 Order of pole (three term test) = 30.57 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.353 1.167 h = 0.0001 0.004 y[1] (numeric) = -0.0062064372687 -0.665703995169 y[1] (closed_form) = -0.00618609007443 -0.665534085234 absolute error = 0.0001711 relative error = 0.02571 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.26 Order of pole (three term test) = 30.56 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3531 1.171 h = 0.003 0.006 y[1] (numeric) = -0.0116986172719 -0.667124993702 y[1] (closed_form) = -0.0116825378214 -0.666956952587 absolute error = 0.0001688 relative error = 0.02531 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.354 Order of pole (three term test) = 30.55 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3561 1.177 h = 0.0001 0.005 y[1] (numeric) = -0.0210872504845 -0.665338006808 y[1] (closed_form) = -0.0210679763962 -0.665149676864 absolute error = 0.0001893 relative error = 0.02845 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.96 Order of pole (three term test) = 30.54 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3562 1.182 h = 0.0001 0.003 y[1] (numeric) = -0.02802657201 -0.667083272493 y[1] (closed_form) = -0.0280071300681 -0.666908343173 absolute error = 0.000176 relative error = 0.02637 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.594 Order of pole (three term test) = 30.52 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3563 1.185 h = 0.001 0.001 y[1] (numeric) = -0.0322298861049 -0.668074203828 y[1] (closed_form) = -0.0322054694553 -0.66790099259 absolute error = 0.0001749 relative error = 0.02616 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.258 Order of pole (three term test) = 30.51 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3573 1.186 h = 0.0001 0.004 y[1] (numeric) = -0.0339971316179 -0.667057745219 y[1] (closed_form) = -0.0339705676916 -0.666886208363 absolute error = 0.0001736 relative error = 0.02599 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.573 Order of pole (three term test) = 30.51 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3574 1.19 h = 0.003 0.006 y[1] (numeric) = -0.039598822893 -0.66841048022 y[1] (closed_form) = -0.0395832661808 -0.668238565877 absolute error = 0.0001726 relative error = 0.02579 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.523 Order of pole (three term test) = 30.49 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3604 1.196 h = 0.0001 0.005 y[1] (numeric) = -0.0491140308473 -0.666432979181 y[1] (closed_form) = -0.0490951102475 -0.666240469555 absolute error = 0.0001934 relative error = 0.02896 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.036 Order of pole (three term test) = 30.48 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3605 1.201 h = 0.0001 0.003 y[1] (numeric) = -0.0561999533062 -0.668089306704 y[1] (closed_form) = -0.0561809401813 -0.66791041397 absolute error = 0.0001799 relative error = 0.02684 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.656 Order of pole (three term test) = 30.46 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3606 1.204 h = 0.001 0.001 y[1] (numeric) = -0.0604909305965 -0.669025528884 y[1] (closed_form) = -0.0604668727122 -0.668848410765 absolute error = 0.0001787 relative error = 0.02662 % Correct digits = 4 memory used=745.5MB, alloc=44.3MB, time=9.02 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.307 Order of pole (three term test) = 30.45 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3616 1.205 h = 0.001 0.003 y[1] (numeric) = -0.0622707363759 -0.667961946611 y[1] (closed_form) = -0.06224450637 -0.667786542297 absolute error = 0.0001774 relative error = 0.02644 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.218 Order of pole (three term test) = 30.45 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3626 1.208 h = 0.0001 0.004 y[1] (numeric) = -0.0668891245939 -0.667607966326 y[1] (closed_form) = -0.0668674618989 -0.667429242841 absolute error = 0.00018 relative error = 0.02684 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.54 Order of pole (three term test) = 30.44 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3627 1.212 h = 0.003 0.006 y[1] (numeric) = -0.0726330579159 -0.668872366371 y[1] (closed_form) = -0.0726158363304 -0.668695521138 absolute error = 0.0001777 relative error = 0.02642 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.728 Order of pole (three term test) = 30.43 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3657 1.218 h = 0.0001 0.005 y[1] (numeric) = -0.0822932876879 -0.666666745448 y[1] (closed_form) = -0.0822724948473 -0.666468943646 absolute error = 0.0001989 relative error = 0.02962 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.128 Order of pole (three term test) = 30.42 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3658 1.223 h = 0.0001 0.003 y[1] (numeric) = -0.089550320838 -0.668214488101 y[1] (closed_form) = -0.089529529328 -0.668030559003 absolute error = 0.0001851 relative error = 0.02746 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.731 Order of pole (three term test) = 30.4 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3659 1.226 h = 0.001 0.001 y[1] (numeric) = -0.0939435848975 -0.669083976013 y[1] (closed_form) = -0.0939176664023 -0.668901890159 absolute error = 0.0001839 relative error = 0.02723 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.367 Order of pole (three term test) = 30.39 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3669 1.227 h = 0.001 0.003 y[1] (numeric) = -0.0957371116864 -0.667964409681 y[1] (closed_form) = -0.0957089922879 -0.667784085017 absolute error = 0.0001825 relative error = 0.02705 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.499 Order of pole (three term test) = 30.39 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3679 1.23 h = 0.0001 0.004 y[1] (numeric) = -0.100438789353 -0.667512091614 y[1] (closed_form) = -0.100415299802 -0.66732835342 absolute error = 0.0001852 relative error = 0.02745 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.7 Order of pole (three term test) = 30.38 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.368 1.234 h = 0.003 0.006 y[1] (numeric) = -0.106320239584 -0.668687844536 y[1] (closed_form) = -0.106301287846 -0.668505988833 absolute error = 0.0001828 relative error = 0.02701 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.942 Order of pole (three term test) = 30.36 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.371 1.24 h = 0.0001 0.005 y[1] (numeric) = -0.116126614028 -0.666248809315 y[1] (closed_form) = -0.116103877152 -0.666045627036 absolute error = 0.0002045 relative error = 0.03024 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.224 Order of pole (three term test) = 30.35 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3711 1.245 h = 0.0001 0.003 y[1] (numeric) = -0.123557215797 -0.667684723989 y[1] (closed_form) = -0.123534577342 -0.667495676549 absolute error = 0.0001904 relative error = 0.02805 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.809 Order of pole (three term test) = 30.33 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3712 1.248 h = 0.001 0.001 y[1] (numeric) = -0.128054227149 -0.668485505019 y[1] (closed_form) = -0.128026377576 -0.668298371488 absolute error = 0.0001892 relative error = 0.0278 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.428 Order of pole (three term test) = 30.32 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3722 1.249 h = 0.001 0.003 y[1] (numeric) = -0.129861342414 -0.667308803203 y[1] (closed_form) = -0.129831262563 -0.667123479565 absolute error = 0.0001877 relative error = 0.02762 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.793 Order of pole (three term test) = 30.32 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3732 1.252 h = 0.0001 0.004 y[1] (numeric) = -0.134647192066 -0.666755710067 y[1] (closed_form) = -0.134621805914 -0.666566875905 absolute error = 0.0001905 relative error = 0.02802 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.867 Order of pole (three term test) = 30.31 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3733 1.256 h = 0.003 0.006 y[1] (numeric) = -0.140668136437 -0.66784017989 y[1] (closed_form) = -0.140647387309 -0.667653232258 absolute error = 0.0001881 relative error = 0.02757 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.165 Order of pole (three term test) = 30.29 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3763 1.262 h = 0.0001 0.005 y[1] (numeric) = -0.150621790602 -0.665162295456 y[1] (closed_form) = -0.150597035753 -0.664953642399 absolute error = 0.0002101 relative error = 0.03082 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.325 Order of pole (three term test) = 30.28 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3764 1.267 h = 0.0001 0.003 y[1] (numeric) = -0.158228471969 -0.666483047577 y[1] (closed_form) = -0.158203915975 -0.666288797917 absolute error = 0.0001958 relative error = 0.02859 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.891 Order of pole (three term test) = 30.26 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3765 1.27 h = 0.001 0.001 y[1] (numeric) = -0.162830722415 -0.66721309359 y[1] (closed_form) = -0.16280086924 -0.667020830591 absolute error = 0.0001946 relative error = 0.02834 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.493 Order of pole (three term test) = 30.25 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=790.2MB, alloc=44.3MB, time=9.55 x[1] = 0.3775 1.271 h = 0.001 0.003 y[1] (numeric) = -0.164651286493 -0.66597807565 y[1] (closed_form) = -0.164619173071 -0.665787672592 absolute error = 0.0001931 relative error = 0.02815 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.1 Order of pole (three term test) = 30.25 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3785 1.274 h = 0.0001 0.004 y[1] (numeric) = -0.169522205542 -0.66532170458 y[1] (closed_form) = -0.169494850991 -0.665127691308 absolute error = 0.0001959 relative error = 0.02855 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.042 Order of pole (three term test) = 30.24 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3786 1.278 h = 0.003 0.006 y[1] (numeric) = -0.175684663593 -0.66631218118 y[1] (closed_form) = -0.175662047831 -0.666120058255 absolute error = 0.0001934 relative error = 0.02808 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.398 Order of pole (three term test) = 30.23 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3816 1.284 h = 0.0001 0.005 y[1] (numeric) = -0.185786743972 -0.663389869372 y[1] (closed_form) = -0.185759895018 -0.663175653212 absolute error = 0.0002159 relative error = 0.03135 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.43 Order of pole (three term test) = 30.21 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3817 1.289 h = 0.0001 0.003 y[1] (numeric) = -0.193572069339 -0.664592030796 y[1] (closed_form) = -0.193545523123 -0.664392493111 absolute error = 0.0002013 relative error = 0.02909 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.976 Order of pole (three term test) = 30.19 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3818 1.292 h = 0.001 0.001 y[1] (numeric) = -0.198281082164 -0.665249256863 y[1] (closed_form) = -0.198249150752 -0.665051780734 absolute error = 0.0002 relative error = 0.02883 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.56 Order of pole (three term test) = 30.18 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3828 1.293 h = 0.0001 0.004 y[1] (numeric) = -0.200114947922 -0.663954712433 y[1] (closed_form) = -0.200080725698 -0.663759147667 absolute error = 0.0001985 relative error = 0.02864 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 9.389 Order of pole (three term test) = 30.18 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3829 1.297 h = 0.003 0.006 y[1] (numeric) = -0.206394818548 -0.664866480899 y[1] (closed_form) = -0.206372637132 -0.664670103896 absolute error = 0.0001976 relative error = 0.0284 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.608 Order of pole (three term test) = 30.16 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3859 1.303 h = 0.0001 0.005 y[1] (numeric) = -0.216628590264 -0.661730982709 y[1] (closed_form) = -0.21660197896 -0.661512168561 absolute error = 0.0002204 relative error = 0.03167 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.524 Order of pole (three term test) = 30.15 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.386 1.308 h = 0.0001 0.003 y[1] (numeric) = -0.224571250998 -0.662830417588 y[1] (closed_form) = -0.224545031313 -0.662626525287 absolute error = 0.0002056 relative error = 0.02938 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.053 Order of pole (three term test) = 30.13 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3861 1.311 h = 0.001 0.001 y[1] (numeric) = -0.229374307626 -0.663424545829 y[1] (closed_form) = -0.229342624476 -0.663222780225 absolute error = 0.0002042 relative error = 0.0291 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.621 Order of pole (three term test) = 30.12 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3871 1.312 h = 0.001 0.003 y[1] (numeric) = -0.23122022851 -0.662077926594 y[1] (closed_form) = -0.231186227123 -0.661878117368 absolute error = 0.0002027 relative error = 0.02891 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.708 Order of pole (three term test) = 30.12 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3881 1.315 h = 0.0001 0.004 y[1] (numeric) = -0.236253184345 -0.661223526938 y[1] (closed_form) = -0.236224067905 -0.66101991543 absolute error = 0.0002057 relative error = 0.0293 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.388 Order of pole (three term test) = 30.11 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3882 1.319 h = 0.003 0.006 y[1] (numeric) = -0.242685686974 -0.662033374366 y[1] (closed_form) = -0.242661505608 -0.661831660928 absolute error = 0.0002032 relative error = 0.02882 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.861 Order of pole (three term test) = 30.09 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3912 1.325 h = 0.0001 0.005 y[1] (numeric) = -0.253070116641 -0.658642692158 y[1] (closed_form) = -0.253041264687 -0.658418136672 absolute error = 0.0002264 relative error = 0.0321 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.638 Order of pole (three term test) = 30.08 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3913 1.33 h = 0.0001 0.003 y[1] (numeric) = -0.261196380145 -0.659616932947 y[1] (closed_form) = -0.261168030332 -0.659407586834 absolute error = 0.0002113 relative error = 0.02979 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.145 Order of pole (three term test) = 30.06 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3914 1.333 h = 0.001 0.001 y[1] (numeric) = -0.266109144636 -0.660134225062 y[1] (closed_form) = -0.266075239623 -0.659927084648 absolute error = 0.0002099 relative error = 0.0295 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.694 Order of pole (three term test) = 30.04 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3924 1.334 h = 0.001 0.003 y[1] (numeric) = -0.267968087618 -0.658725744257 y[1] (closed_form) = -0.267931832669 -0.658520614276 absolute error = 0.0002083 relative error = 0.0293 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 8.056 Order of pole (three term test) = 30.05 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=834.8MB, alloc=44.3MB, time=10.10 x[1] = 0.3934 1.337 h = 0.0001 0.004 y[1] (numeric) = -0.273088793227 -0.657760543474 y[1] (closed_form) = -0.273057492248 -0.657551503487 absolute error = 0.0002114 relative error = 0.02969 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.586 Order of pole (three term test) = 30.04 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3935 1.341 h = 0.003 0.006 y[1] (numeric) = -0.27966885861 -0.658468245479 y[1] (closed_form) = -0.279642602045 -0.658261106655 absolute error = 0.0002088 relative error = 0.02919 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.125 Order of pole (three term test) = 30.02 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3965 1.347 h = 0.0001 0.005 y[1] (numeric) = -0.290205122883 -0.654816375648 y[1] (closed_form) = -0.290173947574 -0.654585980546 absolute error = 0.0002325 relative error = 0.03247 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.757 Order of pole (three term test) = 30.01 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3966 1.352 h = 0.0001 0.003 y[1] (numeric) = -0.298517709637 -0.655661715045 y[1] (closed_form) = -0.298487150765 -0.655446823658 absolute error = 0.0002171 relative error = 0.03014 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.242 Order of pole (three term test) = 29.99 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3967 1.355 h = 0.001 0.001 y[1] (numeric) = -0.303541797226 -0.656099916689 y[1] (closed_form) = -0.303505589403 -0.655887312304 absolute error = 0.0002157 relative error = 0.02984 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.77 Order of pole (three term test) = 29.97 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3977 1.356 h = 0.001 0.003 y[1] (numeric) = -0.305413592218 -0.654628275912 y[1] (closed_form) = -0.305375002158 -0.654417737481 absolute error = 0.000214 relative error = 0.02964 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 8.419 Order of pole (three term test) = 29.97 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3987 1.359 h = 0.0001 0.004 y[1] (numeric) = -0.310623001571 -0.653549505155 y[1] (closed_form) = -0.310589435849 -0.653334946055 absolute error = 0.0002172 relative error = 0.03002 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.793 Order of pole (three term test) = 29.96 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3988 1.363 h = 0.003 0.006 y[1] (numeric) = -0.317352816294 -0.654152049436 y[1] (closed_form) = -0.31732440707 -0.653939394283 absolute error = 0.0002145 relative error = 0.02952 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.402 Order of pole (three term test) = 29.95 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4018 1.369 h = 0.0001 0.005 y[1] (numeric) = -0.32804210014 -0.650232833884 y[1] (closed_form) = -0.328008516351 -0.649996498768 absolute error = 0.0002387 relative error = 0.03279 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.881 Order of pole (three term test) = 29.94 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4019 1.374 h = 0.0001 0.003 y[1] (numeric) = -0.336543785508 -0.650945462364 y[1] (closed_form) = -0.33651093635 -0.650724932231 absolute error = 0.000223 relative error = 0.03044 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.343 Order of pole (three term test) = 29.91 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.402 1.377 h = 0.001 0.001 y[1] (numeric) = -0.341680843745 -0.651302257171 y[1] (closed_form) = -0.341642249839 -0.651084097702 absolute error = 0.0002215 relative error = 0.03013 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.85 Order of pole (three term test) = 29.9 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.403 1.378 h = 0.001 0.003 y[1] (numeric) = -0.343565311787 -0.649766126225 y[1] (closed_form) = -0.343524302739 -0.649550089728 absolute error = 0.0002199 relative error = 0.02993 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 8.799 Order of pole (three term test) = 29.9 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.404 1.381 h = 0.0001 0.004 y[1] (numeric) = -0.348864392806 -0.648570944181 y[1] (closed_form) = -0.348828479819 -0.648350773348 absolute error = 0.0002231 relative error = 0.0303 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.009 Order of pole (three term test) = 29.89 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4041 1.385 h = 0.003 0.006 y[1] (numeric) = -0.355746187206 -0.649065235571 y[1] (closed_form) = -0.355715545596 -0.648846971134 absolute error = 0.0002204 relative error = 0.02979 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.69 Order of pole (three term test) = 29.87 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4071 1.391 h = 0.0001 0.005 y[1] (numeric) = -0.36658968301 -0.644872358626 y[1] (closed_form) = -0.36655360313 -0.64462998095 absolute error = 0.000245 relative error = 0.03305 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.011 Order of pole (three term test) = 29.86 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4072 1.396 h = 0.0001 0.003 y[1] (numeric) = -0.375283297621 -0.645448362055 y[1] (closed_form) = -0.375248074586 -0.645222097665 absolute error = 0.000229 relative error = 0.03068 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.448 Order of pole (three term test) = 29.84 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4073 1.399 h = 0.001 0.001 y[1] (numeric) = -0.380535006571 -0.645721370196 y[1] (closed_form) = -0.380493940929 -0.645497562553 absolute error = 0.0002275 relative error = 0.03037 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.934 Order of pole (three term test) = 29.82 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4083 1.4 h = 0.003 0.006 y[1] (numeric) = -0.382431959442 -0.644119386529 y[1] (closed_form) = -0.382388445145 -0.643897760408 absolute error = 0.0002259 relative error = 0.03016 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 19.51 Order of pole (three term test) = 29.82 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=879.5MB, alloc=44.3MB, time=10.64 x[1] = 0.4113 1.406 h = 0.0001 0.005 y[1] (numeric) = -0.393356048977 -0.639741998097 y[1] (closed_form) = -0.393325993167 -0.639484556854 absolute error = 0.0002592 relative error = 0.03452 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.103 Order of pole (three term test) = 29.81 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4114 1.411 h = 0.0001 0.003 y[1] (numeric) = -0.402179798258 -0.640216771029 y[1] (closed_form) = -0.402150693743 -0.639975656085 absolute error = 0.0002429 relative error = 0.03213 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.523 Order of pole (three term test) = 29.79 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4115 1.414 h = 0.001 0.001 y[1] (numeric) = -0.407509181807 -0.64042778945 y[1] (closed_form) = -0.407474168398 -0.640189194433 absolute error = 0.0002412 relative error = 0.03178 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 1.992 Order of pole (three term test) = 29.78 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4125 1.415 h = 0.001 0.003 y[1] (numeric) = -0.409412907907 -0.638779390323 y[1] (closed_form) = -0.409375423962 -0.638543018872 absolute error = 0.0002393 relative error = 0.03155 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 9.475 Order of pole (three term test) = 29.78 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4135 1.418 h = 0.0001 0.004 y[1] (numeric) = -0.414862482516 -0.637378754348 y[1] (closed_form) = -0.414830215742 -0.637138047815 absolute error = 0.0002429 relative error = 0.03194 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.394 Order of pole (three term test) = 29.77 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4136 1.422 h = 0.003 0.006 y[1] (numeric) = -0.422003077988 -0.637679114328 y[1] (closed_form) = -0.421976283022 -0.637440314438 absolute error = 0.0002403 relative error = 0.03143 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.205 Order of pole (three term test) = 29.75 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4166 1.428 h = 0.0001 0.005 y[1] (numeric) = -0.43310233229 -0.633005602666 y[1] (closed_form) = -0.433069623999 -0.632741943187 absolute error = 0.0002657 relative error = 0.03465 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.242 Order of pole (three term test) = 29.74 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4167 1.433 h = 0.0001 0.003 y[1] (numeric) = -0.442122810412 -0.633336825447 y[1] (closed_form) = -0.442091182893 -0.633089812589 absolute error = 0.000249 relative error = 0.03225 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.637 Order of pole (three term test) = 29.71 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4168 1.436 h = 0.001 0.001 y[1] (numeric) = -0.447569691209 -0.633459848113 y[1] (closed_form) = -0.447532053456 -0.633215445546 absolute error = 0.0002473 relative error = 0.03189 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.082 Order of pole (three term test) = 29.7 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4178 1.437 h = 0.001 0.003 y[1] (numeric) = -0.449485526145 -0.631743226708 y[1] (closed_form) = -0.449445383357 -0.631501108936 absolute error = 0.0002454 relative error = 0.03166 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 9.902 Order of pole (three term test) = 29.7 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4188 1.44 h = 0.0001 0.004 y[1] (numeric) = -0.455027363851 -0.630218145808 y[1] (closed_form) = -0.454992513543 -0.62997157083 absolute error = 0.000249 relative error = 0.03205 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.637 Order of pole (three term test) = 29.69 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4189 1.444 h = 0.003 0.006 y[1] (numeric) = -0.462326068048 -0.630401447881 y[1] (closed_form) = -0.462296812194 -0.630156780891 absolute error = 0.0002464 relative error = 0.03153 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.529 Order of pole (three term test) = 29.67 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4219 1.45 h = 0.0001 0.005 y[1] (numeric) = -0.473582596449 -0.625436462894 y[1] (closed_form) = -0.473547141016 -0.6251664768 absolute error = 0.0002723 relative error = 0.03472 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.388 Order of pole (three term test) = 29.66 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.422 1.455 h = 0.0001 0.003 y[1] (numeric) = -0.482802781621 -0.625619926507 y[1] (closed_form) = -0.48276854081 -0.625366914695 absolute error = 0.0002553 relative error = 0.03232 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.755 Order of pole (three term test) = 29.64 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4221 1.458 h = 0.001 0.001 y[1] (numeric) = -0.488368926469 -0.625652394752 y[1] (closed_form) = -0.488328571953 -0.625402086187 absolute error = 0.0002535 relative error = 0.03195 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.176 Order of pole (three term test) = 29.62 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4231 1.459 h = 0.001 0.003 y[1] (numeric) = -0.490296654226 -0.623866098911 y[1] (closed_form) = -0.490253759569 -0.623618137994 absolute error = 0.0002516 relative error = 0.03172 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 10.35 Order of pole (three term test) = 29.63 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4241 1.462 h = 0.0001 0.004 y[1] (numeric) = -0.495931770428 -0.622213450762 y[1] (closed_form) = -0.495894244932 -0.621960907249 absolute error = 0.0002553 relative error = 0.0321 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.891 Order of pole (three term test) = 29.62 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4242 1.466 h = 0.003 0.006 y[1] (numeric) = -0.503390975281 -0.622276275941 y[1] (closed_form) = -0.503359169881 -0.622025641328 absolute error = 0.0002526 relative error = 0.03157 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.868 Order of pole (three term test) = 29.6 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=923.3MB, alloc=44.3MB, time=11.16 x[1] = 0.4272 1.472 h = 0.0001 0.005 y[1] (numeric) = -0.514805984893 -0.617012892874 y[1] (closed_form) = -0.514767684927 -0.616736469544 absolute error = 0.0002791 relative error = 0.03474 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.541 Order of pole (three term test) = 29.59 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4273 1.477 h = 0.0001 0.003 y[1] (numeric) = -0.524228911913 -0.617044274362 y[1] (closed_form) = -0.524191964932 -0.616785160429 absolute error = 0.0002617 relative error = 0.03234 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.879 Order of pole (three term test) = 29.56 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4274 1.48 h = 0.001 0.001 y[1] (numeric) = -0.529916120871 -0.61698356042 y[1] (closed_form) = -0.529872954556 -0.616727245347 absolute error = 0.0002599 relative error = 0.03197 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.274 Order of pole (three term test) = 29.55 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4284 1.481 h = 0.0001 0.004 y[1] (numeric) = -0.531855514606 -0.615126103444 y[1] (closed_form) = -0.531809772435 -0.614872200536 absolute error = 0.000258 relative error = 0.03174 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 13.68 Order of pole (three term test) = 29.55 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4285 1.485 h = 0.003 0.006 y[1] (numeric) = -0.53944798081 -0.615088054564 y[1] (closed_form) = -0.539416403651 -0.614832377282 absolute error = 0.0002576 relative error = 0.0315 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 8.173 Order of pole (three term test) = 29.53 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4315 1.491 h = 0.0001 0.005 y[1] (numeric) = -0.551004044432 -0.60956405066 y[1] (closed_form) = -0.550965717375 -0.609282168578 absolute error = 0.0002845 relative error = 0.03463 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.678 Order of pole (three term test) = 29.52 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4316 1.496 h = 0.0001 0.003 y[1] (numeric) = -0.560605842392 -0.609463439558 y[1] (closed_form) = -0.560568987025 -0.609199163117 absolute error = 0.0002668 relative error = 0.03223 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.991 Order of pole (three term test) = 29.5 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4317 1.499 h = 0.001 0.001 y[1] (numeric) = -0.566399880181 -0.609321831213 y[1] (closed_form) = -0.566356711629 -0.60906043682 absolute error = 0.0002649 relative error = 0.03185 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.362 Order of pole (three term test) = 29.48 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4327 1.5 h = 0.001 0.003 y[1] (numeric) = -0.56834999778 -0.607402038843 y[1] (closed_form) = -0.56830422134 -0.607143113074 absolute error = 0.0002629 relative error = 0.03162 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 11.23 Order of pole (three term test) = 29.48 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4337 1.503 h = 0.0001 0.004 y[1] (numeric) = -0.57416304073 -0.60550457293 y[1] (closed_form) = -0.5741227814 -0.605240823245 absolute error = 0.0002668 relative error = 0.03198 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.394 Order of pole (three term test) = 29.48 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4338 1.507 h = 0.003 0.006 y[1] (numeric) = -0.58192895631 -0.605335782284 y[1] (closed_form) = -0.581894659042 -0.605073943518 absolute error = 0.0002641 relative error = 0.03146 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 8.541 Order of pole (three term test) = 29.46 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4368 1.513 h = 0.0001 0.005 y[1] (numeric) = -0.59364584096 -0.599500046229 y[1] (closed_form) = -0.59360448203 -0.599211513761 absolute error = 0.0002915 relative error = 0.03456 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.844 Order of pole (three term test) = 29.45 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4369 1.518 h = 0.0001 0.003 y[1] (numeric) = -0.603456234549 -0.599239034262 y[1] (closed_form) = -0.603416494357 -0.598968456805 absolute error = 0.0002735 relative error = 0.03217 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.126 Order of pole (three term test) = 29.42 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.437 1.521 h = 0.001 0.001 y[1] (numeric) = -0.609374808483 -0.598999186971 y[1] (closed_form) = -0.60932864536 -0.598731592279 absolute error = 0.0002715 relative error = 0.03179 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.468 Order of pole (three term test) = 29.41 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.438 1.522 h = 0.001 0.003 y[1] (numeric) = -0.611336158306 -0.59700536996 y[1] (closed_form) = -0.611287350417 -0.596740311596 absolute error = 0.0002695 relative error = 0.03155 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 11.74 Order of pole (three term test) = 29.41 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.439 1.525 h = 0.0001 0.004 y[1] (numeric) = -0.617245494637 -0.594970969983 y[1] (closed_form) = -0.617202284543 -0.594700952565 absolute error = 0.0002735 relative error = 0.0319 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.682 Order of pole (three term test) = 29.4 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4391 1.529 h = 0.003 0.006 y[1] (numeric) = -0.625179048096 -0.594671434328 y[1] (closed_form) = -0.625141934603 -0.594403327371 absolute error = 0.0002707 relative error = 0.03138 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 8.925 Order of pole (three term test) = 29.38 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4421 1.535 h = 0.0001 0.005 y[1] (numeric) = -0.637057967696 -0.58851653701 y[1] (closed_form) = -0.637013471332 -0.588221236926 absolute error = 0.0002986 relative error = 0.03444 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.017 Order of pole (three term test) = 29.37 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=967.9MB, alloc=44.3MB, time=11.71 x[1] = 0.4422 1.54 h = 0.0001 0.003 y[1] (numeric) = -0.647080157144 -0.588090460926 y[1] (closed_form) = -0.64703743149 -0.587813473031 absolute error = 0.0002803 relative error = 0.03206 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.266 Order of pole (three term test) = 29.35 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4423 1.543 h = 0.001 0.001 y[1] (numeric) = -0.653125164454 -0.587749540574 y[1] (closed_form) = -0.653075903892 -0.587475639018 absolute error = 0.0002783 relative error = 0.03168 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.579 Order of pole (three term test) = 29.33 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4433 1.544 h = 0.001 0.003 y[1] (numeric) = -0.655097486589 -0.585680109769 y[1] (closed_form) = -0.655045543771 -0.58540881402 absolute error = 0.0002762 relative error = 0.03144 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 12.27 Order of pole (three term test) = 29.34 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4443 1.547 h = 0.0001 0.004 y[1] (numeric) = -0.661104180469 -0.583505335486 y[1] (closed_form) = -0.661057917524 -0.583228941977 absolute error = 0.0002802 relative error = 0.03179 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.983 Order of pole (three term test) = 29.33 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4444 1.551 h = 0.003 0.006 y[1] (numeric) = -0.669207940574 -0.583071267643 y[1] (closed_form) = -0.669167911996 -0.582796783586 absolute error = 0.0002774 relative error = 0.03126 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 9.326 Order of pole (three term test) = 29.31 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4474 1.557 h = 0.0001 0.005 y[1] (numeric) = -0.681250108489 -0.576589596645 y[1] (closed_form) = -0.681202366123 -0.57628740936 absolute error = 0.0003059 relative error = 0.03429 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.197 Order of pole (three term test) = 29.3 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4475 1.562 h = 0.0001 0.003 y[1] (numeric) = -0.69148735209 -0.575993668543 y[1] (closed_form) = -0.691441537485 -0.57571015856 absolute error = 0.0002872 relative error = 0.03192 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.413 Order of pole (three term test) = 29.27 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4476 1.565 h = 0.001 0.001 y[1] (numeric) = -0.697660724078 -0.575548765446 y[1] (closed_form) = -0.697608260328 -0.57526844831 absolute error = 0.0002852 relative error = 0.03154 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.695 Order of pole (three term test) = 29.26 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4486 1.566 h = 0.001 0.003 y[1] (numeric) = -0.699643745985 -0.573402094661 y[1] (closed_form) = -0.69958856187 -0.573124454623 absolute error = 0.0002831 relative error = 0.0313 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 12.82 Order of pole (three term test) = 29.26 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4496 1.569 h = 0.0001 0.004 y[1] (numeric) = -0.70574887323 -0.571083419124 y[1] (closed_form) = -0.705699452469 -0.570800538973 absolute error = 0.0002872 relative error = 0.03164 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.297 Order of pole (three term test) = 29.26 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4497 1.573 h = 0.003 0.006 y[1] (numeric) = -0.714025454975 -0.570510930883 y[1] (closed_form) = -0.713982409634 -0.57022995859 absolute error = 0.0002843 relative error = 0.03111 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 9.746 Order of pole (three term test) = 29.23 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4527 1.579 h = 0.0001 0.005 y[1] (numeric) = -0.726232082788 -0.563694686733 y[1] (closed_form) = -0.726180982765 -0.56338549028 absolute error = 0.0003134 relative error = 0.0341 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.386 Order of pole (three term test) = 29.23 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4528 1.584 h = 0.0001 0.003 y[1] (numeric) = -0.736687697273 -0.562923991116 y[1] (closed_form) = -0.736638687296 -0.562633845145 absolute error = 0.0002943 relative error = 0.03175 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.567 Order of pole (three term test) = 29.2 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4529 1.587 h = 0.001 0.001 y[1] (numeric) = -0.742991399516 -0.562372118247 y[1] (closed_form) = -0.74293562387 -0.562085274635 absolute error = 0.0002922 relative error = 0.03137 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.817 Order of pole (three term test) = 29.19 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4539 1.588 h = 0.0001 0.004 y[1] (numeric) = -0.744984835517 -0.560146543585 y[1] (closed_form) = -0.744926300783 -0.559862450217 absolute error = 0.0002901 relative error = 0.03113 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 16.95 Order of pole (three term test) = 29.19 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.454 1.592 h = 0.003 0.006 y[1] (numeric) = -0.753404950439 -0.559458170566 y[1] (closed_form) = -0.753361984514 -0.559171631473 absolute error = 0.0002897 relative error = 0.03088 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 10.12 Order of pole (three term test) = 29.17 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.457 1.598 h = 0.0001 0.005 y[1] (numeric) = -0.765758223174 -0.55234952437 y[1] (closed_form) = -0.765706907318 -0.552034299695 absolute error = 0.0003194 relative error = 0.03383 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.556 Order of pole (three term test) = 29.17 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4571 1.603 h = 0.0001 0.003 y[1] (numeric) = -0.776406668811 -0.551427014954 y[1] (closed_form) = -0.776357582427 -0.551131170563 absolute error = 0.0002999 relative error = 0.0315 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.705 Order of pole (three term test) = 29.14 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4572 1.606 h = 0.001 0.001 y[1] (numeric) = -0.782825479404 -0.55078219874 y[1] (closed_form) = -0.782769523844 -0.550489752013 absolute error = 0.0002978 relative error = 0.03111 % Correct digits = 4 memory used=1012.6MB, alloc=44.3MB, time=12.25 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 2.926 Order of pole (three term test) = 29.12 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4582 1.607 h = 0.001 0.003 y[1] (numeric) = -0.784828607924 -0.548487463712 y[1] (closed_form) = -0.78476985855 -0.548197831238 absolute error = 0.0002955 relative error = 0.03087 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 13.91 Order of pole (three term test) = 29.13 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4592 1.61 h = 0.0001 0.004 y[1] (numeric) = -0.791121616039 -0.545892532984 y[1] (closed_form) = -0.791068790902 -0.545597386542 absolute error = 0.0002998 relative error = 0.0312 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.92 Order of pole (three term test) = 29.12 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4593 1.614 h = 0.003 0.006 y[1] (numeric) = -0.799728661035 -0.545053906419 y[1] (closed_form) = -0.799682482793 -0.544760664978 absolute error = 0.0002969 relative error = 0.03068 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 10.58 Order of pole (three term test) = 29.1 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4623 1.62 h = 0.0001 0.005 y[1] (numeric) = -0.812248737379 -0.537595677329 y[1] (closed_form) = -0.812193849137 -0.537273208668 absolute error = 0.0003271 relative error = 0.03359 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.761 Order of pole (three term test) = 29.1 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4624 1.625 h = 0.0001 0.003 y[1] (numeric) = -0.823121944625 -0.536488945 y[1] (closed_form) = -0.823069458212 -0.536186245233 absolute error = 0.0003072 relative error = 0.03127 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.872 Order of pole (three term test) = 29.07 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4625 1.628 h = 0.001 0.001 y[1] (numeric) = -0.829674872696 -0.535731413116 y[1] (closed_form) = -0.829615396217 -0.535432226298 absolute error = 0.000305 relative error = 0.03089 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.057 Order of pole (three term test) = 29.05 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4635 1.629 h = 0.001 0.003 y[1] (numeric) = -0.831687867898 -0.533354571541 y[1] (closed_form) = -0.83162555771 -0.53305827568 absolute error = 0.0003028 relative error = 0.03065 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 14.54 Order of pole (three term test) = 29.06 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4645 1.632 h = 0.0001 0.004 y[1] (numeric) = -0.838082493985 -0.530605167412 y[1] (closed_form) = -0.838026195594 -0.530303204335 absolute error = 0.0003072 relative error = 0.03097 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 8.277 Order of pole (three term test) = 29.05 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4646 1.636 h = 0.003 0.006 y[1] (numeric) = -0.846870149892 -0.529616450721 y[1] (closed_form) = -0.846820649221 -0.529316389235 absolute error = 0.0003041 relative error = 0.03045 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 11.05 Order of pole (three term test) = 29.03 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4676 1.642 h = 0.0001 0.005 y[1] (numeric) = -0.859558231568 -0.521800282572 y[1] (closed_form) = -0.85949965004 -0.521470440936 absolute error = 0.000335 relative error = 0.03332 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.975 Order of pole (three term test) = 29.03 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4677 1.647 h = 0.0001 0.003 y[1] (numeric) = -0.870659687976 -0.52050403063 y[1] (closed_form) = -0.87060368634 -0.520194354951 absolute error = 0.0003147 relative error = 0.03103 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.046 Order of pole (three term test) = 29.01 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4678 1.65 h = 0.001 0.001 y[1] (numeric) = -0.877348799239 -0.519630564993 y[1] (closed_form) = -0.877285684278 -0.51932452078 absolute error = 0.0003125 relative error = 0.03065 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.195 Order of pole (three term test) = 28.99 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4688 1.651 h = 0.001 0.003 y[1] (numeric) = -0.87937133543 -0.517169841044 y[1] (closed_form) = -0.879305346249 -0.51686676647 absolute error = 0.0003102 relative error = 0.03041 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 15.19 Order of pole (three term test) = 29 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4698 1.654 h = 0.0001 0.004 y[1] (numeric) = -0.885868698159 -0.514262084108 y[1] (closed_form) = -0.885808809755 -0.513953185084 absolute error = 0.0003147 relative error = 0.03072 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 8.649 Order of pole (three term test) = 28.99 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4699 1.658 h = 0.003 0.006 y[1] (numeric) = -0.894839762421 -0.513118976705 y[1] (closed_form) = -0.894786826104 -0.512811975146 absolute error = 0.0003115 relative error = 0.03021 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 11.55 Order of pole (three term test) = 28.97 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4729 1.664 h = 0.0001 0.005 y[1] (numeric) = -0.907697044272 -0.504936310959 y[1] (closed_form) = -0.907634645154 -0.504598964859 absolute error = 0.0003431 relative error = 0.03304 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.199 Order of pole (three term test) = 28.97 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.473 1.669 h = 0.0001 0.003 y[1] (numeric) = -0.919030297258 -0.503445103065 y[1] (closed_form) = -0.918970661976 -0.503128328576 absolute error = 0.0003223 relative error = 0.03077 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.228 Order of pole (three term test) = 28.94 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4731 1.672 h = 0.001 0.001 y[1] (numeric) = -0.925857692478 -0.502452400977 y[1] (closed_form) = -0.925790818216 -0.502139379786 absolute error = 0.0003201 relative error = 0.03039 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.338 Order of pole (three term test) = 28.93 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=1057.2MB, alloc=44.3MB, time=12.78 x[1] = 0.4741 1.673 h = 0.001 0.003 y[1] (numeric) = -0.927889428754 -0.499905978356 y[1] (closed_form) = -0.927819639143 -0.499596007512 absolute error = 0.0003177 relative error = 0.03015 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 15.88 Order of pole (three term test) = 28.93 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4751 1.676 h = 0.0001 0.004 y[1] (numeric) = -0.934490656704 -0.49683589305 y[1] (closed_form) = -0.934427058273 -0.496519936443 absolute error = 0.0003223 relative error = 0.03046 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 9.038 Order of pole (three term test) = 28.93 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4752 1.68 h = 0.003 0.006 y[1] (numeric) = -0.943647974378 -0.495533981187 y[1] (closed_form) = -0.943591486013 -0.49521991716 absolute error = 0.0003191 relative error = 0.02994 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 12.07 Order of pole (three term test) = 28.91 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4782 1.686 h = 0.0001 0.005 y[1] (numeric) = -0.956675642913 -0.48697605275 y[1] (closed_form) = -0.956609298413 -0.486631068165 absolute error = 0.0003513 relative error = 0.03273 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.433 Order of pole (three term test) = 28.91 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4783 1.691 h = 0.0001 0.003 y[1] (numeric) = -0.968244300109 -0.48528430962 y[1] (closed_form) = -0.968180909445 -0.484960311036 absolute error = 0.0003301 relative error = 0.03049 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.418 Order of pole (three term test) = 28.89 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4784 1.694 h = 0.001 0.001 y[1] (numeric) = -0.97521211529 -0.48416898177 y[1] (closed_form) = -0.975141357566 -0.483848861714 absolute error = 0.0003278 relative error = 0.03012 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.489 Order of pole (three term test) = 28.87 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4794 1.695 h = 0.0001 0.004 y[1] (numeric) = -0.977252694955 -0.481535002963 y[1] (closed_form) = -0.977178980135 -0.481218016033 absolute error = 0.0003254 relative error = 0.02988 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 20.99 Order of pole (three term test) = 28.88 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4795 1.699 h = 0.003 0.006 y[1] (numeric) = -0.986564735129 -0.480100158682 y[1] (closed_form) = -0.986508147779 -0.479779943138 absolute error = 0.0003252 relative error = 0.02964 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 12.54 Order of pole (three term test) = 28.86 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4825 1.705 h = 0.0001 0.005 y[1] (numeric) = -0.999744625628 -0.471214085618 y[1] (closed_form) = -0.999677841267 -0.47086243938 absolute error = 0.0003579 relative error = 0.03239 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.643 Order of pole (three term test) = 28.86 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4826 1.71 h = 0.0001 0.003 y[1] (numeric) = -1.01152132798 -0.469348012807 y[1] (closed_form) = -1.01145766091 -0.469017718731 absolute error = 0.0003364 relative error = 0.03017 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.589 Order of pole (three term test) = 28.84 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4827 1.713 h = 0.001 0.001 y[1] (numeric) = -1.01861326678 -0.468126059047 y[1] (closed_form) = -1.0185421189 -0.467799752518 absolute error = 0.000334 relative error = 0.0298 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.624 Order of pole (three term test) = 28.82 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4837 1.714 h = 0.001 0.003 y[1] (numeric) = -1.02066223427 -0.46541529457 y[1] (closed_form) = -1.02058809184 -0.465092193606 absolute error = 0.0003315 relative error = 0.02956 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 17.23 Order of pole (three term test) = 28.83 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4847 1.717 h = 0.0001 0.004 y[1] (numeric) = -1.02746181722 -0.462033504321 y[1] (closed_form) = -1.02739404002 -0.461704107367 absolute error = 0.0003363 relative error = 0.02986 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 9.81 Order of pole (three term test) = 28.83 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4848 1.721 h = 0.003 0.006 y[1] (numeric) = -1.03697546671 -0.460426249164 y[1] (closed_form) = -1.03691510349 -0.460098735541 absolute error = 0.000333 relative error = 0.02936 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 13.1 Order of pole (three term test) = 28.8 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4878 1.727 h = 0.0001 0.005 y[1] (numeric) = -1.05032803477 -0.451148052985 y[1] (closed_form) = -1.05025705931 -0.450788510412 absolute error = 0.0003665 relative error = 0.03207 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.897 Order of pole (three term test) = 28.81 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4879 1.732 h = 0.0001 0.003 y[1] (numeric) = -1.06234708637 -0.449070715772 y[1] (closed_form) = -1.06227942985 -0.448732956469 absolute error = 0.0003445 relative error = 0.02987 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.795 Order of pole (three term test) = 28.79 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.488 1.735 h = 0.001 0.001 y[1] (numeric) = -1.06958355706 -0.447719618417 y[1] (closed_form) = -1.06950828701 -0.44738597842 absolute error = 0.000342 relative error = 0.0295 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.787 Order of pole (three term test) = 28.77 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.489 1.736 h = 0.001 0.003 y[1] (numeric) = -1.07164068345 -0.444917724304 y[1] (closed_form) = -1.07156237593 -0.444587376623 absolute error = 0.0003395 relative error = 0.02926 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 18.01 Order of pole (three term test) = 28.78 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=1101.7MB, alloc=44.3MB, time=13.32 x[1] = 0.49 1.739 h = 0.0001 0.004 y[1] (numeric) = -1.07854746255 -0.441361696553 y[1] (closed_form) = -1.07847561482 -0.441024879389 absolute error = 0.0003444 relative error = 0.02956 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 10.25 Order of pole (three term test) = 28.78 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4901 1.743 h = 0.003 0.006 y[1] (numeric) = -1.08825582716 -0.439582396911 y[1] (closed_form) = -1.08819156211 -0.439247455857 absolute error = 0.0003411 relative error = 0.02906 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 13.69 Order of pole (three term test) = 28.76 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4931 1.749 h = 0.0001 0.005 y[1] (numeric) = -1.10178222961 -0.429902697538 y[1] (closed_form) = -1.10170692478 -0.429535117149 absolute error = 0.0003752 relative error = 0.03173 % Correct digits = 3 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.162 Order of pole (three term test) = 28.77 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4932 1.754 h = 0.0001 0.003 y[1] (numeric) = -1.11404741405 -0.427608089471 y[1] (closed_form) = -1.11397563643 -0.427262732615 absolute error = 0.0003527 relative error = 0.02956 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.011 Order of pole (three term test) = 28.75 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4933 1.757 h = 0.001 0.001 y[1] (numeric) = -1.12143065555 -0.426124200404 y[1] (closed_form) = -1.12135112917 -0.425783098269 absolute error = 0.0003503 relative error = 0.0292 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 3.957 Order of pole (three term test) = 28.73 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4943 1.758 h = 0.001 0.003 y[1] (numeric) = -1.12349553614 -0.423229196743 y[1] (closed_form) = -1.12341292875 -0.422891475885 absolute error = 0.0003477 relative error = 0.02896 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 18.82 Order of pole (three term test) = 28.74 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4953 1.761 h = 0.0001 0.004 y[1] (numeric) = -1.13051067546 -0.419494564883 y[1] (closed_form) = -1.13043462384 -0.419150196593 absolute error = 0.0003527 relative error = 0.02925 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 10.71 Order of pole (three term test) = 28.74 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4954 1.765 h = 0.003 0.006 y[1] (numeric) = -1.14041678801 -0.417538345 y[1] (closed_form) = -1.14034849169 -0.417195844686 absolute error = 0.0003492 relative error = 0.02876 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 14.31 Order of pole (three term test) = 28.72 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4984 1.771 h = 0.0001 0.005 y[1] (numeric) = -1.15411816729 -0.407447538757 y[1] (closed_form) = -1.15403839101 -0.407071776417 absolute error = 0.0003841 relative error = 0.03139 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.439 Order of pole (three term test) = 28.74 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4985 1.776 h = 0.0001 0.003 y[1] (numeric) = -1.16663332974 -0.40492949692 y[1] (closed_form) = -1.1665572957 -0.404576407687 absolute error = 0.0003612 relative error = 0.02925 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.236 Order of pole (three term test) = 28.71 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4986 1.779 h = 0.001 0.001 y[1] (numeric) = -1.17416561693 -0.403309073254 y[1] (closed_form) = -1.17408169637 -0.402960377902 absolute error = 0.0003587 relative error = 0.02889 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.135 Order of pole (three term test) = 28.7 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4996 1.78 h = 0.001 0.003 y[1] (numeric) = -1.17623782883 -0.400318935877 y[1] (closed_form) = -1.17615078311 -0.399973713021 absolute error = 0.000356 relative error = 0.02866 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 19.66 Order of pole (three term test) = 28.71 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5006 1.783 h = 0.0001 0.004 y[1] (numeric) = -1.18336250018 -0.396401226597 y[1] (closed_form) = -1.18328210764 -0.396049173802 absolute error = 0.0003611 relative error = 0.02894 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 11.19 Order of pole (three term test) = 28.71 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5007 1.787 h = 0.003 0.006 y[1] (numeric) = -1.1934694424 -0.394263083939 y[1] (closed_form) = -1.19339698176 -0.393912890027 absolute error = 0.0003576 relative error = 0.02846 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 14.95 Order of pole (three term test) = 28.69 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5037 1.793 h = 0.0001 0.005 y[1] (numeric) = -1.20734692485 -0.383751338908 y[1] (closed_form) = -1.20726253107 -0.383367247793 absolute error = 0.0003933 relative error = 0.03105 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.728 Order of pole (three term test) = 28.71 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5038 1.798 h = 0.0001 0.003 y[1] (numeric) = -1.22011597232 -0.38100354022 y[1] (closed_form) = -1.22003554282 -0.38064258125 absolute error = 0.0003698 relative error = 0.02894 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.472 Order of pole (three term test) = 28.68 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5039 1.801 h = 0.001 0.001 y[1] (numeric) = -1.22779961618 -0.379242742056 y[1] (closed_form) = -1.22771115982 -0.378886319971 absolute error = 0.0003672 relative error = 0.02858 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.321 Order of pole (three term test) = 28.67 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5049 1.802 h = 0.0001 0.004 y[1] (numeric) = -1.22987871767 -0.376155401708 y[1] (closed_form) = -1.22978709138 -0.375802545653 absolute error = 0.0003646 relative error = 0.02835 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 26 Order of pole (three term test) = 28.68 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=1146.5MB, alloc=44.3MB, time=13.85 x[1] = 0.505 1.806 h = 0.003 0.006 y[1] (numeric) = -1.24015251693 -0.373864996686 y[1] (closed_form) = -1.2400797442 -0.373508000605 absolute error = 0.0003643 relative error = 0.02813 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 15.53 Order of pole (three term test) = 28.66 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.508 1.812 h = 0.0001 0.005 y[1] (numeric) = -1.25418764938 -0.362984986347 y[1] (closed_form) = -1.25410255054 -0.362593530567 absolute error = 0.0004006 relative error = 0.03069 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.989 Order of pole (three term test) = 28.69 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5081 1.817 h = 0.0001 0.003 y[1] (numeric) = -1.26718125111 -0.360037320944 y[1] (closed_form) = -1.2671003078 -0.359669402895 absolute error = 0.0003767 relative error = 0.0286 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.683 Order of pole (three term test) = 28.66 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5082 1.82 h = 0.001 0.001 y[1] (numeric) = -1.27499879224 -0.358154383546 y[1] (closed_form) = -1.27490969743 -0.357791126912 absolute error = 0.000374 relative error = 0.02825 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.488 Order of pole (three term test) = 28.65 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5092 1.821 h = 0.001 0.003 y[1] (numeric) = -1.27708464772 -0.354981756622 y[1] (closed_form) = -1.2769923428 -0.354622147876 absolute error = 0.0003713 relative error = 0.02801 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 21.34 Order of pole (three term test) = 28.66 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5102 1.824 h = 0.0001 0.004 y[1] (numeric) = -1.28441858757 -0.350712439998 y[1] (closed_form) = -1.28433312325 -0.350345650408 absolute error = 0.0003766 relative error = 0.02829 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 12.15 Order of pole (three term test) = 28.67 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5103 1.828 h = 0.003 0.006 y[1] (numeric) = -1.29490991146 -0.348224501536 y[1] (closed_form) = -1.29483271859 -0.347859553427 absolute error = 0.000373 relative error = 0.02782 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 16.23 Order of pole (three term test) = 28.65 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5133 1.834 h = 0.0001 0.005 y[1] (numeric) = -1.3091233177 -0.336904646589 y[1] (closed_form) = -1.30903332059 -0.336504579709 absolute error = 0.0004101 relative error = 0.03034 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.303 Order of pole (three term test) = 28.68 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5134 1.839 h = 0.0001 0.003 y[1] (numeric) = -1.32237832019 -0.333715067493 y[1] (closed_form) = -1.32229271409 -0.333339015504 absolute error = 0.0003857 relative error = 0.02828 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.939 Order of pole (three term test) = 28.65 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5135 1.842 h = 0.001 0.001 y[1] (numeric) = -1.33035166342 -0.33168437292 y[1] (closed_form) = -1.33025776056 -0.33131313273 absolute error = 0.0003829 relative error = 0.02793 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.69 Order of pole (three term test) = 28.64 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5145 1.843 h = 0.001 0.003 y[1] (numeric) = -1.33244355999 -0.328410563923 y[1] (closed_form) = -1.33234640109 -0.32804306959 absolute error = 0.0003801 relative error = 0.0277 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 22.3 Order of pole (three term test) = 28.66 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5155 1.846 h = 0.0001 0.004 y[1] (numeric) = -1.33989048003 -0.323944776864 y[1] (closed_form) = -1.33980026333 -0.323569905559 absolute error = 0.0003856 relative error = 0.02797 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 12.7 Order of pole (three term test) = 28.66 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5156 1.85 h = 0.003 0.006 y[1] (numeric) = -1.35059178677 -0.321259915974 y[1] (closed_form) = -1.35051002992 -0.320886874117 absolute error = 0.0003819 relative error = 0.02751 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 16.96 Order of pole (three term test) = 28.64 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5186 1.856 h = 0.0001 0.005 y[1] (numeric) = -1.36498453996 -0.309489704736 y[1] (closed_form) = -1.36488948669 -0.309080872011 absolute error = 0.0004197 relative error = 0.02999 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.632 Order of pole (three term test) = 28.68 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5187 1.861 h = 0.0001 0.003 y[1] (numeric) = -1.37850503091 -0.306051410152 y[1] (closed_form) = -1.37841461176 -0.305667079403 absolute error = 0.0003948 relative error = 0.02796 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.206 Order of pole (three term test) = 28.66 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5188 1.864 h = 0.001 0.001 y[1] (numeric) = -1.38663659263 -0.303868828592 y[1] (closed_form) = -1.38653772881 -0.303489464155 absolute error = 0.000392 relative error = 0.02762 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 4.901 Order of pole (three term test) = 28.65 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5198 1.865 h = 0.001 0.003 y[1] (numeric) = -1.38873403138 -0.300491634344 y[1] (closed_form) = -1.38863186496 -0.300116116202 absolute error = 0.0003892 relative error = 0.02739 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 23.31 Order of pole (three term test) = 28.66 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5208 1.868 h = 0.0001 0.004 y[1] (numeric) = -1.39629512976 -0.295824469493 y[1] (closed_form) = -1.39620000859 -0.295441373266 absolute error = 0.0003947 relative error = 0.02766 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 13.27 Order of pole (three term test) = 28.67 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5209 1.872 h = 0.003 0.006 y[1] (numeric) = -1.4072096937 -0.292937165982 y[1] (closed_form) = -1.40712322507 -0.29255588603 absolute error = 0.000391 relative error = 0.0272 % Correct digits = 4 memory used=1191.2MB, alloc=44.3MB, time=14.39 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 17.72 Order of pole (three term test) = 28.65 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5239 1.878 h = 0.0001 0.005 y[1] (numeric) = -1.42178284372 -0.280705839617 y[1] (closed_form) = -1.42168257209 -0.280288083485 absolute error = 0.0004296 relative error = 0.02965 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.975 Order of pole (three term test) = 28.69 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.524 1.883 h = 0.0001 0.003 y[1] (numeric) = -1.43557297389 -0.277011852438 y[1] (closed_form) = -1.43547758729 -0.276619095456 absolute error = 0.0004042 relative error = 0.02765 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.485 Order of pole (three term test) = 28.67 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5241 1.886 h = 0.001 0.001 y[1] (numeric) = -1.44386520719 -0.274673147932 y[1] (closed_form) = -1.44376122533 -0.27428551601 absolute error = 0.0004013 relative error = 0.02731 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.121 Order of pole (three term test) = 28.66 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5251 1.887 h = 0.001 0.003 y[1] (numeric) = -1.44596766764 -0.271190316829 y[1] (closed_form) = -1.44586033601 -0.270806634161 absolute error = 0.0003984 relative error = 0.02708 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 24.35 Order of pole (three term test) = 28.68 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5261 1.89 h = 0.0001 0.004 y[1] (numeric) = -1.45364414759 -0.266316748385 y[1] (closed_form) = -1.4535439657 -0.265925281424 absolute error = 0.0004041 relative error = 0.02735 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 13.86 Order of pole (three term test) = 28.69 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5262 1.894 h = 0.003 0.006 y[1] (numeric) = -1.4647752931 -0.263221340027 y[1] (closed_form) = -1.4646839608 -0.262831674978 absolute error = 0.0004002 relative error = 0.0269 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 18.52 Order of pole (three term test) = 28.68 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5292 1.9 h = 0.0001 0.005 y[1] (numeric) = -1.47952986455 -0.250517887394 y[1] (closed_form) = -1.47942420787 -0.25009104744 absolute error = 0.0004397 relative error = 0.02931 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 8.333 Order of pole (three term test) = 28.72 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5293 1.905 h = 0.0001 0.003 y[1] (numeric) = -1.49359384798 -0.246561051052 y[1] (closed_form) = -1.49349333531 -0.246159717682 absolute error = 0.0004137 relative error = 0.02733 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.777 Order of pole (three term test) = 28.7 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5294 1.908 h = 0.001 0.001 y[1] (numeric) = -1.50204924282 -0.244061878989 y[1] (closed_form) = -1.50193998156 -0.243665833766 absolute error = 0.0004108 relative error = 0.027 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.351 Order of pole (three term test) = 28.69 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5304 1.909 h = 0.0001 0.004 y[1] (numeric) = -1.50415618211 -0.240471110093 y[1] (closed_form) = -1.50404352332 -0.240079119667 absolute error = 0.0004079 relative error = 0.02678 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 32.2 Order of pole (three term test) = 28.71 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5305 1.913 h = 0.003 0.006 y[1] (numeric) = -1.51546728985 -0.2372015519 y[1] (closed_form) = -1.51537539181 -0.236804362232 absolute error = 0.0004077 relative error = 0.02658 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 19.23 Order of pole (three term test) = 28.7 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5335 1.919 h = 0.0001 0.005 y[1] (numeric) = -1.53038462967 -0.224084871963 y[1] (closed_form) = -1.53027795485 -0.223649888603 absolute error = 0.0004479 relative error = 0.02896 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 8.656 Order of pole (three term test) = 28.75 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5336 1.924 h = 0.0001 0.003 y[1] (numeric) = -1.54469101036 -0.219899244516 y[1] (closed_form) = -1.54458970289 -0.219490216088 absolute error = 0.0004214 relative error = 0.02701 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.039 Order of pole (three term test) = 28.74 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5337 1.927 h = 0.001 0.001 y[1] (numeric) = -1.5532908553 -0.217260368065 y[1] (closed_form) = -1.55318066303 -0.216856769854 absolute error = 0.0004184 relative error = 0.02668 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.559 Order of pole (three term test) = 28.73 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5347 1.928 h = 0.001 0.003 y[1] (numeric) = -1.55540252149 -0.213574853161 y[1] (closed_form) = -1.5552888888 -0.213175402128 absolute error = 0.0004153 relative error = 0.02646 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 26.43 Order of pole (three term test) = 28.75 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5357 1.931 h = 0.0001 0.004 y[1] (numeric) = -1.56329952262 -0.208304831471 y[1] (closed_form) = -1.56319324057 -0.207897199747 absolute error = 0.0004213 relative error = 0.02671 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 15.05 Order of pole (three term test) = 28.76 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5358 1.935 h = 0.003 0.006 y[1] (numeric) = -1.57484534097 -0.204809293563 y[1] (closed_form) = -1.5747482873 -0.204403436151 absolute error = 0.0004173 relative error = 0.02628 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 20.1 Order of pole (three term test) = 28.75 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5388 1.941 h = 0.0001 0.005 y[1] (numeric) = -1.58994607269 -0.191199319974 y[1] (closed_form) = -1.5898336924 -0.190754944478 absolute error = 0.0004584 relative error = 0.02863 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 9.045 Order of pole (three term test) = 28.81 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=1235.9MB, alloc=44.3MB, time=14.93 x[1] = 0.5389 1.946 h = 0.0001 0.003 y[1] (numeric) = -1.60453440784 -0.186737086396 y[1] (closed_form) = -1.60442766938 -0.186319192911 absolute error = 0.0004313 relative error = 0.0267 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.356 Order of pole (three term test) = 28.8 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.539 1.949 h = 0.001 0.001 y[1] (numeric) = -1.61330220092 -0.183929390785 y[1] (closed_form) = -1.61318641914 -0.183517098945 absolute error = 0.0004282 relative error = 0.02638 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 5.809 Order of pole (three term test) = 28.79 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.54 1.95 h = 0.001 0.003 y[1] (numeric) = -1.61541730252 -0.180131514971 y[1] (closed_form) = -1.6152980314 -0.179723480808 absolute error = 0.0004251 relative error = 0.02616 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 27.62 Order of pole (three term test) = 28.81 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.541 1.953 h = 0.0001 0.004 y[1] (numeric) = -1.62343321467 -0.174640049214 y[1] (closed_form) = -1.62332140286 -0.17422361292 absolute error = 0.0004312 relative error = 0.02641 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 15.72 Order of pole (three term test) = 28.83 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5411 1.957 h = 0.003 0.006 y[1] (numeric) = -1.63520547615 -0.170919435054 y[1] (closed_form) = -1.63510310278 -0.170504755066 absolute error = 0.0004271 relative error = 0.02598 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 21 Order of pole (three term test) = 28.82 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5441 1.963 h = 0.0001 0.005 y[1] (numeric) = -1.65049054337 -0.156804405076 y[1] (closed_form) = -1.65037227759 -0.156350468622 absolute error = 0.0004691 relative error = 0.0283 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 9.452 Order of pole (three term test) = 28.88 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5442 1.968 h = 0.0001 0.003 y[1] (numeric) = -1.66536523179 -0.152057872381 y[1] (closed_form) = -1.66525289106 -0.151630955779 absolute error = 0.0004415 relative error = 0.0264 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.686 Order of pole (three term test) = 28.88 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5443 1.971 h = 0.001 0.001 y[1] (numeric) = -1.6743035704 -0.149076688266 y[1] (closed_form) = -1.67418202499 -0.1486555494 absolute error = 0.0004383 relative error = 0.02608 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.07 Order of pole (three term test) = 28.87 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5453 1.972 h = 0.001 0.003 y[1] (numeric) = -1.67642149687 -0.14516400402 y[1] (closed_form) = -1.6762964126 -0.144747236084 absolute error = 0.0004351 relative error = 0.02586 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 28.87 Order of pole (three term test) = 28.9 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5463 1.975 h = 0.0001 0.004 y[1] (numeric) = -1.68455753838 -0.139445586509 y[1] (closed_form) = -1.68444002356 -0.139020189432 absolute error = 0.0004413 relative error = 0.02611 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 16.43 Order of pole (three term test) = 28.92 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5464 1.979 h = 0.003 0.006 y[1] (numeric) = -1.69655976406 -0.135493653915 y[1] (closed_form) = -1.69645190244 -0.135069993737 absolute error = 0.0004372 relative error = 0.02569 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 21.95 Order of pole (three term test) = 28.91 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5494 1.985 h = 0.0001 0.005 y[1] (numeric) = -1.71203007665 -0.120861531551 y[1] (closed_form) = -1.71190574041 -0.120397862335 absolute error = 0.0004801 relative error = 0.02797 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 9.877 Order of pole (three term test) = 28.98 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5495 1.99 h = 0.0001 0.003 y[1] (numeric) = -1.72719558139 -0.115822810354 y[1] (closed_form) = -1.72707746242 -0.115386709766 absolute error = 0.0004518 relative error = 0.0261 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 8.032 Order of pole (three term test) = 28.98 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5496 1.993 h = 0.001 0.001 y[1] (numeric) = -1.7363071002 -0.11266334952 y[1] (closed_form) = -1.73617961237 -0.11223320754 absolute error = 0.0004486 relative error = 0.02579 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.343 Order of pole (three term test) = 28.98 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5506 1.994 h = 0.001 0.003 y[1] (numeric) = -1.73842721549 -0.108633356317 y[1] (closed_form) = -1.7382961387 -0.108207701338 absolute error = 0.0004454 relative error = 0.02557 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 30.16 Order of pole (three term test) = 29 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5516 1.997 h = 0.0001 0.004 y[1] (numeric) = -1.74668460658 -0.102682347874 y[1] (closed_form) = -1.74656121079 -0.102247831045 absolute error = 0.0004517 relative error = 0.02582 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 17.17 Order of pole (three term test) = 29.03 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5517 2.001 h = 0.003 0.006 y[1] (numeric) = -1.75892036842 -0.0984926955695 y[1] (closed_form) = -1.7588068454 -0.098059894773 absolute error = 0.0004474 relative error = 0.0254 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 22.93 Order of pole (three term test) = 29.03 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5547 2.007 h = 0.0001 0.005 y[1] (numeric) = -1.77457680009 -0.0833311658662 y[1] (closed_form) = -1.77444620341 -0.0828575890613 absolute error = 0.0004913 relative error = 0.02765 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 10.32 Order of pole (three term test) = 29.1 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=1280.6MB, alloc=44.3MB, time=15.47 x[1] = 0.5548 2.012 h = 0.0001 0.003 y[1] (numeric) = -1.79003764864 -0.0779921657427 y[1] (closed_form) = -1.78991357073 -0.0775467174622 absolute error = 0.0004624 relative error = 0.02581 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 8.393 Order of pole (three term test) = 29.1 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5549 2.015 h = 0.001 0.001 y[1] (numeric) = -1.79932501973 -0.0746495183055 y[1] (closed_form) = -1.79919140587 -0.0742102144056 absolute error = 0.0004592 relative error = 0.0255 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.628 Order of pole (three term test) = 29.11 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5559 2.016 h = 0.0001 0.004 y[1] (numeric) = -1.80144666145 -0.0704996616269 y[1] (closed_form) = -1.80130940793 -0.0700649636818 absolute error = 0.0004559 relative error = 0.02529 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 39.88 Order of pole (three term test) = 29.13 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.556 2.02 h = 0.003 0.006 y[1] (numeric) = -1.81387648335 -0.0661111063336 y[1] (closed_form) = -1.81376209368 -0.0656699802508 absolute error = 0.0004557 relative error = 0.02511 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 23.82 Order of pole (three term test) = 29.14 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.559 2.026 h = 0.0001 0.005 y[1] (numeric) = -1.82970030158 -0.0504860321761 y[1] (closed_form) = -1.82956831816 -0.0500034507941 absolute error = 0.0005003 relative error = 0.02734 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 10.72 Order of pole (three term test) = 29.22 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5591 2.031 h = 0.0001 0.003 y[1] (numeric) = -1.84542275898 -0.044885519101 y[1] (closed_form) = -1.84529755461 -0.0444315609748 absolute error = 0.0004709 relative error = 0.02551 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 8.718 Order of pole (three term test) = 29.23 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5592 2.034 h = 0.001 0.001 y[1] (numeric) = -1.85486593017 -0.041383302795 y[1] (closed_form) = -1.8547310414 -0.0409356509387 absolute error = 0.0004675 relative error = 0.0252 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 6.885 Order of pole (three term test) = 29.23 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5602 2.035 h = 0.001 0.003 y[1] (numeric) = -1.85698980482 -0.0371281910099 y[1] (closed_form) = -1.85685123082 -0.0366852492455 absolute error = 0.0004641 relative error = 0.02499 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 32.74 Order of pole (three term test) = 29.26 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5612 2.038 h = 0.0001 0.004 y[1] (numeric) = -1.86547918538 -0.0307303938008 y[1] (closed_form) = -1.86534850674 -0.0302781429129 absolute error = 0.0004708 relative error = 0.02523 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 18.64 Order of pole (three term test) = 29.29 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5613 2.042 h = 0.003 0.006 y[1] (numeric) = -1.87816220475 -0.0260836874596 y[1] (closed_form) = -1.87804182085 -0.0256331124387 absolute error = 0.0004664 relative error = 0.02483 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 24.89 Order of pole (three term test) = 29.3 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5643 2.048 h = 0.0001 0.005 y[1] (numeric) = -1.89417381796 -0.00990553751246 y[1] (closed_form) = -1.8940352089 -0.00941271265419 absolute error = 0.0005119 relative error = 0.02703 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 11.2 Order of pole (three term test) = 29.39 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5644 2.053 h = 0.0001 0.003 y[1] (numeric) = -1.91020031817 -0.00398919546707 y[1] (closed_form) = -1.91006880747 -0.00352557506327 absolute error = 0.0004819 relative error = 0.02523 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 9.11 Order of pole (three term test) = 29.4 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5645 2.056 h = 0.001 0.001 y[1] (numeric) = -1.91982447548 -0.000294355615326 y[1] (closed_form) = -1.9196831078 0.000162763328246 absolute error = 0.0004785 relative error = 0.02492 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.194 Order of pole (three term test) = 29.41 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5655 2.057 h = 0.001 0.003 y[1] (numeric) = -1.92194860274 0.00408552886601 y[1] (closed_form) = -1.92180349799 0.00453781322962 absolute error = 0.000475 relative error = 0.02472 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 34.21 Order of pole (three term test) = 29.44 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5665 2.06 h = 0.0001 0.004 y[1] (numeric) = -1.93056289949 0.0107327867623 y[1] (closed_form) = -1.93042580584 0.0111946299869 absolute error = 0.0004818 relative error = 0.02496 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 19.48 Order of pole (three term test) = 29.48 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5666 2.064 h = 0.003 0.006 y[1] (numeric) = -1.94349003876 0.0156363932753 y[1] (closed_form) = -1.94336347372 0.0160965859547 absolute error = 0.0004773 relative error = 0.02456 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 26.01 Order of pole (three term test) = 29.49 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5696 2.07 h = 0.0001 0.005 y[1] (numeric) = -1.9596902069 0.0323807650747 y[1] (closed_form) = -1.95954476712 0.032884017142 absolute error = 0.0005238 relative error = 0.02673 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 11.71 Order of pole (three term test) = 29.59 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5697 2.075 h = 0.0001 0.003 y[1] (numeric) = -1.97602546529 0.0386216274416 y[1] (closed_form) = -1.97588745323 0.0390950821962 absolute error = 0.0004932 relative error = 0.02495 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 9.52 Order of pole (three term test) = 29.61 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=1325.2MB, alloc=44.3MB, time=16.01 x[1] = 0.5698 2.078 h = 0.001 0.001 y[1] (numeric) = -1.98583338965 0.0425143643713 y[1] (closed_form) = -1.98568534504 0.0429811172124 absolute error = 0.0004897 relative error = 0.02465 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.518 Order of pole (three term test) = 29.62 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5708 2.079 h = 0.001 0.003 y[1] (numeric) = -1.98795702735 0.0470217365272 y[1] (closed_form) = -1.98780519327 0.0474835272245 absolute error = 0.0004861 relative error = 0.02445 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 35.75 Order of pole (three term test) = 29.65 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5718 2.082 h = 0.0001 0.004 y[1] (numeric) = -1.9966974619 0.0539246293044 y[1] (closed_form) = -1.99655375608 0.0543962348266 absolute error = 0.000493 relative error = 0.02468 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 20.35 Order of pole (three term test) = 29.69 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5719 2.086 h = 0.003 0.006 y[1] (numeric) = -2.00987249278 0.0590921868624 y[1] (closed_form) = -2.00973955463 0.0595621688642 absolute error = 0.0004884 relative error = 0.02429 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 27.18 Order of pole (three term test) = 29.71 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5749 2.092 h = 0.0001 0.005 y[1] (numeric) = -2.02626192973 0.0764162287047 y[1] (closed_form) = -2.02610944861 0.0769300948748 absolute error = 0.000536 relative error = 0.02644 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 12.23 Order of pole (three term test) = 29.82 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.575 2.097 h = 0.0001 0.003 y[1] (numeric) = -2.04291072674 0.0829905227084 y[1] (closed_form) = -2.04276601303 0.0834739868545 absolute error = 0.0005047 relative error = 0.02468 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 9.948 Order of pole (three term test) = 29.84 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5751 2.1 h = 0.001 0.001 y[1] (numeric) = -2.05290523672 0.0870865633319 y[1] (closed_form) = -2.05275031187 0.087563119716 absolute error = 0.0005011 relative error = 0.02439 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 7.856 Order of pole (three term test) = 29.86 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5761 2.101 h = 0.001 0.003 y[1] (numeric) = -2.05502761272 0.0917241961511 y[1] (closed_form) = -2.05486884545 0.0921956596814 absolute error = 0.0004975 relative error = 0.02419 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 37.36 Order of pole (three term test) = 29.9 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5771 2.104 h = 0.0001 0.004 y[1] (numeric) = -2.06389540459 0.0988890439702 y[1] (closed_form) = -2.06374488415 0.0993705846597 absolute error = 0.0005045 relative error = 0.02442 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 21.27 Order of pole (three term test) = 29.94 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5772 2.108 h = 0.003 0.006 y[1] (numeric) = -2.07732215025 0.1043277816 y[1] (closed_form) = -2.07718264181 0.104807727565 absolute error = 0.0004998 relative error = 0.02403 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 28.41 Order of pole (three term test) = 29.96 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5802 2.114 h = 0.0001 0.005 y[1] (numeric) = -2.09390152097 0.122245250102 y[1] (closed_form) = -2.09374178219 0.122769920465 absolute error = 0.0005484 relative error = 0.02615 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 12.78 Order of pole (three term test) = 30.09 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5803 2.119 h = 0.0001 0.003 y[1] (numeric) = -2.11086870226 0.129162112199 y[1] (closed_form) = -2.11071708123 0.129655763778 absolute error = 0.0005164 relative error = 0.02442 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 10.4 Order of pole (three term test) = 30.12 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5804 2.122 h = 0.001 0.001 y[1] (numeric) = -2.12105265405 0.133466999338 y[1] (closed_form) = -2.12089064025 0.133953531776 absolute error = 0.0005128 relative error = 0.02413 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 8.209 Order of pole (three term test) = 30.14 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5814 2.123 h = 0.0001 0.004 y[1] (numeric) = -2.12317296529 0.138237724904 y[1] (closed_form) = -2.12300705553 0.13871903056 absolute error = 0.0005091 relative error = 0.02393 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 49.4 Order of pole (three term test) = 30.18 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5815 2.127 h = 0.003 0.006 y[1] (numeric) = -2.13680887845 0.143903328912 y[1] (closed_form) = -2.13666814758 0.144392486056 absolute error = 0.000509 relative error = 0.02377 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 29.51 Order of pole (three term test) = 30.2 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5845 2.133 h = 0.0001 0.005 y[1] (numeric) = -2.15355952859 0.162340583147 y[1] (closed_form) = -2.15339797026 0.162875208982 absolute error = 0.0005585 relative error = 0.02586 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 13.28 Order of pole (three term test) = 30.34 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5846 2.138 h = 0.0001 0.003 y[1] (numeric) = -2.17080892759 0.169555936119 y[1] (closed_form) = -2.17065578976 0.17005899813 absolute error = 0.0005259 relative error = 0.02415 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 10.8 Order of pole (three term test) = 30.37 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5847 2.141 h = 0.001 0.001 y[1] (numeric) = -2.18116084074 0.174042832639 y[1] (closed_form) = -2.18099714873 0.174538591238 absolute error = 0.0005221 relative error = 0.02386 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 8.527 Order of pole (three term test) = 30.4 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=1369.8MB, alloc=44.3MB, time=16.54 x[1] = 0.5857 2.142 h = 0.001 0.003 y[1] (numeric) = -2.18328033965 0.178930472001 y[1] (closed_form) = -2.1831127035 0.179420886552 absolute error = 0.0005183 relative error = 0.02366 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 40.55 Order of pole (three term test) = 30.44 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5867 2.145 h = 0.0001 0.004 y[1] (numeric) = -2.19239165365 0.186598540347 y[1] (closed_form) = -2.19223249203 0.18709953621 absolute error = 0.0005257 relative error = 0.02389 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 23.08 Order of pole (three term test) = 30.49 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5868 2.149 h = 0.003 0.006 y[1] (numeric) = -2.20630057594 0.192558640499 y[1] (closed_form) = -2.20615289583 0.193058097111 absolute error = 0.0005208 relative error = 0.02352 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 30.83 Order of pole (three term test) = 30.53 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5898 2.155 h = 0.0001 0.005 y[1] (numeric) = -2.22324242989 0.211615755834 y[1] (closed_form) = -2.22307319814 0.212161550953 absolute error = 0.0005714 relative error = 0.02559 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 13.88 Order of pole (three term test) = 30.68 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5899 2.16 h = 0.0001 0.003 y[1] (numeric) = -2.24081951894 0.219191235608 y[1] (closed_form) = -2.24065907846 0.219704827052 absolute error = 0.0005381 relative error = 0.0239 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 11.28 Order of pole (three term test) = 30.72 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.59 2.163 h = 0.001 0.001 y[1] (numeric) = -2.2513663589 0.223897630966 y[1] (closed_form) = -2.25119517679 0.224403696994 absolute error = 0.0005342 relative error = 0.02361 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 8.911 Order of pole (three term test) = 30.75 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.591 2.164 h = 0.001 0.003 y[1] (numeric) = -2.25348224822 0.228923804485 y[1] (closed_form) = -2.25330706737 0.229424386357 absolute error = 0.0005303 relative error = 0.02342 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 42.37 Order of pole (three term test) = 30.79 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.592 2.167 h = 0.0001 0.004 y[1] (numeric) = -2.26272446967 0.236872728702 y[1] (closed_form) = -2.26255788601 0.237384173254 absolute error = 0.0005379 relative error = 0.02364 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 24.12 Order of pole (three term test) = 30.86 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5921 2.171 h = 0.003 0.006 y[1] (numeric) = -2.27689642216 0.243125663567 y[1] (closed_form) = -2.27674158009 0.243635603057 absolute error = 0.0005329 relative error = 0.02327 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 32.22 Order of pole (three term test) = 30.89 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5951 2.177 h = 0.0001 0.005 y[1] (numeric) = -2.29402999255 0.2628173156 y[1] (closed_form) = -2.29385285405 0.263374479514 absolute error = 0.0005846 relative error = 0.02532 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 14.5 Order of pole (three term test) = 31.06 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5952 2.182 h = 0.0001 0.003 y[1] (numeric) = -2.31193980704 0.270762731589 y[1] (closed_form) = -2.3117718421 0.271287039346 absolute error = 0.0005506 relative error = 0.02365 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 11.79 Order of pole (three term test) = 31.11 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5953 2.185 h = 0.001 0.001 y[1] (numeric) = -2.32268453948 0.275694575696 y[1] (closed_form) = -2.32250564232 0.276211130095 absolute error = 0.0005467 relative error = 0.02337 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 9.311 Order of pole (three term test) = 31.14 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5963 2.186 h = 0.001 0.003 y[1] (numeric) = -2.32479592257 0.280862291086 y[1] (closed_form) = -2.32461297152 0.28137321779 absolute error = 0.0005427 relative error = 0.02318 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 44.28 Order of pole (three term test) = 31.19 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5973 2.189 h = 0.0001 0.004 y[1] (numeric) = -2.3341702558 0.289098985271 y[1] (closed_form) = -2.333996026 0.289621062978 absolute error = 0.0005504 relative error = 0.0234 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 25.21 Order of pole (three term test) = 31.26 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5974 2.193 h = 0.003 0.006 y[1] (numeric) = -2.34860926304 0.295652711223 y[1] (closed_form) = -2.34844704061 0.29617332011 absolute error = 0.0005453 relative error = 0.02304 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 33.67 Order of pole (three term test) = 31.31 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6004 2.199 h = 0.0001 0.005 y[1] (numeric) = -2.36593500195 0.315993909563 y[1] (closed_form) = -2.36574971711 0.316562645122 absolute error = 0.0005982 relative error = 0.02506 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 15.15 Order of pole (three term test) = 31.49 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6005 2.204 h = 0.0001 0.003 y[1] (numeric) = -2.38418264267 0.324319317442 y[1] (closed_form) = -2.38400692552 0.324854531522 absolute error = 0.0005633 relative error = 0.02341 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 12.32 Order of pole (three term test) = 31.55 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6006 2.207 h = 0.001 0.001 y[1] (numeric) = -2.39512827093 0.329482709146 y[1] (closed_form) = -2.3949414278 0.330009935841 absolute error = 0.0005594 relative error = 0.02314 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 9.73 Order of pole (three term test) = 31.59 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6016 2.208 h = 0.001 0.003 y[1] (numeric) = -2.39723421607 0.334795037603 y[1] (closed_form) = -2.39704326336 0.335316489553 absolute error = 0.0005553 relative error = 0.02294 % Correct digits = 4 memory used=1414.4MB, alloc=44.3MB, time=17.08 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 46.27 Order of pole (three term test) = 31.64 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6026 2.211 h = 0.0001 0.004 y[1] (numeric) = -2.40674185853 0.343326577864 y[1] (closed_form) = -2.4065597525 0.343859476258 absolute error = 0.0005632 relative error = 0.02317 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 26.34 Order of pole (three term test) = 31.71 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6027 2.215 h = 0.003 0.006 y[1] (numeric) = -2.4214519967 0.350189250699 y[1] (closed_form) = -2.42128216963 0.350720718646 absolute error = 0.0005579 relative error = 0.02281 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 35.18 Order of pole (three term test) = 31.77 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6057 2.221 h = 0.0001 0.005 y[1] (numeric) = -2.43897029232 0.371195345914 y[1] (closed_form) = -2.43877661513 0.371775859345 absolute error = 0.000612 relative error = 0.02481 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 15.83 Order of pole (three term test) = 31.96 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6058 2.226 h = 0.0001 0.003 y[1] (numeric) = -2.45756092547 0.379911053393 y[1] (closed_form) = -2.45737722229 0.380457366969 absolute error = 0.0005764 relative error = 0.02318 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 12.88 Order of pole (three term test) = 32.03 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6059 2.229 h = 0.001 0.001 y[1] (numeric) = -2.46871049047 0.385312243962 y[1] (closed_form) = -2.46851546433 0.385850329891 absolute error = 0.0005723 relative error = 0.02291 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 10.17 Order of pole (three term test) = 32.08 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6069 2.23 h = 0.0001 0.004 y[1] (numeric) = -2.47081002974 0.390772321347 y[1] (closed_form) = -2.47061083781 0.391304481888 absolute error = 0.0005682 relative error = 0.02272 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 61.18 Order of pole (three term test) = 32.13 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.607 2.234 h = 0.003 0.006 y[1] (numeric) = -2.4857454629 0.397893418947 y[1] (closed_form) = -2.48557399405 0.398435076819 absolute error = 0.0005682 relative error = 0.02257 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 36.54 Order of pole (three term test) = 32.19 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.61 2.24 h = 0.0001 0.005 y[1] (numeric) = -2.50343794006 0.419482094327 y[1] (closed_form) = -2.50324193641 0.420073611755 absolute error = 0.0006231 relative error = 0.02455 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 16.45 Order of pole (three term test) = 32.4 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6101 2.245 h = 0.0001 0.003 y[1] (numeric) = -2.52233281764 0.428538038927 y[1] (closed_form) = -2.52214713947 0.429094756918 absolute error = 0.0005869 relative error = 0.02294 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 13.37 Order of pole (three term test) = 32.48 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6102 2.248 h = 0.001 0.001 y[1] (numeric) = -2.53366332522 0.434146564396 y[1] (closed_form) = -2.53346614897 0.434694845216 absolute error = 0.0005827 relative error = 0.02267 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 10.56 Order of pole (three term test) = 32.53 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6112 2.249 h = 0.001 0.003 y[1] (numeric) = -2.53575835897 0.439736473197 y[1] (closed_form) = -2.53555696629 0.440278696701 absolute error = 0.0005784 relative error = 0.02248 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 50.23 Order of pole (three term test) = 32.59 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6122 2.252 h = 0.0001 0.004 y[1] (numeric) = -2.54552093669 0.448834434832 y[1] (closed_form) = -2.54532863143 0.449388672508 absolute error = 0.0005867 relative error = 0.0227 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 28.59 Order of pole (three term test) = 32.68 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6123 2.256 h = 0.003 0.006 y[1] (numeric) = -2.56075053081 0.456291048486 y[1] (closed_form) = -2.5605710263 0.456843929661 absolute error = 0.0005813 relative error = 0.02235 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 38.19 Order of pole (three term test) = 32.75 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6153 2.262 h = 0.0001 0.005 y[1] (numeric) = -2.57863629808 0.478574113767 y[1] (closed_form) = -2.57843142925 0.479177805033 absolute error = 0.0006375 relative error = 0.02431 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 17.19 Order of pole (three term test) = 32.98 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6154 2.267 h = 0.0001 0.003 y[1] (numeric) = -2.59788408523 0.488040165949 y[1] (closed_form) = -2.59768997162 0.488608354389 absolute error = 0.0006004 relative error = 0.02272 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 13.98 Order of pole (three term test) = 33.07 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6155 2.27 h = 0.001 0.001 y[1] (numeric) = -2.6094243667 0.493898503082 y[1] (closed_form) = -2.6092185519 0.494458002106 absolute error = 0.0005962 relative error = 0.02245 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 11.04 Order of pole (three term test) = 33.13 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6165 2.271 h = 0.001 0.003 y[1] (numeric) = -2.61151113233 0.499642184764 y[1] (closed_form) = -2.61130104389 0.500195468935 absolute error = 0.0005918 relative error = 0.02226 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 52.48 Order of pole (three term test) = 33.19 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6175 2.274 h = 0.0001 0.004 y[1] (numeric) = -2.62141048795 0.509056148028 y[1] (closed_form) = -2.62120961631 0.509621763078 absolute error = 0.0006002 relative error = 0.02248 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 29.88 Order of pole (three term test) = 33.28 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=1459.1MB, alloc=44.3MB, time=17.62 x[1] = 0.6176 2.278 h = 0.003 0.006 y[1] (numeric) = -2.63692326399 0.516846133245 y[1] (closed_form) = -2.63673548201 0.517410436642 absolute error = 0.0005947 relative error = 0.02213 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 39.91 Order of pole (three term test) = 33.36 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6206 2.284 h = 0.0001 0.005 y[1] (numeric) = -2.655002512 0.539839954944 y[1] (closed_form) = -2.6547885128 0.540456036218 absolute error = 0.0006522 relative error = 0.02407 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 17.96 Order of pole (three term test) = 33.61 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6207 2.289 h = 0.0001 0.003 y[1] (numeric) = -2.67460856488 0.549727175715 y[1] (closed_form) = -2.67440576382 0.550307037095 absolute error = 0.0006143 relative error = 0.0225 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 14.6 Order of pole (three term test) = 33.71 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6208 2.292 h = 0.001 0.001 y[1] (numeric) = -2.68636177022 0.555842031307 y[1] (closed_form) = -2.68614706154 0.556412944336 absolute error = 0.00061 relative error = 0.02224 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 11.53 Order of pole (three term test) = 33.78 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6218 2.293 h = 0.001 0.003 y[1] (numeric) = -2.68843919046 0.561742813921 y[1] (closed_form) = -2.68822015043 0.562307350729 absolute error = 0.0006055 relative error = 0.02205 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 54.84 Order of pole (three term test) = 33.84 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6228 2.296 h = 0.0001 0.004 y[1] (numeric) = -2.69847648625 0.57148051411 y[1] (closed_form) = -2.69826679373 0.572057706276 absolute error = 0.0006141 relative error = 0.02226 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 31.22 Order of pole (three term test) = 33.95 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6229 2.3 h = 0.003 0.006 y[1] (numeric) = -2.71427672161 0.579612840745 y[1] (closed_form) = -2.71408041393 0.580188768561 absolute error = 0.0006085 relative error = 0.02192 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 41.7 Order of pole (three term test) = 34.04 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6259 2.306 h = 0.0001 0.005 y[1] (numeric) = -2.73254956347 0.603334154555 y[1] (closed_form) = -2.73232616163 0.603962845525 absolute error = 0.0006672 relative error = 0.02384 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 18.77 Order of pole (three term test) = 34.3 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.626 2.311 h = 0.0001 0.003 y[1] (numeric) = -2.75251930337 0.613653880495 y[1] (closed_form) = -2.75230755614 0.614245620601 absolute error = 0.0006285 relative error = 0.02229 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 15.26 Order of pole (three term test) = 34.42 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6261 2.314 h = 0.001 0.001 y[1] (numeric) = -2.76448861979 0.620032127949 y[1] (closed_form) = -2.76426475517 0.620614653913 absolute error = 0.0006241 relative error = 0.02203 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 12.05 Order of pole (three term test) = 34.49 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6271 2.315 h = 0.001 0.003 y[1] (numeric) = -2.76655557648 0.626093408994 y[1] (closed_form) = -2.76632732232 0.626669393452 absolute error = 0.0006196 relative error = 0.02184 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 57.31 Order of pole (three term test) = 34.56 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6281 2.318 h = 0.0001 0.004 y[1] (numeric) = -2.77673196209 0.636162761173 y[1] (closed_form) = -2.77651318746 0.636751733416 absolute error = 0.0006283 relative error = 0.02206 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 32.63 Order of pole (three term test) = 34.67 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6282 2.322 h = 0.003 0.006 y[1] (numeric) = -2.79282398538 0.644646622203 y[1] (closed_form) = -2.79261889718 0.645234379945 absolute error = 0.0006225 relative error = 0.02172 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 43.58 Order of pole (three term test) = 34.77 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6312 2.328 h = 0.0001 0.005 y[1] (numeric) = -2.81129045279 0.669112540645 y[1] (closed_form) = -2.81105736882 0.669754064557 absolute error = 0.0006826 relative error = 0.02362 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 19.61 Order of pole (three term test) = 35.06 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6313 2.333 h = 0.0001 0.003 y[1] (numeric) = -2.83162936595 0.679876390342 y[1] (closed_form) = -2.83140840701 0.680480218291 absolute error = 0.000643 relative error = 0.02208 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 15.95 Order of pole (three term test) = 35.19 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6314 2.336 h = 0.001 0.001 y[1] (numeric) = -2.84381801777 0.686525073551 y[1] (closed_form) = -2.84358472829 0.687119414538 absolute error = 0.0006385 relative error = 0.02183 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 12.59 Order of pole (three term test) = 35.27 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6324 2.337 h = 0.0001 0.004 y[1] (numeric) = -2.84587335054 0.692750321258 y[1] (closed_form) = -2.84563561284 0.693337951448 absolute error = 0.0006339 relative error = 0.02164 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 75.78 Order of pole (three term test) = 35.34 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6325 2.341 h = 0.003 0.006 y[1] (numeric) = -2.86220781809 0.701528189622 y[1] (closed_form) = -2.86200059531 0.702127217171 absolute error = 0.0006339 relative error = 0.02151 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 45.26 Order of pole (three term test) = 35.45 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=1503.8MB, alloc=44.3MB, time=18.15 x[1] = 0.6355 2.347 h = 0.0001 0.005 y[1] (numeric) = -2.8808500665 0.726646730236 y[1] (closed_form) = -2.88061406388 0.72730041286 absolute error = 0.000695 relative error = 0.02339 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 20.37 Order of pole (three term test) = 35.75 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6356 2.352 h = 0.0001 0.003 y[1] (numeric) = -2.90151667846 0.737797903149 y[1] (closed_form) = -2.90129320812 0.738413231129 absolute error = 0.0006547 relative error = 0.02187 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 16.57 Order of pole (three term test) = 35.89 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6357 2.355 h = 0.001 0.001 y[1] (numeric) = -2.91390007588 0.744682476415 y[1] (closed_form) = -2.91366408543 0.745288079435 absolute error = 0.00065 relative error = 0.02161 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 13.08 Order of pole (three term test) = 35.98 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6367 2.356 h = 0.001 0.003 y[1] (numeric) = -2.9159464515 0.751051851483 y[1] (closed_form) = -2.91570595988 0.751650595414 absolute error = 0.0006452 relative error = 0.02143 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 62.21 Order of pole (three term test) = 36.06 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6377 2.359 h = 0.0001 0.004 y[1] (numeric) = -2.92638884379 0.761758340314 y[1] (closed_form) = -2.92615808499 0.76237071078 absolute error = 0.0006544 relative error = 0.02164 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 35.41 Order of pole (three term test) = 36.19 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6378 2.363 h = 0.003 0.006 y[1] (numeric) = -2.94303996861 0.770917978353 y[1] (closed_form) = -2.94282347555 0.771529230389 absolute error = 0.0006485 relative error = 0.02131 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 47.3 Order of pole (three term test) = 36.31 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6408 2.369 h = 0.0001 0.005 y[1] (numeric) = -2.961875886 0.796813997918 y[1] (closed_form) = -2.9616296641 0.797480942021 absolute error = 0.0007109 relative error = 0.02318 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 21.29 Order of pole (three term test) = 36.63 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6409 2.374 h = 0.0001 0.003 y[1] (numeric) = -2.98292219858 0.808431620108 y[1] (closed_form) = -2.98268900616 0.809059437386 absolute error = 0.0006697 relative error = 0.02167 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 17.31 Order of pole (three term test) = 36.79 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.641 2.377 h = 0.001 0.001 y[1] (numeric) = -2.99553111813 0.815600164123 y[1] (closed_form) = -2.995285186 0.816217970121 absolute error = 0.000665 relative error = 0.02142 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 13.67 Order of pole (three term test) = 36.89 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.642 2.378 h = 0.001 0.003 y[1] (numeric) = -2.9975636371 0.822140167264 y[1] (closed_form) = -2.99731314422 0.82275093719 absolute error = 0.0006601 relative error = 0.02124 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 65.01 Order of pole (three term test) = 36.97 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.643 2.381 h = 0.0001 0.004 y[1] (numeric) = -3.00814842823 0.833201965932 y[1] (closed_form) = -3.00790780396 0.83382671857 absolute error = 0.0006695 relative error = 0.02145 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 37.01 Order of pole (three term test) = 37.11 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6431 2.385 h = 0.003 0.006 y[1] (numeric) = -3.02510412427 0.842740662898 y[1] (closed_form) = -3.02487808635 0.843364354678 absolute error = 0.0006634 relative error = 0.02113 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 49.43 Order of pole (three term test) = 37.24 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6461 2.391 h = 0.0001 0.005 y[1] (numeric) = -3.04413349188 0.869432396753 y[1] (closed_form) = -3.04387674958 0.870112836048 absolute error = 0.0007273 relative error = 0.02297 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 22.24 Order of pole (three term test) = 37.59 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6462 2.396 h = 0.0001 0.003 y[1] (numeric) = -3.06556517945 0.881528929623 y[1] (closed_form) = -3.06532197889 0.882169455113 absolute error = 0.0006851 relative error = 0.02148 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 18.09 Order of pole (three term test) = 37.76 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6463 2.399 h = 0.001 0.001 y[1] (numeric) = -3.07840295274 0.88898899776 y[1] (closed_form) = -3.07814678939 0.889619218115 absolute error = 0.0006803 relative error = 0.02123 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 14.28 Order of pole (three term test) = 37.87 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6473 2.4 h = 0.001 0.003 y[1] (numeric) = -3.08042032735 0.895703307436 y[1] (closed_form) = -3.08015954324 0.896326310464 absolute error = 0.0006754 relative error = 0.02105 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 67.93 Order of pole (three term test) = 37.95 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6483 2.403 h = 0.0001 0.004 y[1] (numeric) = -3.0911486078 0.907129062378 y[1] (closed_form) = -3.0908978293 0.907766412971 absolute error = 0.0006849 relative error = 0.02126 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 38.67 Order of pole (three term test) = 38.11 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6484 2.407 h = 0.003 0.006 y[1] (numeric) = -3.10841340248 0.917056921919 y[1] (closed_form) = -3.10817753786 0.917693272143 absolute error = 0.0006787 relative error = 0.02094 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 51.65 Order of pole (three term test) = 38.25 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=1548.4MB, alloc=44.3MB, time=18.69 x[1] = 0.6514 2.413 h = 0.0001 0.005 y[1] (numeric) = -3.12763590417 0.944563013303 y[1] (closed_form) = -3.12736833239 0.945257185203 absolute error = 0.000744 relative error = 0.02277 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 23.24 Order of pole (three term test) = 38.62 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6515 2.418 h = 0.0001 0.003 y[1] (numeric) = -3.14945870512 0.95715122648 y[1] (closed_form) = -3.14920520283 0.957804682555 absolute error = 0.0007009 relative error = 0.02129 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 18.9 Order of pole (three term test) = 38.81 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6516 2.421 h = 0.001 0.001 y[1] (numeric) = -3.16252870013 0.964910558396 y[1] (closed_form) = -3.16226200847 0.965553407759 absolute error = 0.000696 relative error = 0.02105 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 14.93 Order of pole (three term test) = 38.93 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6526 2.422 h = 0.001 0.003 y[1] (numeric) = -3.1645295951 0.971802929006 y[1] (closed_form) = -3.16425822224 0.972438375419 absolute error = 0.000691 relative error = 0.02087 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 70.99 Order of pole (three term test) = 39.02 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6536 2.425 h = 0.0001 0.004 y[1] (numeric) = -3.17540243586 0.98360148606 y[1] (closed_form) = -3.17514120685 0.984251653768 absolute error = 0.0007007 relative error = 0.02108 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 40.41 Order of pole (three term test) = 39.18 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6537 2.429 h = 0.003 0.006 y[1] (numeric) = -3.19298090678 0.993928861339 y[1] (closed_form) = -3.19273492619 0.994578092188 absolute error = 0.0006943 relative error = 0.02076 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 53.97 Order of pole (three term test) = 39.34 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6567 2.435 h = 0.0001 0.005 y[1] (numeric) = -3.21239612455 1.02226836982 y[1] (closed_form) = -3.21211740609 1.02297651547 absolute error = 0.000761 relative error = 0.02258 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 24.29 Order of pole (three term test) = 39.73 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6568 2.44 h = 0.0001 0.003 y[1] (numeric) = -3.23461584092 1.03536134831 y[1] (closed_form) = -3.2343517356 1.03602796084 absolute error = 0.000717 relative error = 0.02111 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 19.75 Order of pole (three term test) = 39.94 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6569 2.443 h = 0.001 0.001 y[1] (numeric) = -3.24792146169 1.04342787426 y[1] (closed_form) = -3.24764393688 1.04408357059 absolute error = 0.000712 relative error = 0.02087 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 15.6 Order of pole (three term test) = 40.06 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6579 2.444 h = 0.0001 0.004 y[1] (numeric) = -3.24990449271 1.05050213755 y[1] (closed_form) = -3.24962222586 1.05115024083 absolute error = 0.0007069 relative error = 0.0207 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 93.86 Order of pole (three term test) = 40.16 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.658 2.448 h = 0.003 0.006 y[1] (numeric) = -3.2677435697 1.06116360517 y[1] (closed_form) = -3.26749487706 1.06182529582 absolute error = 0.0007069 relative error = 0.02057 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 56.06 Order of pole (three term test) = 40.33 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.661 2.454 h = 0.0001 0.005 y[1] (numeric) = -3.28733449963 1.09023379102 y[1] (closed_form) = -3.28705217232 1.09095536553 absolute error = 0.0007748 relative error = 0.02237 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 25.23 Order of pole (three term test) = 40.74 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6611 2.459 h = 0.0001 0.003 y[1] (numeric) = -3.30990679285 1.1037671557 y[1] (closed_form) = -3.30963954973 1.10444647442 absolute error = 0.00073 relative error = 0.02092 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 20.52 Order of pole (three term test) = 40.96 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6612 2.462 h = 0.001 0.001 y[1] (numeric) = -3.3234217771 1.11210174054 y[1] (closed_form) = -3.32314090971 1.11276987297 absolute error = 0.0007248 relative error = 0.02068 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 16.2 Order of pole (three term test) = 41.1 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6622 2.463 h = 0.001 0.003 y[1] (numeric) = -3.32539051462 1.1193359356 y[1] (closed_form) = -3.32510485018 1.11999630844 absolute error = 0.0007195 relative error = 0.02051 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 77.05 Order of pole (three term test) = 41.2 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6632 2.466 h = 0.0001 0.004 y[1] (numeric) = -3.33653982485 1.13185068368 y[1] (closed_form) = -3.33626456932 1.13252649588 absolute error = 0.0007297 relative error = 0.02071 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 43.86 Order of pole (three term test) = 41.38 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6633 2.47 h = 0.003 0.006 y[1] (numeric) = -3.35471939016 1.14294603111 y[1] (closed_form) = -3.35446002563 1.14362102885 absolute error = 0.0007231 relative error = 0.0204 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 58.58 Order of pole (three term test) = 41.57 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6663 2.476 h = 0.0001 0.005 y[1] (numeric) = -3.3745022104 1.17288624514 y[1] (closed_form) = -3.37420812678 1.17362225621 absolute error = 0.0007926 relative error = 0.02219 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 26.37 Order of pole (three term test) = 42 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=1593.0MB, alloc=44.3MB, time=19.24 x[1] = 0.6664 2.481 h = 0.0001 0.003 y[1] (numeric) = -3.39748254833 1.186949517 y[1] (closed_form) = -3.39720412314 1.18764242567 absolute error = 0.0007468 relative error = 0.02075 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 21.44 Order of pole (three term test) = 42.25 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6665 2.484 h = 0.001 0.001 y[1] (numeric) = -3.41123968751 1.19560653314 y[1] (closed_form) = -3.41094740117 1.19628793084 absolute error = 0.0007414 relative error = 0.02051 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 16.93 Order of pole (three term test) = 42.39 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6675 2.485 h = 0.001 0.003 y[1] (numeric) = -3.41318789732 1.20302997952 y[1] (closed_form) = -3.41289075231 1.20370341896 absolute error = 0.0007361 relative error = 0.02034 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 80.52 Order of pole (three term test) = 42.5 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6685 2.488 h = 0.0001 0.004 y[1] (numeric) = -3.42448482369 1.21594396359 y[1] (closed_form) = -3.42419822927 1.21663324263 absolute error = 0.0007465 relative error = 0.02054 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 45.84 Order of pole (three term test) = 42.69 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6686 2.492 h = 0.003 0.006 y[1] (numeric) = -3.44299156845 1.22746981845 y[1] (closed_form) = -3.4427212205 1.2281583557 absolute error = 0.0007397 relative error = 0.02024 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 61.22 Order of pole (three term test) = 42.9 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6716 2.498 h = 0.0001 0.005 y[1] (numeric) = -3.46296554876 1.25830036069 y[1] (closed_form) = -3.46265936726 1.25905106045 absolute error = 0.0008107 relative error = 0.022 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 27.55 Order of pole (three term test) = 43.36 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6717 2.503 h = 0.0001 0.003 y[1] (numeric) = -3.48635991719 1.2729075672 y[1] (closed_form) = -3.48606998555 1.27361430197 absolute error = 0.0007639 relative error = 0.02058 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 22.4 Order of pole (three term test) = 43.62 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6718 2.506 h = 0.001 0.001 y[1] (numeric) = -3.50036271927 1.28189551443 y[1] (closed_form) = -3.50005868595 1.28259040506 absolute error = 0.0007585 relative error = 0.02035 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 17.69 Order of pole (three term test) = 43.78 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6728 2.507 h = 0.001 0.003 y[1] (numeric) = -3.50228886919 1.28951227371 y[1] (closed_form) = -3.50197991522 1.29019900265 absolute error = 0.000753 relative error = 0.02018 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 84.14 Order of pole (three term test) = 43.88 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6738 2.51 h = 0.0001 0.004 y[1] (numeric) = -3.51373439487 1.30283515075 y[1] (closed_form) = -3.5134361343 1.3035381292 absolute error = 0.0007636 relative error = 0.02038 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 47.9 Order of pole (three term test) = 44.09 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6739 2.514 h = 0.003 0.006 y[1] (numeric) = -3.53257309023 1.31480288441 y[1] (closed_form) = -3.53229143919 1.3155051972 absolute error = 0.0007567 relative error = 0.02007 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 63.97 Order of pole (three term test) = 44.31 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6769 2.52 h = 0.0001 0.005 y[1] (numeric) = -3.55273737991 1.34654450536 y[1] (closed_form) = -3.55241875 1.34731014983 absolute error = 0.0008293 relative error = 0.02183 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 28.79 Order of pole (three term test) = 44.8 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.677 2.525 h = 0.0001 0.003 y[1] (numeric) = -3.57655182651 1.36171001856 y[1] (closed_form) = -3.57625005558 1.36243081918 absolute error = 0.0007814 relative error = 0.02042 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 23.41 Order of pole (three term test) = 45.08 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6771 2.528 h = 0.001 0.001 y[1] (numeric) = -3.59080383431 1.37103760484 y[1] (closed_form) = -3.59048771749 1.37174621946 absolute error = 0.0007759 relative error = 0.02019 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 18.49 Order of pole (three term test) = 45.25 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6781 2.529 h = 0.001 0.003 y[1] (numeric) = -3.592706337 1.37885182159 y[1] (closed_form) = -3.59238523721 1.37955206623 absolute error = 0.0007704 relative error = 0.02002 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 87.92 Order of pole (three term test) = 45.36 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6791 2.532 h = 0.0001 0.004 y[1] (numeric) = -3.60430141757 1.39259346964 y[1] (closed_form) = -3.60399115507 1.39331038362 absolute error = 0.0007812 relative error = 0.02022 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 50.05 Order of pole (three term test) = 45.59 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6792 2.536 h = 0.003 0.006 y[1] (numeric) = -3.62347688297 1.40501473237 y[1] (closed_form) = -3.62318360079 1.40573106036 absolute error = 0.000774 relative error = 0.01992 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 66.85 Order of pole (three term test) = 45.82 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6822 2.542 h = 0.0001 0.005 y[1] (numeric) = -3.64383050559 1.43768864231 y[1] (closed_form) = -3.6434990676 1.4384694914 absolute error = 0.0008483 relative error = 0.02166 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 30.09 Order of pole (three term test) = 46.34 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6823 2.547 h = 0.0001 0.003 y[1] (numeric) = -3.66807113937 1.45342718674 y[1] (closed_form) = -3.6677571876 1.45416229662 absolute error = 0.0007993 relative error = 0.02026 % Correct digits = 4 memory used=1637.7MB, alloc=44.3MB, time=19.78 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 24.47 Order of pole (three term test) = 46.64 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6824 2.55 h = 0.001 0.001 y[1] (numeric) = -3.68257593009 1.463103333 y[1] (closed_form) = -3.68224738453 1.46382590613 absolute error = 0.0007938 relative error = 0.02003 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 19.32 Order of pole (three term test) = 46.82 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6834 2.551 h = 0.0001 0.004 y[1] (numeric) = -3.68445314139 1.47111923631 y[1] (closed_form) = -3.68411955024 1.47183322617 absolute error = 0.0007881 relative error = 0.01986 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 116.3 Order of pole (three term test) = 46.94 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6835 2.555 h = 0.003 0.006 y[1] (numeric) = -3.70390836435 1.48391971127 y[1] (closed_form) = -3.70361169522 1.48464980887 absolute error = 0.0007881 relative error = 0.01975 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 69.44 Order of pole (three term test) = 47.19 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6865 2.561 h = 0.0001 0.005 y[1] (numeric) = -3.72443553457 1.51741121005 y[1] (closed_form) = -3.72409968511 1.51820688354 absolute error = 0.0008636 relative error = 0.02147 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 31.25 Order of pole (three term test) = 47.73 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6866 2.566 h = 0.0001 0.003 y[1] (numeric) = -3.74905502567 1.53364988994 y[1] (closed_form) = -3.7487372063 1.53439903231 absolute error = 0.0008138 relative error = 0.02009 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 25.41 Order of pole (three term test) = 48.05 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6867 2.569 h = 0.001 0.001 y[1] (numeric) = -3.76378459468 1.5436303051 y[1] (closed_form) = -3.76345196083 1.54436660451 absolute error = 0.0008079 relative error = 0.01986 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 20.07 Order of pole (three term test) = 48.24 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6877 2.57 h = 0.001 0.003 y[1] (numeric) = -3.76564114736 1.55182359468 y[1] (closed_form) = -3.76530341115 1.55255112393 absolute error = 0.0008021 relative error = 0.01969 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 95.44 Order of pole (three term test) = 48.36 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6887 2.573 h = 0.0001 0.004 y[1] (numeric) = -3.77752223241 1.5663697387 y[1] (closed_form) = -3.77719560928 1.56711474387 absolute error = 0.0008135 relative error = 0.01989 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 54.33 Order of pole (three term test) = 48.61 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6888 2.577 h = 0.003 0.006 y[1] (numeric) = -3.79734308211 1.57966275348 y[1] (closed_form) = -3.7970341514 1.58040732624 absolute error = 0.0008061 relative error = 0.0196 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 72.56 Order of pole (three term test) = 48.88 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6918 2.583 h = 0.0001 0.005 y[1] (numeric) = -3.81805768122 1.61412728023 y[1] (closed_form) = -3.81770833246 1.61493865708 absolute error = 0.0008834 relative error = 0.02131 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 32.66 Order of pole (three term test) = 49.45 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6919 2.588 h = 0.0001 0.003 y[1] (numeric) = -3.84311507355 1.63096728206 y[1] (closed_form) = -3.84278441702 1.63173120078 absolute error = 0.0008324 relative error = 0.01994 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 26.56 Order of pole (three term test) = 49.79 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.692 2.591 h = 0.001 0.001 y[1] (numeric) = -3.85810428434 1.64131339711 y[1] (closed_form) = -3.85775855835 1.64206410499 absolute error = 0.0008265 relative error = 0.01971 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 20.97 Order of pole (three term test) = 50 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.693 2.592 h = 0.001 0.003 y[1] (numeric) = -3.85993238182 1.64971649407 y[1] (closed_form) = -3.85958149024 1.65045820896 absolute error = 0.0008205 relative error = 0.01955 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 99.73 Order of pole (three term test) = 50.12 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.694 2.595 h = 0.0001 0.004 y[1] (numeric) = -3.87196571289 1.66471092136 y[1] (closed_form) = -3.87162608131 1.66547056157 absolute error = 0.0008321 relative error = 0.01974 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 56.77 Order of pole (three term test) = 50.39 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6941 2.599 h = 0.003 0.006 y[1] (numeric) = -3.89213753227 1.67849233278 y[1] (closed_form) = -3.89181598689 1.67925163107 absolute error = 0.0008246 relative error = 0.01945 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 75.83 Order of pole (three term test) = 50.67 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6971 2.605 h = 0.0001 0.005 y[1] (numeric) = -3.91303819971 1.71395246755 y[1] (closed_form) = -3.91267496455 1.71477981918 absolute error = 0.0009036 relative error = 0.02115 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 34.13 Order of pole (three term test) = 51.27 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6972 2.61 h = 0.0001 0.003 y[1] (numeric) = -3.93853977844 1.73140956919 y[1] (closed_form) = -3.93819591723 1.73218851839 absolute error = 0.0008515 relative error = 0.01979 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 27.75 Order of pole (three term test) = 51.64 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6973 2.613 h = 0.001 0.001 y[1] (numeric) = -3.95379230679 1.74213094133 y[1] (closed_form) = -3.95343311736 1.7428963023 absolute error = 0.0008455 relative error = 0.01957 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 21.91 Order of pole (three term test) = 51.86 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=1682.3MB, alloc=44.3MB, time=20.32 x[1] = 0.6983 2.614 h = 0.001 0.003 y[1] (numeric) = -3.95559013365 1.7507483259 y[1] (closed_form) = -3.95522571513 1.75150446573 absolute error = 0.0008394 relative error = 0.0194 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 104.2 Order of pole (three term test) = 51.99 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6993 2.617 h = 0.0001 0.004 y[1] (numeric) = -3.96777654446 1.7662018137 y[1] (closed_form) = -3.96742353383 1.76697633904 absolute error = 0.0008512 relative error = 0.0196 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 59.33 Order of pole (three term test) = 52.27 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.6994 2.621 h = 0.003 0.006 y[1] (numeric) = -3.98830433778 1.78048440981 y[1] (closed_form) = -3.98796981546 1.7812586878 absolute error = 0.0008435 relative error = 0.01931 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 79.24 Order of pole (three term test) = 52.57 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7024 2.627 h = 0.0001 0.005 y[1] (numeric) = -4.00938956564 1.81696322997 y[1] (closed_form) = -4.00901204693 1.81780683185 absolute error = 0.0009242 relative error = 0.021 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 35.66 Order of pole (three term test) = 53.2 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7025 2.632 h = 0.0001 0.003 y[1] (numeric) = -4.03534167454 1.83505359422 y[1] (closed_form) = -4.03498423162 1.83584783182 absolute error = 0.000871 relative error = 0.01965 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 29 Order of pole (three term test) = 53.59 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7026 2.635 h = 0.001 0.001 y[1] (numeric) = -4.05086122876 1.84616001319 y[1] (closed_form) = -4.05048819504 1.84694027538 absolute error = 0.0008648 relative error = 0.01943 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 22.9 Order of pole (three term test) = 53.83 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7036 2.636 h = 0.001 0.003 y[1] (numeric) = -4.0526269058 1.85499625622 y[1] (closed_form) = -4.05224857927 1.85576706371 absolute error = 0.0008586 relative error = 0.01927 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 108.9 Order of pole (three term test) = 53.97 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7046 2.639 h = 0.0001 0.004 y[1] (numeric) = -4.06496719281 1.87091982676 y[1] (closed_form) = -4.06460042297 1.871709491 absolute error = 0.0008707 relative error = 0.01946 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 61.99 Order of pole (three term test) = 54.26 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7047 2.643 h = 0.003 0.006 y[1] (numeric) = -4.08585600973 1.88571670713 y[1] (closed_form) = -4.0855081388 1.88650622277 absolute error = 0.0008628 relative error = 0.01917 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 82.8 Order of pole (three term test) = 54.58 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7077 2.649 h = 0.0001 0.005 y[1] (numeric) = -4.10712413667 1.92323779755 y[1] (closed_form) = -4.10673192696 1.92409792921 absolute error = 0.0009453 relative error = 0.02084 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 37.26 Order of pole (three term test) = 55.24 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7078 2.654 h = 0.0001 0.003 y[1] (numeric) = -4.13353317722 1.941977981 y[1] (closed_form) = -4.13316176581 1.9427877687 absolute error = 0.0008909 relative error = 0.01951 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 30.3 Order of pole (three term test) = 55.66 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7079 2.657 h = 0.001 0.001 y[1] (numeric) = -4.14932349758 1.95347947434 y[1] (closed_form) = -4.14893622892 1.95427488947 absolute error = 0.0008847 relative error = 0.01929 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 23.93 Order of pole (three term test) = 55.91 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7089 2.658 h = 0.0001 0.004 y[1] (numeric) = -4.1510550799 1.96253923896 y[1] (closed_form) = -4.15066245451 1.96332496028 absolute error = 0.0008784 relative error = 0.01913 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 144 Order of pole (three term test) = 56.05 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.709 2.662 h = 0.003 0.006 y[1] (numeric) = -4.17224375586 1.97776607862 y[1] (closed_form) = -4.1718917112 1.97857080396 absolute error = 0.0008784 relative error = 0.01902 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 86.01 Order of pole (three term test) = 56.39 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.712 2.668 h = 0.0001 0.005 y[1] (numeric) = -4.19368067156 2.01620145296 y[1] (closed_form) = -4.19328311905 2.01707794062 absolute error = 0.0009624 relative error = 0.02068 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 38.71 Order of pole (three term test) = 57.08 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7121 2.673 h = 0.0001 0.003 y[1] (numeric) = -4.22049620967 2.03550899674 y[1] (closed_form) = -4.22012008238 2.03633427373 absolute error = 0.0009069 relative error = 0.01936 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 31.48 Order of pole (three term test) = 57.52 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7122 2.676 h = 0.001 0.001 y[1] (numeric) = -4.2365274887 2.04735548575 y[1] (closed_form) = -4.23613526683 2.04816604332 absolute error = 0.0009005 relative error = 0.01914 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 24.86 Order of pole (three term test) = 57.79 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7132 2.677 h = 0.001 0.003 y[1] (numeric) = -4.23823085432 2.05661189503 y[1] (closed_form) = -4.23783321759 2.05741254921 absolute error = 0.000894 relative error = 0.01898 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 118.2 Order of pole (three term test) = 57.93 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=1726.9MB, alloc=44.3MB, time=20.86 x[1] = 0.7142 2.68 h = 0.0001 0.004 y[1] (numeric) = -4.25086537333 2.0734385234 y[1] (closed_form) = -4.25047957839 2.07425893965 absolute error = 0.0009066 relative error = 0.01917 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 67.29 Order of pole (three term test) = 58.26 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7143 2.684 h = 0.003 0.006 y[1] (numeric) = -4.27244607277 2.08922388409 y[1] (closed_form) = -4.27207996522 2.09004434203 absolute error = 0.0008984 relative error = 0.01889 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 89.88 Order of pole (three term test) = 58.62 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7173 2.69 h = 0.0001 0.005 y[1] (numeric) = -4.29406266194 2.12874682534 y[1] (closed_form) = -4.29364963541 2.12964037906 absolute error = 0.0009844 relative error = 0.02054 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 40.45 Order of pole (three term test) = 59.34 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7174 2.695 h = 0.0001 0.003 y[1] (numeric) = -4.32134740242 2.14873599765 y[1] (closed_form) = -4.32095656335 2.14957732686 absolute error = 0.0009277 relative error = 0.01922 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 32.89 Order of pole (three term test) = 59.8 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7175 2.698 h = 0.001 0.001 y[1] (numeric) = -4.33765661655 2.16099682627 y[1] (closed_form) = -4.3372494091 2.16182301965 absolute error = 0.0009211 relative error = 0.01901 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 25.97 Order of pole (three term test) = 60.09 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7185 2.699 h = 0.001 0.003 y[1] (numeric) = -4.33932214501 2.17048571063 y[1] (closed_form) = -4.33890945839 2.17130175086 absolute error = 0.0009145 relative error = 0.01885 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 123.5 Order of pole (three term test) = 60.24 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7195 2.702 h = 0.0001 0.004 y[1] (numeric) = -4.3521127344 2.18781534599 y[1] (closed_form) = -4.35171204088 2.18865165251 absolute error = 0.0009273 relative error = 0.01904 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 70.32 Order of pole (three term test) = 60.58 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7196 2.706 h = 0.003 0.006 y[1] (numeric) = -4.37406931633 2.20415418882 y[1] (closed_form) = -4.37368874605 2.20499064848 absolute error = 0.000919 relative error = 0.01876 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 93.92 Order of pole (three term test) = 60.96 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7226 2.712 h = 0.0001 0.005 y[1] (numeric) = -4.39586344993 2.24478979364 y[1] (closed_form) = -4.39543451111 2.24570070494 absolute error = 0.001007 relative error = 0.0204 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 42.27 Order of pole (three term test) = 61.72 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7227 2.717 h = 0.0001 0.003 y[1] (numeric) = -4.42362395902 2.26547832758 y[1] (closed_form) = -4.42321799219 2.26633598188 absolute error = 0.0009489 relative error = 0.01909 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 34.37 Order of pole (three term test) = 62.21 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7228 2.72 h = 0.001 0.001 y[1] (numeric) = -4.4402149393 2.27816423383 y[1] (closed_form) = -4.43979232636 2.27900632519 absolute error = 0.0009422 relative error = 0.01888 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 27.14 Order of pole (three term test) = 62.51 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7238 2.721 h = 0.001 0.003 y[1] (numeric) = -4.44184048784 2.28789053061 y[1] (closed_form) = -4.44141233128 2.28872221315 absolute error = 0.0009354 relative error = 0.01872 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 129.1 Order of pole (three term test) = 62.67 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7248 2.724 h = 0.0001 0.004 y[1] (numeric) = -4.45478778197 2.30573519149 y[1] (closed_form) = -4.45437177056 2.30658765657 absolute error = 0.0009486 relative error = 0.01891 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 73.48 Order of pole (three term test) = 63.03 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7249 2.728 h = 0.003 0.006 y[1] (numeric) = -4.47712546793 2.32264188673 y[1] (closed_form) = -4.47673002475 2.32349462117 absolute error = 0.00094 relative error = 0.01864 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 98.15 Order of pole (three term test) = 63.43 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7279 2.734 h = 0.0001 0.005 y[1] (numeric) = -4.49909483839 2.36441580049 y[1] (closed_form) = -4.49864953768 2.36534436508 absolute error = 0.00103 relative error = 0.02026 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 44.17 Order of pole (three term test) = 64.22 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.728 2.739 h = 0.0001 0.003 y[1] (numeric) = -4.52733773612 2.38582185896 y[1] (closed_form) = -4.52691621483 2.38669611516 absolute error = 0.0009706 relative error = 0.01897 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 35.92 Order of pole (three term test) = 64.74 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7281 2.742 h = 0.001 0.001 y[1] (numeric) = -4.54421434293 2.39894384041 y[1] (closed_form) = -4.54377589384 2.39980209556 absolute error = 0.0009638 relative error = 0.01876 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 28.36 Order of pole (three term test) = 65.06 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7291 2.743 h = 0.001 0.003 y[1] (numeric) = -4.54579769519 2.40891258585 y[1] (closed_form) = -4.54535363793 2.40976017047 absolute error = 0.0009569 relative error = 0.0186 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 134.9 Order of pole (three term test) = 65.23 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=1771.6MB, alloc=44.3MB, time=21.41 x[1] = 0.7301 2.746 h = 0.0001 0.004 y[1] (numeric) = -4.55890227976 2.42728456212 y[1] (closed_form) = -4.5584705204 2.42815345786 absolute error = 0.0009703 relative error = 0.01879 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 76.79 Order of pole (three term test) = 65.6 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7302 2.75 h = 0.003 0.006 y[1] (numeric) = -4.5816263326 2.44477382784 y[1] (closed_form) = -4.58121559577 2.44564311407 absolute error = 0.0009614 relative error = 0.01851 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 102.6 Order of pole (three term test) = 66.03 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7332 2.756 h = 0.0001 0.005 y[1] (numeric) = -4.60376844677 2.48771225574 y[1] (closed_form) = -4.60330632302 2.48865877359 absolute error = 0.001053 relative error = 0.02013 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 46.16 Order of pole (three term test) = 66.86 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7333 2.761 h = 0.0001 0.003 y[1] (numeric) = -4.63250040577 2.50985444129 y[1] (closed_form) = -4.63206289237 2.51074558012 absolute error = 0.0009927 relative error = 0.01884 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 37.53 Order of pole (three term test) = 67.41 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7334 2.764 h = 0.001 0.001 y[1] (numeric) = -4.64966652802 2.52342376092 y[1] (closed_form) = -4.64921180114 2.52429844935 absolute error = 0.0009858 relative error = 0.01863 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 29.64 Order of pole (three term test) = 67.74 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7344 2.765 h = 0.0001 0.004 y[1] (numeric) = -4.65120539186 2.53364009197 y[1] (closed_form) = -4.65074499219 2.534503842 absolute error = 0.0009788 relative error = 0.01848 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 178.4 Order of pole (three term test) = 67.92 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7345 2.769 h = 0.003 0.006 y[1] (numeric) = -4.67425029497 2.55161634943 y[1] (closed_form) = -4.67383446939 2.55250242698 absolute error = 0.0009788 relative error = 0.01838 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 106.5 Order of pole (three term test) = 68.37 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7375 2.775 h = 0.0001 0.005 y[1] (numeric) = -4.69655326476 2.59557655882 y[1] (closed_form) = -4.69608471973 2.5965411118 absolute error = 0.001072 relative error = 0.01998 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 47.94 Order of pole (three term test) = 69.22 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7376 2.78 h = 0.0001 0.003 y[1] (numeric) = -4.72572065251 2.6183616827 y[1] (closed_form) = -4.72527743931 2.61926990921 absolute error = 0.001011 relative error = 0.01871 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 38.99 Order of pole (three term test) = 69.8 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7377 2.783 h = 0.001 0.001 y[1] (numeric) = -4.74314463159 2.63232177006 y[1] (closed_form) = -4.74268395025 2.63321315365 absolute error = 0.001003 relative error = 0.0185 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 30.79 Order of pole (three term test) = 70.15 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7387 2.784 h = 0.001 0.003 y[1] (numeric) = -4.74464634069 2.64275597485 y[1] (closed_form) = -4.74417992763 2.64363618519 absolute error = 0.0009961 relative error = 0.01834 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 146.4 Order of pole (three term test) = 70.33 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7397 2.787 h = 0.0001 0.004 y[1] (numeric) = -4.75805162739 2.66214093774 y[1] (closed_form) = -4.75759780476 2.6630434746 absolute error = 0.00101 relative error = 0.01853 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 83.35 Order of pole (three term test) = 70.74 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7398 2.791 h = 0.003 0.006 y[1] (numeric) = -4.78151613359 2.68074987595 y[1] (closed_form) = -4.78108420583 2.68165303667 absolute error = 0.001001 relative error = 0.01826 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 111.3 Order of pole (three term test) = 71.22 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7428 2.797 h = 0.0001 0.005 y[1] (numeric) = -4.80398701742 2.72592492568 y[1] (closed_form) = -4.80350076316 2.72690800724 absolute error = 0.001097 relative error = 0.01986 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 50.1 Order of pole (three term test) = 72.11 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7429 2.802 h = 0.0001 0.003 y[1] (numeric) = -4.83365625255 2.74948191538 y[1] (closed_form) = -4.83319620623 2.75040756302 absolute error = 0.001034 relative error = 0.01859 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 40.74 Order of pole (three term test) = 72.73 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.743 2.805 h = 0.001 0.001 y[1] (numeric) = -4.85137719828 2.76391097885 y[1] (closed_form) = -4.85089939053 2.76481931263 absolute error = 0.001026 relative error = 0.01838 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 32.17 Order of pole (three term test) = 73.1 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.744 2.806 h = 0.001 0.003 y[1] (numeric) = -4.8528300085 2.77460263168 y[1] (closed_form) = -4.8523464043 2.77549951248 absolute error = 0.001019 relative error = 0.01823 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 153 Order of pole (three term test) = 73.28 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.745 2.809 h = 0.0001 0.004 y[1] (numeric) = -4.86639412658 2.794551614 y[1] (closed_form) = -4.86592326737 2.79547138662 absolute error = 0.001033 relative error = 0.01841 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 87.1 Order of pole (three term test) = 73.71 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7451 2.813 h = 0.003 0.006 y[1] (numeric) = -4.89026046408 2.81378715564 y[1] (closed_form) = -4.88981198176 2.81470768812 absolute error = 0.001024 relative error = 0.01815 % Correct digits = 4 memory used=1816.3MB, alloc=44.3MB, time=21.95 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 116.3 Order of pole (three term test) = 74.21 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7481 2.819 h = 0.0001 0.005 y[1] (numeric) = -4.91289620425 2.86020491853 y[1] (closed_form) = -4.91239174495 2.86120684104 absolute error = 0.001122 relative error = 0.01973 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 52.35 Order of pole (three term test) = 75.15 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7482 2.824 h = 0.0001 0.003 y[1] (numeric) = -4.94307410805 2.88455368991 y[1] (closed_form) = -4.94259675816 2.88549705097 absolute error = 0.001057 relative error = 0.01847 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 42.57 Order of pole (three term test) = 75.79 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7483 2.827 h = 0.001 0.001 y[1] (numeric) = -4.96109598945 2.89946378531 y[1] (closed_form) = -4.96060058077 2.90038934953 absolute error = 0.00105 relative error = 0.01827 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 33.62 Order of pole (three term test) = 76.19 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7493 2.828 h = 0.001 0.003 y[1] (numeric) = -4.96249738054 2.91041832228 y[1] (closed_form) = -4.9619961107 2.91133214721 absolute error = 0.001042 relative error = 0.01812 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 159.9 Order of pole (three term test) = 76.38 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7503 2.831 h = 0.0001 0.004 y[1] (numeric) = -4.97622070615 2.93094471715 y[1] (closed_form) = -4.97573233635 2.93188201264 absolute error = 0.001057 relative error = 0.0183 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 91.02 Order of pole (three term test) = 76.83 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7504 2.835 h = 0.003 0.006 y[1] (numeric) = -5.00049429163 2.95082299858 y[1] (closed_form) = -5.00002879076 2.95176119548 absolute error = 0.001047 relative error = 0.01804 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 121.6 Order of pole (three term test) = 77.36 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7534 2.841 h = 0.0001 0.005 y[1] (numeric) = -5.02329161576 2.99851195248 y[1] (closed_form) = -5.02276844293 2.99953303266 absolute error = 0.001147 relative error = 0.01961 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 54.71 Order of pole (three term test) = 78.33 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7535 2.846 h = 0.0001 0.003 y[1] (numeric) = -5.05398505679 3.02367290102 y[1] (closed_form) = -5.05348992085 3.02463427183 absolute error = 0.001081 relative error = 0.01836 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 44.49 Order of pole (three term test) = 79.01 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7536 2.849 h = 0.001 0.001 y[1] (numeric) = -5.07231186791 3.03907637367 y[1] (closed_form) = -5.07179837173 3.04001945234 absolute error = 0.001074 relative error = 0.01816 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 35.13 Order of pole (three term test) = 79.43 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7546 2.85 h = 0.001 0.003 y[1] (numeric) = -5.07365923486 3.05029933873 y[1] (closed_form) = -5.07313981289 3.05123038509 absolute error = 0.001066 relative error = 0.01801 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 167.1 Order of pole (three term test) = 79.62 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7556 2.853 h = 0.0001 0.004 y[1] (numeric) = -5.08754208207 3.07141683969 y[1] (closed_form) = -5.0870357156 3.07237194904 absolute error = 0.001081 relative error = 0.01819 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 95.11 Order of pole (three term test) = 80.09 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7557 2.857 h = 0.003 0.006 y[1] (numeric) = -5.11222836798 3.09195438525 y[1] (closed_form) = -5.1117453727 3.09291054332 absolute error = 0.001071 relative error = 0.01793 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 127 Order of pole (three term test) = 80.65 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7587 2.863 h = 0.0001 0.005 y[1] (numeric) = -5.13518378092 3.14094362527 y[1] (closed_form) = -5.13464137307 3.1419841842 absolute error = 0.001173 relative error = 0.01949 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 57.17 Order of pole (three term test) = 81.67 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7588 2.868 h = 0.0001 0.003 y[1] (numeric) = -5.16639967334 3.16693763697 y[1] (closed_form) = -5.16588625658 3.16791731793 absolute error = 0.001106 relative error = 0.01825 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 46.49 Order of pole (three term test) = 82.39 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7589 2.871 h = 0.001 0.001 y[1] (numeric) = -5.18503543218 3.18284712825 y[1] (closed_form) = -5.18450334963 3.18380800915 absolute error = 0.001098 relative error = 0.01805 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 36.71 Order of pole (three term test) = 82.82 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.7599 2.872 h = 0.001 0.003 y[1] (numeric) = -5.18632608276 3.19434417514 y[1] (closed_form) = -5.18578800987 3.19529272384 absolute error = 0.001091 relative error = 0.0179 % Correct digits = 4 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 Radius of convergence (three term test) for eq 1 = 174.6 Order of pole (three term test) = 83.03 0 NO COMPLEX POLE (six term test) for Equation 1 Finished! diff ( y , x , 1 ) = sin ( x ) - 1 , 0 ; Iterations = 754 Total Elapsed Time = 22 Seconds Expected Time Remaining = 0 Seconds Optimized Time Remaining = 0 Seconds Expected Total Time = 22 Seconds > quit memory used=1858.4MB, alloc=44.3MB, time=22.44