|\^/| 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(cos(x) * c(-2.0)); > end; exact_soln_y := proc(x) return cos(x)*c(-2.0) 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_2D0, #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_2D0, 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_2D0, #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_2D0, 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_2D0, #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_2D0, 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_2D0, #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_2D0, 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_2D0, #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_2D0, 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_2D0, #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_2D0, 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_2D0, #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_2D0, 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_2D0, #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 mult CONST FULL $eq_no = 1 i = 1 > array_tmp2[1] := array_const_2D0[1] * array_tmp1[1]; > #emit pre add CONST FULL $eq_no = 1 i = 1 > array_tmp3[1] := array_const_0D0[1] + array_tmp2[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; > #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 mult CONST FULL $eq_no = 1 i = 2 > array_tmp2[2] := array_const_2D0[1] * array_tmp1[2]; > #emit pre add CONST FULL $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; > #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 mult CONST FULL $eq_no = 1 i = 3 > array_tmp2[3] := array_const_2D0[1] * array_tmp1[3]; > #emit pre add CONST FULL $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; > #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 mult CONST FULL $eq_no = 1 i = 4 > array_tmp2[4] := array_const_2D0[1] * array_tmp1[4]; > #emit pre add CONST FULL $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; > #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 mult CONST FULL $eq_no = 1 i = 5 > array_tmp2[5] := array_const_2D0[1] * array_tmp1[5]; > #emit pre add CONST FULL $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; > #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 mult CONST FULL $eq_no = 1 i = 1 > array_tmp2[kkk] := array_const_2D0[1] * array_tmp1[kkk]; > #emit NOT FULL - FULL add $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; > 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_2D0, 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_2D0[1]*array_tmp1[1]; array_tmp3[1] := array_const_0D0[1] + array_tmp2[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; 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_const_2D0[1]*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; 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_const_2D0[1]*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; 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_const_2D0[1]*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; 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_const_2D0[1]*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; 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_const_2D0[1]*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; 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_2D0, > #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_2D0); > array_const_2D0[1] := c(2.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/mult_c_sinpostcpx.cpx#################"); > omniout_str(ALWAYS,"diff ( y , x , 1 ) = 2.0 * sin ( x ) ; "); > 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(cos(x) * c(-2.0));"); > 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 ) = 2.0 * sin ( x ) ; "); > 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:19:12-06:00") > ; > logitem_str(html_log_file,"Maple") > ; > logitem_str(html_log_file,"mult_c_sin") > ; > logitem_str(html_log_file,"diff ( y , x , 1 ) = 2.0 * sin ( x ) ; ") > ; > 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,"mult_c_sin diffeq.mxt") > ; > logitem_str(html_log_file,"mult_c_sin 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_2D0, 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_2D0); array_const_2D0[1] := c(2.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/mult_c_sinpostcpx.cpx#################"); omniout_str(ALWAYS, "diff ( y , x , 1 ) = 2.0 * sin ( x ) ; "); 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(cos(x) * c(-2.0));"); 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 ) = 2.0 * sin ( x ) ; "); 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:19:12-06:00"); logitem_str(html_log_file, "Maple"); logitem_str(html_log_file, "mult_c_sin"); logitem_str(html_log_file, "diff ( y , x , 1 ) = 2.0 * sin ( x ) ; "); 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, "mult_c_sin diffeq.mxt"); logitem_str(html_log_file, "mult_c_sin 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.9MB, alloc=40.3MB, time=0.08 ##############ECHO OF PROBLEM################# ##############temp/mult_c_sinpostcpx.cpx################# diff ( y , x , 1 ) = 2.0 * sin ( x ) ; ! #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(cos(x) * c(-2.0)); 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) = -1.99996666667 0.0199999777778 y[1] (closed_form) = -1.99996666667 0.0199999777778 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) = -2.00096324657 0.0210243437877 y[1] (closed_form) = -2.00096824694 0.0210244953553 absolute error = 5.003e-06 relative error = 0.00025 % 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) = -2.00158613981 0.0216491435681 y[1] (closed_form) = -2.00158513778 0.021649030259 absolute error = 1.008e-06 relative error = 5.038e-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) = -2.00160311042 0.022068845412 y[1] (closed_form) = -2.00159921787 0.0220675992166 absolute error = 4.087e-06 relative error = 0.0002042 % 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) = -2.00205375448 0.0228999537676 y[1] (closed_form) = -2.00205584472 0.0229007767838 absolute error = 2.246e-06 relative error = 0.0001122 % 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) = -2.00293827467 0.023748028067 y[1] (closed_form) = -2.0029445011 0.0237453946783 absolute error = 6.760e-06 relative error = 0.0003375 % 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) = -2.00373283484 0.0256885623592 y[1] (closed_form) = -2.00374207832 0.0257094108042 absolute error = 2.281e-05 relative error = 0.001138 % 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) = -2.00495746544 0.0267877973675 y[1] (closed_form) = -2.00496218374 0.0267939504956 absolute error = 7.754e-06 relative error = 0.0003867 % 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) = -2.00571108399 0.0274504571976 y[1] (closed_form) = -2.00570978814 0.0274563276316 absolute error = 6.012e-06 relative error = 0.0002997 % Correct digits = 6 memory used=28.4MB, alloc=40.3MB, time=0.36 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 x[1] = 0.1065 0.131 h = 0.001 0.003 y[1] (numeric) = -2.00576084207 0.0279252808157 y[1] (closed_form) = -2.00575665285 0.0279300075994 absolute error = 6.316e-06 relative error = 0.0003149 % 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.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) = -2.00633215126 0.0288338549224 y[1] (closed_form) = -2.00633395154 0.0288406728461 absolute error = 7.052e-06 relative error = 0.0003514 % 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) = -2.00739138019 0.0297311298129 y[1] (closed_form) = -2.00739733608 0.0297344959061 absolute error = 6.841e-06 relative error = 0.0003408 % 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) = -2.00841613627 0.0318709618729 y[1] (closed_form) = -2.00842504576 0.031897873496 absolute error = 2.835e-05 relative error = 0.001411 % 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) = -2.00985956094 0.0330310480678 y[1] (closed_form) = -2.00986397967 0.0330432143178 absolute error = 1.294e-05 relative error = 0.0006439 % 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) = -2.01074409385 0.0337320458265 y[1] (closed_form) = -2.010742484 0.0337439100337 absolute error = 1.197e-05 relative error = 0.0005954 % 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) = -2.01082655135 0.0342622193063 y[1] (closed_form) = -2.01082204423 0.0342729279028 absolute error = 1.162e-05 relative error = 0.0005777 % 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) = -2.01151857424 0.035248806643 y[1] (closed_form) = -2.01152006559 0.0352616306582 absolute error = 1.291e-05 relative error = 0.0006417 % 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) = -2.01275278557 0.0361959382437 y[1] (closed_form) = -2.01275845465 0.0362053143982 absolute error = 1.096e-05 relative error = 0.0005443 % 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) = -2.01400770574 0.0385362826609 y[1] (closed_form) = -2.01401626079 0.0385692794653 absolute error = 3.409e-05 relative error = 0.001692 % 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) = -2.01567031201 0.0397580855844 y[1] (closed_form) = -2.01567441213 0.0397762791895 absolute error = 1.865e-05 relative error = 0.0009251 % 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) = -2.01668599907 0.0404979471614 y[1] (closed_form) = -2.0166840535 0.040515817831 absolute error = 1.798e-05 relative error = 0.0008912 % 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) = -2.01680106994 0.0410837314516 y[1] (closed_form) = -2.01679622215 0.0411004333477 absolute error = 1.739e-05 relative error = 0.0008621 % 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) = -2.01761389195 0.042148943218 y[1] (closed_form) = -2.01761505383 0.0421677871749 absolute error = 1.888e-05 relative error = 0.0009355 % 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) = -2.01902342751 0.0431466511876 y[1] (closed_form) = -2.01902879194 0.0431620506561 absolute error = 1.631e-05 relative error = 0.0008075 % 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) = -2.0205085381 0.0456888676481 y[1] (closed_form) = -2.0205167167 0.0457279743287 absolute error = 3.995e-05 relative error = 0.001977 % 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) = -2.02239079904 0.0469733320972 y[1] (closed_form) = -2.02239455995 0.0469975699642 absolute error = 2.453e-05 relative error = 0.001212 % 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) = -2.02353793078 0.0477526316884 y[1] (closed_form) = -2.02353562621 0.0477765241701 absolute error = 2.400e-05 relative error = 0.001186 % 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 x[1] = 0.1224 0.197 h = 0.0001 0.004 y[1] (numeric) = -2.02368553087 0.0483943206979 y[1] (closed_form) = -2.02368031808 0.0484170300336 absolute error = 2.330e-05 relative error = 0.001151 % 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) = -2.02523882947 0.0494336944926 y[1] (closed_form) = -2.02524593408 0.0494533598874 absolute error = 2.091e-05 relative error = 0.001032 % 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) = -2.02692457505 0.0521481321975 y[1] (closed_form) = -2.02693442983 0.0521915894185 absolute error = 4.456e-05 relative error = 0.002198 % 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 memory used=72.5MB, alloc=52.3MB, time=0.90 x[1] = 0.1256 0.212 h = 0.0001 0.003 y[1] (numeric) = -2.02899711477 0.0534847252962 y[1] (closed_form) = -2.02900258416 0.0535132505051 absolute error = 2.904e-05 relative error = 0.001431 % 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) = -2.03025814108 0.0542968973219 y[1] (closed_form) = -2.03025752553 0.0543250568425 absolute error = 2.817e-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.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) = -2.03043434653 0.0549865816985 y[1] (closed_form) = -2.03043081656 0.0550135448154 absolute error = 2.719e-05 relative error = 0.001339 % 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) = -2.03147325739 0.0561984983588 y[1] (closed_form) = -2.03147576428 0.0562276592569 absolute error = 2.927e-05 relative error = 0.00144 % 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) = -2.03321079925 0.057290350653 y[1] (closed_form) = -2.03321756217 0.0573160713998 absolute error = 2.659e-05 relative error = 0.001308 % 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) = -2.03512695835 0.0602095769074 y[1] (closed_form) = -2.03513639181 0.0602591974492 absolute error = 5.051e-05 relative error = 0.002481 % 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) = -2.03742027419 0.061610794373 y[1] (closed_form) = -2.03742536215 0.0616454027197 absolute error = 3.498e-05 relative error = 0.001716 % 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) = -2.03881342903 0.0624635976931 y[1] (closed_form) = -2.03881240724 0.0624978149956 absolute error = 3.423e-05 relative error = 0.001678 % 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) = -2.03902201623 0.0632098227673 y[1] (closed_form) = -2.03901807205 0.0632428270334 absolute error = 3.324e-05 relative error = 0.001629 % 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) = -2.04018218296 0.0645024645867 y[1] (closed_form) = -2.04018429328 0.0645377000974 absolute error = 3.530e-05 relative error = 0.001729 % 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) = -2.04209641437 0.0656472999486 y[1] (closed_form) = -2.04210281335 0.0656790969796 absolute error = 3.243e-05 relative error = 0.001587 % 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) = -2.0442431798 0.0687730925764 y[1] (closed_form) = -2.04425216535 0.0688289088906 absolute error = 5.653e-05 relative error = 0.002764 % 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.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) = -2.04675799054 0.0702401080978 y[1] (closed_form) = -2.046762672 0.070280824176 absolute error = 4.098e-05 relative error = 0.002001 % 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) = -2.04828371019 0.0711342564332 y[1] (closed_form) = -2.04828225439 0.0711745545082 absolute error = 4.032e-05 relative error = 0.001968 % 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) = -2.04852460021 0.0719374110723 y[1] (closed_form) = -2.048520213 0.0719764782434 absolute error = 3.931e-05 relative error = 0.001918 % 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 x[1] = 0.1383 0.263 h = 0.0001 0.004 y[1] (numeric) = -2.04980625029 0.0733116379671 y[1] (closed_form) = -2.04980793747 0.0733529722757 absolute error = 4.137e-05 relative error = 0.002017 % 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) = -2.051897777 0.0745104247859 y[1] (closed_form) = -2.05190378822 0.0745483217188 absolute error = 3.837e-05 relative error = 0.001869 % 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) = -2.05427539852 0.0778447095711 y[1] (closed_form) = -2.05428390791 0.0779067568294 absolute error = 6.263e-05 relative error = 0.003046 % 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.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) = -2.0570125086 0.0793787784924 y[1] (closed_form) = -2.05701675686 0.0794256295855 absolute error = 4.704e-05 relative error = 0.002285 % 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) = -2.05867128013 0.0803150353306 y[1] (closed_form) = -2.05866936093 0.0803614398396 absolute error = 4.644e-05 relative error = 0.002254 % 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) = -2.05894439548 0.0811755418909 y[1] (closed_form) = -2.0589395348 0.0812206963837 absolute error = 4.542e-05 relative error = 0.002204 % 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 memory used=116.4MB, alloc=52.3MB, time=1.41 x[1] = 0.1436 0.285 h = 0.0001 0.004 y[1] (numeric) = -2.06034779276 0.0826322793059 y[1] (closed_form) = -2.06034902859 0.0826797392794 absolute error = 4.748e-05 relative error = 0.002302 % 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) = -2.06261728876 0.0838860519169 y[1] (closed_form) = -2.06262288679 0.0839300750601 absolute error = 4.438e-05 relative error = 0.00215 % 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) = -2.06522607277 0.0874309035393 y[1] (closed_form) = -2.06523407609 0.0874992196434 absolute error = 6.878e-05 relative error = 0.003328 % Correct 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) = -2.06818637232 0.0890333636202 y[1] (closed_form) = -2.06819015907 0.0890863797079 absolute error = 5.315e-05 relative error = 0.002568 % 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) = -2.06997873366 0.0900125426768 y[1] (closed_form) = -2.06997632004 0.0900650819576 absolute error = 5.259e-05 relative error = 0.002538 % 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) = -2.07028399818 0.0909308571782 y[1] (closed_form) = -2.07027863196 0.0909821260746 absolute error = 5.155e-05 relative error = 0.002488 % 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) = -2.0726996747 0.0922301323455 y[1] (closed_form) = -2.07270698015 0.09227853824 absolute error = 4.895e-05 relative error = 0.00236 % 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) = -2.07551026871 0.0959552490484 y[1] (closed_form) = -2.07551989772 0.0960280811771 absolute error = 7.347e-05 relative error = 0.003536 % Correct 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) = -2.07866429854 0.0976150380748 y[1] (closed_form) = -2.07866974928 0.0976724738658 absolute error = 5.769e-05 relative error = 0.002772 % 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.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) = -2.08057264456 0.0986302524779 y[1] (closed_form) = -2.08057186405 0.0986871845521 absolute error = 5.694e-05 relative error = 0.002734 % 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.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) = -2.08090621855 0.0995983353922 y[1] (closed_form) = -2.08090247477 0.0996539786844 absolute error = 5.577e-05 relative error = 0.002677 % 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.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) = -2.08253799731 0.101209835858 y[1] (closed_form) = -2.08254039768 0.101267862253 absolute error = 5.808e-05 relative error = 0.002785 % 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.4817 Order of pole (three term test) = 31.92 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.1533 0.33 h = 0.003 0.006 y[1] (numeric) = -2.08514136774 0.102566763528 y[1] (closed_form) = -2.08514820877 0.102621352118 absolute error = 5.502e-05 relative error = 0.002635 % 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.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) = -2.08818387286 0.106506702175 y[1] (closed_form) = -2.08819293613 0.106585881381 absolute error = 7.970e-05 relative error = 0.003812 % Correct 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) = -2.09156299526 0.108237580795 y[1] (closed_form) = -2.09156792783 0.10830124495 absolute error = 6.385e-05 relative error = 0.003049 % 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.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) = -2.09360607867 0.109297359122 y[1] (closed_form) = -2.093604742 0.109360486257 absolute error = 6.314e-05 relative error = 0.003012 % 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.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) = -2.09397166951 0.110324189661 y[1] (closed_form) = -2.09396735647 0.110386005288 absolute error = 6.197e-05 relative error = 0.002955 % 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.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) = -2.09572616387 0.112021209894 y[1] (closed_form) = -2.09572802357 0.11208545408 absolute error = 6.427e-05 relative error = 0.003062 % 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.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) = -2.09850982432 0.113436441574 y[1] (closed_form) = -2.09851617085 0.113497246921 absolute error = 6.114e-05 relative error = 0.002909 % 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.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) = -2.10178470883 0.117593708038 y[1] (closed_form) = -2.10179317157 0.117679280113 absolute error = 8.599e-05 relative error = 0.004085 % Correct 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) = -2.10539006075 0.11939725347 y[1] (closed_form) = -2.10539444209 0.119467183744 absolute error = 7.007e-05 relative error = 0.003323 % Correct 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) = -2.10756856588 0.120502555381 y[1] (closed_form) = -2.10756663726 0.120571913624 absolute error = 6.939e-05 relative error = 0.003287 % Correct digits = 4 memory used=160.4MB, alloc=52.3MB, time=1.92 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) = -2.10796610077 0.121588686962 y[1] (closed_form) = -2.10796118164 0.121656709681 absolute error = 6.820e-05 relative error = 0.00323 % Correct 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) = -2.10984371489 0.123372409851 y[1] (closed_form) = -2.10984499931 0.123442909132 absolute error = 7.051e-05 relative error = 0.003336 % Correct 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) = -2.11280860442 0.124847239976 y[1] (closed_form) = -2.11281442472 0.124914298861 absolute error = 6.731e-05 relative error = 0.00318 % Correct 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) = -2.11631639187 0.129224493411 y[1] (closed_form) = -2.11632421752 0.129316506922 absolute error = 9.235e-05 relative error = 0.004355 % Correct 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) = -2.12014919646 0.131102368765 y[1] (closed_form) = -2.12015299179 0.13117860564 absolute error = 7.633e-05 relative error = 0.003593 % Correct 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) = -2.12246385876 0.132254206259 y[1] (closed_form) = -2.12246130067 0.13232983436 absolute error = 7.567e-05 relative error = 0.003558 % Correct 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) = -2.12289326564 0.133400226786 y[1] (closed_form) = -2.12288770186 0.13347449404 absolute error = 7.448e-05 relative error = 0.003501 % Correct 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) = -2.12489443956 0.135271903465 y[1] (closed_form) = -2.12489511239 0.135348697861 absolute error = 7.680e-05 relative error = 0.003607 % Correct 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) = -2.12804156598 0.136807695908 y[1] (closed_form) = -2.1280468266 0.136881047841 absolute error = 7.354e-05 relative error = 0.003449 % Correct 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.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) = -2.1317828348 0.141407750082 y[1] (closed_form) = -2.13178998502 0.141506256383 absolute error = 9.877e-05 relative error = 0.004623 % Correct 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) = -2.13584440156 0.143361705401 y[1] (closed_form) = -2.13584757439 0.1434442921 absolute error = 8.265e-05 relative error = 0.003861 % Correct 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) = -2.13829600771 0.144561143447 y[1] (closed_form) = -2.1382927809 0.144643082869 absolute error = 8.200e-05 relative error = 0.003826 % Correct 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) = -2.13875721509 0.145767675563 y[1] (closed_form) = -2.13875096633 0.145848227493 absolute error = 8.079e-05 relative error = 0.003769 % Correct 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) = -2.14205427039 0.147354098138 y[1] (closed_form) = -2.14206120015 0.147432006341 absolute error = 7.822e-05 relative error = 0.003643 % Correct 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) = -2.1459997195 0.152145512431 y[1] (closed_form) = -2.14600843779 0.152248757928 absolute error = 0.0001036 relative error = 0.004816 % Correct 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) = -2.15026024808 0.154163675577 y[1] (closed_form) = -2.15026503423 0.154250871196 absolute error = 8.733e-05 relative error = 0.004051 % Correct 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) = -2.15283098536 0.155403335347 y[1] (closed_form) = -2.15282932938 0.155489849713 absolute error = 8.653e-05 relative error = 0.004009 % Correct 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) = -2.15332024015 0.156662101482 y[1] (closed_form) = -2.15331554706 0.156747204561 absolute error = 8.523e-05 relative error = 0.003948 % Correct 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) = -2.15555370999 0.158699520257 y[1] (closed_form) = -2.15555532173 0.158787251101 absolute error = 8.775e-05 relative error = 0.00406 % Correct 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) = -2.15904362289 0.16035041842 y[1] (closed_form) = -2.15904992669 0.160434700933 absolute error = 8.452e-05 relative error = 0.003904 % Correct 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) = -2.16322381234 0.165370277232 y[1] (closed_form) = -2.16323177965 0.165480119057 absolute error = 0.0001101 relative error = 0.005076 % Correct 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 memory used=204.5MB, alloc=52.3MB, time=2.44 x[1] = 0.1819 0.448 h = 0.0001 0.003 y[1] (numeric) = -2.16771579365 0.167467993933 y[1] (closed_form) = -2.16771988524 0.167561627614 absolute error = 9.372e-05 relative error = 0.004311 % Correct 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) = -2.17042508954 0.168757368401 y[1] (closed_form) = -2.1704226876 0.168850279008 absolute error = 9.294e-05 relative error = 0.004269 % Correct 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) = -2.17094602108 0.170077898943 y[1] (closed_form) = -2.1709405638 0.17016936913 absolute error = 9.163e-05 relative error = 0.004208 % Correct 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) = -2.17330452481 0.172207227084 y[1] (closed_form) = -2.17330541191 0.172301383132 absolute error = 9.416e-05 relative error = 0.004319 % Correct 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) = -2.17697995766 0.173923365845 y[1] (closed_form) = -2.17698559708 0.174014070063 absolute error = 9.088e-05 relative error = 0.004161 % Correct 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) = -2.18139562256 0.179174932737 y[1] (closed_form) = -2.18140279529 0.179291430327 absolute error = 0.0001167 relative error = 0.005333 % Correct 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 x[1] = 0.1872 0.47 h = 0.0001 0.003 y[1] (numeric) = -2.18612061538 0.181354207001 y[1] (closed_form) = -2.1861239708 0.181454329886 absolute error = 0.0001002 relative error = 0.004567 % Correct 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) = -2.1889694044 0.182694515876 y[1] (closed_form) = -2.1889662121 0.182793872025 absolute error = 9.941e-05 relative error = 0.004526 % Correct 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) = -2.18952194222 0.184077534377 y[1] (closed_form) = -2.18951567531 0.184175419601 absolute error = 9.809e-05 relative error = 0.004464 % Correct 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) = -2.19200605854 0.186300292737 y[1] (closed_form) = -2.19200617783 0.186400924625 absolute error = 0.0001006 relative error = 0.004574 % Correct 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) = -2.19586828681 0.1880833117 y[1] (closed_form) = -2.19587322164 0.18818048779 absolute error = 9.730e-05 relative error = 0.004415 % Correct 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) = -2.20052021562 0.193570010793 y[1] (closed_form) = -2.20052654823 0.193693226433 absolute error = 0.0001234 relative error = 0.005585 % Correct 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) = -2.20547986593 0.195832938152 y[1] (closed_form) = -2.20548244174 0.195939604171 absolute error = 0.0001067 relative error = 0.004819 % Correct 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) = -2.20846913432 0.197225456901 y[1] (closed_form) = -2.20846510541 0.197331310642 absolute error = 0.0001059 relative error = 0.004778 % Correct 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) = -2.20905320779 0.198671722771 y[1] (closed_form) = -2.20904608394 0.198776073697 absolute error = 0.0001046 relative error = 0.004716 % Correct 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) = -2.21166355088 0.200989504096 y[1] (closed_form) = -2.21166285732 0.201096665229 absolute error = 0.0001072 relative error = 0.004825 % Correct 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) = -2.21571391962 0.202841116919 y[1] (closed_form) = -2.21571810783 0.202944817837 absolute error = 0.0001038 relative error = 0.004665 % Correct 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) = -2.22060295366 0.208566534637 y[1] (closed_form) = -2.22060839868 0.208696533479 absolute error = 0.0001301 relative error = 0.005834 % Correct 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) = -2.22579899492 0.21091530349 y[1] (closed_form) = -2.22580074579 0.211028569373 absolute error = 0.0001133 relative error = 0.005067 % Correct 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) = -2.2289297808 0.212361364143 y[1] (closed_form) = -2.22892486714 0.212473770298 absolute error = 0.0001125 relative error = 0.005025 % Correct 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) = -2.22954531893 0.213871672984 y[1] (closed_form) = -2.22953728891 0.213982543027 absolute error = 0.0001112 relative error = 0.004963 % Correct 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) = -2.23375070825 0.215780410256 y[1] (closed_form) = -2.23375652046 0.215888899324 absolute error = 0.0001086 relative error = 0.004841 % Correct digits = 4 memory used=248.6MB, alloc=52.3MB, time=2.95 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) = -2.23884745312 0.221711467185 y[1] (closed_form) = -2.23885439963 0.221846488179 absolute error = 0.0001352 relative error = 0.006009 % Correct 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) = -2.24424948671 0.224133104265 y[1] (closed_form) = -2.24425279246 0.22425122691 absolute error = 0.0001182 relative error = 0.005239 % Correct 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 x[1] = 0.2022 0.536 h = 0.001 0.001 y[1] (numeric) = -2.2475036176 0.225624658924 y[1] (closed_form) = -2.24750020446 0.225741880199 absolute error = 0.0001173 relative error = 0.005192 % Correct 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) = -2.24814695861 0.22719038516 y[1] (closed_form) = -2.24814040942 0.22730604079 absolute error = 0.0001158 relative error = 0.005127 % Correct 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) = -2.25099511617 0.229687948558 y[1] (closed_form) = -2.25099508623 0.229806539477 absolute error = 0.0001186 relative error = 0.005241 % Correct 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) = -2.25540025832 0.231669735546 y[1] (closed_form) = -2.2554052414 0.231784855996 absolute error = 0.0001152 relative error = 0.005082 % Correct 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) = -2.26073586047 0.237846611421 y[1] (closed_form) = -2.2607418266 0.237988545168 absolute error = 0.0001421 relative error = 0.006249 % Correct 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) = -2.26637777313 0.240358390985 y[1] (closed_form) = -2.26638016522 0.240483227161 absolute error = 0.0001249 relative error = 0.005478 % Correct 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) = -2.26977550933 0.241906105806 y[1] (closed_form) = -2.26977111739 0.242029989544 absolute error = 0.000124 relative error = 0.005431 % Correct 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) = -2.27045019163 0.24353745383 y[1] (closed_form) = -2.27044264025 0.243659735966 absolute error = 0.0001225 relative error = 0.005365 % Correct 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) = -2.27342655002 0.246134992902 y[1] (closed_form) = -2.27342556855 0.246260281908 absolute error = 0.0001253 relative error = 0.005479 % Correct 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) = -2.27802409012 0.24819067627 y[1] (closed_form) = -2.27802819666 0.248312489134 absolute error = 0.0001219 relative error = 0.005319 % Correct 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) = -2.28359954163 0.254617431627 y[1] (closed_form) = -2.28360447414 0.254766351612 absolute error = 0.000149 relative error = 0.006485 % Correct 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) = -2.28948331984 0.257221814648 y[1] (closed_form) = -2.28948474741 0.257353429211 absolute error = 0.0001316 relative error = 0.005713 % Correct 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) = -2.29302584949 0.258827187681 y[1] (closed_form) = -2.29302042502 0.258957796722 absolute error = 0.0001307 relative error = 0.005665 % Correct 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) = -2.29373180024 0.26052505861 y[1] (closed_form) = -2.29372319186 0.260654028624 absolute error = 0.0001293 relative error = 0.005599 % Correct 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) = -2.29683711065 0.263224451772 y[1] (closed_form) = -2.29683512513 0.263356503142 absolute error = 0.0001321 relative error = 0.005712 % Correct 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) = -2.3016286654 0.265356040982 y[1] (closed_form) = -2.30163184601 0.265484610138 absolute error = 0.0001286 relative error = 0.005551 % Correct 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) = -2.30744500941 0.27203690622 y[1] (closed_form) = -2.30744885297 0.272192888872 absolute error = 0.000156 relative error = 0.006715 % Correct 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) = -2.31357272833 0.274736452295 y[1] (closed_form) = -2.31357313848 0.274874912968 absolute error = 0.0001385 relative error = 0.005943 % Correct 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 x[1] = 0.2181 0.602 h = 0.001 0.001 y[1] (numeric) = -2.31726129215 0.276401041648 y[1] (closed_form) = -2.31725477937 0.276538441657 absolute error = 0.0001376 relative error = 0.005894 % Correct 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 memory used=292.7MB, alloc=52.3MB, time=3.47 x[1] = 0.2191 0.603 h = 0.001 0.003 y[1] (numeric) = -2.31799843723 0.278166374219 y[1] (closed_form) = -2.317988715 0.278302096287 absolute error = 0.0001361 relative error = 0.005828 % Correct 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) = -2.3212334859 0.2809695764 y[1] (closed_form) = -2.32123044179 0.281108457258 absolute error = 0.0001389 relative error = 0.005941 % Correct 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) = -2.32622074276 0.283179160768 y[1] (closed_form) = -2.32622294605 0.283314552957 absolute error = 0.0001354 relative error = 0.005778 % Correct 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) = -2.33227907298 0.290118538319 y[1] (closed_form) = -2.33228177012 0.290281663033 absolute error = 0.0001631 relative error = 0.006942 % Correct 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) = -2.33865289679 0.292915907327 y[1] (closed_form) = -2.33865223458 0.293061284714 absolute error = 0.0001454 relative error = 0.006168 % Correct 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) = -2.34248878827 0.294641332162 y[1] (closed_form) = -2.34248112931 0.294785591646 absolute error = 0.0001445 relative error = 0.006119 % Correct 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) = -2.34325705205 0.296475103146 y[1] (closed_form) = -2.34324615705 0.296617644261 absolute error = 0.000143 relative error = 0.006053 % Correct 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) = -2.34840578404 0.298749771039 y[1] (closed_form) = -2.34840955757 0.298890243875 absolute error = 0.0001405 relative error = 0.005936 % Correct 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) = -2.35467647595 0.305912424546 y[1] (closed_form) = -2.35468059678 0.306080916845 absolute error = 0.0001685 relative error = 0.007098 % Correct 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) = -2.3612651502 0.308793235718 y[1] (closed_form) = -2.36126597467 0.308943778691 absolute error = 0.0001505 relative error = 0.006322 % Correct 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) = -2.36522968473 0.310570592755 y[1] (closed_form) = -2.36522344586 0.31071996777 absolute error = 0.0001495 relative error = 0.006267 % Correct 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) = -2.36602550433 0.312463715344 y[1] (closed_form) = -2.36601600516 0.312611336293 absolute error = 0.0001479 relative error = 0.006198 % Correct 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) = -2.36950547303 0.315463982384 y[1] (closed_form) = -2.36950276193 0.315614913505 absolute error = 0.000151 relative error = 0.006315 % Correct 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) = -2.37486261224 0.317822155508 y[1] (closed_form) = -2.37486530827 0.317969583926 absolute error = 0.0001475 relative error = 0.006154 % Correct 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) = -2.38137751565 0.325251964497 y[1] (closed_form) = -2.38138037828 0.325427755314 absolute error = 0.0001758 relative error = 0.007315 % Correct 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) = -2.38821659462 0.328235792538 y[1] (closed_form) = -2.38821623977 0.328393392063 absolute error = 0.0001576 relative error = 0.006538 % Correct 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) = -2.39233102593 0.330077147133 y[1] (closed_form) = -2.39232352844 0.330233517475 absolute error = 0.0001565 relative error = 0.006482 % Correct 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 x[1] = 0.234 0.666 h = 0.001 0.003 y[1] (numeric) = -2.39315783132 0.332040629335 y[1] (closed_form) = -2.39314704489 0.332195202314 absolute error = 0.0001549 relative error = 0.006413 % Correct 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) = -2.39677000656 0.335150719545 y[1] (closed_form) = -2.39676607013 0.335308688813 absolute error = 0.000158 relative error = 0.006529 % Correct 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) = -2.4023280968 0.337593295162 y[1] (closed_form) = -2.40232965806 0.337747754228 absolute error = 0.0001545 relative error = 0.006367 % Correct 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) = -2.40908844922 0.345295166444 y[1] (closed_form) = -2.40908998984 0.345478343814 absolute error = 0.0001832 relative error = 0.007527 % Correct 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) = -2.41618035514 0.348384966743 y[1] (closed_form) = -2.41617875993 0.348549701813 absolute error = 0.0001647 relative error = 0.006748 % Correct digits = 4 memory used=336.9MB, alloc=52.3MB, time=3.98 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) = -2.42044612966 0.35029211797 y[1] (closed_form) = -2.42043730953 0.350455560406 absolute error = 0.0001637 relative error = 0.006693 % Correct 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) = -2.42130383986 0.352327047808 y[1] (closed_form) = -2.42129170109 0.352488647996 absolute error = 0.0001621 relative error = 0.006623 % Correct 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) = -2.4250491432 0.355549221571 y[1] (closed_form) = -2.42504391867 0.355714307312 absolute error = 0.0001652 relative error = 0.006739 % Correct 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) = -2.43081014888 0.358078609553 y[1] (closed_form) = -2.43081051592 0.358240177275 absolute error = 0.0001616 relative error = 0.006576 % Correct 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) = -2.43781723631 0.36605763122 y[1] (closed_form) = -2.43781738877 0.36624828624 absolute error = 0.0001907 relative error = 0.007734 % Correct 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) = -2.44516448193 0.369256466446 y[1] (closed_form) = -2.44516158308 0.369428419017 absolute error = 0.000172 relative error = 0.006954 % Correct 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) = -2.44958309973 0.371231278672 y[1] (closed_form) = -2.4495728907 0.371401872885 absolute error = 0.0001709 relative error = 0.006898 % Correct 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) = -2.45047163122 0.37333878395 y[1] (closed_form) = -2.45045807276 0.373507489416 absolute error = 0.0001692 relative error = 0.006828 % Correct 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) = -2.45435101876 0.3766753838 y[1] (closed_form) = -2.45434444112 0.376847667284 absolute error = 0.0001724 relative error = 0.006943 % Correct 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) = -2.46031697655 0.379294080921 y[1] (closed_form) = -2.46031608773 0.379462838269 absolute error = 0.0001688 relative error = 0.006779 % Correct 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) = -2.46757213282 0.387555524968 y[1] (closed_form) = -2.4675708286 0.38775375182 absolute error = 0.0001982 relative error = 0.007936 % Correct 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) = -2.47517732191 0.390866567052 y[1] (closed_form) = -2.47517305386 0.391045822065 absolute error = 0.0001793 relative error = 0.007155 % Correct 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) = -2.47975033699 0.392910971139 y[1] (closed_form) = -2.47973867048 0.393088799746 absolute error = 0.0001782 relative error = 0.007098 % Correct 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 x[1] = 0.2499 0.732 h = 0.0001 0.004 y[1] (numeric) = -2.48066960336 0.395092219937 y[1] (closed_form) = -2.48065455555 0.395268111658 absolute error = 0.0001765 relative error = 0.007028 % Correct 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) = -2.48680487992 0.397785545706 y[1] (closed_form) = -2.48680549677 0.397959739684 absolute error = 0.0001742 relative error = 0.006917 % Correct 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) = -2.49427812292 0.406291476116 y[1] (closed_form) = -2.49427815062 0.406495481771 absolute error = 0.000204 relative error = 0.008072 % Correct 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) = -2.50210888605 0.409698610526 y[1] (closed_form) = -2.50210602432 0.409883403896 absolute error = 0.0001848 relative error = 0.007289 % Correct 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) = -2.50681694843 0.411802649459 y[1] (closed_form) = -2.50680660898 0.411985957048 absolute error = 0.0001836 relative error = 0.007227 % Correct 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) = -2.50776349688 0.414047976066 y[1] (closed_form) = -2.5077497472 0.41422930439 absolute error = 0.0001818 relative error = 0.007155 % Correct 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) = -2.51189647926 0.41760239198 y[1] (closed_form) = -2.51188984175 0.417787478239 absolute error = 0.0001852 relative error = 0.007273 % Correct 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) = -2.51825061299 0.420391720177 y[1] (closed_form) = -2.5182498543 0.420573263208 absolute error = 0.0001815 relative error = 0.007111 % Correct 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 memory used=380.9MB, alloc=52.3MB, time=4.49 x[1] = 0.2554 0.762 h = 0.003 0.006 y[1] (numeric) = -2.52465055595 0.423186244727 y[1] (closed_form) = -2.52464979726 0.423367787758 absolute error = 0.0001815 relative error = 0.007092 % Correct 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) = -2.53242904293 0.432026733559 y[1] (closed_form) = -2.53242745886 0.432238575372 absolute error = 0.0002118 relative error = 0.008246 % Correct 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) = -2.54057312395 0.435563222518 y[1] (closed_form) = -2.54056874918 0.43575551106 absolute error = 0.0001923 relative error = 0.007462 % Correct 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) = -2.54546881059 0.437747615147 y[1] (closed_form) = -2.5454568448 0.437938336219 absolute error = 0.0001911 relative error = 0.007399 % Correct 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) = -2.54645406938 0.440081108532 y[1] (closed_form) = -2.54643865152 0.440269791329 absolute error = 0.0001893 relative error = 0.007326 % Correct 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) = -2.55075246973 0.443773278322 y[1] (closed_form) = -2.5507442542 0.443965836157 absolute error = 0.0001927 relative error = 0.007444 % Correct 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) = -2.55735823036 0.446668670993 y[1] (closed_form) = -2.55735601934 0.446857671063 absolute error = 0.000189 relative error = 0.007281 % Correct 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) = -2.56538941019 0.455808655467 y[1] (closed_form) = -2.56538615163 0.456028377771 absolute error = 0.0002197 relative error = 0.008434 % Correct 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) = -2.57380006999 0.459467520046 y[1] (closed_form) = -2.57379411741 0.45966739086 absolute error = 0.0002 relative error = 0.007648 % Correct 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) = -2.57885530725 0.461727696212 y[1] (closed_form) = -2.57884166594 0.461925924286 absolute error = 0.0001987 relative error = 0.007584 % Correct 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) = -2.5798710824 0.464138733251 y[1] (closed_form) = -2.57985395374 0.464334869796 absolute error = 0.0001969 relative error = 0.007511 % Correct 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.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) = -2.58430790588 0.467955584554 y[1] (closed_form) = -2.58429805583 0.468155702007 absolute error = 0.0002004 relative error = 0.007629 % Correct 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) = -2.5911277174 0.47095115732 y[1] (closed_form) = -2.59112398319 0.471147707704 absolute error = 0.0001966 relative error = 0.007465 % Correct 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) = -2.59941312007 0.480396677576 y[1] (closed_form) = -2.59940810851 0.480624387409 absolute error = 0.0002278 relative error = 0.008616 % Correct 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) = -2.60809333996 0.48418154745 y[1] (closed_form) = -2.60808573445 0.484389097896 absolute error = 0.0002077 relative error = 0.007829 % Correct 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) = -2.61330990553 0.486519716589 y[1] (closed_form) = -2.61329451046 0.486725546481 absolute error = 0.0002064 relative error = 0.007765 % Correct 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) = -2.61435609785 0.489009633425 y[1] (closed_form) = -2.61433717906 0.489213316769 absolute error = 0.0002046 relative error = 0.007691 % Correct 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) = -2.61893247715 0.492953941178 y[1] (closed_form) = -2.61892091563 0.493161714811 absolute error = 0.0002081 relative error = 0.007809 % Correct 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) = -2.62596875025 0.496052650288 y[1] (closed_form) = -2.62596341951 0.49625684735 absolute error = 0.0002043 relative error = 0.007643 % Correct 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) = -2.63450995039 0.505809945057 y[1] (closed_form) = -2.63450310466 0.506045752691 absolute error = 0.0002359 relative error = 0.008794 % Correct 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) = -2.64346280519 0.509724570217 y[1] (closed_form) = -2.64345346909 0.509939900769 absolute error = 0.0002155 relative error = 0.008006 % Correct 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) = -2.6488425321 0.512143014949 y[1] (closed_form) = -2.64882530248 0.512356544534 absolute error = 0.0002142 relative error = 0.00794 % Correct digits = 4 memory used=425.0MB, alloc=52.3MB, time=5.01 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) = -2.64991903789 0.514713190781 y[1] (closed_form) = -2.64989824705 0.514924516998 absolute error = 0.0002123 relative error = 0.007866 % Correct 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) = -2.6546361396 0.518787820577 y[1] (closed_form) = -2.65462278711 0.519003350045 absolute error = 0.0002159 relative error = 0.007983 % Correct 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) = -2.66189135961 0.521992719787 y[1] (closed_form) = -2.66188435651 0.522204663003 absolute error = 0.0002121 relative error = 0.007817 % Correct 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) = -2.67068997579 0.532068229602 y[1] (closed_form) = -2.67068121198 0.532312248572 absolute error = 0.0002442 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.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) = -2.67991863433 0.536116482777 y[1] (closed_form) = -2.6799074874 0.536339697055 absolute error = 0.0002235 relative error = 0.008177 % Correct 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) = -2.68546341131 0.538617560374 y[1] (closed_form) = -2.68544426369 0.538838890609 absolute error = 0.0002222 relative error = 0.008111 % Correct 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) = -2.68657012196 0.541269418066 y[1] (closed_form) = -2.68654737453 0.541488486277 absolute error = 0.0002202 relative error = 0.008036 % Correct 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.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) = -2.69400646816 0.544563149704 y[1] (closed_form) = -2.69400087485 0.544781065692 absolute error = 0.000218 relative error = 0.007931 % Correct 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) = -2.70303188733 0.554914788973 y[1] (closed_form) = -2.70302432096 0.555165195566 absolute error = 0.0002505 relative error = 0.009079 % Correct 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) = -2.71250221517 0.559077922933 y[1] (closed_form) = -2.71249235691 0.559307233461 absolute error = 0.0002295 relative error = 0.008287 % Correct 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) = -2.71819164086 0.561650076168 y[1] (closed_form) = -2.71817368608 0.561877430293 absolute error = 0.0002281 relative error = 0.008217 % Correct 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) = -2.71932525673 0.564373058125 y[1] (closed_form) = -2.7193036673 0.56459809872 absolute error = 0.0002261 relative error = 0.00814 % Correct 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) = -2.72430906781 0.568696420169 y[1] (closed_form) = -2.72429507546 0.568925882951 absolute error = 0.0002299 relative error = 0.00826 % Correct 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) = -2.7319799246 0.572104702782 y[1] (closed_form) = -2.73197251221 0.572330559388 absolute error = 0.000226 relative error = 0.008096 % Correct 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) = -2.74126596834 0.582787069475 y[1] (closed_form) = -2.74125632176 0.583045908545 absolute error = 0.000259 relative error = 0.009242 % Correct 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) = -2.75101829828 0.587091332601 y[1] (closed_form) = -2.75100647403 0.587328729163 absolute error = 0.0002377 relative error = 0.00845 % Correct 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) = -2.75687646798 0.589750684869 y[1] (closed_form) = -2.75685643402 0.589986036867 absolute error = 0.0002362 relative error = 0.008378 % Correct 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) = -2.75804009048 0.592558116105 y[1] (closed_form) = -2.75801638117 0.592791092421 absolute error = 0.0002342 relative error = 0.008301 % Correct 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) = -2.7631681852 0.59702049771 y[1] (closed_form) = -2.76315216101 0.597258019787 absolute error = 0.0002381 relative error = 0.008421 % Correct 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) = -2.77106555524 0.600544230233 y[1] (closed_form) = -2.77105624048 0.60077813603 absolute error = 0.0002341 relative error = 0.008256 % Correct 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) = -2.78061396597 0.611564360354 y[1] (closed_form) = -2.78060214714 0.611831754991 absolute error = 0.0002677 relative error = 0.009401 % Correct 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 memory used=469.3MB, alloc=52.3MB, time=5.52 x[1] = 0.2946 0.924 h = 0.0001 0.003 y[1] (numeric) = -2.79065174048 0.616013989475 y[1] (closed_form) = -2.79063786222 0.616259584875 absolute error = 0.000246 relative error = 0.008607 % Correct 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) = -2.79668070486 0.618763119462 y[1] (closed_form) = -2.79665850044 0.619006579293 absolute error = 0.0002445 relative error = 0.008535 % Correct 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) = -2.79787420975 0.621656551327 y[1] (closed_form) = -2.79784828817 0.621897571382 absolute error = 0.0002424 relative error = 0.008458 % Correct 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) = -2.80314788542 0.626261182958 y[1] (closed_form) = -2.80312973945 0.626506876212 absolute error = 0.0002464 relative error = 0.008577 % Correct 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 x[1] = 0.2968 0.935 h = 0.003 0.006 y[1] (numeric) = -2.81127454753 0.629903813747 y[1] (closed_form) = -2.81126324432 0.630145880534 absolute error = 0.0002423 relative error = 0.008411 % Correct 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) = -2.82108710847 0.641268958482 y[1] (closed_form) = -2.82107302241 0.641545035171 absolute error = 0.0002764 relative error = 0.009555 % Correct 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) = -2.83141386628 0.645868323272 y[1] (closed_form) = -2.83139784315 0.646122233575 absolute error = 0.0002544 relative error = 0.00876 % Correct 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) = -2.83761573293 0.648709890432 y[1] (closed_form) = -2.8375912639 0.648961571245 absolute error = 0.0002529 relative error = 0.008687 % Correct 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) = -2.83883898958 0.651690920453 y[1] (closed_form) = -2.83881076044 0.651940095418 absolute error = 0.0002508 relative error = 0.008609 % Correct 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) = -2.84425957669 0.65644113138 y[1] (closed_form) = -2.84423921611 0.656695110926 absolute error = 0.0002548 relative error = 0.008729 % Correct 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) = -2.85261838646 0.660206216476 y[1] (closed_form) = -2.85260500596 0.66045655931 absolute error = 0.0002507 relative error = 0.008562 % Correct 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) = -2.86269692085 0.671923845918 y[1] (closed_form) = -2.86268046949 0.672208734571 absolute error = 0.0002854 relative error = 0.009704 % Correct 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) = -2.87331629751 0.676677451715 y[1] (closed_form) = -2.87329803574 0.676939796277 absolute error = 0.000263 relative error = 0.008909 % Correct 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) = -2.8796932313 0.679614197968 y[1] (closed_form) = -2.87966640054 0.679874216131 absolute error = 0.0002614 relative error = 0.008835 % Correct 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) = -2.88094610217 0.682684470549 y[1] (closed_form) = -2.88091546724 0.682941914774 absolute error = 0.0002593 relative error = 0.008757 % Correct 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) = -2.88949713677 0.686552047929 y[1] (closed_form) = -2.8894850674 0.686808875615 absolute error = 0.0002571 relative error = 0.008657 % Correct 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) = -2.89981042608 0.698576037713 y[1] (closed_form) = -2.89979503703 0.698867888134 absolute error = 0.0002923 relative error = 0.009798 % Correct 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) = -2.91068657785 0.703462576083 y[1] (closed_form) = -2.91066948628 0.703731547153 absolute error = 0.0002695 relative error = 0.009 % Correct 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) = -2.91721716094 0.70648138768 y[1] (closed_form) = -2.91719139054 0.70674794801 absolute error = 0.0002678 relative error = 0.008922 % Correct 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) = -2.91849649766 0.709629479999 y[1] (closed_form) = -2.9184668834 0.709893406674 absolute error = 0.0002656 relative error = 0.008842 % Correct 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) = -2.92419593941 0.714657998121 y[1] (closed_form) = -2.9241743749 0.714926983449 absolute error = 0.0002698 relative error = 0.008964 % Correct 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) = -2.93299615103 0.718657935775 y[1] (closed_form) = -2.93298183277 0.718923263519 absolute error = 0.0002657 relative error = 0.008799 % Correct digits = 4 memory used=513.4MB, alloc=52.3MB, time=6.04 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 x[1] = 0.3147 1.004 h = 0.0001 0.005 y[1] (numeric) = -2.94357900492 0.73104888339 y[1] (closed_form) = -2.94356106134 0.731349798024 absolute error = 0.0003014 relative error = 0.009939 % Correct 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) = -2.95475485787 0.736098371169 y[1] (closed_form) = -2.95473534668 0.736376008663 absolute error = 0.0002783 relative error = 0.00914 % Correct 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) = -2.96146472511 0.73921766206 y[1] (closed_form) = -2.96143640568 0.739492786194 absolute error = 0.0002766 relative error = 0.009061 % Correct 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) = -2.96277342131 0.742458185882 y[1] (closed_form) = -2.9627412118 0.742730604414 absolute error = 0.0002743 relative error = 0.008981 % Correct 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) = -2.96862380633 0.747642352629 y[1] (closed_form) = -2.96859974666 0.74791997291 absolute error = 0.0002787 relative error = 0.009102 % Correct 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) = -2.97766481014 0.751775495868 y[1] (closed_form) = -2.97764814574 0.752049448259 absolute error = 0.0002745 relative error = 0.008937 % Correct 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) = -2.98851916378 0.764541518739 y[1] (closed_form) = -2.98849855848 0.764851637554 absolute error = 0.0003108 relative error = 0.01008 % Correct 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) = -2.99999863562 0.76975886451 y[1] (closed_form) = -2.99997660232 0.770045297418 absolute error = 0.0002873 relative error = 0.009275 % Correct 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) = -3.00689011872 0.77298162171 y[1] (closed_form) = -3.00685914435 0.773265435439 absolute error = 0.0002855 relative error = 0.009196 % Correct 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) = -3.0082280153 0.776316359675 y[1] (closed_form) = -3.0081931035 0.776597393715 absolute error = 0.0002832 relative error = 0.009115 % Correct 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) = -3.01423080188 0.781659903042 y[1] (closed_form) = -3.01420414251 0.781946286196 absolute error = 0.0002876 relative error = 0.009236 % Correct 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) = -3.02351575596 0.785930244782 y[1] (closed_form) = -3.02349664511 0.786212949794 absolute error = 0.0002834 relative error = 0.00907 % Correct 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) = -3.03464358084 0.799079694656 y[1] (closed_form) = -3.03462020328 0.799399161196 absolute error = 0.0003203 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.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) = -3.04643068854 0.804469954344 y[1] (closed_form) = -3.04640602746 0.804765315076 absolute error = 0.0002964 relative error = 0.009406 % Correct 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) = -3.05350617787 0.807799254398 y[1] (closed_form) = -3.05347243942 0.808091886852 absolute error = 0.0002946 relative error = 0.009326 % Correct 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) = -3.0548731071 0.81123003891 y[1] (closed_form) = -3.05483538272 0.811519815402 absolute error = 0.0002922 relative error = 0.009245 % Correct 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) = -3.06102978584 0.816736795095 y[1] (closed_form) = -3.06100041898 0.817032072432 absolute error = 0.0002967 relative error = 0.009366 % Correct 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) = -3.0705619275 0.821148447697 y[1] (closed_form) = -3.07054026671 0.821440036723 absolute error = 0.0002924 relative error = 0.009199 % Correct 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 x[1] = 0.3306 1.07 h = 0.0001 0.005 y[1] (numeric) = -3.08196523035 0.834689914916 y[1] (closed_form) = -3.08193896652 0.835018876339 absolute error = 0.00033 relative error = 0.01034 % Correct 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) = -3.09406409083 0.840258295023 y[1] (closed_form) = -3.094036693 0.84056271945 absolute error = 0.0003057 relative error = 0.009533 % Correct 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) = -3.10132603581 0.843697305964 y[1] (closed_form) = -3.10128942082 0.843998889652 absolute error = 0.0003038 relative error = 0.009452 % Correct 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 memory used=557.5MB, alloc=52.3MB, time=6.55 x[1] = 0.3318 1.079 h = 0.0001 0.004 y[1] (numeric) = -3.10272182078 0.847226019988 y[1] (closed_form) = -3.1026811702 0.847524669211 absolute error = 0.0003014 relative error = 0.009371 % Correct 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) = -3.11245880276 0.851755983121 y[1] (closed_form) = -3.11243833319 0.852054646323 absolute error = 0.0002994 relative error = 0.009277 % Correct 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) = -3.12410567443 0.865638635459 y[1] (closed_form) = -3.12408031119 0.865975213833 absolute error = 0.0003375 relative error = 0.01041 % Correct 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) = -3.13647846382 0.871360840142 y[1] (closed_form) = -3.13645209413 0.871672499336 absolute error = 0.0003128 relative error = 0.009608 % Correct 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) = -3.14390427038 0.874894632904 y[1] (closed_form) = -3.14386855896 0.875203353525 absolute error = 0.0003108 relative error = 0.009523 % Correct 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) = -3.14532594238 0.87850884774 y[1] (closed_form) = -3.14528615074 0.878814565109 absolute error = 0.0003083 relative error = 0.00944 % Correct 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) = -3.15177511284 0.884328017899 y[1] (closed_form) = -3.15174388297 0.884639529059 absolute error = 0.0003131 relative error = 0.009564 % Correct 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) = -3.16177790731 0.889010943097 y[1] (closed_form) = -3.16175468825 0.889318745355 absolute error = 0.0003087 relative error = 0.009398 % Correct 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) = -3.17370419037 0.903302222678 y[1] (closed_form) = -3.17367572115 0.903648580983 absolute error = 0.0003475 relative error = 0.01053 % Correct 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) = -3.18639672779 0.909212596256 y[1] (closed_form) = -3.18636741132 0.909533582687 absolute error = 0.0003223 relative error = 0.009727 % Correct 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) = -3.19401374668 0.912862214466 y[1] (closed_form) = -3.19397494202 0.913180143428 absolute error = 0.0003203 relative error = 0.009642 % Correct 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) = -3.19546394295 0.916578002346 y[1] (closed_form) = -3.19542100624 0.916892845285 absolute error = 0.0003178 relative error = 0.009558 % Correct 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) = -3.20207149652 0.922571957313 y[1] (closed_form) = -3.20203723399 0.922892758752 absolute error = 0.0003226 relative error = 0.009682 % Correct 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) = -3.21233123589 0.927408599558 y[1] (closed_form) = -3.21230515444 0.927725682291 absolute error = 0.0003182 relative error = 0.009515 % Correct 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) = -3.22453903483 0.942117803522 y[1] (closed_form) = -3.22450733533 0.942474099531 absolute error = 0.0003577 relative error = 0.01065 % Correct 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 x[1] = 0.3456 1.138 h = 0.0001 0.003 y[1] (numeric) = -3.2375557287 0.948222000793 y[1] (closed_form) = -3.23752334669 0.948552460468 absolute error = 0.000332 relative error = 0.009842 % Correct 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) = -3.24536658153 0.95199088482 y[1] (closed_form) = -3.24532456125 0.952318164523 absolute error = 0.00033 relative error = 0.009756 % Correct 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) = -3.24684509666 0.955810278068 y[1] (closed_form) = -3.24679889133 0.956134386607 absolute error = 0.0003274 relative error = 0.009673 % Correct 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) = -3.25361264796 0.961983291622 y[1] (closed_form) = -3.2535752318 0.962313528109 absolute error = 0.0003323 relative error = 0.009795 % Correct 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) = -3.2641328819 0.966978248801 y[1] (closed_form) = -3.26410382169 0.967304756991 absolute error = 0.0003278 relative error = 0.009629 % Correct 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) = -3.27662433208 0.982114930486 y[1] (closed_form) = -3.27658927423 0.982481325748 absolute error = 0.0003681 relative error = 0.01076 % Correct 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) = -3.2899696934 0.988418770217 y[1] (closed_form) = -3.28993412348 0.988758852746 absolute error = 0.0003419 relative error = 0.009954 % Correct digits = 4 memory used=601.6MB, alloc=52.3MB, time=7.06 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) = -3.29797706234 0.992310460009 y[1] (closed_form) = -3.29793170043 0.992647236366 absolute error = 0.0003398 relative error = 0.009867 % Correct 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) = -3.29948367967 0.99623554479 y[1] (closed_form) = -3.29943407854 0.99656906242 absolute error = 0.0003372 relative error = 0.009783 % Correct 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) = -3.30641287454 1.00259200966 y[1] (closed_form) = -3.30637218015 1.00293182953 absolute error = 0.0003422 relative error = 0.009905 % Correct 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) = -3.31719723454 1.0077500126 y[1] (closed_form) = -3.31716507564 1.00808609483 absolute error = 0.0003376 relative error = 0.009738 % Correct 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) = -3.32997450097 1.02332398638 y[1] (closed_form) = -3.32993595279 1.02370064627 absolute error = 0.0003786 relative error = 0.01087 % Correct 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) = -3.34365314402 1.02983345501 y[1] (closed_form) = -3.34361426014 1.03018331365 absolute error = 0.000352 relative error = 0.01006 % Correct 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) = -3.35185977221 1.03385159234 y[1] (closed_form) = -3.35181093891 1.03419801482 absolute error = 0.0003498 relative error = 0.009974 % Correct 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) = -3.35339426324 1.03788450956 y[1] (closed_form) = -3.35334113538 1.03822758327 absolute error = 0.0003472 relative error = 0.00989 % Correct 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) = -3.36439764579 1.04317903956 y[1] (closed_form) = -3.36436653236 1.04352286825 absolute error = 0.0003452 relative error = 0.009801 % Correct 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) = -3.37742806169 1.05913404164 y[1] (closed_form) = -3.3773902205 1.05951906089 absolute error = 0.0003869 relative error = 0.01093 % Correct 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) = -3.39139990661 1.06582138659 y[1] (closed_form) = -3.39136188036 1.06617917206 absolute error = 0.0003598 relative error = 0.01012 % Correct 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) = -3.39978186119 1.06994894223 y[1] (closed_form) = -3.39973374542 1.07030317847 absolute error = 0.0003575 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 = 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) = -3.40134147275 1.07407610678 y[1] (closed_form) = -3.40128901274 1.07442691541 absolute error = 0.0003547 relative error = 0.009944 % Correct 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) = -3.40857824919 1.08078406735 y[1] (closed_form) = -3.4085349238 1.08114151432 absolute error = 0.0003601 relative error = 0.01007 % Correct 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) = -3.41986611583 1.08625526726 y[1] (closed_form) = -3.41983167266 1.08660895772 absolute error = 0.0003554 relative error = 0.009903 % Correct 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) = -3.43318657538 1.1026665091 y[1] (closed_form) = -3.43314498969 1.10306211271 absolute error = 0.0003978 relative error = 0.01103 % Correct 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) = -3.44750064168 1.1095710238 y[1] (closed_form) = -3.44745905866 1.10993888199 absolute error = 0.0003702 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 = 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) = -3.4560871698 1.11383204797 y[1] (closed_form) = -3.4560353328 1.11419621968 absolute error = 0.0003678 relative error = 0.01013 % Correct 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) = -3.45767422337 1.11807118064 y[1] (closed_form) = -3.45761798458 1.11843182997 absolute error = 0.000365 relative error = 0.01004 % Correct 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) = -3.46507757871 1.12497581677 y[1] (closed_form) = -3.4650305996 1.12534329316 absolute error = 0.0003705 relative error = 0.01017 % Correct 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) = -3.47664047917 1.13062431093 y[1] (closed_form) = -3.47660257569 1.13098802233 absolute error = 0.0003657 relative error = 0.01 % Correct 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 memory used=645.8MB, alloc=52.3MB, time=7.58 x[1] = 0.371 1.24 h = 0.0001 0.005 y[1] (numeric) = -3.49025322806 1.14750238137 y[1] (closed_form) = -3.4902077543 1.14790874593 absolute error = 0.0004089 relative error = 0.01113 % Correct 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) = -3.50491443159 1.15463055202 y[1] (closed_form) = -3.50486915468 1.1550086469 absolute error = 0.0003808 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 = 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) = -3.5137084543 1.15902898996 y[1] (closed_form) = -3.51365275515 1.15940325702 absolute error = 0.0003784 relative error = 0.01023 % Correct 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) = -3.51532268483 1.16338239359 y[1] (closed_form) = -3.51526252513 1.16375304087 absolute error = 0.0003755 relative error = 0.01014 % Correct 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) = -3.52289438413 1.17048857987 y[1] (closed_form) = -3.52284361183 1.17086624819 absolute error = 0.0003811 relative error = 0.01026 % Correct 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) = -3.53473627287 1.17631964022 y[1] (closed_form) = -3.53469477462 1.17669353548 absolute error = 0.0003762 relative error = 0.0101 % Correct 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) = -3.5486435812 1.19367540909 y[1] (closed_form) = -3.54859407151 1.1940927152 absolute error = 0.0004202 relative error = 0.01122 % Correct 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) = -3.56365694394 1.20103390485 y[1] (closed_form) = -3.56360783195 1.20142240417 absolute error = 0.0003916 relative error = 0.01041 % Correct 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) = -3.57266144483 1.20557381282 y[1] (closed_form) = -3.57260173848 1.20595833882 absolute error = 0.0003891 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 = 1.493 Order of pole (three term test) = 30.25 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.3775 1.271 h = 0.001 0.003 y[1] (numeric) = -3.57430257299 1.2100438487 y[1] (closed_form) = -3.57423834614 1.21042465482 absolute error = 0.0003862 relative error = 0.01023 % Correct 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) = -3.58204441108 1.21735659084 y[1] (closed_form) = -3.58198970198 1.21774461738 absolute error = 0.0003919 relative error = 0.01036 % Correct 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) = -3.59416932719 1.22337563764 y[1] (closed_form) = -3.59412409566 1.22375988349 absolute error = 0.0003869 relative error = 0.01019 % Correct 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) = -3.60837348794 1.24122026126 y[1] (closed_form) = -3.60831979004 1.24164869358 absolute error = 0.0004318 relative error = 0.01132 % Correct 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) = -3.62374413868 1.24881593841 y[1] (closed_form) = -3.62369104625 1.24921501378 absolute error = 0.0004026 relative error = 0.0105 % Correct 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) = -3.63296216433 1.25350148627 y[1] (closed_form) = -3.6328983015 1.25389643853 absolute error = 0.0004001 relative error = 0.01041 % Correct 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) = -3.63462989584 1.25809057513 y[1] (closed_form) = -3.6345614514 1.25848170467 absolute error = 0.0003971 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 = 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) = -3.6469896371 1.2642670382 y[1] (closed_form) = -3.64694527426 1.26465979221 absolute error = 0.0003953 relative error = 0.01024 % Correct 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) = -3.66145718053 1.28253803458 y[1] (closed_form) = -3.66140395792 1.28297566288 absolute error = 0.0004409 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.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) = -3.677142502 1.29033916482 y[1] (closed_form) = -3.67709006263 1.29074694943 absolute error = 0.0004111 relative error = 0.01055 % Correct 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) = -3.68654861525 1.29515090834 y[1] (closed_form) = -3.68648524895 1.29555443955 absolute error = 0.0004085 relative error = 0.01045 % Correct 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) = -3.68824045702 1.29984414681 y[1] (closed_form) = -3.68817245425 1.30024376526 absolute error = 0.0004054 relative error = 0.01037 % Correct 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) = -3.69630636869 1.30755294612 y[1] (closed_form) = -3.69624813581 1.30796016914 absolute error = 0.0004114 relative error = 0.01049 % Correct digits = 4 memory used=689.9MB, alloc=52.3MB, time=8.09 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) = -3.70897137395 1.31393325127 y[1] (closed_form) = -3.70892301122 1.31433667814 absolute error = 0.0004063 relative error = 0.01033 % Correct 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) = -3.72374023328 1.33271461568 y[1] (closed_form) = -3.72368252937 1.33316372666 absolute error = 0.0004528 relative error = 0.01145 % Correct 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.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) = -3.73979276029 1.34076613411 y[1] (closed_form) = -3.73973606066 1.34118482633 absolute error = 0.0004225 relative error = 0.01063 % Correct 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) = -3.74941828927 1.34573154988 y[1] (closed_form) = -3.74935047925 1.3461458307 absolute error = 0.0004198 relative error = 0.01054 % Correct 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) = -3.75113617524 1.35054851149 y[1] (closed_form) = -3.75106366534 1.35095877145 absolute error = 0.0004166 relative error = 0.01045 % Correct 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 x[1] = 0.3934 1.337 h = 0.0001 0.004 y[1] (numeric) = -3.75937758645 1.35847891305 y[1] (closed_form) = -3.7593149845 1.35889699303 absolute error = 0.0004227 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 = 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) = -3.77233771722 1.36506350904 y[1] (closed_form) = -3.77228520409 1.36547778669 absolute error = 0.0004176 relative error = 0.01041 % Correct 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) = -3.78741024577 1.3843672487 y[1] (closed_form) = -3.78734789515 1.38482803891 absolute error = 0.000465 relative error = 0.01153 % Correct 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.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) = -3.80383541927 1.39267656991 y[1] (closed_form) = -3.80377430153 1.39310635268 absolute error = 0.0004341 relative error = 0.01072 % Correct 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) = -3.81368359445 1.39780016662 y[1] (closed_form) = -3.81361117881 1.39822537539 absolute error = 0.0004313 relative error = 0.01062 % Correct 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) = -3.81542718444 1.40274344818 y[1] (closed_form) = -3.81535000432 1.40316452504 absolute error = 0.0004281 relative error = 0.01053 % Correct 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) = -3.82384600314 1.41090098969 y[1] (closed_form) = -3.8237788717 1.41133010789 absolute error = 0.0004343 relative error = 0.01066 % Correct 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) = -3.83710563259 1.41769590113 y[1] (closed_form) = -3.83704881414 1.41812121143 absolute error = 0.0004291 relative error = 0.01049 % Correct 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) = -3.85248420028 1.43753433223 y[1] (closed_form) = -3.8524170327 1.43800700246 absolute error = 0.0004774 relative error = 0.01161 % Correct 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.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) = -3.86928757102 1.44610907527 y[1] (closed_form) = -3.8692218727 1.44655013554 absolute error = 0.0004459 relative error = 0.0108 % Correct 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) = -3.87936168749 1.45139548566 y[1] (closed_form) = -3.87928449968 1.4518318046 absolute error = 0.0004431 relative error = 0.0107 % Correct 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) = -3.88113062357 1.45646774755 y[1] (closed_form) = -3.88104860548 1.45689982054 absolute error = 0.0004398 relative error = 0.01061 % Correct 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) = -3.88972878561 1.46485811164 y[1] (closed_form) = -3.88965695964 1.4652984533 absolute error = 0.0004462 relative error = 0.01073 % Correct 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) = -3.90329237441 1.47186952886 y[1] (closed_form) = -3.90323109119 1.47230605773 absolute error = 0.0004408 relative error = 0.01057 % Correct 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) = -3.91897936602 1.49225528275 y[1] (closed_form) = -3.91890720626 1.4927400381 absolute error = 0.0004901 relative error = 0.01169 % Correct 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.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) = -3.93616659524 1.50110327589 y[1] (closed_form) = -3.93609614917 1.50155580467 absolute error = 0.000458 relative error = 0.01087 % Correct 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 memory used=734.0MB, alloc=52.3MB, time=8.60 x[1] = 0.4073 1.399 h = 0.001 0.001 y[1] (numeric) = -3.94647001314 1.50655725961 y[1] (closed_form) = -3.94638788186 1.50700487489 absolute error = 0.0004551 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.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) = -3.94826391888 1.51176122694 y[1] (closed_form) = -3.94817689029 1.51220447918 absolute error = 0.0004517 relative error = 0.01068 % Correct 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 x[1] = 0.4113 1.406 h = 0.0001 0.005 y[1] (numeric) = -3.96411209795 1.53251600381 y[1] (closed_form) = -3.96405198633 1.53303088629 absolute error = 0.0005184 relative error = 0.0122 % Correct 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.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) = -3.98155959652 1.54156645794 y[1] (closed_form) = -3.98150138749 1.54204868783 absolute error = 0.0004857 relative error = 0.01138 % Correct 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.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) = -3.99201836361 1.5471444211 y[1] (closed_form) = -3.9919483368 1.54762161113 absolute error = 0.0004823 relative error = 0.01126 % Correct 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.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) = -3.99382581581 1.55244121935 y[1] (closed_form) = -3.99375084792 1.55291396226 absolute error = 0.0004787 relative error = 0.01117 % Correct 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) = -4.00272496503 1.5612424913 y[1] (closed_form) = -4.00266043148 1.56172390437 absolute error = 0.0004857 relative error = 0.0113 % Correct 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.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) = -4.01680615598 1.56864177134 y[1] (closed_form) = -4.01675256604 1.56911937112 absolute error = 0.0004806 relative error = 0.01114 % Correct 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) = -4.03300466458 1.58998879467 y[1] (closed_form) = -4.032939248 1.59051611363 absolute error = 0.0005314 relative error = 0.01226 % Correct 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.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) = -4.05084562082 1.59932634911 y[1] (closed_form) = -4.05078236579 1.59982037482 absolute error = 0.0004981 relative error = 0.01144 % Correct 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.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) = -4.06153938242 1.60508030377 y[1] (closed_form) = -4.06146410691 1.60556910891 absolute error = 0.0004946 relative error = 0.01132 % Correct 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.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) = -4.06337105229 1.61051354658 y[1] (closed_form) = -4.06329076671 1.61099778213 absolute error = 0.0004908 relative error = 0.01123 % Correct 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.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) = -4.0724547277 1.61956370838 y[1] (closed_form) = -4.07238502709 1.62005685834 absolute error = 0.0004981 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 = 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) = -4.0868521361 1.62719710424 y[1] (closed_form) = -4.08679362439 1.62768643822 absolute error = 0.0004928 relative error = 0.0112 % Correct 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) = -4.1033651929 1.64912707421 y[1] (closed_form) = -4.10329428203 1.6496670464 absolute error = 0.0005446 relative error = 0.01231 % Correct 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.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) = -4.12160556324 1.65876014699 y[1] (closed_form) = -4.12153708162 1.65926617061 absolute error = 0.0005106 relative error = 0.01149 % Correct 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.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) = -4.13253785294 1.6646952105 y[1] (closed_form) = -4.13245714391 1.66519582763 absolute error = 0.0005071 relative error = 0.01138 % Correct 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.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) = -4.13439330845 1.67026780218 y[1] (closed_form) = -4.13430751914 1.67076372401 absolute error = 0.0005033 relative error = 0.01129 % Correct 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.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) = -4.14366354086 1.67957309848 y[1] (closed_form) = -4.14358848986 1.6800781855 absolute error = 0.0005106 relative error = 0.01142 % Correct 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.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) = -4.15838195056 1.68744744812 y[1] (closed_form) = -4.15831833976 1.68794871734 absolute error = 0.0005053 relative error = 0.01126 % Correct 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 x[1] = 0.4272 1.472 h = 0.0001 0.005 y[1] (numeric) = -4.17521196979 1.70997421425 y[1] (closed_form) = -4.17513536985 1.71052706091 absolute error = 0.0005581 relative error = 0.01237 % Correct 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.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) = -4.19385782383 1.71991145128 y[1] (closed_form) = -4.19378392986 1.72042967914 absolute error = 0.0005235 relative error = 0.01155 % Correct digits = 4 memory used=778.0MB, alloc=52.3MB, time=9.12 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) = -4.20503224174 1.72603287916 y[1] (closed_form) = -4.20494590911 1.72654550931 absolute error = 0.0005198 relative error = 0.01144 % Correct 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.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) = -4.20691102921 1.73174779311 y[1] (closed_form) = -4.20681954487 1.73225559893 absolute error = 0.000516 relative error = 0.01134 % Correct 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.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) = -4.22189596162 1.73982389087 y[1] (closed_form) = -4.2218328073 1.74033524544 absolute error = 0.0005152 relative error = 0.01128 % Correct 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) = -4.23900808886 1.76287189868 y[1] (closed_form) = -4.23893143475 1.76343566284 absolute error = 0.000569 relative error = 0.01239 % Correct 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.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) = -4.25801168478 1.77307312088 y[1] (closed_form) = -4.25793797405 1.77360167377 absolute error = 0.0005337 relative error = 0.01157 % Correct 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.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) = -4.26939976036 1.77935633757 y[1] (closed_form) = -4.26931342326 1.77987912636 absolute error = 0.0005299 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 = 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) = -4.27129999556 1.78519592231 y[1] (closed_form) = -4.27120844268 1.78571377385 absolute error = 0.0005259 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 = 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) = -4.28092608146 1.79499085414 y[1] (closed_form) = -4.2808455628 1.79551835351 absolute error = 0.0005336 relative error = 0.01149 % Correct 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.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) = -4.29625791262 1.80332843543 y[1] (closed_form) = -4.29618931808 1.80385211296 absolute error = 0.0005282 relative error = 0.01133 % Correct 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) = -4.31369168192 1.82699990754 y[1] (closed_form) = -4.31360896406 1.82757697248 absolute error = 0.000583 relative error = 0.01244 % Correct 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.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) = -4.3331124691 1.83752193148 y[1] (closed_form) = -4.33303298871 1.83806308639 absolute error = 0.000547 relative error = 0.01162 % Correct 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.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) = -4.34474961697 1.84400162606 y[1] (closed_form) = -4.34465729072 1.84453681544 absolute error = 0.0005431 relative error = 0.01151 % Correct 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.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) = -4.34667231661 1.84998926008 y[1] (closed_form) = -4.34657470083 1.85051937681 absolute error = 0.000539 relative error = 0.01141 % Correct 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) = -4.35649098927 1.86005806003 y[1] (closed_form) = -4.35640456909 1.86059809487 absolute error = 0.0005469 relative error = 0.01155 % Correct 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.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) = -4.37215809619 1.86865713134 y[1] (closed_form) = -4.37208386921 1.86919334526 absolute error = 0.0005413 relative error = 0.01138 % Correct 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) = -4.38991593539 1.89296692598 y[1] (closed_form) = -4.38982694266 1.89355752615 absolute error = 0.0005973 relative error = 0.01249 % Correct 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.017 Order of pole (three term test) = 29.37 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.4422 1.54 h = 0.0001 0.003 y[1] (numeric) = -4.40976031429 1.90381907815 y[1] (closed_form) = -4.40967486298 1.90437305394 absolute error = 0.0005605 relative error = 0.01167 % Correct 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.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) = -4.42165032891 1.91050091885 y[1] (closed_form) = -4.42155180778 1.91104872196 absolute error = 0.0005566 relative error = 0.01156 % Correct 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.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) = -4.42359497318 1.91663978046 y[1] (closed_form) = -4.42349108754 1.91718237196 absolute error = 0.0005524 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 = 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) = -4.43360836094 1.92698932903 y[1] (closed_form) = -4.43351583505 1.92754211605 absolute error = 0.0005605 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 = 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) = -4.44961588115 1.93585746471 y[1] (closed_form) = -4.44953582399 1.93640643283 absolute error = 0.0005548 relative error = 0.01143 % Correct 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 memory used=822.2MB, alloc=52.3MB, time=9.63 x[1] = 0.4474 1.557 h = 0.0001 0.005 y[1] (numeric) = -4.46770021698 1.96082080671 y[1] (closed_form) = -4.46760473225 1.96142518128 absolute error = 0.0006119 relative error = 0.01254 % Correct 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.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) = -4.48797470418 1.97201266291 y[1] (closed_form) = -4.48788307497 1.97257968288 absolute error = 0.0005744 relative error = 0.01172 % Correct 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.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) = -4.50012144816 1.97890246911 y[1] (closed_form) = -4.50001652066 1.97946310338 absolute error = 0.0005704 relative error = 0.0116 % Correct 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) = -4.50208749197 1.98519581068 y[1] (closed_form) = -4.50197712374 1.98575109075 absolute error = 0.0005661 relative error = 0.01151 % Correct 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) = -4.51229774646 1.99583316175 y[1] (closed_form) = -4.51219890494 1.99639892205 absolute error = 0.0005743 relative error = 0.01164 % Correct 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.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) = -4.52865090995 2.00497813823 y[1] (closed_form) = -4.52856481927 2.00554008282 absolute error = 0.0005685 relative error = 0.01148 % Correct 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) = -4.54706416558 2.03061062653 y[1] (closed_form) = -4.54696196553 2.03122901944 absolute error = 0.0006268 relative error = 0.01259 % Correct 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.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) = -4.56777539455 2.04215201777 y[1] (closed_form) = -4.56767737459 2.04273230971 absolute error = 0.0005885 relative error = 0.01176 % Correct 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.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) = -4.58018279903 2.04925576351 y[1] (closed_form) = -4.58007124774 2.04982945073 absolute error = 0.0005844 relative error = 0.01165 % Correct 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) = -4.58216967103 2.05570691283 y[1] (closed_form) = -4.58205260157 2.05627509957 absolute error = 0.0005801 relative error = 0.01155 % Correct 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) = -4.59880990088 2.06508365887 y[1] (closed_form) = -4.59872396903 2.06565673705 absolute error = 0.0005795 relative error = 0.01149 % Correct 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) = -4.61751644635 2.09130095126 y[1] (closed_form) = -4.61741381464 2.09193140061 absolute error = 0.0006387 relative error = 0.0126 % Correct 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.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) = -4.63861333762 2.10314597009 y[1] (closed_form) = -4.63851516485 2.10373765887 absolute error = 0.0005998 relative error = 0.01178 % Correct 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) = -4.65125095881 2.11043560252 y[1] (closed_form) = -4.65113904769 2.11102049597 absolute error = 0.0005955 relative error = 0.01166 % Correct 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.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) = -4.65325721585 2.11702507258 y[1] (closed_form) = -4.6531397171 2.11760433752 absolute error = 0.0005911 relative error = 0.01156 % Correct 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) = -4.66384323208 2.12821493403 y[1] (closed_form) = -4.6637375818 2.12880522692 absolute error = 0.0005997 relative error = 0.0117 % Correct 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) = -4.68085732207 2.13789218716 y[1] (closed_form) = -4.68076496559 2.13847867004 absolute error = 0.0005937 relative error = 0.01154 % Correct 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) = -4.69989747476 2.16480864534 y[1] (closed_form) = -4.69978769827 2.16545358266 absolute error = 0.0006542 relative error = 0.01264 % Correct 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.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) = -4.72144388925 2.17702211 y[1] (closed_form) = -4.72133891642 2.17762750953 absolute error = 0.0006144 relative error = 0.01182 % Correct 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) = -4.73434974539 2.18453717377 y[1] (closed_form) = -4.73423079243 2.1851355474 absolute error = 0.0006101 relative error = 0.0117 % Correct 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) = -4.7363757358 2.19129085692 y[1] (closed_form) = -4.73625111542 2.19188344864 absolute error = 0.0006056 relative error = 0.0116 % Correct 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) = -4.74716498797 2.20278966518 y[1] (closed_form) = -4.74705239119 2.20339359133 absolute error = 0.0006143 relative error = 0.01174 % Correct digits = 4 memory used=866.3MB, alloc=52.3MB, time=10.15 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) = -4.76454029978 2.21276709856 y[1] (closed_form) = -4.76444129844 2.21336722153 absolute error = 0.0006082 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 = 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) = -4.78391646314 2.24039943486 y[1] (closed_form) = -4.78379930008 2.24105911813 absolute error = 0.00067 relative error = 0.01268 % Correct 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.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) = -4.80591937595 2.25299193874 y[1] (closed_form) = -4.80580737268 2.2536112901 absolute error = 0.0006294 relative error = 0.01186 % Correct 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) = -4.81909759848 2.26073887001 y[1] (closed_form) = -4.81897136856 2.26135095844 absolute error = 0.000625 relative error = 0.01174 % Correct 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) = -4.82114267086 2.26766031791 y[1] (closed_form) = -4.8210106925 2.26826646706 absolute error = 0.0006204 relative error = 0.01164 % Correct 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) = -4.83213739632 2.27947583178 y[1] (closed_form) = -4.83201761951 2.28009362983 absolute error = 0.0006293 relative error = 0.01178 % Correct 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) = -4.84987952484 2.28976204659 y[1] (closed_form) = -4.84977365221 2.29037604971 absolute error = 0.0006231 relative error = 0.01162 % Correct 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) = -4.86959408854 2.31812737808 y[1] (closed_form) = -4.86946929031 2.31880207028 absolute error = 0.0006861 relative error = 0.01272 % Correct 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.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) = -4.89206059452 2.33110979387 y[1] (closed_form) = -4.89194132395 2.33174334285 absolute error = 0.0006447 relative error = 0.0119 % Correct 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) = -4.90551538496 2.33909519805 y[1] (closed_form) = -4.90538163643 2.33972124043 absolute error = 0.0006402 relative error = 0.01178 % Correct 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 x[1] = 0.4741 1.673 h = 0.001 0.003 y[1] (numeric) = -4.90757885751 2.34618804329 y[1] (closed_form) = -4.90743927829 2.34680798498 absolute error = 0.0006355 relative error = 0.01168 % Correct 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) = -4.91878131341 2.3583282139 y[1] (closed_form) = -4.91865411655 2.35896012711 absolute error = 0.0006446 relative error = 0.01182 % Correct 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) = -4.93689594876 2.36893203763 y[1] (closed_form) = -4.93678297203 2.36956016568 absolute error = 0.0006382 relative error = 0.01165 % Correct 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) = -4.95695128583 2.3980478945 y[1] (closed_form) = -4.95681859683 2.39873786367 absolute error = 0.0007026 relative error = 0.01276 % Correct 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.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) = -4.97988860022 2.41143138076 y[1] (closed_form) = -4.97976181889 2.41207937793 absolute error = 0.0006603 relative error = 0.01193 % Correct 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) = -4.99362423058 2.41966203646 y[1] (closed_form) = -4.99348271513 2.42030227657 absolute error = 0.0006557 relative error = 0.01182 % Correct 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) = -4.99570538991 2.42692999407 y[1] (closed_form) = -4.99555796027 2.42756396793 absolute error = 0.0006509 relative error = 0.01172 % Correct 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) = -5.01412947026 2.43779968264 y[1] (closed_form) = -5.01401629556 2.43844011372 absolute error = 0.0006504 relative error = 0.01166 % Correct 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) = -5.03448925126 2.46757182876 y[1] (closed_form) = -5.03435568253 2.46827512124 absolute error = 0.0007159 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 = 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) = -5.05784265596 2.48130397439 y[1] (closed_form) = -5.05771532182 2.48196456254 absolute error = 0.0006727 relative error = 0.01194 % Correct 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) = -5.07182653357 2.48974788191 y[1] (closed_form) = -5.07168423779 2.49040049496 absolute error = 0.0006679 relative error = 0.01182 % Correct 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 memory used=910.3MB, alloc=52.3MB, time=10.66 x[1] = 0.4837 1.714 h = 0.001 0.003 y[1] (numeric) = -5.07392446855 2.49716941086 y[1] (closed_form) = -5.07377618368 2.49781561279 absolute error = 0.000663 relative error = 0.01172 % Correct 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) = -5.08552363443 2.50993299136 y[1] (closed_form) = -5.08538808004 2.51059178527 absolute error = 0.0006726 relative error = 0.01186 % Correct 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) = -5.10435093343 2.52114750167 y[1] (closed_form) = -5.10423020697 2.52180252892 absolute error = 0.0006661 relative error = 0.0117 % Correct 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) = -5.12505606955 2.55170389403 y[1] (closed_form) = -5.12491411861 2.55242297918 absolute error = 0.000733 relative error = 0.0128 % Correct 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.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) = -5.14889417274 2.56585856846 y[1] (closed_form) = -5.1487588597 2.56653408706 absolute error = 0.0006889 relative error = 0.01198 % Correct 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) = -5.16316711412 2.57456076317 y[1] (closed_form) = -5.16301657402 2.57522804316 absolute error = 0.0006841 relative error = 0.01186 % Correct 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) = -5.16528136689 2.58216455139 y[1] (closed_form) = -5.16512475186 2.58282524675 absolute error = 0.000679 relative error = 0.01176 % Correct 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 x[1] = 0.49 1.739 h = 0.0001 0.004 y[1] (numeric) = -5.17709492511 2.59527660689 y[1] (closed_form) = -5.17695122964 2.59595024122 absolute error = 0.0006888 relative error = 0.01189 % Correct 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) = -5.19631165432 2.60683520618 y[1] (closed_form) = -5.19618312423 2.60750508829 absolute error = 0.0006821 relative error = 0.01173 % Correct 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) = -5.21736445921 2.63819460492 y[1] (closed_form) = -5.21721384957 2.6389297657 absolute error = 0.0007504 relative error = 0.01284 % Correct 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.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) = -5.2416948281 2.65278382106 y[1] (closed_form) = -5.24155127285 2.65347453477 absolute error = 0.0007055 relative error = 0.01201 % Correct 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) = -5.25626131111 2.66175159919 y[1] (closed_form) = -5.25610225835 2.66243380346 absolute error = 0.0007005 relative error = 0.01189 % Correct 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) = -5.25839107228 2.66954160651 y[1] (closed_form) = -5.2582258575 2.67021704823 absolute error = 0.0006954 relative error = 0.01179 % Correct 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) = -5.27042135093 2.68301087023 y[1] (closed_form) = -5.27026924768 2.68369960681 absolute error = 0.0007053 relative error = 0.01193 % Correct 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) = -5.29003357603 2.69492331 y[1] (closed_form) = -5.28989698339 2.69560831063 absolute error = 0.0006985 relative error = 0.01176 % Correct 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) = -5.31143633458 2.72710492249 y[1] (closed_form) = -5.31127678203 2.72785644717 absolute error = 0.0007683 relative error = 0.01287 % Correct 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) = -5.33626665948 2.74214100616 y[1] (closed_form) = -5.3361145914 2.74284718463 absolute error = 0.0007224 relative error = 0.01204 % Correct 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) = -5.35113123386 2.75138185349 y[1] (closed_form) = -5.35096339274 2.7520792442 absolute error = 0.0007173 relative error = 0.01192 % Correct 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) = -5.35327565765 2.75936212825 y[1] (closed_form) = -5.35310156621 2.76005257396 absolute error = 0.0007121 relative error = 0.01182 % Correct 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) = -5.36552500035 2.77319754681 y[1] (closed_form) = -5.36536421528 2.7739016524 absolute error = 0.0007222 relative error = 0.01196 % Correct 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) = -5.38553888481 2.78547383212 y[1] (closed_form) = -5.38539396352 2.78617421995 absolute error = 0.0007152 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 = 14.95 Order of pole (three term test) = 28.69 0 NO COMPLEX POLE (six term test) for Equation 1 memory used=954.4MB, alloc=52.3MB, time=11.18 x[1] = 0.5037 1.793 h = 0.0001 0.005 y[1] (numeric) = -5.4072938497 2.81849732218 y[1] (closed_form) = -5.40712506215 2.81926550441 absolute error = 0.0007865 relative error = 0.0129 % Correct 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) = -5.43263194464 2.83399291956 y[1] (closed_form) = -5.43247108563 2.8347148375 absolute error = 0.0007396 relative error = 0.01207 % Correct 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) = -5.44779923236 2.84351451589 y[1] (closed_form) = -5.44762231964 2.84422736006 absolute error = 0.0007345 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 = 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) = -5.44995743534 2.85168919658 y[1] (closed_form) = -5.44977418275 2.85239490869 absolute error = 0.0007291 relative error = 0.01185 % Correct 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 x[1] = 0.505 1.806 h = 0.003 0.006 y[1] (numeric) = -5.47030503386 2.86427000663 y[1] (closed_form) = -5.4701594884 2.86498399879 absolute error = 0.0007287 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 = 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) = -5.49237529876 2.89803002731 y[1] (closed_form) = -5.49220510109 2.89881293887 absolute error = 0.0008012 relative error = 0.0129 % Correct 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) = -5.51816250222 2.91392535811 y[1] (closed_form) = -5.51800061561 2.91466119421 absolute error = 0.0007534 relative error = 0.01207 % Correct 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) = -5.53359758448 2.92369123291 y[1] (closed_form) = -5.53341939486 2.92441774618 absolute error = 0.000748 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 = 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) = -5.53576929545 2.93203648676 y[1] (closed_form) = -5.5355846856 2.93275570425 absolute error = 0.0007425 relative error = 0.01185 % Correct 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) = -5.54843717515 2.94657512 y[1] (closed_form) = -5.54826624651 2.94730869918 absolute error = 0.0007532 relative error = 0.01199 % Correct 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) = -5.56921982292 2.95955099693 y[1] (closed_form) = -5.56906543718 2.96028089315 absolute error = 0.000746 relative error = 0.01183 % Correct 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) = -5.59164663541 2.99419070682 y[1] (closed_form) = -5.59146664117 2.99499084058 absolute error = 0.0008201 relative error = 0.01293 % Correct 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) = -5.61795664038 3.01056986501 y[1] (closed_form) = -5.61778542818 3.01132196899 absolute error = 0.0007713 relative error = 0.0121 % Correct 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) = -5.63370332683 3.02063125416 y[1] (closed_form) = -5.63351552113 3.02137373454 absolute error = 0.0007659 relative error = 0.01198 % Correct 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) = -5.63588711998 3.02917887215 y[1] (closed_form) = -5.63569280217 3.02991386082 absolute error = 0.0007602 relative error = 0.01188 % Correct 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) = -5.64878096006 3.04411044627 y[1] (closed_form) = -5.64860052667 3.04486018888 absolute error = 0.0007711 relative error = 0.01202 % Correct 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) = -5.66998357354 3.05748016805 y[1] (closed_form) = -5.66982005985 3.05822625177 absolute error = 0.0007638 relative error = 0.01186 % Correct 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) = -5.69276907992 3.09302059053 y[1] (closed_form) = -5.69257897338 3.09383825598 absolute error = 0.0008395 relative error = 0.01296 % Correct 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) = -5.71961006183 3.1098971797 y[1] (closed_form) = -5.71942922351 3.11066584119 absolute error = 0.0007896 relative error = 0.01213 % Correct 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) = -5.73567318525 3.12026234282 y[1] (closed_form) = -5.73547545762 3.12102107169 absolute error = 0.0007841 relative error = 0.01201 % Correct 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) = -5.73786806276 3.12901673131 y[1] (closed_form) = -5.73766372992 3.1297677676 absolute error = 0.0007783 relative error = 0.01191 % Correct 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) = -5.75099025952 3.14435106101 y[1] (closed_form) = -5.75080001718 3.14511725347 absolute error = 0.0007895 relative error = 0.01204 % Correct 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 memory used=998.6MB, alloc=52.3MB, time=11.69 x[1] = 0.5209 1.872 h = 0.003 0.006 y[1] (numeric) = -5.7726193874 3.15812566804 y[1] (closed_form) = -5.77244645014 3.15888822794 absolute error = 0.0007819 relative error = 0.01188 % Correct 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.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) = -5.79576568745 3.19458832077 y[1] (closed_form) = -5.79556514418 3.19542383303 absolute error = 0.0008592 relative error = 0.01298 % Correct 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) = -5.82314594779 3.21197629512 y[1] (closed_form) = -5.82295517458 3.21276180909 absolute error = 0.0008083 relative error = 0.01215 % Correct 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) = -5.83953041439 3.22265370414 y[1] (closed_form) = -5.83932245065 3.22342896798 absolute error = 0.0008027 relative error = 0.01203 % Correct 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) = -5.84173533527 3.23161936634 y[1] (closed_form) = -5.84152067201 3.23238673168 absolute error = 0.0007968 relative error = 0.01194 % Correct 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) = -5.85508829518 3.24736650323 y[1] (closed_form) = -5.85488793141 3.24814943715 absolute error = 0.0008082 relative error = 0.01207 % Correct 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) = -5.8771505862 3.26155731995 y[1] (closed_form) = -5.87696792161 3.26233665004 absolute error = 0.0008005 relative error = 0.01191 % Correct 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) = -5.90065972909 3.29896422521 y[1] (closed_form) = -5.90044841574 3.29981790512 absolute error = 0.0008794 relative error = 0.01301 % Correct 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) = -5.92858769597 3.3168778979 y[1] (closed_form) = -5.92838667062 3.31768056464 absolute error = 0.0008275 relative error = 0.01218 % Correct 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) = -5.94529848564 3.32787624202 y[1] (closed_form) = -5.94507996312 3.32866833247 absolute error = 0.0008217 relative error = 0.01206 % Correct 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) = -5.94751236422 3.33705777981 y[1] (closed_form) = -5.94728704665 3.33784176067 absolute error = 0.0008157 relative error = 0.01196 % Correct 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) = -5.9699345797 3.3515968962 y[1] (closed_form) = -5.96975078363 3.35239127554 absolute error = 0.0008154 relative error = 0.01191 % Correct 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) = -5.99376925934 3.38983025607 y[1] (closed_form) = -5.9935559097 3.39070022279 absolute error = 0.0008957 relative error = 0.01301 % Correct 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) = -6.02218202073 3.40820151097 y[1] (closed_form) = -6.02197940578 3.40901956782 absolute error = 0.0008428 relative error = 0.01218 % Correct 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) = -6.03918171059 3.41947926387 y[1] (closed_form) = -6.03896132607 3.42028646029 absolute error = 0.0008367 relative error = 0.01206 % Correct 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) = -6.04140504297 3.42885029368 y[1] (closed_form) = -6.0411777776 3.42964919574 absolute error = 0.0008306 relative error = 0.01196 % Correct 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) = -6.05519904525 3.44539033706 y[1] (closed_form) = -6.05498648113 3.44620560051 absolute error = 0.0008425 relative error = 0.01209 % Correct 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) = -6.07809068194 3.46038141287 y[1] (closed_form) = -6.0778965746 3.4611931277 absolute error = 0.0008346 relative error = 0.01193 % Correct 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) = -6.10229214537 3.49960136005 y[1] (closed_form) = -6.10206738481 3.50049011104 absolute error = 0.0009167 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 = 9.045 Order of pole (three term test) = 28.81 0 NO COMPLEX POLE (six term test) for Equation 1 x[1] = 0.5389 1.946 h = 0.0001 0.003 y[1] (numeric) = -6.13126881569 3.51852582721 y[1] (closed_form) = -6.13105533877 3.51936161418 absolute error = 0.0008626 relative error = 0.0122 % Correct 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) = -6.14860440183 3.53014121843 y[1] (closed_form) = -6.14837283827 3.53096580211 absolute error = 0.0008565 relative error = 0.01208 % Correct 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 memory used=1042.7MB, alloc=52.3MB, time=12.21 x[1] = 0.54 1.95 h = 0.001 0.003 y[1] (numeric) = -6.15083460505 3.53973697006 y[1] (closed_form) = -6.1505960628 3.54055303838 absolute error = 0.0008502 relative error = 0.01198 % Correct 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) = -6.16486642935 3.55671990157 y[1] (closed_form) = -6.16464280573 3.55755277416 absolute error = 0.0008624 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 = 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) = -6.18821095231 3.57216112989 y[1] (closed_form) = -6.18800620556 3.57299048987 absolute error = 0.0008543 relative error = 0.01196 % Correct 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) = -6.21278108674 3.61239118985 y[1] (closed_form) = -6.21254455518 3.61329906276 absolute error = 0.0009382 relative error = 0.01305 % Correct 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) = -6.24233046359 3.63188425524 y[1] (closed_form) = -6.24210578211 3.63273808844 absolute error = 0.0008829 relative error = 0.01222 % Correct 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) = -6.26000714079 3.64384662347 y[1] (closed_form) = -6.25976404998 3.6446889012 absolute error = 0.0008767 relative error = 0.0121 % Correct 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) = -6.26224299373 3.65367199196 y[1] (closed_form) = -6.2619928252 3.65450552783 absolute error = 0.0008703 relative error = 0.012 % Correct 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) = -6.27651507677 3.67110882698 y[1] (closed_form) = -6.27628004712 3.67195962114 absolute error = 0.0008827 relative error = 0.01214 % Correct 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) = -6.30031952813 3.68701269217 y[1] (closed_form) = -6.30010380488 3.68786001253 absolute error = 0.0008744 relative error = 0.01198 % Correct 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) = -6.32526015329 3.7282769369 y[1] (closed_form) = -6.32501148082 3.72920427533 absolute error = 0.0009601 relative error = 0.01308 % Correct 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) = -6.35539116277 3.74835437929 y[1] (closed_form) = -6.35515492485 3.74922658047 absolute error = 0.0009036 relative error = 0.01225 % Correct 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) = -6.37341420039 3.76067330096 y[1] (closed_form) = -6.37315922474 3.76153358492 absolute error = 0.0008973 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 = 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) = -6.37565443099 3.77073328737 y[1] (closed_form) = -6.37539227739 3.77158459732 absolute error = 0.0008908 relative error = 0.01203 % Correct 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) = -6.39016921315 3.78863530425 y[1] (closed_form) = -6.38992242157 3.78950433791 absolute error = 0.0009034 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 = 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) = -6.41444073684 3.80501460886 y[1] (closed_form) = -6.41421369079 3.80588021045 absolute error = 0.0008949 relative error = 0.012 % Correct 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) = -6.43975360017 3.84733766827 y[1] (closed_form) = -6.43949240682 3.84828482188 absolute error = 0.0009825 relative error = 0.0131 % Correct 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 x[1] = 0.5548 2.012 h = 0.0001 0.003 y[1] (numeric) = -6.47047529729 3.86801566851 y[1] (closed_form) = -6.47022714147 3.86890656508 absolute error = 0.0009248 relative error = 0.01227 % Correct 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) = -6.48885003945 3.88070096339 y[1] (closed_form) = -6.48858281174 3.88157957119 absolute error = 0.0009183 relative error = 0.01215 % Correct 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) = -6.49109332291 3.89100067675 y[1] (closed_form) = -6.49081881586 3.89187007264 absolute error = 0.0009117 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 = 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) = -6.5157529667 3.90777778733 y[1] (closed_form) = -6.51552418735 3.9086600395 absolute error = 0.0009114 relative error = 0.012 % Correct 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) = -6.54140060316 3.95102793565 y[1] (closed_form) = -6.54113663632 3.95199309841 absolute error = 0.001001 relative error = 0.01309 % Correct 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) = -6.57264551796 3.9722289618 y[1] (closed_form) = -6.57239510922 3.97313687805 absolute error = 0.0009418 relative error = 0.01226 % Correct 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 memory used=1086.9MB, alloc=52.3MB, time=12.72 x[1] = 0.5592 2.034 h = 0.001 0.001 y[1] (numeric) = -6.59133186033 3.98523339441 y[1] (closed_form) = -6.59106208281 3.98612869812 absolute error = 0.0009351 relative error = 0.01214 % Correct 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) = -6.59357960964 3.99574361798 y[1] (closed_form) = -6.59330246163 3.99662950151 absolute error = 0.0009282 relative error = 0.01204 % Correct 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) = -6.60855837075 4.0145392124 y[1] (closed_form) = -6.60829701347 4.01544371417 absolute error = 0.0009415 relative error = 0.01218 % Correct 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) = -6.6337244095 4.03183262508 y[1] (closed_form) = -6.6334836417 4.03273377512 absolute error = 0.0009328 relative error = 0.01202 % Correct 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) = -6.65974763592 4.07618892498 y[1] (closed_form) = -6.6594704178 4.07717457469 absolute error = 0.001024 relative error = 0.01311 % Correct 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) = -6.69160063633 4.09802160907 y[1] (closed_form) = -6.69133761493 4.09894884987 absolute error = 0.0009638 relative error = 0.01228 % Correct 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) = -6.71064895096 4.11141128877 y[1] (closed_form) = -6.71036621559 4.11232552666 absolute error = 0.000957 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 = 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) = -6.71289720548 4.12217105773 y[1] (closed_form) = -6.71260699598 4.12307562646 absolute error = 0.00095 relative error = 0.01206 % Correct 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) = -6.72812579897 4.14146557352 y[1] (closed_form) = -6.72785161167 4.14238925997 absolute error = 0.0009635 relative error = 0.0122 % Correct 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) = -6.75378007751 4.15927278655 y[1] (closed_form) = -6.75352694744 4.16019317191 absolute error = 0.0009546 relative error = 0.01203 % Correct 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) = -6.78018041381 4.20476153015 y[1] (closed_form) = -6.77988953425 4.20576803428 absolute error = 0.001048 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 = 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) = -6.81265093057 4.22724325488 y[1] (closed_form) = -6.81237490645 4.22819016439 absolute error = 0.0009863 relative error = 0.0123 % Correct 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 x[1] = 0.5698 2.078 h = 0.001 0.001 y[1] (numeric) = -6.83206677931 4.24102872874 y[1] (closed_form) = -6.83177069007 4.24196223442 absolute error = 0.0009793 relative error = 0.01218 % Correct 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) = -6.83431405469 4.25204347305 y[1] (closed_form) = -6.83401038654 4.25296705445 absolute error = 0.0009722 relative error = 0.01208 % Correct 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) = -6.8497949238 4.27184925861 y[1] (closed_form) = -6.84950751216 4.27279246965 absolute error = 0.000986 relative error = 0.01221 % Correct 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) = -6.87594498556 4.29018437372 y[1] (closed_form) = -6.87567910925 4.29112433773 absolute error = 0.0009768 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 = 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) = -6.90272385946 4.33683245741 y[1] (closed_form) = -6.90241889721 4.33786018975 absolute error = 0.001072 relative error = 0.01315 % Correct 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) = -6.93582145348 4.35998104542 y[1] (closed_form) = -6.93553202607 4.36094797371 absolute error = 0.001009 relative error = 0.01232 % Correct 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) = -6.95561047343 4.37417312666 y[1] (closed_form) = -6.95530062374 4.37512623943 absolute error = 0.001002 relative error = 0.0122 % Correct 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) = -6.95785522544 4.3854483923 y[1] (closed_form) = -6.9575376909 4.38639131936 absolute error = 0.000995 relative error = 0.0121 % Correct 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) = -6.97359080919 4.40577808794 y[1] (closed_form) = -6.9732897683 4.40674116932 absolute error = 0.001009 relative error = 0.01223 % Correct 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) = -7.0002443005 4.4246555632 y[1] (closed_form) = -6.99996528363 4.42561545513 absolute error = 0.0009996 relative error = 0.01207 % Correct digits = 4 memory used=1131.1MB, alloc=52.3MB, time=13.23 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) = -7.02740304193 4.4724905002 y[1] (closed_form) = -7.02708356439 4.47353984093 absolute error = 0.001097 relative error = 0.01317 % Correct 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) = -7.06113740451 4.4963242244 y[1] (closed_form) = -7.06083416245 4.49731152756 absolute error = 0.001033 relative error = 0.01234 % Correct 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) = -7.0813053081 4.51093399868 y[1] (closed_form) = -7.08098128051 4.51190706355 absolute error = 0.001026 relative error = 0.01221 % Correct 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) = -7.08354593057 4.52247544981 y[1] (closed_form) = -7.08321411106 4.52343806112 absolute error = 0.001018 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 = 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) = -7.1106177569 4.54180665782 y[1] (closed_form) = -7.11033629517 4.54278497211 absolute error = 0.001018 relative error = 0.01206 % Correct 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) = -7.13811905717 4.59068116629 y[1] (closed_form) = -7.13779594052 4.59175041796 absolute error = 0.001117 relative error = 0.01316 % Correct 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) = -7.17241785519 4.61511187224 y[1] (closed_form) = -7.17211157951 4.61611799626 absolute error = 0.001052 relative error = 0.01233 % Correct 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) = -7.19292168148 4.63008566528 y[1] (closed_form) = -7.19259429745 4.63107718248 absolute error = 0.001044 relative error = 0.01221 % Correct 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 x[1] = 0.5857 2.142 h = 0.001 0.003 y[1] (numeric) = -7.19516067929 4.641860944 y[1] (closed_form) = -7.194825407 4.6428417731 absolute error = 0.001037 relative error = 0.01211 % Correct 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) = -7.21138330729 4.66319708069 y[1] (closed_form) = -7.21106498405 4.66419907242 absolute error = 0.001051 relative error = 0.01224 % Correct 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) = -7.23900115189 4.683117281 y[1] (closed_form) = -7.23870579166 4.68411619422 absolute error = 0.001042 relative error = 0.01208 % Correct 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) = -7.26688485977 4.73323151167 y[1] (closed_form) = -7.26654639628 4.73432310191 absolute error = 0.001143 relative error = 0.01318 % Correct 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) = -7.30183903789 4.75838247122 y[1] (closed_form) = -7.30151815692 4.7594096541 absolute error = 0.001076 relative error = 0.01235 % Correct 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) = -7.32273271779 4.77379526193 y[1] (closed_form) = -7.32239035358 4.77480739399 absolute error = 0.001068 relative error = 0.01222 % Correct 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) = -7.32496449643 4.78584760897 y[1] (closed_form) = -7.32461413475 4.78684877271 absolute error = 0.001061 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 = 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) = -7.34144893933 4.8077454574 y[1] (closed_form) = -7.34111577203 4.80876834651 absolute error = 0.001076 relative error = 0.01226 % Correct 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) = -7.36959284432 4.82825132713 y[1] (closed_form) = -7.36928316018 4.82927120611 absolute error = 0.001066 relative error = 0.0121 % Correct 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) = -7.3978599851 4.8796346312 y[1] (closed_form) = -7.3975057081 4.88074895903 absolute error = 0.001169 relative error = 0.01319 % Correct 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) = -7.43347961408 4.90552546318 y[1] (closed_form) = -7.43314368419 4.90657407869 absolute error = 0.001101 relative error = 0.01236 % Correct 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) = -7.45476907896 4.92138915139 y[1] (closed_form) = -7.45441128464 4.92242226019 absolute error = 0.001093 relative error = 0.01224 % Correct 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) = -7.45699184513 4.93372458217 y[1] (closed_form) = -7.45662594305 4.93474643558 absolute error = 0.001085 relative error = 0.01214 % Correct 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 memory used=1175.2MB, alloc=52.3MB, time=13.75 x[1] = 0.5973 2.189 h = 0.0001 0.004 y[1] (numeric) = -7.47374051159 4.95619797054 y[1] (closed_form) = -7.473392052 4.95724212596 absolute error = 0.001101 relative error = 0.01227 % Correct 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) = -7.50241852609 4.97730542245 y[1] (closed_form) = -7.50209408122 4.97834664022 absolute error = 0.001091 relative error = 0.01211 % Correct 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) = -7.53107000391 5.02998781913 y[1] (closed_form) = -7.53069943422 5.03112529024 absolute error = 0.001196 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 = 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) = -7.56736528534 5.05663863488 y[1] (closed_form) = -7.56701385104 5.05770906304 absolute error = 0.001127 relative error = 0.01238 % Correct 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) = -7.58905654186 5.07296541829 y[1] (closed_form) = -7.58868285559 5.07401987168 absolute error = 0.001119 relative error = 0.01225 % Correct 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) = -7.59126843213 5.08559007521 y[1] (closed_form) = -7.59088652673 5.08663297911 absolute error = 0.001111 relative error = 0.01215 % Correct 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.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) = -7.60828371707 5.10865315573 y[1] (closed_form) = -7.60791950501 5.10971895252 absolute error = 0.001126 relative error = 0.01229 % Correct 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) = -7.63750399339 5.1303785014 y[1] (closed_form) = -7.63716433927 5.13144143729 absolute error = 0.001116 relative error = 0.01213 % Correct 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) = -7.66654058465 5.18439069183 y[1] (closed_form) = -7.66615323025 5.18555171869 absolute error = 0.001224 relative error = 0.01322 % Correct 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) = -7.70352185094 5.21182210679 y[1] (closed_form) = -7.70315444458 5.21291473394 absolute error = 0.001153 relative error = 0.01239 % Correct 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) = -7.72562098095 5.22862448792 y[1] (closed_form) = -7.72523092865 5.22970065978 absolute error = 0.001145 relative error = 0.01227 % Correct 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) = -7.72782005947 5.24154464269 y[1] (closed_form) = -7.72742167562 5.24260896378 absolute error = 0.001136 relative error = 0.01217 % Correct 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) = -7.75749092579 5.26378683789 y[1] (closed_form) = -7.7571479881 5.26487015364 absolute error = 0.001136 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 = 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) = -7.78687588012 5.31896418865 y[1] (closed_form) = -7.78648387282 5.32014722351 absolute error = 0.001246 relative error = 0.01322 % Correct 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) = -7.82446563529 5.34707607785 y[1] (closed_form) = -7.82409427894 5.34818951384 absolute error = 0.001174 relative error = 0.01238 % Correct 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) = -7.84692665045 5.36429312879 y[1] (closed_form) = -7.84653229794 5.36538969043 absolute error = 0.001165 relative error = 0.01226 % Correct 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) = -7.84911671795 5.37747294639 y[1] (closed_form) = -7.84871393258 5.3785573934 absolute error = 0.001157 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 = 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) = -7.86664187339 5.40166886966 y[1] (closed_form) = -7.86625726285 5.40277734502 absolute error = 0.001173 relative error = 0.01229 % Correct 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) = -7.89690106163 5.42458209697 y[1] (closed_form) = -7.8965420526 5.42568785932 absolute error = 0.001163 relative error = 0.01213 % Correct 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) = -7.92667259616 5.48114822753 y[1] (closed_form) = -7.92626285851 5.48235561007 absolute error = 0.001275 relative error = 0.01323 % Correct 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) = -7.96496817045 5.5100803319 y[1] (closed_form) = -7.96457994323 5.51121670878 absolute error = 0.001201 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 = 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) = -7.98784873341 5.52779700616 y[1] (closed_form) = -7.9874371038 5.52891600421 absolute error = 0.001192 relative error = 0.01227 % Correct digits = 4 memory used=1219.4MB, alloc=52.3MB, time=14.26 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) = -7.99002226466 5.54128436953 y[1] (closed_form) = -7.98960208777 5.54239093787 absolute error = 0.001184 relative error = 0.01217 % Correct 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) = -8.00782097591 5.56611229606 y[1] (closed_form) = -8.00741923262 5.56724352616 absolute error = 0.0012 relative error = 0.01231 % Correct 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 x[1] = 0.6176 2.278 h = 0.003 0.006 y[1] (numeric) = -8.03864652798 5.58969226649 y[1] (closed_form) = -8.03827096402 5.59082087328 absolute error = 0.001189 relative error = 0.01215 % Correct 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) = -8.06880502401 5.64767990989 y[1] (closed_form) = -8.0683770256 5.64891207244 absolute error = 0.001304 relative error = 0.01324 % Correct 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) = -8.10781712977 5.67745435143 y[1] (closed_form) = -8.10741152764 5.67861407419 absolute error = 0.001229 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 = 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) = -8.13112354045 5.69568406261 y[1] (closed_form) = -8.13069412307 5.69682588867 absolute error = 0.00122 relative error = 0.01229 % Correct 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) = -8.13327838093 5.70948562784 y[1] (closed_form) = -8.13284030086 5.71061470146 absolute error = 0.001211 relative error = 0.01219 % Correct 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) = -8.1513529725 5.73496102822 y[1] (closed_form) = -8.15093358746 5.73611541255 absolute error = 0.001228 relative error = 0.01232 % Correct 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) = -8.18275344321 5.75922568149 y[1] (closed_form) = -8.18236082787 5.76037753712 absolute error = 0.001217 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 = 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) = -8.21329912694 5.81866830911 y[1] (closed_form) = -8.21285232325 5.81992569105 absolute error = 0.001334 relative error = 0.01326 % Correct 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) = -8.25303860674 5.84930776099 y[1] (closed_form) = -8.25261511229 5.8504912412 absolute error = 0.001257 relative error = 0.01243 % Correct 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) = -8.27677723958 5.8680642559 y[1] (closed_form) = -8.27632951034 5.86922930783 absolute error = 0.001248 relative error = 0.0123 % Correct 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) = -8.27891115296 5.88218681799 y[1] (closed_form) = -8.27845464463 5.8833387869 absolute error = 0.001239 relative error = 0.0122 % Correct 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) = -8.29726392417 5.90832552235 y[1] (closed_form) = -8.29682637492 5.90950346683 absolute error = 0.001257 relative error = 0.01234 % Correct 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) = -8.32924797076 5.93329324441 y[1] (closed_form) = -8.32883779437 5.93446875989 absolute error = 0.001245 relative error = 0.01217 % Correct 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) = -8.36018090559 5.99422508129 y[1] (closed_form) = -8.35971473765 5.99550812911 absolute error = 0.001365 relative error = 0.01327 % Correct 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) = -8.4006587319 6.02575278068 y[1] (closed_form) = -8.40021681402 6.02696043658 absolute error = 0.001286 relative error = 0.01244 % Correct 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) = -8.42483603554 6.0450501471 y[1] (closed_form) = -8.42436945657 6.04623882908 absolute error = 0.001277 relative error = 0.01231 % Correct 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) = -8.42694670109 6.05950064252 y[1] (closed_form) = -8.42647122569 6.0606759029 absolute error = 0.001268 relative error = 0.01221 % Correct 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) = -8.45941563617 6.08505637924 y[1] (closed_form) = -8.45900119062 6.08625443434 absolute error = 0.001268 relative error = 0.01217 % Correct 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 x[1] = 0.6355 2.347 h = 0.0001 0.005 y[1] (numeric) = -8.49070013299 6.14729346047 y[1] (closed_form) = -8.49022812775 6.14860082572 absolute error = 0.00139 relative error = 0.01326 % Correct 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 memory used=1263.4MB, alloc=52.3MB, time=14.78 x[1] = 0.6356 2.352 h = 0.0001 0.003 y[1] (numeric) = -8.53183335691 6.1795958063 y[1] (closed_form) = -8.53138641623 6.18082646226 absolute error = 0.001309 relative error = 0.01243 % Correct 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) = -8.55640015175 6.19936495283 y[1] (closed_form) = -8.55592817086 6.20057615887 absolute error = 0.0013 relative error = 0.0123 % Correct 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) = -8.558492903 6.21410370297 y[1] (closed_form) = -8.55801191976 6.21530119083 absolute error = 0.00129 relative error = 0.0122 % Correct 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) = -8.57737768757 6.24151668063 y[1] (closed_form) = -8.57691616999 6.24274142156 absolute error = 0.001309 relative error = 0.01234 % Correct 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) = -8.61047993722 6.26783595671 y[1] (closed_form) = -8.61004695111 6.26905846078 absolute error = 0.001297 relative error = 0.01218 % Correct 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) = -8.642151772 6.33162799584 y[1] (closed_form) = -8.64165932821 6.33296188404 absolute error = 0.001422 relative error = 0.01327 % Correct 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) = -8.68404439716 6.36486324022 y[1] (closed_form) = -8.68357801231 6.36611887477 absolute error = 0.001339 relative error = 0.01244 % Correct 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) = -8.70906223625 6.38520032825 y[1] (closed_form) = -8.70857037199 6.38643594024 absolute error = 0.00133 relative error = 0.01231 % Correct 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) = -8.71112727419 6.40028033453 y[1] (closed_form) = -8.71062628844 6.40150187438 absolute error = 0.00132 relative error = 0.01221 % Correct 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) = -8.73029685647 6.42840393186 y[1] (closed_form) = -8.72981560791 6.42965343714 absolute error = 0.001339 relative error = 0.01235 % Correct 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) = -8.76400824854 6.4554813258 y[1] (closed_form) = -8.7635561727 6.45672870936 absolute error = 0.001327 relative error = 0.01219 % Correct 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) = -8.79606698376 6.52086479351 y[1] (closed_form) = -8.79555349915 6.5222256721 absolute error = 0.001455 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 = 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) = -8.8387303589 6.55505785925 y[1] (closed_form) = -8.83824395777 6.55633891023 absolute error = 0.00137 relative error = 0.01245 % Correct 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) = -8.86420590549 6.57597799552 y[1] (closed_form) = -8.86369357879 6.57723843623 absolute error = 0.001361 relative error = 0.01233 % Correct 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) = -8.8662406547 6.59140661487 y[1] (closed_form) = -8.86571908648 6.59265262093 absolute error = 0.001351 relative error = 0.01223 % Correct 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) = -8.8856972156 6.62025812476 y[1] (closed_form) = -8.8851956586 6.62153282594 absolute error = 0.00137 relative error = 0.01236 % Correct 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) = -8.92002680495 6.64811384384 y[1] (closed_form) = -8.91955507571 6.64938654429 absolute error = 0.001357 relative error = 0.0122 % Correct 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 x[1] = 0.6514 2.413 h = 0.0001 0.005 y[1] (numeric) = -8.95247180833 6.71512602661 y[1] (closed_form) = -8.95193666478 6.71651437041 absolute error = 0.001488 relative error = 0.0133 % Correct 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) = -8.99591741024 6.75030245296 y[1] (closed_form) = -8.99541040566 6.75160936511 absolute error = 0.001402 relative error = 0.01246 % Correct 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) = -9.02185740026 6.77182111679 y[1] (closed_form) = -9.02132401693 6.77310681552 absolute error = 0.001392 relative error = 0.01234 % Correct 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) = -9.02385919019 6.78760585801 y[1] (closed_form) = -9.02331644448 6.78887675084 absolute error = 0.001382 relative error = 0.01224 % Correct 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) = -9.04360487173 6.81720297212 y[1] (closed_form) = -9.0430824137 6.81850330754 absolute error = 0.001401 relative error = 0.01237 % Correct digits = 4 memory used=1307.6MB, alloc=52.3MB, time=15.31 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) = -9.07856181356 6.84585772268 y[1] (closed_form) = -9.07806985239 6.84715618438 absolute error = 0.001389 relative error = 0.01221 % Correct 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) = -9.11139224909 6.91453673964 y[1] (closed_form) = -9.11083481218 6.91595303094 absolute error = 0.001522 relative error = 0.01331 % Correct 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) = -9.15563168184 6.95072269662 y[1] (closed_form) = -9.1551034712 6.95205592167 absolute error = 0.001434 relative error = 0.01247 % Correct 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) = -9.18204292338 6.97285574853 y[1] (closed_form) = -9.18148787376 6.97416714118 absolute error = 0.001424 relative error = 0.01235 % Correct 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) = -9.18400898543 6.98900427509 y[1] (closed_form) = -9.18344445173 6.99030048166 absolute error = 0.001414 relative error = 0.01225 % Correct 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) = -9.2194871394 7.01832721034 y[1] (closed_form) = -9.21898975411 7.01965059164 absolute error = 0.001414 relative error = 0.0122 % Correct 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) = -9.25266899926 7.08846758203 y[1] (closed_form) = -9.25210434464 7.08991073106 absolute error = 0.00155 relative error = 0.01329 % Correct 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) = -9.2976135857 7.12553431141 y[1] (closed_form) = -9.29707909945 7.12689294883 absolute error = 0.00146 relative error = 0.01246 % Correct 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) = -9.32444355419 7.14820348108 y[1] (closed_form) = -9.32388181943 7.14953974594 absolute error = 0.00145 relative error = 0.01234 % Correct 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) = -9.32638102925 7.16467187119 y[1] (closed_form) = -9.32580970036 7.16599261688 absolute error = 0.001439 relative error = 0.01224 % Correct 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) = -9.3466796497 7.19570136736 y[1] (closed_form) = -9.34612913864 7.19705299176 absolute error = 0.001459 relative error = 0.01237 % Correct 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) = -9.38283878033 7.22589206222 y[1] (closed_form) = -9.38232005125 7.2272420577 absolute error = 0.001446 relative error = 0.01221 % Correct 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) = -9.41640442079 7.29777249028 y[1] (closed_form) = -9.41581625355 7.29924451242 absolute error = 0.001585 relative error = 0.01331 % Correct 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 x[1] = 0.6664 2.481 h = 0.0001 0.003 y[1] (numeric) = -9.46216509666 7.335899034 y[1] (closed_form) = -9.46160824629 7.33728485134 absolute error = 0.001494 relative error = 0.01247 % Correct 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) = -9.48947937502 7.35921306628 y[1] (closed_form) = -9.48889480233 7.36057586168 absolute error = 0.001483 relative error = 0.01235 % Correct 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) = -9.49137579464 7.37605995904 y[1] (closed_form) = -9.49078150461 7.37740683793 absolute error = 0.001472 relative error = 0.01225 % Correct 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) = -9.51196964738 7.40788792719 y[1] (closed_form) = -9.51139645854 7.40926648526 absolute error = 0.001493 relative error = 0.01238 % Correct 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) = -9.5487831369 7.43893963691 y[1] (closed_form) = -9.54824244101 7.44031671141 absolute error = 0.001479 relative error = 0.01222 % Correct 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) = -9.58273109752 7.51260072137 y[1] (closed_form) = -9.58211873451 7.51410212089 absolute error = 0.001621 relative error = 0.01332 % Correct 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) = -9.62931983438 7.55181513439 y[1] (closed_form) = -9.62873997111 7.55322860393 absolute error = 0.001528 relative error = 0.01248 % Correct 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) = -9.65712543855 7.57579102887 y[1] (closed_form) = -9.6565173719 7.57718081012 absolute error = 0.001517 relative error = 0.01236 % Correct 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 memory used=1351.8MB, alloc=52.3MB, time=15.83 x[1] = 0.6728 2.507 h = 0.001 0.003 y[1] (numeric) = -9.65897773837 7.59302454742 y[1] (closed_form) = -9.65835983044 7.5943980053 absolute error = 0.001506 relative error = 0.01226 % Correct 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) = -9.67986878975 7.62567030149 y[1] (closed_form) = -9.6792722686 7.6270762584 absolute error = 0.001527 relative error = 0.01239 % Correct 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) = -9.71734618047 7.65760576883 y[1] (closed_form) = -9.71678287839 7.6590103944 absolute error = 0.001513 relative error = 0.01223 % Correct 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) = -9.75167475982 7.73308901072 y[1] (closed_form) = -9.7510375 7.73462029965 absolute error = 0.001659 relative error = 0.01333 % Correct 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) = -9.79910365303 7.77342003711 y[1] (closed_form) = -9.79850011116 7.77486163836 absolute error = 0.001563 relative error = 0.01249 % Correct 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) = -9.82740766862 7.79807520969 y[1] (closed_form) = -9.82677543497 7.79949243893 absolute error = 0.001552 relative error = 0.01237 % Correct 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) = -9.82921267399 7.81570364319 y[1] (closed_form) = -9.82857047443 7.81710413246 absolute error = 0.001541 relative error = 0.01227 % Correct 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) = -9.85040283515 7.84918693929 y[1] (closed_form) = -9.84978231013 7.85062076723 absolute error = 0.001562 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 = 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) = -9.88855376594 7.88202946473 y[1] (closed_form) = -9.88796720158 7.88346212072 absolute error = 0.001548 relative error = 0.01224 % Correct 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) = -9.92326101118 7.95937728462 y[1] (closed_form) = -9.9225981352 7.96093898281 absolute error = 0.001697 relative error = 0.01334 % Correct 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) = -9.97154227874 8.00085437347 y[1] (closed_form) = -9.9709143752 8.00232459324 absolute error = 0.001599 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 = 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) = -10.0003518602 8.02620666601 y[1] (closed_form) = -9.99969476907 8.02765181225 absolute error = 0.001588 relative error = 0.01238 % Correct 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) = -10.0021062828 8.04423847261 y[1] (closed_form) = -10.0014391005 8.04566645234 absolute error = 0.001576 relative error = 0.01228 % Correct 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) = -10.0408167287 8.07783942254 y[1] (closed_form) = -10.0402233904 8.07929961775 absolute error = 0.001576 relative error = 0.01223 % Correct 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) = -10.0758710691 8.15682242011 y[1] (closed_form) = -10.0751993702 8.15841376708 absolute error = 0.001727 relative error = 0.01332 % Correct 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) = -10.1249100513 8.19929977987 y[1] (closed_form) = -10.1242744126 8.20079806463 absolute error = 0.001628 relative error = 0.01249 % Correct 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) = -10.1541691894 8.22526061021 y[1] (closed_form) = -10.1535039217 8.22673320903 absolute error = 0.001616 relative error = 0.01237 % Correct 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) = -10.1558822947 8.24364718936 y[1] (closed_form) = -10.1552068223 8.24510224786 absolute error = 0.001604 relative error = 0.01226 % Correct 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) = -10.1776444648 8.2787394774 y[1] (closed_form) = -10.1769912186 8.28022948773 absolute error = 0.001627 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 = 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) = -10.2170861642 8.31332550697 y[1] (closed_form) = -10.2164683028 8.31481465248 absolute error = 0.001612 relative error = 0.01224 % Correct 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) = -10.2525153624 8.39425456047 y[1] (closed_form) = -10.2518166649 8.39587731416 absolute error = 0.001767 relative error = 0.01333 % Correct 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) = -10.3024301471 8.43793456413 y[1] (closed_form) = -10.301768834 8.43946240156 absolute error = 0.001665 relative error = 0.0125 % Correct digits = 4 memory used=1395.9MB, alloc=52.3MB, time=16.36 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) = -10.3322085687 8.46462679421 y[1] (closed_form) = -10.3315171167 8.46612820999 absolute error = 0.001653 relative error = 0.01238 % Correct 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) = -10.3338647636 8.48343298814 y[1] (closed_form) = -10.3331629805 8.48491641793 absolute error = 0.001641 relative error = 0.01227 % Correct 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) = -10.3559314258 8.51942184273 y[1] (closed_form) = -10.3552521626 8.52094112314 absolute error = 0.001664 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 = 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) = -10.3960750645 8.55498466556 y[1] (closed_form) = -10.3954319738 8.55650326215 absolute error = 0.001649 relative error = 0.01225 % Correct 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) = -10.4318763994 8.6379049351 y[1] (closed_form) = -10.4311499291 8.63955963836 absolute error = 0.001807 relative error = 0.01334 % Correct 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) = -10.4826795569 8.68281913838 y[1] (closed_form) = -10.4819918345 8.68437703678 absolute error = 0.001703 relative error = 0.01251 % Correct 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) = -10.5129846136 8.71026188267 y[1] (closed_form) = -10.5122662347 8.7117926046 absolute error = 0.001691 relative error = 0.01238 % Correct 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 x[1] = 0.6983 2.614 h = 0.001 0.003 y[1] (numeric) = -10.5145802673 8.7294966518 y[1] (closed_form) = -10.5138514303 8.73100893147 absolute error = 0.001679 relative error = 0.01228 % Correct 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) = -10.5369530889 8.7664036274 y[1] (closed_form) = -10.5362470677 8.76795267809 absolute error = 0.001702 relative error = 0.01242 % Correct 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) = -10.5778086756 8.80296881962 y[1] (closed_form) = -10.5771396309 8.80451737559 absolute error = 0.001687 relative error = 0.01226 % Correct 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) = -10.6139791313 8.88792645995 y[1] (closed_form) = -10.6132240939 8.8896136637 absolute error = 0.001848 relative error = 0.01335 % Correct 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) = -10.6656833491 8.93410718845 y[1] (closed_form) = -10.6649684632 8.93569566363 absolute error = 0.001742 relative error = 0.01252 % Correct 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) = -10.6965224575 8.96232002638 y[1] (closed_form) = -10.6957763901 8.96388055077 absolute error = 0.00173 relative error = 0.01239 % Correct 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) = -10.6980538116 8.98199251243 y[1] (closed_form) = -10.6972971585 8.98353412741 absolute error = 0.001717 relative error = 0.01229 % Correct 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) = -10.7207343856 9.01983965352 y[1] (closed_form) = -10.7200008459 9.021418982 absolute error = 0.001741 relative error = 0.01243 % Correct 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) = -10.7623120195 9.05743341426 y[1] (closed_form) = -10.7616162776 9.05901244555 absolute error = 0.001726 relative error = 0.01227 % Correct 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) = -10.7988482733 9.14447559509 y[1] (closed_form) = -10.7980638539 9.14619585841 absolute error = 0.001891 relative error = 0.01336 % Correct 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) = -10.8514663544 9.191955962 y[1] (closed_form) = -10.8507235316 9.19357553741 absolute error = 0.001782 relative error = 0.01253 % Correct 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) = -10.8828469952 9.22095894869 y[1] (closed_form) = -10.8820724578 9.22254977894 absolute error = 0.001769 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 = 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) = -10.8843101598 9.24107847792 y[1] (closed_form) = -10.883524909 9.24264992055 absolute error = 0.001757 relative error = 0.0123 % Correct 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) = -10.9264875117 9.27953215724 y[1] (closed_form) = -10.9257834224 9.28114160792 absolute error = 0.001757 relative error = 0.01225 % Correct 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 memory used=1440.2MB, alloc=52.3MB, time=16.88 x[1] = 0.712 2.668 h = 0.0001 0.005 y[1] (numeric) = -10.9633613431 9.36840290592 y[1] (closed_form) = -10.9625662381 9.37015588123 absolute error = 0.001925 relative error = 0.01335 % Correct 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) = -11.0167924193 9.41701799348 y[1] (closed_form) = -11.0160401648 9.41866854746 absolute error = 0.001814 relative error = 0.01252 % Correct 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) = -11.0486549774 9.4467109715 y[1] (closed_form) = -11.0478705337 9.44833208664 absolute error = 0.001801 relative error = 0.01239 % Correct 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) = -11.0500617086 9.46722379006 y[1] (closed_form) = -11.0492664352 9.46882509841 absolute error = 0.001788 relative error = 0.01229 % Correct 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 x[1] = 0.7142 2.68 h = 0.0001 0.004 y[1] (numeric) = -11.0733307467 9.5068770468 y[1] (closed_form) = -11.0725591568 9.50851787929 absolute error = 0.001813 relative error = 0.01242 % Correct 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) = -11.1162921455 9.54644776818 y[1] (closed_form) = -11.1155599304 9.54808868405 absolute error = 0.001797 relative error = 0.01226 % Correct 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) = -11.1535253239 9.63749365069 y[1] (closed_form) = -11.1526992708 9.63928075812 absolute error = 0.001969 relative error = 0.01336 % Correct 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) = -11.2078948048 9.6874719953 y[1] (closed_form) = -11.2071131267 9.68915465372 absolute error = 0.001855 relative error = 0.01252 % Correct 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) = -11.2403132331 9.71799365253 y[1] (closed_form) = -11.2394988182 9.7196460393 absolute error = 0.001842 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 = 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) = -11.24164429 9.73897142125 y[1] (closed_form) = -11.2408189168 9.74060350171 absolute error = 0.001829 relative error = 0.0123 % Correct 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) = -11.2652254688 9.77963069198 y[1] (closed_form) = -11.2644240818 9.78130330502 absolute error = 0.001855 relative error = 0.01243 % Correct 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) = -11.3089386327 9.82030837764 y[1] (closed_form) = -11.3081774921 9.82198129696 absolute error = 0.001838 relative error = 0.01227 % Correct 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) = -11.3465268999 9.91357958729 y[1] (closed_form) = -11.3456690222 9.91540140988 absolute error = 0.002014 relative error = 0.01336 % Correct 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) = -11.401847918 9.96495665515 y[1] (closed_form) = -11.4010359844 9.96667196376 absolute error = 0.001898 relative error = 0.01253 % Correct 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) = -11.4348298786 9.99632846767 y[1] (closed_form) = -11.4339846527 9.99801265039 absolute error = 0.001884 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 = 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) = -11.4360809757 10.0177810612 y[1] (closed_form) = -11.4352246626 10.0194444263 absolute error = 0.001871 relative error = 0.01231 % Correct 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) = -11.4599755639 10.059470383 y[1] (closed_form) = -11.4591435411 10.0611753131 absolute error = 0.001897 relative error = 0.01244 % Correct 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) = -11.5044509359 10.1012837735 y[1] (closed_form) = -11.5036600495 10.1029892423 absolute error = 0.00188 relative error = 0.01228 % Correct 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) = -11.5423896768 10.196831601 y[1] (closed_form) = -11.5414990754 10.1986887302 absolute error = 0.00206 relative error = 0.01337 % Correct 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) = -11.5986754722 10.2496437179 y[1] (closed_form) = -11.5978324297 10.2513922303 absolute error = 0.001941 relative error = 0.01254 % Correct 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) = -11.6322286859 10.2818876808 y[1] (closed_form) = -11.6313517877 10.2836041911 absolute error = 0.001928 relative error = 0.01242 % Correct 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) = -11.6333953904 10.3038251717 y[1] (closed_form) = -11.6325072759 10.3055203409 absolute error = 0.001914 relative error = 0.01231 % Correct digits = 4 memory used=1484.4MB, alloc=52.3MB, time=17.40 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 x[1] = 0.7301 2.746 h = 0.0001 0.004 y[1] (numeric) = -11.6576045595 10.3465691242 y[1] (closed_form) = -11.6567410408 10.3483069157 absolute error = 0.001941 relative error = 0.01245 % Correct 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) = -11.7028526652 10.3895476557 y[1] (closed_form) = -11.7020311915 10.3912862281 absolute error = 0.001923 relative error = 0.01229 % Correct 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) = -11.7411368935 10.4874245115 y[1] (closed_form) = -11.740212646 10.4893175472 absolute error = 0.002107 relative error = 0.01338 % Correct 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) = -11.7984008115 10.5417088826 y[1] (closed_form) = -11.7975257847 10.5434911602 absolute error = 0.001985 relative error = 0.01255 % Correct 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) = -11.832533056 10.5748475218 y[1] (closed_form) = -11.8316236023 10.5765968987 absolute error = 0.001972 relative error = 0.01242 % Correct 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) = -11.8336107837 10.5972801839 y[1] (closed_form) = -11.8326899844 10.599007684 absolute error = 0.001958 relative error = 0.01232 % Correct 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) = -11.8795005899 10.6412326989 y[1] (closed_form) = -11.8786689388 10.643004854 absolute error = 0.001958 relative error = 0.01227 % Correct 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) = -11.9181065295 10.7411531176 y[1] (closed_form) = -11.9171694395 10.7430822236 absolute error = 0.002145 relative error = 0.01337 % Correct 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) = -11.976241305 10.7967233654 y[1] (closed_form) = -11.9753548786 10.7985398184 absolute error = 0.002021 relative error = 0.01253 % Correct 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) = -12.0108892632 10.8306435401 y[1] (closed_form) = -12.0099679005 10.8324263073 absolute error = 0.002007 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 = 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) = -12.0118926814 10.8535119497 y[1] (closed_form) = -12.0109598553 10.8552723704 absolute error = 0.001992 relative error = 0.01231 % Correct 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) = -12.0367032548 10.8982818755 y[1] (closed_form) = -12.0357956095 10.9000869492 absolute error = 0.00202 relative error = 0.01244 % Correct 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) = -12.0834322672 10.9434997519 y[1] (closed_form) = -12.0825684117 10.9453060733 absolute error = 0.002002 relative error = 0.01228 % Correct 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) = -12.1223740348 11.0458498514 y[1] (closed_form) = -12.1214015263 11.0478160145 absolute error = 0.002194 relative error = 0.01337 % Correct 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) = -12.1815125051 11.1029638308 y[1] (closed_form) = -12.1805924125 11.104815126 absolute error = 0.002067 relative error = 0.01254 % Correct 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) = -12.2167543966 11.1378219577 y[1] (closed_form) = -12.2157987811 11.1396386253 absolute error = 0.002053 relative error = 0.01242 % Correct 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) = -12.217660017 11.1612052634 y[1] (closed_form) = -12.2166928086 11.162999025 absolute error = 0.002038 relative error = 0.01231 % Correct 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) = -12.2427882532 11.207103228 y[1] (closed_form) = -12.2418465347 11.2089427732 absolute error = 0.002067 relative error = 0.01245 % Correct 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) = -12.2903209282 11.2535743113 y[1] (closed_form) = -12.2894239635 11.2554153762 absolute error = 0.002048 relative error = 0.01229 % Correct 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) = 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) = -12.3295924085 11.3584098371 y[1] (closed_form) = -12.3285834899 11.3604136821 absolute error = 0.002244 relative error = 0.01338 % Correct 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) = -12.3897482161 11.4171073798 y[1] (closed_form) = -12.3887935163 11.4189941019 absolute error = 0.002115 relative error = 0.01255 % Correct 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 memory used=1528.6MB, alloc=52.3MB, time=17.92 x[1] = 0.7483 2.827 h = 0.001 0.001 y[1] (numeric) = -12.4255919789 11.4529275706 y[1] (closed_form) = -12.4246011615 11.4547786991 absolute error = 0.0021 relative error = 0.01242 % Correct 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) = -12.4263947611 11.4768366446 y[1] (closed_form) = -12.4253922214 11.4786642944 absolute error = 0.002085 relative error = 0.01232 % Correct 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) = -12.4518414123 11.5238894343 y[1] (closed_form) = -12.4508646727 11.5257640253 absolute error = 0.002114 relative error = 0.01246 % Correct 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) = -12.5001885833 11.5716459972 y[1] (closed_form) = -12.4992575815 11.573522391 absolute error = 0.002095 relative error = 0.0123 % Correct 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) = -12.5397832315 11.679023905 y[1] (closed_form) = -12.5387368859 11.6810660653 absolute error = 0.002295 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 = 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) = -12.6009701136 11.739345802 y[1] (closed_form) = -12.5999798417 11.7412685437 absolute error = 0.002163 relative error = 0.01256 % Correct 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) = -12.6374237358 11.7761527473 y[1] (closed_form) = -12.6363967435 11.7780389047 absolute error = 0.002148 relative error = 0.01243 % Correct 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) = -12.6381184697 11.8005986775 y[1] (closed_form) = -12.6370796258 11.8024607702 absolute error = 0.002132 relative error = 0.01233 % Correct 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) = -12.6638841641 11.8488336794 y[1] (closed_form) = -12.6628714312 11.8507438981 absolute error = 0.002162 relative error = 0.01247 % Correct 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) = -12.713056736 11.8979087705 y[1] (closed_form) = -12.7120907454 11.8998210866 absolute error = 0.002142 relative error = 0.0123 % Correct 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) = -12.7529675618 12.0078872505 y[1] (closed_form) = -12.7518827461 12.0099683684 absolute error = 0.002347 relative error = 0.0134 % Correct 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) = -12.8151993467 12.0698752739 y[1] (closed_form) = -12.8141725132 12.0718346359 absolute error = 0.002212 relative error = 0.01257 % Correct 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) = -12.8522708644 12.1076942565 y[1] (closed_form) = -12.8512066993 12.1096160183 absolute error = 0.002197 relative error = 0.01244 % Correct 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) = -12.8528521655 12.1326883503 y[1] (closed_form) = -12.8517760197 12.1345854477 absolute error = 0.002181 relative error = 0.01234 % Correct 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 ) = 2.0 * sin ( x ) ; Iterations = 754 Total Elapsed Time = 18 Seconds Expected Time Remaining = 0 Seconds Optimized Time Remaining = 0 Seconds Expected Total Time = 18 Seconds > quit memory used=1558.6MB, alloc=52.3MB, time=18.26