|\^/| Maple 18 (X86 64 WINDOWS) ._|\| |/|_. Copyright (c) Maplesoft, a division of Waterloo Maple Inc. 2014 \ 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_int := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > if vallen = 5 then # if number 1 > printf("%-30s = %-32d %s\n",prelabel,value, postlabel); > else > printf("%-30s = %-32d %s \n",prelabel,value, postlabel); > fi;# end if 1; > fi;# end if 0; > 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 6 # Begin Function number 7 > omniout_float_arr := proc(iolevel,prelabel,elemnt,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > print(prelabel,"[",elemnt,"]",value, postlabel); > fi;# end if 0; > end; omniout_float_arr := proc( iolevel, prelabel, elemnt, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then print(prelabel, "[", elemnt, "]", value, postlabel) 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 0 > 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 1 > 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 2 > 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 3 > fprintf(fd,"%d Hours %d Minutes %d Seconds",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 4 > fprintf(fd,"%d Minutes %d Seconds",minutes_int,sec_int); > else > fprintf(fd,"%d Seconds",sec_int); > fi;# end if 4 > else > fprintf(fd," 0.0 Seconds"); > fi;# end if 3 > 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 3 > 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 4 > 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 5 > 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 6 > printf(" = %d Hours %d Minutes %d Seconds\n",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 7 > printf(" = %d Minutes %d Seconds\n",minutes_int,sec_int); > else > printf(" = %d Seconds\n",sec_int); > fi;# end if 7 > else > printf(" 0.0 Seconds\n"); > fi;# end if 6 > 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 6 > 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 7 > ret_ats := ret_ats + c(arr_a[iii_ats])*c(arr_b[lll_ats]); > fi;# end if 7; > iii_ats := iii_ats + 1; > od;# end do number 1 > fi;# end if 6; > 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 6 > 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 7 > ret_att := ret_att + c(arr_aa[iii_att])*c(arr_bb[lll_att])* c(al_att); > fi;# end if 7; > iii_att := iii_att + 1; > od;# end do number 1; > ret_att := ret_att / c(mmm_att) ; > fi;# end if 6; > 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_h_reason := proc(file) > global glob_h_reason; > fprintf(file,""); > if (glob_h_reason = 1) then # if number 6 > fprintf(file,"Max H"); > elif > (glob_h_reason = 2) then # if number 7 > fprintf(file,"Display Interval"); > elif > (glob_h_reason = 3) then # if number 8 > fprintf(file,"Optimal"); > elif > (glob_h_reason = 4) then # if number 9 > fprintf(file,"Pole Accuracy"); > elif > (glob_h_reason = 5) then # if number 10 > fprintf(file,"Min H (Pole)"); > elif > (glob_h_reason = 6) then # if number 11 > fprintf(file,"Pole"); > elif > (glob_h_reason = 7) then # if number 12 > fprintf(file,"Opt Iter"); > else > fprintf(file,"Impossible"); > fi;# end if 12 > 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 19 # Begin Function number 20 > logstart := proc(file) > fprintf(file,""); > end; logstart := proc(file) fprintf(file, "") end proc # End Function number 20 # Begin Function number 21 > logend := proc(file) > fprintf(file,"\n"); > end; logend := proc(file) fprintf(file, "\n") end proc # End Function number 21 # Begin Function number 22 > chk_data := proc() > global glob_max_iter,ALWAYS, ATS_MAX_TERMS; > local errflag; > errflag := false; > if (glob_max_iter < 2) then # if number 12 > omniout_str(ALWAYS,"Illegal max_iter"); > errflag := true; > fi;# end if 12; > if (errflag) then # if number 12 > quit; > fi;# end if 12 > 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 22 # Begin Function number 23 > 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 12 > sec_left := glob__0; > else > if (sub2 > glob__0) then # if number 13 > rrr := (sub1/sub2); > sec_left := rrr * c(ms2) - c(ms2); > else > sec_left := glob__0; > fi;# end if 13 > fi;# end if 12; > 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 23 # Begin Function number 24 > 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 12 > rrr := (glob__100*sub2)/sub1; > else > rrr := 0.0; > fi;# end if 12; > 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 24 # Begin Function number 25 > 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 12 > ret := float_abs(term1 * glob_h / term2); > else > ret := glob_larger_float; > fi;# end if 12; > 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 25 # Begin Function number 26 > 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 12 > 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 12; > 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 26 # Begin Function number 27 > c := proc(in_val) > #To Force Conversion when needed > local ret; > ret := evalf(in_val); > ret; > #End Conversion > end; c := proc(in_val) local ret; ret := evalf(in_val); ret end proc # End Function number 27 # Begin Function number 28 > 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 12 > ret := float_abs((term2*glob_h*term1)/(temp)); > else > ret := glob_larger_float; > fi;# end if 12; > 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 28 # Begin Function number 29 > 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 29 # Begin Function number 30 > 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 12 > 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 13 > rad_c := glob_larger_float; > ord_no := glob_larger_float; > else > if (float_abs(nr1*dr2 - nr2 * dr1) > glob__0) then # if number 14 > 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 15 > if (rcs > glob__0) then # if number 16 > rad_c := sqrt(rcs) * float_abs(glob_h); > else > rad_c := glob_larger_float; > ord_no := glob_larger_float; > fi;# end if 16 > 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 > fi;# end if 13 > else > rad_c := glob_larger_float; > ord_no := glob_larger_float; > fi;# end if 12; > 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 := 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 30 # Begin Function number 31 > 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 31 # Begin Function number 32 > 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 32 # Begin Function number 33 > factorial_1 := proc(nnn) > global ATS_MAX_TERMS,array_fact_1; > local ret; > if (nnn <= ATS_MAX_TERMS) then # if number 12 > if (array_fact_1[nnn] = 0) then # if number 13 > ret := factorial_2(nnn); > array_fact_1[nnn] := ret; > else > ret := array_fact_1[nnn]; > fi;# end if 13; > else > ret := factorial_2(nnn); > fi;# end if 12; > 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 33 # Begin Function number 34 > 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 12 > if (array_fact_2[mmm,nnn] = 0) then # if number 13 > ret := factorial_1(mmm)/factorial_1(nnn); > array_fact_2[mmm,nnn] := ret; > else > ret := array_fact_2[mmm,nnn]; > fi;# end if 13; > else > ret := factorial_2(mmm)/factorial_2(nnn); > fi;# end if 12; > 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 34 # Begin Function number 35 > convfloat := proc(mmm) > (mmm); > end; convfloat := proc(mmm) mmm end proc # End Function number 35 # Begin Function number 36 > elapsed_time_seconds := proc() > time(); > end; elapsed_time_seconds := proc() time() end proc # End Function number 36 # Begin Function number 37 > float_abs := proc(x) > abs(x); > end; float_abs := proc(x) abs(x) end proc # End Function number 37 # Begin Function number 38 > expt := proc(x,y) > x^y; > end; expt := proc(x, y) x^y end proc # End Function number 38 # Begin Function number 39 > neg := proc(x) > -x; > end; neg := proc(x) -x end proc # End Function number 39 # Begin Function number 40 > int_trunc := proc(x) > trunc(x); > end; int_trunc := proc(x) trunc(x) end proc # End Function number 40 # Begin Function number 41 > 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 41 #END ATS LIBRARY BLOCK #BEGIN USER FUNCTION BLOCK #BEGIN BLOCK 3 #BEGIN USER DEF BLOCK > exact_soln_y := proc(x) > return(c(1.0) + exp(c(x))); > end; exact_soln_y := proc(x) return c(1.0) + exp(c(x)) end proc > exact_soln_yp := proc(x) > return(exp(c(x))); > end; exact_soln_yp := proc(x) return exp(c(x)) end proc > exact_soln_ypp := proc(x) > return(exp(c(x))); > end; exact_soln_ypp := proc(x) return exp(c(x)) 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 := sqrt((array_x[1] - array_given_rad_poles[1,1]) * (array_x[1] - array_given_rad_poles[1,1]) + array_given_rad_poles[1,2] * array_given_rad_poles[1,2]); > omniout_float(ALWAYS,"Radius of convergence (given) for eq 1 ",4,rad_given,4," "); > omniout_float(ALWAYS,"Order of pole (given) ",4,array_given_ord_poles[1,1],4," "); > if (rad_given < glob_least_given_sing) 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 (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_float(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 (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_float(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 (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_float(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 := sqrt((array_x[1] - array_given_rad_poles[1, 1])* (array_x[1] - array_given_rad_poles[1, 1]) + array_given_rad_poles[1, 2]*array_given_rad_poles[1, 2]); omniout_float(ALWAYS, "Radius of convergence (given) for eq 1 ", 4, rad_given, 4, " "); omniout_float(ALWAYS, "Order of pole (given) ", 4, array_given_ord_poles[1, 1], 4, " "); if rad_given < glob_least_given_sing 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 array_rad_test_poles[1, 1] < glob_least_ratio_sing then glob_least_ratio_sing := array_rad_test_poles[1, 1] end if; omniout_float(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 array_rad_test_poles[1, 2] < glob_least_3_sing then glob_least_3_sing := array_rad_test_poles[1, 2] end if; omniout_float(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 array_rad_test_poles[1, 3] < glob_least_6_sing then glob_least_6_sing := array_rad_test_poles[1, 3] end if; omniout_float(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_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_h, > 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_2, > array_const_0D0, > array_const_1, #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, > array_tmp2, > 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_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_h, 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_2, array_const_0D0, array_const_1, 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, array_tmp2, 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_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_h, > 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_2, > array_const_0D0, > array_const_1, #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, > array_tmp2, > 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_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_h, 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_2, array_const_0D0, array_const_1, 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, array_tmp2, 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_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_h, > 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_2, > array_const_0D0, > array_const_1, #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, > array_tmp2, > 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_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_h, 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_2, array_const_0D0, array_const_1, 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, array_tmp2, 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_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_h, > 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_2, > array_const_0D0, > array_const_1, #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, > array_tmp2, > 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_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_h, 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_2, array_const_0D0, array_const_1, 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, array_tmp2, 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_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_h, > 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_2, > array_const_0D0, > array_const_1, #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, > array_tmp2, > 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 > if (reached_interval()) then # if number 3 > if (iter >= 0) then # if number 4 > ind_var := array_x[1]; > omniout_float(ALWAYS,"x[1] ",33,ind_var,20," "); > closed_form_val_y := evalf(exact_soln_y(ind_var)); > omniout_float(ALWAYS,"y[1] (closed_form) ",33,closed_form_val_y,20," "); > term_no := 1; > numeric_val := array_y[term_no]; > abserr := float_abs(numeric_val - closed_form_val_y); > omniout_float(ALWAYS,"y[1] (numeric) ",33,numeric_val,20," "); > if (c(float_abs(closed_form_val_y)) > c(glob_prec)) then # if number 5 > relerr := abserr*glob__100/float_abs(closed_form_val_y); > if (c(relerr) > c(glob_prec)) then # if number 6 > glob_good_digits := -int_trunc(log10(c(relerr))) + 3; > else > glob_good_digits := Digits; > fi;# end if 6; > else > relerr := glob__m1 ; > glob_good_digits := -16; > fi;# end if 5; > if (glob_good_digits < glob_min_good_digits) then # if number 5 > glob_min_good_digits := glob_good_digits; > fi;# end if 5; > if (glob_apfp_est_good_digits < glob_min_apfp_est_good_digits) then # if number 5 > glob_min_apfp_est_good_digits := glob_apfp_est_good_digits; > fi;# end if 5; > if (evalf(float_abs(numeric_val)) > glob_prec) then # if number 5 > est_rel_err := evalf(array_max_est_error[1]*100.0 * sqrt(glob_iter)*21*ATS_MAX_TERMS/float_abs(numeric_val)); > if (evalf(est_rel_err) > glob_prec) then # if number 6 > glob_est_digits := -int_trunc(log10(est_rel_err)) + 3; > else > glob_est_digits := Digits; > fi;# end if 6; > else > relerr := glob__m1 ; > glob_est_digits := -16; > fi;# end if 5; > array_est_digits[1] := glob_est_digits; > if (glob_iter = 1) then # if number 5 > array_1st_rel_error[1] := relerr; > else > array_last_rel_error[1] := relerr; > fi;# end if 5; > array_est_rel_error[1] := est_rel_err; > omniout_float(ALWAYS,"absolute error ",4,abserr,20," "); > omniout_float(ALWAYS,"relative error ",4,relerr,20,"%"); > omniout_int(INFO,"Desired digits ",32,glob_desired_digits_correct,4," "); > omniout_int(INFO,"Estimated correct digits ",32,glob_est_digits,4," "); > omniout_int(INFO,"Correct digits ",32,glob_good_digits,4," ") > ; > omniout_float(ALWAYS,"h ",4,glob_h,20," "); > fi;# end if 4; > #BOTTOM DISPLAY ALOT > fi;# end if 3; > 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_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_h, 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_2, array_const_0D0, array_const_1, 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, array_tmp2, 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 reached_interval() then if 0 <= iter then ind_var := array_x[1]; omniout_float(ALWAYS, "x[1] ", 33, ind_var, 20, " "); closed_form_val_y := evalf(exact_soln_y(ind_var)); omniout_float(ALWAYS, "y[1] (closed_form) ", 33, closed_form_val_y, 20, " "); term_no := 1; numeric_val := array_y[term_no]; abserr := float_abs(numeric_val - closed_form_val_y); omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, 20, " "); if c(glob_prec) < c(float_abs(closed_form_val_y)) then relerr := abserr*glob__100/float_abs(closed_form_val_y); if c(glob_prec) < c(relerr) then glob_good_digits := -int_trunc(log10(c(relerr))) + 3 else glob_good_digits := Digits 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; if glob_apfp_est_good_digits < glob_min_apfp_est_good_digits then glob_min_apfp_est_good_digits := glob_apfp_est_good_digits end if; if glob_prec < evalf(float_abs(numeric_val)) then est_rel_err := evalf(array_max_est_error[1]*100.0* sqrt(glob_iter)*21*ATS_MAX_TERMS/float_abs(numeric_val)) ; if glob_prec < evalf(est_rel_err) then glob_est_digits := -int_trunc(log10(est_rel_err)) + 3 else glob_est_digits := Digits end if else relerr := glob__m1; glob_est_digits := -16 end if; array_est_digits[1] := glob_est_digits; if glob_iter = 1 then array_1st_rel_error[1] := relerr else array_last_rel_error[1] := relerr end if; array_est_rel_error[1] := est_rel_err; omniout_float(ALWAYS, "absolute error ", 4, abserr, 20, " "); omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"); omniout_int(INFO, "Desired digits ", 32, glob_desired_digits_correct, 4, " "); omniout_int(INFO, "Estimated correct digits ", 32, glob_est_digits, 4, " "); omniout_int(INFO, "Correct digits ", 32, glob_good_digits, 4, " "); omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ") end if end if 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_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_h, > 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_2, > array_const_0D0, > array_const_1, #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, > array_tmp2, > 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)); > omniout_str_noeol(INFO,"Elapsed Time(since restart) "); > omniout_timestr((glob_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; > omniout_str_noeol(INFO,"Time to Timeout "); > omniout_timestr((left_sec)); > omniout_float(INFO, "Percent Done ",33,percent_done,4,"%"); > #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_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_h, 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_2, array_const_0D0, array_const_1, 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, array_tmp2, 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); omniout_str_noeol(INFO, "Elapsed Time(since restart) "); omniout_timestr(glob_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; omniout_str_noeol(INFO, "Time to Timeout "); omniout_timestr(left_sec); omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%") 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_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_h, > 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_2, > array_const_0D0, > array_const_1, #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, > array_tmp2, > 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 - 2 - 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 - 2 - 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 - 2 - 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 > #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 > ; > if (reached_interval()) 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_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_h, 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_2, array_const_0D0, array_const_1, 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, array_tmp2, 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 - 12; 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 - 12; 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 - 12; 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; 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 reached_interval() then display_poles() end if 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_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_h, > 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_2, > array_const_0D0, > array_const_1, #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, > array_tmp2, > 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 diff $eq_no = 1 i = 1 order_d = 1 > array_tmp1[1] := array_y_higher[2,1]; > #emit pre add CONST FULL $eq_no = 1 i = 1 > array_tmp2[1] := array_const_0D0[1] + array_tmp1[1]; > #emit pre assign xxx $eq_no = 1 i = 1 $min_hdrs = 5 > if ( not array_y_set_initial[1,3]) then # if number 1 > if (1 <= ATS_MAX_TERMS) then # if number 2 > temporary := c(array_tmp2[1]) * (expt((glob_h) , c(2))) * c(factorial_3(0,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); > temporary := c(temporary) / c(glob_h) * c(1); > array_y_higher[3,1] := c(temporary); > fi;# end if 2; > fi;# end if 1; > kkk := 2; > #END ATOMHDR1 > #BEGIN ATOMHDR2 > #emit pre diff $eq_no = 1 i = 2 order_d = 1 > array_tmp1[2] := array_y_higher[2,2]; > #emit pre add CONST FULL $eq_no = 1 i = 2 > array_tmp2[2] := array_tmp1[2]; > #emit pre assign xxx $eq_no = 1 i = 2 $min_hdrs = 5 > if ( not array_y_set_initial[1,4]) then # if number 1 > if (2 <= ATS_MAX_TERMS) then # if number 2 > temporary := c(array_tmp2[2]) * (expt((glob_h) , c(2))) * c(factorial_3(1,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); > temporary := c(temporary) / c(glob_h) * c(2); > array_y_higher[3,2] := c(temporary); > fi;# end if 2; > fi;# end if 1; > kkk := 3; > #END ATOMHDR2 > #BEGIN ATOMHDR3 > #emit pre diff $eq_no = 1 i = 3 order_d = 1 > array_tmp1[3] := array_y_higher[2,3]; > #emit pre add CONST FULL $eq_no = 1 i = 3 > array_tmp2[3] := array_tmp1[3]; > #emit pre assign xxx $eq_no = 1 i = 3 $min_hdrs = 5 > if ( not array_y_set_initial[1,5]) then # if number 1 > if (3 <= ATS_MAX_TERMS) then # if number 2 > temporary := c(array_tmp2[3]) * (expt((glob_h) , c(2))) * c(factorial_3(2,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); > temporary := c(temporary) / c(glob_h) * c(3); > array_y_higher[3,3] := c(temporary); > fi;# end if 2; > fi;# end if 1; > kkk := 4; > #END ATOMHDR3 > #BEGIN ATOMHDR4 > #emit pre diff $eq_no = 1 i = 4 order_d = 1 > array_tmp1[4] := array_y_higher[2,4]; > #emit pre add CONST FULL $eq_no = 1 i = 4 > array_tmp2[4] := array_tmp1[4]; > #emit pre assign xxx $eq_no = 1 i = 4 $min_hdrs = 5 > if ( not array_y_set_initial[1,6]) then # if number 1 > if (4 <= ATS_MAX_TERMS) then # if number 2 > temporary := c(array_tmp2[4]) * (expt((glob_h) , c(2))) * c(factorial_3(3,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); > temporary := c(temporary) / c(glob_h) * c(4); > array_y_higher[3,4] := c(temporary); > fi;# end if 2; > fi;# end if 1; > kkk := 5; > #END ATOMHDR4 > #BEGIN ATOMHDR5 > #emit pre diff $eq_no = 1 i = 5 order_d = 1 > array_tmp1[5] := array_y_higher[2,5]; > #emit pre add CONST FULL $eq_no = 1 i = 5 > array_tmp2[5] := array_tmp1[5]; > #emit pre assign xxx $eq_no = 1 i = 5 $min_hdrs = 5 > if ( not array_y_set_initial[1,7]) then # if number 1 > if (5 <= ATS_MAX_TERMS) then # if number 2 > temporary := c(array_tmp2[5]) * (expt((glob_h) , c(2))) * c(factorial_3(4,6)); > if (7 <= ATS_MAX_TERMS) then # if number 3 > array_y[7] := temporary; > array_y_higher[1,7] := temporary; > fi;# end if 3; > temporary := c(temporary) / c(glob_h) * c(6); > array_y_higher[2,6] := c(temporary); > temporary := c(temporary) / c(glob_h) * c(5); > array_y_higher[3,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 diff $eq_no = 1 > if (kkk <= ATS_MAX_TERMS) then # if number 1 > array_tmp1[kkk] := array_y_higher[2,kkk]; > fi;# end if 1; > #emit NOT FULL - FULL add $eq_no = 1 > array_tmp2[kkk] := array_tmp1[kkk]; > #emit assign $eq_no = 1 > order_d := 2; > 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_tmp2[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_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_h, 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_2, array_const_0D0, array_const_1, 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, array_tmp2, 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] := array_y_higher[2, 1]; array_tmp2[1] := array_const_0D0[1] + array_tmp1[1]; if not array_y_set_initial[1, 3] then if 1 <= ATS_MAX_TERMS then temporary := c(array_tmp2[1])*expt(glob_h, c(2))*c(factorial_3(0, 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); temporary := c(temporary)*c(1)/c(glob_h); array_y_higher[3, 1] := c(temporary) end if end if; kkk := 2; array_tmp1[2] := array_y_higher[2, 2]; array_tmp2[2] := array_tmp1[2]; if not array_y_set_initial[1, 4] then if 2 <= ATS_MAX_TERMS then temporary := c(array_tmp2[2])*expt(glob_h, c(2))*c(factorial_3(1, 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); temporary := c(temporary)*c(2)/c(glob_h); array_y_higher[3, 2] := c(temporary) end if end if; kkk := 3; array_tmp1[3] := array_y_higher[2, 3]; array_tmp2[3] := array_tmp1[3]; if not array_y_set_initial[1, 5] then if 3 <= ATS_MAX_TERMS then temporary := c(array_tmp2[3])*expt(glob_h, c(2))*c(factorial_3(2, 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); temporary := c(temporary)*c(3)/c(glob_h); array_y_higher[3, 3] := c(temporary) end if end if; kkk := 4; array_tmp1[4] := array_y_higher[2, 4]; array_tmp2[4] := array_tmp1[4]; if not array_y_set_initial[1, 6] then if 4 <= ATS_MAX_TERMS then temporary := c(array_tmp2[4])*expt(glob_h, c(2))*c(factorial_3(3, 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); temporary := c(temporary)*c(4)/c(glob_h); array_y_higher[3, 4] := c(temporary) end if end if; kkk := 5; array_tmp1[5] := array_y_higher[2, 5]; array_tmp2[5] := array_tmp1[5]; if not array_y_set_initial[1, 7] then if 5 <= ATS_MAX_TERMS then temporary := c(array_tmp2[5])*expt(glob_h, c(2))*c(factorial_3(4, 6)); if 7 <= ATS_MAX_TERMS then array_y[7] := temporary; array_y_higher[1, 7] := temporary end if; temporary := c(temporary)*c(6)/c(glob_h); array_y_higher[2, 6] := c(temporary); temporary := c(temporary)*c(5)/c(glob_h); array_y_higher[3, 5] := c(temporary) end if end if; kkk := 6; while kkk <= ATS_MAX_TERMS do if kkk <= ATS_MAX_TERMS then array_tmp1[kkk] := array_y_higher[2, kkk] end if; array_tmp2[kkk] := array_tmp1[kkk]; order_d := 2; if kkk + order_d <= ATS_MAX_TERMS then if not array_y_set_initial[1, kkk + order_d] then temporary := c(array_tmp2[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_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_h, > 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_2, > array_const_0D0, > array_const_1, > #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, > array_tmp2, > 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 := 30; > # before first input block > #BEGIN FIRST INPUT BLOCK > #BEGIN BLOCK 1 > #BEGIN FIRST INPUT BLOCK > Digits:=32; > max_terms:=30; > #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..(30),[]); > array_norms:= Array(0..(30),[]); > array_fact_1:= Array(0..(30),[]); > 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..(30),[]); > array_x:= Array(0..(30),[]); > array_tmp0:= Array(0..(30),[]); > array_tmp1:= Array(0..(30),[]); > array_tmp2:= Array(0..(30),[]); > array_m1:= Array(0..(30),[]); > array_y_higher := Array(0..(3) ,(0..30+ 1),[]); > array_y_higher_work := Array(0..(3) ,(0..30+ 1),[]); > array_y_higher_work2 := Array(0..(3) ,(0..30+ 1),[]); > array_y_set_initial := Array(0..(2) ,(0..30+ 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..(30) ,(0..30+ 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 <= 30) do # do number 1 > array_y_init[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 30) do # do number 1 > array_norms[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 30) 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 <= 30) do # do number 1 > array_y[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 30) do # do number 1 > array_x[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 30) do # do number 1 > array_tmp0[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 30) do # do number 1 > array_tmp1[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 30) do # do number 1 > array_tmp2[term] := c(0.0); > term := term + 1; > od;# end do number 1; > term := 1; > while (term <= 30) do # do number 1 > array_m1[term] := c(0.0); > term := term + 1; > od;# end do number 1; > ord := 1; > while (ord <=3) do # do number 1 > term := 1; > while (term <= 30) 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 <=3) do # do number 1 > term := 1; > while (term <= 30) 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 <=3) do # do number 1 > term := 1; > while (term <= 30) 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 <= 30) 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 <=30) do # do number 1 > term := 1; > while (term <= 30) 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); > zero_ats_ar(array_tmp2); > zero_ats_ar(array_m1); > zero_ats_ar(array_const_2); > array_const_2[1] := c(2); > zero_ats_ar(array_const_0D0); > array_const_0D0[1] := c(0.0); > zero_ats_ar(array_const_1); > array_const_1[1] := c(1); > 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_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_h := 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 := 1000; > 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] := true; > 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; > # before generate init omniout const > ALWAYS := 1; > INFO := 2; > DEBUGL := 3; > DEBUGMASSIVE := 4; > ATS_MAX_TERMS := 30; > 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 := 50000; > glob_max_hours := (0.0); > glob_max_minutes := (15.0); > omniout_str(ALWAYS,"##############ECHO OF PROBLEM#################"); > omniout_str(ALWAYS,"##############temp/diffpostode.ode#################"); > omniout_str(ALWAYS,"diff ( y , x , 2 ) = diff ( y , x , 1 ) ; "); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"Digits:=32;"); > omniout_str(ALWAYS,"max_terms:=30;"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#END FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"x_start := c(-5.0);"); > omniout_str(ALWAYS,"x_end := c(5.0) ;"); > omniout_str(ALWAYS,"array_y_init[0 + 1] := exact_soln_y(x_start);"); > omniout_str(ALWAYS,"array_y_init[1 + 1] := exact_soln_yp(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,"#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:=100000;"); > omniout_str(ALWAYS,"glob_upper_ratio_limit:=c(1.000001);"); > omniout_str(ALWAYS,"glob_lower_ratio_limit:=c(0.999999);"); > omniout_str(ALWAYS,"glob_look_poles:=true;"); > omniout_str(ALWAYS,"glob_h:=c(0.001);"); > omniout_str(ALWAYS,"glob_display_interval:=c(0.01);"); > omniout_str(ALWAYS,"#END OVERRIDE BLOCK"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN USER DEF BLOCK"); > omniout_str(ALWAYS,"exact_soln_y := proc(x)"); > omniout_str(ALWAYS,"return(c(1.0) + exp(c(x)));"); > omniout_str(ALWAYS,"end;"); > omniout_str(ALWAYS,"exact_soln_yp := proc(x)"); > omniout_str(ALWAYS,"return(exp(c(x)));"); > omniout_str(ALWAYS,"end;"); > omniout_str(ALWAYS,"exact_soln_ypp := proc(x)"); > omniout_str(ALWAYS,"return(exp(c(x)));"); > omniout_str(ALWAYS,"end;"); > omniout_str(ALWAYS,""); > 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 := c(-5.0); > x_end := c(5.0) ; > array_y_init[0 + 1] := exact_soln_y(x_start); > array_y_init[1 + 1] := exact_soln_yp(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:=100000; > 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 > glob_check_sign := c(my_check_sign(x_start,x_end)); > glob__pi := arccos(glob__m1); > glob_prec = expt(10.0,c(-Digits)); > if (glob_optimize) then # if number 9 > #BEGIN OPTIMIZE CODE > omniout_str(ALWAYS,"START of Optimize"); > #Start Series -- INITIALIZE FOR OPTIMIZE > found_h := false; > glob_min_pole_est := glob_larger_float; > last_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; > glob_min_h := float_abs(glob_min_h) * glob_check_sign; > glob_max_h := float_abs(glob_max_h) * glob_check_sign; > glob_h := float_abs(glob_min_h) * glob_check_sign; > glob_display_interval := c((float_abs(c(glob_display_interval))) * (glob_check_sign)); > display_max := c(x_end) - c(x_start)/glob__10; > if ((glob_display_interval) > (display_max)) then # if number 10 > glob_display_interval := c(display_max); > fi;# end if 10; > chk_data(); > min_value := glob_larger_float; > est_answer := est_size_answer(); > opt_iter := 1; > est_needed_step_err := estimated_needed_step_error(x_start,x_end,glob_h,est_answer); > omniout_float(ALWAYS,"est_needed_step_err",32,est_needed_step_err,16,""); > estimated_step_error := glob_small_float; > while ((opt_iter <= 100) and ( not found_h)) do # do number 1 > omniout_int(ALWAYS,"opt_iter",32,opt_iter,4,""); > array_x[1] := c(x_start); > array_x[2] := c(glob_h); > glob_next_display := c(x_start); > order_diff := 2; > #Start Series array_y > term_no := 1; > while (term_no <= order_diff) do # do number 2 > 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 2; > rows := order_diff; > r_order := 1; > while (r_order <= rows) do # do number 2 > term_no := 1; > while (term_no <= (rows - r_order + 1)) do # do number 3 > 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 3; > r_order := r_order + 1; > od;# end do number 2 > ; > atomall(); > if (glob_check_sign * glob_min_h >= glob_check_sign * glob_h) then # if number 10 > omniout_str(ALWAYS,"SETTING H FOR MIN H"); > glob_h := glob_check_sign * float_abs(glob_min_h); > glob_h_reason := 1; > found_h := true; > fi;# end if 10; > if (glob_check_sign * glob_display_interval <= glob_check_sign * glob_h) then # if number 10 > omniout_str(ALWAYS,"SETTING H FOR DISPLAY INTERVAL"); > glob_h_reason := 2; > glob_h := glob_display_interval; > found_h := true; > fi;# end if 10; > if (glob_look_poles) then # if number 10 > check_for_pole(); > fi;# end if 10; > if ( not found_h) then # if number 10 > est_answer := est_size_answer(); > est_needed_step_err := estimated_needed_step_error(x_start,x_end,glob_h,est_answer); > omniout_float(ALWAYS,"est_needed_step_err",32,est_needed_step_err,16,""); > estimated_step_error := test_suggested_h(); > omniout_float(ALWAYS,"estimated_step_error",32,estimated_step_error,32,""); > if (estimated_step_error < est_needed_step_err) then # if number 11 > omniout_str(ALWAYS,"Double H and LOOP"); > glob_h := glob_h*glob__2; > else > omniout_str(ALWAYS,"Found H for OPTIMAL"); > found_h := true; > glob_h_reason := 3; > glob_h := glob_h/glob__2; > fi;# end if 11; > fi;# end if 10; > opt_iter := opt_iter + 1; > od;# end do number 1; > if (( not found_h) and (opt_iter = 1)) then # if number 10 > omniout_str(ALWAYS,"Beginning glob_h too large."); > found_h := false; > fi;# end if 10; > if (glob_check_sign * glob_max_h <= glob_check_sign * glob_h) then # if number 10 > omniout_str(ALWAYS,"SETTING H FOR MAX H"); > glob_h := glob_check_sign * float_abs(glob_max_h); > glob_h_reason := 1; > found_h := true; > fi;# end if 10; > else > found_h := true; > glob_h := glob_h * glob_check_sign; > fi;# end if 9; > #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 > 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 := 2; > #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; > glob_optimal_clock_start_sec := elapsed_time_seconds(); > while ((glob_iter < glob_max_iter) and (glob_check_sign * array_x[1] < glob_check_sign * x_end ) and (((glob_clock_sec) - (glob_orig_start_sec)) < (glob_max_sec))) do # do number 1 > #left paren 0001C > if (reached_interval()) then # if number 10 > omniout_str(INFO," "); > omniout_str(INFO,"TOP MAIN SOLVE Loop"); > fi;# end if 10; > glob_iter := glob_iter + 1; > glob_clock_sec := elapsed_time_seconds(); > track_estimated_error(); > atomall(); > track_estimated_error(); > display_alot(current_iter); > if (glob_look_poles) then # if number 10 > check_for_pole(); > fi;# end if 10; > if (reached_interval()) 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 := 3; > #START PART 1 SUM AND ADJUST > #START SUM AND ADJUST EQ =1 > #sum_and_adjust array_y > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 3; > calc_term := 1; > #adjust_subseriesarray_y > iii := ATS_MAX_TERMS; > while (iii >= calc_term) do # do number 2 > array_y_higher_work[3,iii] := array_y_higher[3,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 := 3; > 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 := 2; > calc_term := 2; > #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 := 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 := 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 := 3; > #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 := 3; > #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 , 2 ) = diff ( y , x , 1 ) ; "); > 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,"2015-05-01T21:53:45-05:00") > ; > logitem_str(html_log_file,"Maple") > ; > logitem_str(html_log_file,"diff") > ; > logitem_str(html_log_file,"diff ( y , x , 2 ) = diff ( y , x , 1 ) ; ") > ; > logitem_float(html_log_file,x_start) > ; > logitem_float(html_log_file,x_end) > ; > logitem_float(html_log_file,array_x[1]) > ; > logitem_float(html_log_file,glob_h) > ; > logitem_h_reason(html_log_file) > ; > logitem_integer(html_log_file,Digits) > ; > ; > 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 > 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 > 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," 308.maple.seems.ok ") > ; > logitem_str(html_log_file,"diff diffeq.mxt") > ; > logitem_str(html_log_file,"diff 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 > ; > ;; > fi;# end if 14 > #END OUTFILEMAIN > end; 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; 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_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_h, 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_2, array_const_0D0, array_const_1, 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, array_tmp2, 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 := 30; Digits := 32; max_terms := 30; glob_html_log := true; array_y_init := Array(0 .. 30, []); array_norms := Array(0 .. 30, []); array_fact_1 := Array(0 .. 30, []); 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 .. 30, []); array_x := Array(0 .. 30, []); array_tmp0 := Array(0 .. 30, []); array_tmp1 := Array(0 .. 30, []); array_tmp2 := Array(0 .. 30, []); array_m1 := Array(0 .. 30, []); array_y_higher := Array(0 .. 3, 0 .. 31, []); array_y_higher_work := Array(0 .. 3, 0 .. 31, []); array_y_higher_work2 := Array(0 .. 3, 0 .. 31, []); array_y_set_initial := Array(0 .. 2, 0 .. 31, []); 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 .. 30, 0 .. 31, []); term := 1; while term <= 30 do array_y_init[term] := c(0.); term := term + 1 end do; term := 1; while term <= 30 do array_norms[term] := c(0.); term := term + 1 end do ; term := 1; while term <= 30 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 <= 30 do array_y[term] := c(0.); term := term + 1 end do; term := 1; while term <= 30 do array_x[term] := c(0.); term := term + 1 end do; term := 1; while term <= 30 do array_tmp0[term] := c(0.); term := term + 1 end do; term := 1; while term <= 30 do array_tmp1[term] := c(0.); term := term + 1 end do; term := 1; while term <= 30 do array_tmp2[term] := c(0.); term := term + 1 end do; term := 1; while term <= 30 do array_m1[term] := c(0.); term := term + 1 end do; ord := 1; while ord <= 3 do term := 1; while term <= 30 do array_y_higher[ord, term] := c(0.); term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 3 do term := 1; while term <= 30 do array_y_higher_work[ord, term] := c(0.); term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 3 do term := 1; while term <= 30 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 <= 30 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 <= 30 do term := 1; while term <= 30 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); zero_ats_ar(array_tmp2); zero_ats_ar(array_m1); zero_ats_ar(array_const_2); array_const_2[1] := c(2); zero_ats_ar(array_const_0D0); array_const_0D0[1] := c(0.); zero_ats_ar(array_const_1); array_const_1[1] := c(1); 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_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_h := 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 := 1000; 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] := true; 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; ALWAYS := 1; INFO := 2; DEBUGL := 3; DEBUGMASSIVE := 4; ATS_MAX_TERMS := 30; 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 := 50000; glob_max_hours := 0.; glob_max_minutes := 15.0; omniout_str(ALWAYS, "##############ECHO OF PROBLEM#################"); omniout_str(ALWAYS, "##############temp/diffpostode.ode#################"); omniout_str(ALWAYS, "diff ( y , x , 2 ) = diff ( y , x , 1 ) ; "); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN FIRST INPUT BLOCK"); omniout_str(ALWAYS, "Digits:=32;"); omniout_str(ALWAYS, "max_terms:=30;"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#END FIRST INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN SECOND INPUT BLOCK"); omniout_str(ALWAYS, "x_start := c(-5.0);"); omniout_str(ALWAYS, "x_end := c(5.0) ;"); omniout_str(ALWAYS, "array_y_init[0 + 1] := exact_soln_y(x_start);"); omniout_str(ALWAYS, "array_y_init[1 + 1] := exact_soln_yp(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, "#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:=100000;"); omniout_str(ALWAYS, "glob_upper_ratio_limit:=c(1.000001);"); omniout_str(ALWAYS, "glob_lower_ratio_limit:=c(0.999999);"); omniout_str(ALWAYS, "glob_look_poles:=true;"); omniout_str(ALWAYS, "glob_h:=c(0.001);"); omniout_str(ALWAYS, "glob_display_interval:=c(0.01);"); omniout_str(ALWAYS, "#END OVERRIDE BLOCK"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN USER DEF BLOCK"); omniout_str(ALWAYS, "exact_soln_y := proc(x)"); omniout_str(ALWAYS, "return(c(1.0) + exp(c(x)));"); omniout_str(ALWAYS, "end;"); omniout_str(ALWAYS, "exact_soln_yp := proc(x)"); omniout_str(ALWAYS, "return(exp(c(x)));"); omniout_str(ALWAYS, "end;"); omniout_str(ALWAYS, "exact_soln_ypp := proc(x)"); omniout_str(ALWAYS, "return(exp(c(x)));"); omniout_str(ALWAYS, "end;"); omniout_str(ALWAYS, ""); 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 := c(-5.0); x_end := c(5.0); array_y_init[1] := exact_soln_y(x_start); array_y_init[2] := exact_soln_yp(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 := 100000; 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; glob_check_sign := c(my_check_sign(x_start, x_end)); glob__pi := arccos(glob__m1); glob_prec = expt(10.0, c(-Digits)); if glob_optimize then omniout_str(ALWAYS, "START of Optimize"); found_h := false; glob_min_pole_est := glob_larger_float; last_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; glob_min_h := float_abs(glob_min_h)*glob_check_sign; glob_max_h := float_abs(glob_max_h)*glob_check_sign; glob_h := float_abs(glob_min_h)*glob_check_sign; glob_display_interval := c(float_abs(c(glob_display_interval))*glob_check_sign); display_max := c(x_end) - c(x_start)/glob__10; if display_max < glob_display_interval then glob_display_interval := c(display_max) end if; chk_data(); min_value := glob_larger_float; est_answer := est_size_answer(); opt_iter := 1; est_needed_step_err := estimated_needed_step_error(x_start, x_end, glob_h, est_answer) ; omniout_float(ALWAYS, "est_needed_step_err", 32, est_needed_step_err, 16, ""); estimated_step_error := glob_small_float; while opt_iter <= 100 and not found_h do omniout_int(ALWAYS, "opt_iter", 32, opt_iter, 4, ""); array_x[1] := c(x_start); array_x[2] := c(glob_h); glob_next_display := c(x_start); order_diff := 2; 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; atomall(); if glob_check_sign*glob_h <= glob_check_sign*glob_min_h then omniout_str(ALWAYS, "SETTING H FOR MIN H"); glob_h := float_abs(glob_min_h)*glob_check_sign; glob_h_reason := 1; found_h := true end if; if glob_check_sign*glob_display_interval <= glob_check_sign*glob_h then omniout_str(ALWAYS, "SETTING H FOR DISPLAY INTERVAL"); glob_h_reason := 2; glob_h := glob_display_interval; found_h := true end if; if glob_look_poles then check_for_pole() end if; if not found_h then est_answer := est_size_answer(); est_needed_step_err := estimated_needed_step_error(x_start, x_end, glob_h, est_answer); omniout_float(ALWAYS, "est_needed_step_err", 32, est_needed_step_err, 16, ""); estimated_step_error := test_suggested_h(); omniout_float(ALWAYS, "estimated_step_error", 32, estimated_step_error, 32, ""); if estimated_step_error < est_needed_step_err then omniout_str(ALWAYS, "Double H and LOOP"); glob_h := glob_h*glob__2 else omniout_str(ALWAYS, "Found H for OPTIMAL"); found_h := true; glob_h_reason := 3; glob_h := glob_h/glob__2 end if end if; opt_iter := opt_iter + 1 end do; if not found_h and opt_iter = 1 then omniout_str(ALWAYS, "Beginning glob_h too large."); found_h := false end if; if glob_check_sign*glob_max_h <= glob_check_sign*glob_h then omniout_str(ALWAYS, "SETTING H FOR MAX H"); glob_h := float_abs(glob_max_h)*glob_check_sign; glob_h_reason := 1; found_h := true end if else found_h := true; glob_h := glob_check_sign*glob_h end if; if glob_html_log then html_log_file := fopen("entry.html", WRITE, TEXT) end if; 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 := 2; 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; glob_optimal_clock_start_sec := elapsed_time_seconds(); while glob_iter < glob_max_iter and glob_check_sign*array_x[1] < glob_check_sign*x_end and glob_clock_sec - glob_orig_start_sec < glob_max_sec do if reached_interval() then omniout_str(INFO, " "); omniout_str(INFO, "TOP MAIN SOLVE Loop") end if; glob_iter := glob_iter + 1; glob_clock_sec := elapsed_time_seconds(); track_estimated_error(); atomall(); track_estimated_error(); display_alot(current_iter); if glob_look_poles then check_for_pole() end if; if reached_interval() then glob_next_display := glob_next_display + glob_display_interval end if; array_x[1] := array_x[1] + glob_h; array_x[2] := glob_h; order_diff := 3; ord := 3; calc_term := 1; iii := ATS_MAX_TERMS; while calc_term <= iii do array_y_higher_work[3, iii] := array_y_higher[3, 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 := 3; 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 := 2; calc_term := 2; 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 := 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 := 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 := 3; 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 := 3; 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 , 2 ) = diff ( y , x , 1 ) ; ") ; 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, "2015-05-01T21:53:45-05:00"); logitem_str(html_log_file, "Maple"); logitem_str(html_log_file, "diff") ; logitem_str(html_log_file, "diff ( y , x , 2 ) = di\ ff ( y , x , 1 ) ; "); logitem_float(html_log_file, x_start); logitem_float(html_log_file, x_end); logitem_float(html_log_file, array_x[1]); logitem_float(html_log_file, glob_h); logitem_h_reason(html_log_file); logitem_integer(html_log_file, Digits); 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 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 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, " 308.maple.seems.ok "); logitem_str(html_log_file, "diff diffeq.mxt"); logitem_str(html_log_file, "diff 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(); ##############ECHO OF PROBLEM################# ##############temp/diffpostode.ode################# diff ( y , x , 2 ) = diff ( y , x , 1 ) ; ! #BEGIN FIRST INPUT BLOCK Digits:=32; max_terms:=30; ! #END FIRST INPUT BLOCK #BEGIN SECOND INPUT BLOCK x_start := c(-5.0); x_end := c(5.0) ; array_y_init[0 + 1] := exact_soln_y(x_start); array_y_init[1 + 1] := exact_soln_yp(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:=100000; glob_upper_ratio_limit:=c(1.000001); glob_lower_ratio_limit:=c(0.999999); glob_look_poles:=true; glob_h:=c(0.001); glob_display_interval:=c(0.01); #END OVERRIDE BLOCK ! #BEGIN USER DEF BLOCK exact_soln_y := proc(x) return(c(1.0) + exp(c(x))); end; exact_soln_yp := proc(x) return(exp(c(x))); end; exact_soln_ypp := proc(x) return(exp(c(x))); end; #END USER DEF BLOCK #######END OF ECHO OF PROBLEM################# START of Soultion TOP MAIN SOLVE Loop x[1] = -5 y[1] (closed_form) = 1.0067379469990854670966360484231 y[1] (numeric) = 1.0067379469990854670966360484231 absolute error = 0 relative error = 0 % Desired digits = 8 Estimated correct digits = 14 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=4.1MB, alloc=40.3MB, time=0.09 TOP MAIN SOLVE Loop x[1] = -4.99 y[1] (closed_form) = 1.0068056644922305447989653325038 y[1] (numeric) = 1.0068056644922305447989653325038 absolute error = 0 relative error = 0 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.98 y[1] (closed_form) = 1.0068740625574962515372906482734 y[1] (numeric) = 1.0068740625574962515372906482733 absolute error = 1e-31 relative error = 9.9317286757786183710113299288832e-30 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.97 y[1] (closed_form) = 1.0069431480347461124600022155601 y[1] (numeric) = 1.0069431480347461124600022155598 absolute error = 3e-31 relative error = 2.9793141806020615718288014183575e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.96 y[1] (closed_form) = 1.0070129278325854239761383024475 y[1] (numeric) = 1.0070129278325854239761383024471 absolute error = 4e-31 relative error = 3.9721436432889516428800973397518e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.95 y[1] (closed_form) = 1.0070834089290521200422164000473 y[1] (numeric) = 1.007083408929052120042216400047 absolute error = 3e-31 relative error = 2.9788992385350145169375093774297e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.94 y[1] (closed_form) = 1.0071545983723145817706798693521 y[1] (numeric) = 1.0071545983723145817706798693518 absolute error = 3e-31 relative error = 2.9786886788268336638398869237470e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.93 y[1] (closed_form) = 1.0072265032813764601415024147785 y[1] (numeric) = 1.0072265032813764601415024147781 absolute error = 4e-31 relative error = 3.9713013775637010578404663336268e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.92 y[1] (closed_form) = 1.0072991308467885822998088990669 y[1] (numeric) = 1.0072991308467885822998088990665 absolute error = 4e-31 relative error = 3.9710150416166742868309632564592e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.91 y[1] (closed_form) = 1.0073724883313680126307355188432 y[1] (numeric) = 1.0073724883313680126307355188427 absolute error = 5e-31 relative error = 4.9634073373217688815369700063378e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=44.5MB, alloc=40.3MB, time=0.52 TOP MAIN SOLVE Loop x[1] = -4.9 y[1] (closed_form) = 1.0074465830709243405182360464201 y[1] (numeric) = 1.0074465830709243405182360464198 absolute error = 3e-31 relative error = 2.9778253759671540808938961733157e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.89 y[1] (closed_form) = 1.0075214224749932674172152602805 y[1] (numeric) = 1.0075214224749932674172152602801 absolute error = 4e-31 relative error = 3.9701389079886092466570656770589e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.88 y[1] (closed_form) = 1.0075970140275775665983081021806 y[1] (numeric) = 1.0075970140275775665983081021801 absolute error = 5e-31 relative error = 4.9623013272081330370715499419922e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.87 y[1] (closed_form) = 1.0076733652878954896618965073037 y[1] (numeric) = 1.0076733652878954896618965073031 absolute error = 6e-31 relative error = 5.9543104012536650618250216685957e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.86 y[1] (closed_form) = 1.00775048389113669466263898332 y[1] (numeric) = 1.0077504838911366946626389833194 absolute error = 6e-31 relative error = 5.9538547447109500043740626742350e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.85 y[1] (closed_form) = 1.0078283775492257714379553335143 y[1] (numeric) = 1.0078283775492257714379553335138 absolute error = 5e-31 relative error = 4.9611621496099249953464092342458e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.84 y[1] (closed_form) = 1.0079070540515934404936356456817 y[1] (numeric) = 1.0079070540515934404936356456811 absolute error = 6e-31 relative error = 5.9529298618172662053931256731059e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.83 y[1] (closed_form) = 1.0079865212659555025671047755709 y[1] (numeric) = 1.0079865212659555025671047755704 absolute error = 5e-31 relative error = 4.9603837893788250729694380247839e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.82 y[1] (closed_form) = 1.0080667871390996167639477781226 y[1] (numeric) = 1.0080667871390996167639477781222 absolute error = 4e-31 relative error = 3.9679910607431350321115770357506e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=84.9MB, alloc=40.3MB, time=0.94 TOP MAIN SOLVE Loop x[1] = -4.81 y[1] (closed_form) = 1.0081478596976799859461655896795 y[1] (numeric) = 1.0081478596976799859461655896791 absolute error = 4e-31 relative error = 3.9676719654986984194665366881429e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.8 y[1] (closed_form) = 1.0082297470490200288413620267661 y[1] (numeric) = 1.0082297470490200288413620267658 absolute error = 3e-31 relative error = 2.9755122865405203144595937249007e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.79 y[1] (closed_form) = 1.0083124573819231191407419157932 y[1] (numeric) = 1.0083124573819231191407419157929 absolute error = 3e-31 relative error = 2.9752682098061953081975328154885e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.78 y[1] (closed_form) = 1.0083959989674914726605057716668 y[1] (numeric) = 1.0083959989674914726605057716666 absolute error = 2e-31 relative error = 1.9833478138031324305450216674911e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.77 y[1] (closed_form) = 1.0084803801599532644560395730107 y[1] (numeric) = 1.0084803801599532644560395730105 absolute error = 2e-31 relative error = 1.9831818638680740490601200194477e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.76 y[1] (closed_form) = 1.0085656093974980586013003195423 y[1] (numeric) = 1.008565609397498058601300319542 absolute error = 3e-31 relative error = 2.9745214114450669452507439606693e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.75 y[1] (closed_form) = 1.0086516952031206341770715039573 y[1] (numeric) = 1.008651695203120634177071503957 absolute error = 3e-31 relative error = 2.9742675437588640450353070243022e-29 % Desired digits = 8 Estimated correct digits = 13 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.74 y[1] (closed_form) = 1.008738646185473291851390514541 y[1] (numeric) = 1.008738646185473291851390514541 absolute error = 0 relative error = 0 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.73 y[1] (closed_form) = 1.0088264710397267262835162690968 y[1] (numeric) = 1.0088264710397267262835162690967 absolute error = 1e-31 relative error = 9.9125075392735293582556965886781e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=125.3MB, alloc=40.3MB, time=1.36 TOP MAIN SOLVE Loop x[1] = -4.72 y[1] (closed_form) = 1.0089151785484395504393948730148 y[1] (numeric) = 1.0089151785484395504393948730147 absolute error = 1e-31 relative error = 9.9116359953939228086102128820844e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.71 y[1] (closed_form) = 1.009004777582436558771779454061 y[1] (numeric) = 1.0090047775824365587717794540609 absolute error = 1e-31 relative error = 9.9107558479156867947243605284125e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.7 y[1] (closed_form) = 1.0090952771016958170920540742914 y[1] (numeric) = 1.0090952771016958170920540742915 absolute error = 1e-31 relative error = 9.9098670134715217548198077183492e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.69 y[1] (closed_form) = 1.0091866861562446678434881455062 y[1] (numeric) = 1.0091866861562446678434881455063 absolute error = 1e-31 relative error = 9.9089694079176311747226363268872e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.68 y[1] (closed_form) = 1.0092790138870647403771953472374 y[1] (numeric) = 1.0092790138870647403771953472376 absolute error = 2e-31 relative error = 1.9816125892654238149456942922754e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.67 y[1] (closed_form) = 1.0093722695270060567325788209032 y[1] (numeric) = 1.0093722695270060567325788209034 absolute error = 2e-31 relative error = 1.9814295085966688549682140701793e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.66 y[1] (closed_form) = 1.0094664624017103243336024420067 y[1] (numeric) = 1.0094664624017103243336024420069 absolute error = 2e-31 relative error = 1.9812446222746462875572444512144e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.65 y[1] (closed_form) = 1.0095616019305435079309272106497 y[1] (numeric) = 1.0095616019305435079309272106501 absolute error = 4e-31 relative error = 3.9621158256722155587911811511128e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.64 y[1] (closed_form) = 1.0096576976275377740478841198775 y[1] (numeric) = 1.0096576976275377740478841198778 absolute error = 3e-31 relative error = 2.9713040439837249853788584067146e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=165.6MB, alloc=40.3MB, time=1.77 TOP MAIN SOLVE Loop x[1] = -4.63 y[1] (closed_form) = 1.0097547591023429021255130554615 y[1] (numeric) = 1.0097547591023429021255130554618 absolute error = 3e-31 relative error = 2.9710184309177762949384491581210e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.62 y[1] (closed_form) = 1.0098527960611872575085750762749 y[1] (numeric) = 1.0098527960611872575085750762752 absolute error = 3e-31 relative error = 2.9707300031263459296400841278654e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.61 y[1] (closed_form) = 1.0099518183078484223706374899795 y[1] (numeric) = 1.0099518183078484223706374899797 absolute error = 2e-31 relative error = 1.9802924889535374661241814034784e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.6 y[1] (closed_form) = 1.0100518357446335816421330943316 y[1] (numeric) = 1.0100518357446335816421330943318 absolute error = 2e-31 relative error = 1.9800963962661913568541019231010e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.59 y[1] (closed_form) = 1.0101528583733697619808033810288 y[1] (numeric) = 1.0101528583733697619808033810291 absolute error = 3e-31 relative error = 2.9698475583495787367457487372086e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.58 y[1] (closed_form) = 1.0102548962964040228092479483096 y[1] (numeric) = 1.0102548962964040228092479483101 absolute error = 5e-31 relative error = 4.9492459955700363931128920386845e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.57 y[1] (closed_form) = 1.0103579597176136994395173725574 y[1] (numeric) = 1.0103579597176136994395173725579 absolute error = 5e-31 relative error = 4.9487411386331401818916564474437e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.56 y[1] (closed_form) = 1.0104620589434267993099038702723 y[1] (numeric) = 1.0104620589434267993099038702729 absolute error = 6e-31 relative error = 5.9378775748134495168740844087286e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.55 y[1] (closed_form) = 1.0105672043838526533744037625093 y[1] (numeric) = 1.0105672043838526533744037625099 absolute error = 6e-31 relative error = 5.9372597626084915836529046030381e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.54 y[1] (closed_form) = 1.0106734065535229257108495670498 y[1] (numeric) = 1.0106734065535229257108495670502 absolute error = 4e-31 relative error = 3.9577572478535075146865064764912e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=206.0MB, alloc=40.3MB, time=2.19 TOP MAIN SOLVE Loop x[1] = -4.53 y[1] (closed_form) = 1.0107806760727430854495400424133 y[1] (numeric) = 1.0107806760727430854495400424138 absolute error = 5e-31 relative error = 4.9466715365264500265611022708500e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.52 y[1] (closed_form) = 1.0108890236685544461704372762439 y[1] (numeric) = 1.0108890236685544461704372762445 absolute error = 6e-31 relative error = 5.9353696197291502798968854102251e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.51 y[1] (closed_form) = 1.0109984601758068789737555735586 y[1] (numeric) = 1.0109984601758068789737555735591 absolute error = 5e-31 relative error = 4.9456059499146303875789020555797e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.5 y[1] (closed_form) = 1.0111089965382423064961431342869 y[1] (numeric) = 1.0111089965382423064961431342876 absolute error = 7e-31 relative error = 6.9230914015858477397295523505219e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.49 y[1] (closed_form) = 1.0112206438095890862227610529593 y[1] (numeric) = 1.01122064380958908622276105296 absolute error = 7e-31 relative error = 6.9223270340177970259201046976900e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.48 y[1] (closed_form) = 1.0113334131546673925345028375762 y[1] (numeric) = 1.0113334131546673925345028375769 absolute error = 7e-31 relative error = 6.9215551557470999050012118752602e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.47 y[1] (closed_form) = 1.0114473158505057080294803243879 y[1] (numeric) = 1.0114473158505057080294803243888 absolute error = 9e-31 relative error = 8.8981401788901688735091952951339e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.46 y[1] (closed_form) = 1.0115623632874685357688385497119 y[1] (numeric) = 1.0115623632874685357688385497129 absolute error = 1.0e-30 relative error = 9.8856979687352927739114428620900e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.45 y[1] (closed_form) = 1.0116785669703954452190639236115 y[1] (numeric) = 1.0116785669703954452190639236124 absolute error = 9e-31 relative error = 8.8961062276446993901308320278580e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=246.2MB, alloc=40.3MB, time=2.61 TOP MAIN SOLVE Loop x[1] = -4.44 y[1] (closed_form) = 1.0117959385197515657963291443707 y[1] (numeric) = 1.0117959385197515657963291443716 absolute error = 9e-31 relative error = 8.8950742510065020938686164641611e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.43 y[1] (closed_form) = 1.0119144896727896430631880360715 y[1] (numeric) = 1.0119144896727896430631880360724 absolute error = 9e-31 relative error = 8.8940321458488250652984262470576e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.42 y[1] (closed_form) = 1.01203423228472377378420836215 y[1] (numeric) = 1.0120342322847237737842083621509 absolute error = 9e-31 relative error = 8.8929798152005170777951677928497e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.41 y[1] (closed_form) = 1.0121551783299149372150262940186 y[1] (numeric) = 1.0121551783299149372150262940195 absolute error = 9e-31 relative error = 8.8919171612106535190179824448310e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.4 y[1] (closed_form) = 1.0122773399030684411789393862365 y[1] (numeric) = 1.0122773399030684411789393862374 absolute error = 9e-31 relative error = 8.8908440851415318418643800061359e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.39 y[1] (closed_form) = 1.0124007292204434026766435925812 y[1] (numeric) = 1.0124007292204434026766435925823 absolute error = 1.1e-30 relative error = 1.0865262817886438417854099152936e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.38 y[1] (closed_form) = 1.0125253586210743839781832005917 y[1] (numeric) = 1.0125253586210743839781832005928 absolute error = 1.1e-30 relative error = 1.0863925437858213325949408924640e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.37 y[1] (closed_form) = 1.0126512405680053063617409130458 y[1] (numeric) = 1.012651240568005306361740913047 absolute error = 1.2e-30 relative error = 1.1850081764842445338583683950644e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.36 y[1] (closed_form) = 1.0127783876495357648916702202577 y[1] (numeric) = 1.0127783876495357648916702202589 absolute error = 1.2e-30 relative error = 1.1848594071847935659641344354343e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=286.7MB, alloc=40.3MB, time=3.03 TOP MAIN SOLVE Loop x[1] = -4.35 y[1] (closed_form) = 1.0129068125804798688682864655417 y[1] (numeric) = 1.012906812580479868868286465543 absolute error = 1.3e-30 relative error = 1.2834349456966549169787095804416e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.34 y[1] (closed_form) = 1.0130365282034377338345106201543 y[1] (numeric) = 1.0130365282034377338345106201556 absolute error = 1.3e-30 relative error = 1.2832706065451317426808724970171e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.33 y[1] (closed_form) = 1.0131675474900797522896260122973 y[1] (numeric) = 1.0131675474900797522896260122986 absolute error = 1.3e-30 relative error = 1.2831046584747906328399299023459e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.32 y[1] (closed_form) = 1.013299883542443771538289615015 y[1] (numeric) = 1.0132998835424437715382896150162 absolute error = 1.2e-30 relative error = 1.1842496179954766369708096780139e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.31 y[1] (closed_form) = 1.0134335495942453083936637792599 y[1] (numeric) = 1.0134335495942453083936637792612 absolute error = 1.3e-30 relative error = 1.2827678741447715868259219456213e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.3 y[1] (closed_form) = 1.0135685590122009317572305745258 y[1] (numeric) = 1.013568559012200931757230574527 absolute error = 1.2e-30 relative error = 1.1839356986068022669755576940231e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.29 y[1] (closed_form) = 1.0137049252973649454146495409732 y[1] (numeric) = 1.0137049252973649454146495409744 absolute error = 1.2e-30 relative error = 1.1837764324248364343192275037579e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.28 y[1] (closed_form) = 1.0138426620864795047170523448676 y[1] (numeric) = 1.0138426620864795047170523448688 absolute error = 1.2e-30 relative error = 1.1836156090831789325029552201453e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.27 y[1] (closed_form) = 1.0139817831533383021605675677785 y[1] (numeric) = 1.0139817831533383021605675677797 absolute error = 1.2e-30 relative error = 1.1834532137926301320056071572697e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=327.0MB, alloc=40.3MB, time=3.44 TOP MAIN SOLVE Loop x[1] = -4.26 y[1] (closed_form) = 1.0141223024101639582337699904576 y[1] (numeric) = 1.0141223024101639582337699904589 absolute error = 1.3e-30 relative error = 1.2818966676015494911873746782159e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.25 y[1] (closed_form) = 1.014264233908999255273286945856 y[1] (numeric) = 1.0142642339089992552732869458573 absolute error = 1.3e-30 relative error = 1.2817172848437808834831542199367e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.24 y[1] (closed_form) = 1.0144075918431123534521066673262 y[1] (numeric) = 1.0144075918431123534521066673276 absolute error = 1.4e-30 relative error = 1.3801158540782324195280368711076e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.23 y[1] (closed_form) = 1.0145523905484161294233584800719 y[1] (numeric) = 1.0145523905484161294233584800733 absolute error = 1.4e-30 relative error = 1.3799188815111166689809516545824e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.22 y[1] (closed_form) = 1.0146986445049017795546120000092 y[1] (numeric) = 1.0146986445049017795546120000106 absolute error = 1.4e-30 relative error = 1.3797199864035463553628089525233e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.21 y[1] (closed_form) = 1.0148463683380868311142134433043 y[1] (numeric) = 1.0148463683380868311142134433057 absolute error = 1.4e-30 relative error = 1.3795191505613219496937206938573e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.2 y[1] (closed_form) = 1.0149955768204777062119843602287 y[1] (numeric) = 1.0149955768204777062119843602302 absolute error = 1.5e-30 relative error = 1.4778389524600904133741989986997e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.19 y[1] (closed_form) = 1.0151462848730469847518956705525 y[1] (numeric) = 1.0151462848730469847518956705541 absolute error = 1.6e-30 relative error = 1.5761275235323292756057879026378e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.18 y[1] (closed_form) = 1.015298507566725514124243324443 y[1] (numeric) = 1.0152985075667255141242433244446 absolute error = 1.6e-30 relative error = 1.5758912163030514928520169677261e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=367.4MB, alloc=40.3MB, time=3.86 TOP MAIN SOLVE Loop x[1] = -4.17 y[1] (closed_form) = 1.0154522601239095148495382353233 y[1] (numeric) = 1.0154522601239095148495382353249 absolute error = 1.6e-30 relative error = 1.5756526060661499241834695179105e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.16 y[1] (closed_form) = 1.0156075579199828328859307992401 y[1] (numeric) = 1.0156075579199828328859307992418 absolute error = 1.7e-30 relative error = 1.6738749005390315612878470234212e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.15 y[1] (closed_form) = 1.0157644164848544908266692910111 y[1] (numeric) = 1.0157644164848544908266692910128 absolute error = 1.7e-30 relative error = 1.6736164138167048823255345327682e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.14 y[1] (closed_form) = 1.0159228515045116917439931799265 y[1] (numeric) = 1.0159228515045116917439931799281 absolute error = 1.6e-30 relative error = 1.5749227390943222956734535281296e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.13 y[1] (closed_form) = 1.0160828788225884309811399285206 y[1] (numeric) = 1.0160828788225884309811399285222 absolute error = 1.6e-30 relative error = 1.5746746976526562542393324200838e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.12 y[1] (closed_form) = 1.0162445144419498727549516559441 y[1] (numeric) = 1.0162445144419498727549516559455 absolute error = 1.4e-30 relative error = 1.3776212123209163818524178194110e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.11 y[1] (closed_form) = 1.0164077745262926500080622448391 y[1] (numeric) = 1.0164077745262926500080622448404 absolute error = 1.3e-30 relative error = 1.2790142230128832280778550754529e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.1 y[1] (closed_form) = 1.0165726754017612475419836980835 y[1] (numeric) = 1.0165726754017612475419836980848 absolute error = 1.3e-30 relative error = 1.2788067508171267779026231103553e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.09 y[1] (closed_form) = 1.0167392335585806300707520444753 y[1] (numeric) = 1.0167392335585806300707520444765 absolute error = 1.2e-30 relative error = 1.1802436262836124585678406143287e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=407.8MB, alloc=40.3MB, time=4.28 TOP MAIN SOLVE Loop x[1] = -4.08 y[1] (closed_form) = 1.0169074656527052784592986858592 y[1] (numeric) = 1.0169074656527052784592986858605 absolute error = 1.3e-30 relative error = 1.2783857370597538897150465364607e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.07 y[1] (closed_form) = 1.0170773885074847990515452242772 y[1] (numeric) = 1.0170773885074847990515452242784 absolute error = 1.2e-30 relative error = 1.1798512222958234123502940773047e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.06 y[1] (closed_form) = 1.0172490191153462726505425910253 y[1] (numeric) = 1.0172490191153462726505425910264 absolute error = 1.1e-30 relative error = 1.0813478109387791511543234016679e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.05 y[1] (closed_form) = 1.0174223746394935113869544536867 y[1] (numeric) = 1.0174223746394935113869544536878 absolute error = 1.1e-30 relative error = 1.0811635633526994920282244692526e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.04 y[1] (closed_form) = 1.017597472415623393402987801592 y[1] (numeric) = 1.017597472415623393402987801593 absolute error = 1.0e-30 relative error = 9.8270684343009457379356133511083e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.03 y[1] (closed_form) = 1.017774329953659446986669386436 y[1] (numeric) = 1.0177743299536594469866693864369 absolute error = 9e-31 relative error = 8.8428247157793627861779180229465e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.02 y[1] (closed_form) = 1.0179529649395028575163261039565 y[1] (numeric) = 1.0179529649395028575163261039573 absolute error = 8e-31 relative error = 7.8589092772822185888657527716334e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4.01 y[1] (closed_form) = 1.01813339523680107231742294203 y[1] (numeric) = 1.0181333952368010723174229420309 absolute error = 9e-31 relative error = 8.8397061152352714183797170056858e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -4 y[1] (closed_form) = 1.0183156388887341802937180212732 y[1] (numeric) = 1.018315638888734180293718021274 absolute error = 8e-31 relative error = 7.8561103203032675357856548964040e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.99 y[1] (closed_form) = 1.0184997141198192449721864983093 y[1] (numeric) = 1.0184997141198192449721864983101 absolute error = 8e-31 relative error = 7.8546904717725398577598293849176e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 memory used=448.2MB, alloc=40.3MB, time=4.70 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.98 y[1] (closed_form) = 1.0186856393377327713965214399713 y[1] (numeric) = 1.0186856393377327713965214399721 absolute error = 8e-31 relative error = 7.8532568744180537047052716776096e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.97 y[1] (closed_form) = 1.0188734331351514891174197460049 y[1] (numeric) = 1.0188734331351514891174197460056 absolute error = 7e-31 relative error = 6.8703332252569041456924946779927e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.96 y[1] (closed_form) = 1.0190631142916116353594861398 y[1] (numeric) = 1.0190631142916116353594861398009 absolute error = 9e-31 relative error = 8.8316414104108085747096773155607e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.95 y[1] (closed_form) = 1.0192547017753869242946213253559 y[1] (numeric) = 1.0192547017753869242946213253569 absolute error = 1.0e-30 relative error = 9.8110903806296094834367229160213e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.94 y[1] (closed_form) = 1.0194482147453853902203866289042 y[1] (numeric) = 1.0194482147453853902203866289051 absolute error = 9e-31 relative error = 8.8283052241626765609330161432747e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.93 y[1] (closed_form) = 1.0196436725530652943292436695736 y[1] (numeric) = 1.0196436725530652943292436695746 absolute error = 1.0e-30 relative error = 9.8073476736840832100654563954738e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.92 y[1] (closed_form) = 1.0198410947443702866609425773594 y[1] (numeric) = 1.0198410947443702866609425773602 absolute error = 8e-31 relative error = 7.8443593234544557406595043554636e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.91 y[1] (closed_form) = 1.0200405010616840167558666375535 y[1] (numeric) = 1.0200405010616840167558666375544 absolute error = 9e-31 relative error = 8.8231790704708017023895282014178e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.9 y[1] (closed_form) = 1.0202419114458043884720275437437 y[1] (numeric) = 1.0202419114458043884720275437444 absolute error = 7e-31 relative error = 6.8611178598614574541331076372001e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=488.5MB, alloc=40.3MB, time=5.13 TOP MAIN SOLVE Loop x[1] = -3.89 y[1] (closed_form) = 1.0204453460379376563928381767342 y[1] (numeric) = 1.0204453460379376563928381767351 absolute error = 9e-31 relative error = 8.8196786186973330201935174917362e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.88 y[1] (closed_form) = 1.0206508251817125632369654392163 y[1] (numeric) = 1.0206508251817125632369654392173 absolute error = 1.0e-30 relative error = 9.7976700290421459907924515078549e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.87 y[1] (closed_form) = 1.0208583694252147196856825849039 y[1] (numeric) = 1.020858369425214719685682584905 absolute error = 1.1e-30 relative error = 1.0775245939545416821941052343489e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.86 y[1] (closed_form) = 1.0210679995230414300673990995446 y[1] (numeric) = 1.0210679995230414300673990995457 absolute error = 1.1e-30 relative error = 1.0773033730504031819562336321473e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.85 y[1] (closed_form) = 1.0212797364383771693836489472373 y[1] (numeric) = 1.0212797364383771693836489472385 absolute error = 1.2e-30 relative error = 1.1749963865775834898344670809635e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.84 y[1] (closed_form) = 1.0214936013450899192259693508355 y[1] (numeric) = 1.0214936013450899192259693508366 absolute error = 1.1e-30 relative error = 1.0768545182774848936811916475984e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.83 y[1] (closed_form) = 1.0217096156298485722190087467336 y[1] (numeric) = 1.0217096156298485722190087467346 absolute error = 1.0e-30 relative error = 9.7875167728898651257438918740262e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.82 y[1] (closed_form) = 1.0219278008942616167320727344178 y[1] (numeric) = 1.0219278008942616167320727344188 absolute error = 1.0e-30 relative error = 9.7854271028239648032031212918858e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.81 y[1] (closed_form) = 1.0221481789570373157293614185755 y[1] (numeric) = 1.0221481789570373157293614185766 absolute error = 1.1e-30 relative error = 1.0761649070513434169360174370770e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=528.9MB, alloc=40.3MB, time=5.55 TOP MAIN SOLVE Loop x[1] = -3.8 y[1] (closed_form) = 1.0223707718561655957785833225408 y[1] (numeric) = 1.0223707718561655957785833225419 absolute error = 1.1e-30 relative error = 1.0759306019702564786525235733158e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.79 y[1] (closed_form) = 1.0225956018511218644086649813674 y[1] (numeric) = 1.0225956018511218644086649813682 absolute error = 8e-31 relative error = 7.8232294227730384965666281206387e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.78 y[1] (closed_form) = 1.0228226914250929762001285060763 y[1] (numeric) = 1.0228226914250929762001285060771 absolute error = 8e-31 relative error = 7.8214924904077421165909760236493e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.77 y[1] (closed_form) = 1.0230520632872255702066011347591 y[1] (numeric) = 1.0230520632872255702066011347599 absolute error = 8e-31 relative error = 7.8197388843484215133988675854784e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.76 y[1] (closed_form) = 1.0232837403748970035430725422555 y[1] (numeric) = 1.0232837403748970035430725422563 absolute error = 8e-31 relative error = 7.8179684522975680757317313197581e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.75 y[1] (closed_form) = 1.0235177458560091082361511851004 y[1] (numeric) = 1.0235177458560091082361511851012 absolute error = 8e-31 relative error = 7.8161810407197950803687689064790e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.74 y[1] (closed_form) = 1.0237541031313050007139161777898 y[1] (numeric) = 1.0237541031313050007139161777906 absolute error = 8e-31 relative error = 7.8143764948348473566673466790783e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.73 y[1] (closed_form) = 1.0239928358367091756182443665626 y[1] (numeric) = 1.0239928358367091756182443665633 absolute error = 7e-31 relative error = 6.8359853262843077931363080221933e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.72 y[1] (closed_form) = 1.024233967845691117950943918083 y[1] (numeric) = 1.0242339678456911179509439180838 absolute error = 8e-31 relative error = 7.8107153747563103252615620750342e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=569.2MB, alloc=40.3MB, time=5.95 TOP MAIN SOLVE Loop x[1] = -3.71 y[1] (closed_form) = 1.0244775232716526699168787197371 y[1] (numeric) = 1.0244775232716526699168787197379 absolute error = 8e-31 relative error = 7.8088584847153379114438673546627e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.7 y[1] (closed_form) = 1.0247235264703393912027573829834 y[1] (numeric) = 1.0247235264703393912027573829842 absolute error = 8e-31 relative error = 7.8069838286586463897569580149025e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.69 y[1] (closed_form) = 1.024972002042276153829624202256 y[1] (numeric) = 1.0249720020422761538296242022569 absolute error = 9e-31 relative error = 8.7807276511624993704788234556365e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.68 y[1] (closed_form) = 1.0252229748352272151405669876582 y[1] (numeric) = 1.0252229748352272151405669876591 absolute error = 9e-31 relative error = 8.7785781443753450491634557871761e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.67 y[1] (closed_form) = 1.0254764699466810149329906098868 y[1] (numeric) = 1.0254764699466810149329906098876 absolute error = 8e-31 relative error = 7.8012516468719704705302004690709e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.66 y[1] (closed_form) = 1.0257325127263599452172401559202 y[1] (numeric) = 1.025732512726359945217240155921 absolute error = 8e-31 relative error = 7.7993043027721614754722987276643e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.65 y[1] (closed_form) = 1.0259911287787553435806410395574 y[1] (numeric) = 1.0259911287787553435806410395582 absolute error = 8e-31 relative error = 7.7973383741850261646677932524018e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.64 y[1] (closed_form) = 1.0262523439656879636584049723293 y[1] (numeric) = 1.0262523439656879636584049723301 absolute error = 8e-31 relative error = 7.7953536935039385003607788735063e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.63 y[1] (closed_form) = 1.0265161844088941787605826178852 y[1] (numeric) = 1.0265161844088941787605826178862 absolute error = 1.0e-30 relative error = 9.7416876147533594492488645913175e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=609.6MB, alloc=40.3MB, time=6.38 TOP MAIN SOLVE Loop x[1] = -3.62 y[1] (closed_form) = 1.0267826764926381772775808019925 y[1] (numeric) = 1.0267826764926381772775808019935 absolute error = 1.0e-30 relative error = 9.7391592485361706079126011259423e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.61 y[1] (closed_form) = 1.0270518468663504110859616666317 y[1] (numeric) = 1.0270518468663504110859616666326 absolute error = 9e-31 relative error = 8.7629461233724495186703010901889e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.6 y[1] (closed_form) = 1.0273237224472925608015630624356 y[1] (numeric) = 1.0273237224472925608015630624364 absolute error = 8e-31 relative error = 7.7872240513850731585855932591894e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.59 y[1] (closed_form) = 1.0275983304232492843786863032922 y[1] (numeric) = 1.027598330423249284378686303293 absolute error = 8e-31 relative error = 7.7851430497215227815908011851304e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.58 y[1] (closed_form) = 1.0278756982552470182324543331974 y[1] (numeric) = 1.0278756982552470182324543331982 absolute error = 8e-31 relative error = 7.7830422623858956822508947599385e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.57 y[1] (closed_form) = 1.0281558536803001027667182163266 y[1] (numeric) = 1.0281558536803001027667182163274 absolute error = 8e-31 relative error = 7.7809215123989945282110799736864e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.56 y[1] (closed_form) = 1.0284388247141845069223531865445 y[1] (numeric) = 1.0284388247141845069223531865453 absolute error = 8e-31 relative error = 7.7787806214174149044336811453211e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.55 y[1] (closed_form) = 1.0287246396542394291207105307843 y[1] (numeric) = 1.0287246396542394291207105307852 absolute error = 9e-31 relative error = 8.7486968359433428292780113651815e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.54 y[1] (closed_form) = 1.0290133270821970547646543267218 y[1] (numeric) = 1.0290133270821970547646543267227 absolute error = 9e-31 relative error = 8.7462424082687168480011281085126e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=650.1MB, alloc=40.3MB, time=6.80 TOP MAIN SOLVE Loop x[1] = -3.53 y[1] (closed_form) = 1.029304915867040753275291277527 y[1] (numeric) = 1.029304915867040753275291277528 absolute error = 1.0e-30 relative error = 9.7152941230990275269570715581018e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.52 y[1] (closed_form) = 1.0295994351678920004864791554834 y[1] (numeric) = 1.0295994351678920004864791554842 absolute error = 8e-31 relative error = 7.7700120325876802137569552005852e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.51 y[1] (closed_form) = 1.0298969144369263150917590819967 y[1] (numeric) = 1.0298969144369263150917590819974 absolute error = 7e-31 relative error = 6.7967967491456146279589292681151e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.5 y[1] (closed_form) = 1.0301973834223185007397862923636 y[1] (numeric) = 1.0301973834223185007397862923644 absolute error = 8e-31 relative error = 7.7655021539891494490776835350867e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.49 y[1] (closed_form) = 1.030500872171217488304923304969 y[1] (numeric) = 1.0305008721712174883049233049699 absolute error = 9e-31 relative error = 8.7336170623877473271666937916641e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.48 y[1] (closed_form) = 1.0308074110327510758197015977179 y[1] (numeric) = 1.0308074110327510758197015977185 absolute error = 6e-31 relative error = 5.8206799211781825951378211640241e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.47 y[1] (closed_form) = 1.0311170306610608665456489961601 y[1] (numeric) = 1.0311170306610608665456489961606 absolute error = 5e-31 relative error = 4.8491100925706203108972155341476e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.46 y[1] (closed_form) = 1.0314297620183677086788189795365 y[1] (numeric) = 1.0314297620183677086788189795372 absolute error = 7e-31 relative error = 6.7866957671474908916359745291992e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.45 y[1] (closed_form) = 1.0317456363780679432365469992797 y[1] (numeric) = 1.0317456363780679432365469992804 absolute error = 7e-31 relative error = 6.7846179844999639358342890298519e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop memory used=690.6MB, alloc=40.3MB, time=7.22 x[1] = -3.44 y[1] (closed_form) = 1.0320646853278607697528027007736 y[1] (numeric) = 1.0320646853278607697528027007743 absolute error = 7e-31 relative error = 6.7825206108823281475345416853539e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.43 y[1] (closed_form) = 1.0323869407729070425213137303623 y[1] (numeric) = 1.0323869407729070425213137303632 absolute error = 9e-31 relative error = 8.7176616097662548380299822156764e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.42 y[1] (closed_form) = 1.0327124349390198132687177789643 y[1] (numeric) = 1.0327124349390198132687177789651 absolute error = 8e-31 relative error = 7.7465901729675488174772263355141e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.41 y[1] (closed_form) = 1.0330412003758869393146689719212 y[1] (numeric) = 1.0330412003758869393146689719219 absolute error = 7e-31 relative error = 6.7761092175732672092308305412926e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.4 y[1] (closed_form) = 1.0333732699603260794824001314709 y[1] (numeric) = 1.0333732699603260794824001314717 absolute error = 8e-31 relative error = 7.7416362824123959220897950309844e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.39 y[1] (closed_form) = 1.0337086768995724032620444737059 y[1] (numeric) = 1.0337086768995724032620444737067 absolute error = 8e-31 relative error = 7.7391243575458752389717110774471e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.38 y[1] (closed_form) = 1.0340474547345993420003728389543 y[1] (numeric) = 1.0340474547345993420003728389552 absolute error = 9e-31 relative error = 8.7036624468167737431275015250223e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.37 y[1] (closed_form) = 1.0343896373434727141948327311903 y[1] (numeric) = 1.034389637343472714194832731191 absolute error = 7e-31 relative error = 6.7672758381236812411864366948980e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.36 y[1] (closed_form) = 1.0347352589447385603072136841051 y[1] (numeric) = 1.0347352589447385603072136841059 absolute error = 8e-31 relative error = 7.7314462137481398502136708677269e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.35 y[1] (closed_form) = 1.0350843541008450258832435254655 y[1] (numeric) = 1.0350843541008450258832435254664 absolute error = 9e-31 relative error = 8.6949435225673966620631097364974e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=731.0MB, alloc=40.3MB, time=7.64 TOP MAIN SOLVE Loop x[1] = -3.34 y[1] (closed_form) = 1.0354369577215986351692790781561 y[1] (numeric) = 1.0354369577215986351692790781569 absolute error = 8e-31 relative error = 7.7262067384608329780631692941751e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.33 y[1] (closed_form) = 1.0357931050676553008563332045916 y[1] (numeric) = 1.0357931050676553008563332045926 absolute error = 1.0e-30 relative error = 9.6544376971372348660319144161987e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.32 y[1] (closed_form) = 1.0361528317540464190553217816872 y[1] (numeric) = 1.0361528317540464190553217816881 absolute error = 9e-31 relative error = 8.6859773232143684635982779546759e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.31 y[1] (closed_form) = 1.0365161737537404021159665533578 y[1] (numeric) = 1.0365161737537404021159665533588 absolute error = 1.0e-30 relative error = 9.6477028079407851227492356618792e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.3 y[1] (closed_form) = 1.0368831674012400054456037047415 y[1] (numeric) = 1.0368831674012400054456037047426 absolute error = 1.1e-30 relative error = 1.0608716918001002099449078785553e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.29 y[1] (closed_form) = 1.0372538493962158080635778213451 y[1] (numeric) = 1.0372538493962158080635778213462 absolute error = 1.1e-30 relative error = 1.0604925695289621235415268974300e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.28 y[1] (closed_form) = 1.0376282568071762102423045830638 y[1] (numeric) = 1.0376282568071762102423045830648 absolute error = 1.0e-30 relative error = 9.6373628362535165861008113285092e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.27 y[1] (closed_form) = 1.0380064270751743152378246409055 y[1] (numeric) = 1.0380064270751743152378246409065 absolute error = 1.0e-30 relative error = 9.6338517172551011517509676897871e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.26 y[1] (closed_form) = 1.0383883980175520658011108102137 y[1] (numeric) = 1.0383883980175520658011108102147 absolute error = 1.0e-30 relative error = 9.6303079070332295853817841165312e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=771.4MB, alloc=40.3MB, time=8.06 TOP MAIN SOLVE Loop x[1] = -3.25 y[1] (closed_form) = 1.0387742078317220098868998352676 y[1] (numeric) = 1.0387742078317220098868998352686 absolute error = 1.0e-30 relative error = 9.6267311265587053980228583396150e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.24 y[1] (closed_form) = 1.0391638950989870737397710903658 y[1] (numeric) = 1.0391638950989870737397710903668 absolute error = 1.0e-30 relative error = 9.6231210949139407913811391888854e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.23 y[1] (closed_form) = 1.0395574987883987243379639801109 y[1] (numeric) = 1.0395574987883987243379639801122 absolute error = 1.3e-30 relative error = 1.2505320788077102632030642989204e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.22 y[1] (closed_form) = 1.0399550582606539070143935667244 y[1] (numeric) = 1.0399550582606539070143935667257 absolute error = 1.3e-30 relative error = 1.2500540188479650012031900204554e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.21 y[1] (closed_form) = 1.040356613272031147951873984794 y[1] (numeric) = 1.0403566132720311479518739847953 absolute error = 1.3e-30 relative error = 1.2495715252016931463013725084004e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.2 y[1] (closed_form) = 1.0407622039783662151660792621444 y[1] (numeric) = 1.0407622039783662151660792621458 absolute error = 1.4e-30 relative error = 1.3451679880845298978782849561622e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.19 y[1] (closed_form) = 1.0411718709390677355456529047735 y[1] (numeric) = 1.0411718709390677355456529047749 absolute error = 1.4e-30 relative error = 1.3446387086286658635533898684825e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.18 y[1] (closed_form) = 1.041585655121173169514516615502 y[1] (numeric) = 1.0415856551211731695145166155034 absolute error = 1.4e-30 relative error = 1.3441045324660606943960455424939e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.17 y[1] (closed_form) = 1.04200359790344554891722436736 y[1] (numeric) = 1.0420035979034455489172243673614 absolute error = 1.4e-30 relative error = 1.3435654184082070909204328938028e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=811.8MB, alloc=40.3MB, time=8.48 TOP MAIN SOLVE Loop x[1] = -3.16 y[1] (closed_form) = 1.042425741080511387804564326735 y[1] (numeric) = 1.0424257410805113878045643267364 absolute error = 1.4e-30 relative error = 1.3430213249999469163848376713255e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.15 y[1] (closed_form) = 1.0428521268670401799139354569562 y[1] (numeric) = 1.0428521268670401799139354569577 absolute error = 1.5e-30 relative error = 1.4383630826993024838449952490927e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.14 y[1] (closed_form) = 1.0432827979019659007977297661522 y[1] (numeric) = 1.0432827979019659007977297661538 absolute error = 1.6e-30 relative error = 1.5336206091172866390277146889388e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.13 y[1] (closed_form) = 1.0437177972527509367534509677739 y[1] (numeric) = 1.0437177972527509367534509677754 absolute error = 1.5e-30 relative error = 1.4371700894133109369857231390045e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.12 y[1] (closed_form) = 1.0441571684196928669520158516001 y[1] (numeric) = 1.0441571684196928669520158516017 absolute error = 1.6e-30 relative error = 1.5323363650527459270539454949098e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.11 y[1] (closed_form) = 1.0446009553402745294460401924352 y[1] (numeric) = 1.0446009553402745294460401924368 absolute error = 1.6e-30 relative error = 1.5316853692506977286066472250413e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.1 y[1] (closed_form) = 1.0450492023935578060683350921783 y[1] (numeric) = 1.0450492023935578060683350921799 absolute error = 1.6e-30 relative error = 1.5310283920942622039139660101262e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.09 y[1] (closed_form) = 1.0455019544046215656027651045195 y[1] (numeric) = 1.0455019544046215656027651045209 absolute error = 1.4e-30 relative error = 1.3390697110626189389777083262770e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.08 y[1] (closed_form) = 1.0459592566490442090254835263785 y[1] (numeric) = 1.0459592566490442090254835263798 absolute error = 1.3e-30 relative error = 1.2428782399850162765937988109282e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=852.2MB, alloc=40.3MB, time=9.00 TOP MAIN SOLVE Loop x[1] = -3.07 y[1] (closed_form) = 1.0464211548574312650748044464352 y[1] (numeric) = 1.0464211548574312650748044464366 absolute error = 1.4e-30 relative error = 1.3378934413751810812746573810254e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.06 y[1] (closed_form) = 1.0468876952199884889130415468398 y[1] (numeric) = 1.0468876952199884889130415468412 absolute error = 1.4e-30 relative error = 1.3372972157302985649132822069145e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.05 y[1] (closed_form) = 1.0473589243911409211939907702397 y[1] (numeric) = 1.0473589243911409211939907702412 absolute error = 1.5e-30 relative error = 1.4321737897750687657839546164189e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.04 y[1] (closed_form) = 1.0478348894941983694458128291081 y[1] (numeric) = 1.0478348894941983694458128291095 absolute error = 1.4e-30 relative error = 1.3360883609017787826368245926101e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.03 y[1] (closed_form) = 1.0483156381260677783213417597388 y[1] (numeric) = 1.0483156381260677783213417597401 absolute error = 1.3e-30 relative error = 1.2400845248515364596910554483211e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.02 y[1] (closed_form) = 1.04880121836201295995677154006 y[1] (numeric) = 1.0488012183620129599567715400615 absolute error = 1.5e-30 relative error = 1.4302042882279027943269887426972e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3.01 y[1] (closed_form) = 1.0492916787604621604157230951175 y[1] (numeric) = 1.0492916787604621604157230951189 absolute error = 1.4e-30 relative error = 1.3342333960504030502190863564102e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -3 y[1] (closed_form) = 1.0497870683678639429793424156501 y[1] (numeric) = 1.0497870683678639429793424156516 absolute error = 1.5e-30 relative error = 1.4288611902336498286817277723423e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.99 y[1] (closed_form) = 1.050287436723591873874805382468 y[1] (numeric) = 1.0502874367235918738748053824694 absolute error = 1.4e-30 relative error = 1.3329684342101135758744225149270e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=892.6MB, alloc=40.3MB, time=9.48 TOP MAIN SOLVE Loop x[1] = -2.98 y[1] (closed_form) = 1.050792833864898500914889398847 y[1] (numeric) = 1.0507928338648985009148893988485 absolute error = 1.5e-30 relative error = 1.4274935569201421861564083215040e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.97 y[1] (closed_form) = 1.0513033103319191204506041173959 y[1] (numeric) = 1.0513033103319191204506041173974 absolute error = 1.5e-30 relative error = 1.4268004155018000095786686341522e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.96 y[1] (closed_form) = 1.0518189171727258330177463441629 y[1] (numeric) = 1.0518189171727258330177463441644 absolute error = 1.5e-30 relative error = 1.4261009908739600263187335101431e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.95 y[1] (closed_form) = 1.0523397059484323930871555025493 y[1] (numeric) = 1.0523397059484323930871555025508 absolute error = 1.5e-30 relative error = 1.4253952326621649122240428378635e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.94 y[1] (closed_form) = 1.0528657287383503634078987382166 y[1] (numeric) = 1.0528657287383503634078987382182 absolute error = 1.6e-30 relative error = 1.5196619628955735535527779459265e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.93 y[1] (closed_form) = 1.053397038145197089563116793104 y[1] (numeric) = 1.0533970381451970895631167931057 absolute error = 1.7e-30 relative error = 1.6138264476168738731027703464426e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.92 y[1] (closed_form) = 1.053933687300356015540326226409 y[1] (numeric) = 1.0539336873003560155403262264107 absolute error = 1.7e-30 relative error = 1.6130047084409441907561802725974e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.91 y[1] (closed_form) = 1.0544757298691898663521186236729 y[1] (numeric) = 1.0544757298691898663521186236746 absolute error = 1.7e-30 relative error = 1.6121755597076557659882853940806e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.9 y[1] (closed_form) = 1.0550232200564072290299465308342 y[1] (numeric) = 1.0550232200564072290299465308359 absolute error = 1.7e-30 relative error = 1.6113389427666898508740759475188e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=933.0MB, alloc=40.3MB, time=9.95 TOP MAIN SOLVE Loop x[1] = -2.89 y[1] (closed_form) = 1.0555762126114830686535676575805 y[1] (numeric) = 1.0555762126114830686535676575822 absolute error = 1.7e-30 relative error = 1.6104947986599850532296598757676e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.88 y[1] (closed_form) = 1.0561347628341337214722674061654 y[1] (numeric) = 1.0561347628341337214722674061672 absolute error = 1.8e-30 relative error = 1.7043279544834853004464152189044e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.87 y[1] (closed_form) = 1.0566989265798469126217343574206 y[1] (numeric) = 1.0566989265798469126217343574224 absolute error = 1.8e-30 relative error = 1.7034180263870906181797685259783e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.86 y[1] (closed_form) = 1.0572687602654673514429687649702 y[1] (numeric) = 1.0572687602654673514429687649721 absolute error = 1.9e-30 relative error = 1.7970832690856514707134259369443e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.85 y[1] (closed_form) = 1.0578443208748384629674106267774 y[1] (numeric) = 1.0578443208748384629674106267793 absolute error = 1.9e-30 relative error = 1.7961054972897125613188064851947e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.84 y[1] (closed_form) = 1.0584256659645008197461373054073 y[1] (numeric) = 1.0584256659645008197461373054091 absolute error = 1.8e-30 relative error = 1.7006390319907182707560996290254e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.83 y[1] (closed_form) = 1.059012853669447843871062325787 y[1] (numeric) = 1.0590128536694478438710623257887 absolute error = 1.7e-30 relative error = 1.6052685235212687716969596803875e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.82 y[1] (closed_form) = 1.0596059427089393547631339046828 y[1] (numeric) = 1.0596059427089393547631339046845 absolute error = 1.7e-30 relative error = 1.6043700129256154720914101524010e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.81 y[1] (closed_form) = 1.0602049923923735440871566710524 y[1] (numeric) = 1.060204992392373544087156671054 absolute error = 1.6e-30 relative error = 1.5091421107059384243034565867203e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=973.5MB, alloc=40.3MB, time=10.36 TOP MAIN SOLVE Loop x[1] = -2.8 y[1] (closed_form) = 1.0608100626252179649956213881839 y[1] (numeric) = 1.0608100626252179649956213881856 absolute error = 1.7e-30 relative error = 1.6025489009719231314459050042218e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.79 y[1] (closed_form) = 1.0614212139150001288054095681066 y[1] (numeric) = 1.0614212139150001288054095681082 absolute error = 1.6e-30 relative error = 1.5074128715578223782509425074581e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.78 y[1] (closed_form) = 1.0620385073773583081720328292716 y[1] (numeric) = 1.0620385073773583081720328292732 absolute error = 1.6e-30 relative error = 1.5065367111321659973371448593362e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.77 y[1] (closed_form) = 1.0626620047421531518467667742247 y[1] (numeric) = 1.0626620047421531518467667742263 absolute error = 1.6e-30 relative error = 1.5056527784563331812527952842016e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.76 y[1] (closed_form) = 1.0632917683596407221832481299345 y[1] (numeric) = 1.063291768359640722183248129936 absolute error = 1.5e-30 relative error = 1.4107134510352477361378963059468e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.75 y[1] (closed_form) = 1.063927861206707572702430025558 y[1] (numeric) = 1.0639278612067075727024300255594 absolute error = 1.4e-30 relative error = 1.3158786897563893291723871761671e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.74 y[1] (closed_form) = 1.0645703468931684892288478184621 y[1] (numeric) = 1.0645703468931684892288478184634 absolute error = 1.3e-30 relative error = 1.2211499256896522324790113363462e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.73 y[1] (closed_form) = 1.065219289668127524377557230193 y[1] (numeric) = 1.0652192896681275243775572301942 absolute error = 1.2e-30 relative error = 1.1265286046161103943897266133656e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.72 y[1] (closed_form) = 1.0658747544264029615004943659454 y[1] (numeric) = 1.0658747544264029615004943659466 absolute error = 1.2e-30 relative error = 1.1258358404836936999582549817849e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1014.1MB, alloc=40.3MB, time=10.78 TOP MAIN SOLVE Loop x[1] = -2.71 y[1] (closed_form) = 1.0665368067150168505940064080062 y[1] (numeric) = 1.0665368067150168505940064080074 absolute error = 1.2e-30 relative error = 1.1251369783440067245626884820357e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.7 y[1] (closed_form) = 1.067205512739749765126551700856 y[1] (numeric) = 1.0672055127397497651265517008571 absolute error = 1.1e-30 relative error = 1.0307293083373038615344280386401e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.69 y[1] (closed_form) = 1.0678809393717614352677143135015 y[1] (numeric) = 1.0678809393717614352677143135027 absolute error = 1.2e-30 relative error = 1.1237207779979336729516581567710e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.68 y[1] (closed_form) = 1.068563154154277919587373193244 y[1] (numeric) = 1.0685631541542779195873731932451 absolute error = 1.1e-30 relative error = 1.0294197359543086629344756752701e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.67 y[1] (closed_form) = 1.0692522253093459839477684894559 y[1] (numeric) = 1.0692522253093459839477684894568 absolute error = 9e-31 relative error = 8.4170972825389301940885896461576e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.66 y[1] (closed_form) = 1.0699482217446553630319829218383 y[1] (numeric) = 1.0699482217446553630319829218393 absolute error = 1.0e-30 relative error = 9.3462466657442737092356340478329e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.65 y[1] (closed_form) = 1.0706512130604295867406762781867 y[1] (numeric) = 1.0706512130604295867406762781877 absolute error = 1.0e-30 relative error = 9.3401099050878122138951393238775e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.64 y[1] (closed_form) = 1.0713612695563860605454550895863 y[1] (numeric) = 1.0713612695563860605454550895874 absolute error = 1.1e-30 relative error = 1.0267311608674002701564202652847e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.63 y[1] (closed_form) = 1.0720784622387660958127129062998 y[1] (numeric) = 1.0720784622387660958127129063009 absolute error = 1.1e-30 relative error = 1.0260443043533649567140320934758e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.62 y[1] (closed_form) = 1.0728028628274355931068319365058 y[1] (numeric) = 1.0728028628274355931068319365068 absolute error = 1.0e-30 relative error = 9.3213770642300550091992433390508e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1054.5MB, alloc=40.3MB, time=11.20 TOP MAIN SOLVE Loop x[1] = -2.61 y[1] (closed_form) = 1.0735345437630570885469936238617 y[1] (numeric) = 1.0735345437630570885469936238627 absolute error = 1.0e-30 relative error = 9.3150239627567391049785376980016e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.6 y[1] (closed_form) = 1.07427357821433388042821057017 y[1] (numeric) = 1.0742735782143338804282105701708 absolute error = 8e-31 relative error = 7.4468926372532254571798148637468e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.59 y[1] (closed_form) = 1.0750200400853269605252786986446 y[1] (numeric) = 1.0750200400853269605252786986455 absolute error = 9e-31 relative error = 8.3719369541107792427725045531181e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.58 y[1] (closed_form) = 1.0757740040228454817788775160744 y[1] (numeric) = 1.0757740040228454817788775160753 absolute error = 9e-31 relative error = 8.3660694219646463156769888996478e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.57 y[1] (closed_form) = 1.0765355454239115014167458275085 y[1] (numeric) = 1.0765355454239115014167458275094 absolute error = 9e-31 relative error = 8.3601512632414155223534465499313e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.56 y[1] (closed_form) = 1.0773047404432997459904656610398 y[1] (numeric) = 1.0773047404432997459904656610406 absolute error = 8e-31 relative error = 7.4259396618899893025103029696954e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.55 y[1] (closed_form) = 1.0780816660011531523106412395528 y[1] (numeric) = 1.0780816660011531523106412395535 absolute error = 7e-31 relative error = 6.4930146024693759750925354569661e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.54 y[1] (closed_form) = 1.0788663997906749458409128226 y[1] (numeric) = 1.0788663997906749458409128226007 absolute error = 7e-31 relative error = 6.4882917860433525685047613394323e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.53 y[1] (closed_form) = 1.0796590202858980257650549064864 y[1] (numeric) = 1.0796590202858980257650549064871 absolute error = 7e-31 relative error = 6.4835284737827430083935150420046e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1095.0MB, alloc=40.3MB, time=11.62 TOP MAIN SOLVE Loop x[1] = -2.52 y[1] (closed_form) = 1.0804596067495324336721400015193 y[1] (numeric) = 1.0804596067495324336721400015201 absolute error = 8e-31 relative error = 7.4042564386717754370076209349116e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.51 y[1] (closed_form) = 1.0812682392408916906131760818382 y[1] (numeric) = 1.081268239240891690613176081839 absolute error = 8e-31 relative error = 7.3987191241429870962973494253921e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.5 y[1] (closed_form) = 1.0820849986238987951695286744672 y[1] (numeric) = 1.0820849986238987951695286744679 absolute error = 7e-31 relative error = 6.4689927398512951416468567634760e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.49 y[1] (closed_form) = 1.0829099665751726831396061170947 y[1] (numeric) = 1.0829099665751726831396061170953 absolute error = 6e-31 relative error = 5.5406268158891270264935380432235e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.48 y[1] (closed_form) = 1.0837432255921959574965153919751 y[1] (numeric) = 1.0837432255921959574965153919758 absolute error = 7e-31 relative error = 6.4590945850433808226572095318188e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.47 y[1] (closed_form) = 1.084584859001564705396490765854 y[1] (numeric) = 1.0845848590015647053964907658547 absolute error = 7e-31 relative error = 6.4540823540944353737388404857299e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.46 y[1] (closed_form) = 1.0854349509673212272266709492054 y[1] (numeric) = 1.0854349509673212272266709492059 absolute error = 5e-31 relative error = 4.6064483141473238572268022287541e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.45 y[1] (closed_form) = 1.0862935864993705109720735165162 y[1] (numeric) = 1.0862935864993705109720735165167 absolute error = 5e-31 relative error = 4.6028072540801081279918832089557e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.44 y[1] (closed_form) = 1.0871608514619812935562170370773 y[1] (numeric) = 1.0871608514619812935562170370778 absolute error = 5e-31 relative error = 4.5991354391359383677694064638611e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1135.3MB, alloc=40.3MB, time=12.05 TOP MAIN SOLVE Loop x[1] = -2.43 y[1] (closed_form) = 1.088036832582372559268609219894 y[1] (numeric) = 1.0880368325823725592686092198945 absolute error = 5e-31 relative error = 4.5954326639226732708298520230740e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.42 y[1] (closed_form) = 1.0889216174593863339360992607368 y[1] (numeric) = 1.0889216174593863339360992607373 absolute error = 5e-31 relative error = 4.5916987226920267459833522296460e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.41 y[1] (closed_form) = 1.0898152945722476421247388791339 y[1] (numeric) = 1.0898152945722476421247388791343 absolute error = 4e-31 relative error = 3.6703467274883488095135329184164e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.4 y[1] (closed_form) = 1.0907179532894125033751722200797 y[1] (numeric) = 1.0907179532894125033751722200799 absolute error = 2e-31 relative error = 1.8336546070121552586740951218123e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.39 y[1] (closed_form) = 1.0916296838775048522785515142203 y[1] (numeric) = 1.0916296838775048522785515142206 absolute error = 3e-31 relative error = 2.7481847043073256070599405548770e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.38 y[1] (closed_form) = 1.092550577510343276092433546306 y[1] (numeric) = 1.0925505775103432760924335463063 absolute error = 3e-31 relative error = 2.7458683028077926452156372420223e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.37 y[1] (closed_form) = 1.093480726278058472577940827977 y[1] (numeric) = 1.0934807262780584725779408279774 absolute error = 4e-31 relative error = 3.6580434422607738106773144466649e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.36 y[1] (closed_form) = 1.0944202231963023398115690978577 y[1] (numeric) = 1.0944202231963023398115690978581 absolute error = 4e-31 relative error = 3.6549032220163332505720254550342e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.35 y[1] (closed_form) = 1.0953691622155496188882965967998 y[1] (numeric) = 1.0953691622155496188882965968003 absolute error = 5e-31 relative error = 4.5646711377986437013616557812466e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1175.7MB, alloc=40.3MB, time=12.47 TOP MAIN SOLVE Loop x[1] = -2.34 y[1] (closed_form) = 1.0963276382304930196880168239591 y[1] (numeric) = 1.0963276382304930196880168239596 absolute error = 5e-31 relative error = 4.5606804258534938045710361810640e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.33 y[1] (closed_form) = 1.0972957470895327692257007145515 y[1] (numeric) = 1.097295747089532769225700714552 absolute error = 5e-31 relative error = 4.5566566837263335430527130715198e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.32 y[1] (closed_form) = 1.0982735856043615315480312388239 y[1] (numeric) = 1.0982735856043615315480312388245 absolute error = 6e-31 relative error = 5.4631196439986314019587860138362e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.31 y[1] (closed_form) = 1.0992612515596456576764875455719 y[1] (numeric) = 1.0992612515596456576764875455724 absolute error = 5e-31 relative error = 4.5485092764854007707706631044280e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.3 y[1] (closed_form) = 1.100258843722803733729940693798 y[1] (numeric) = 1.1002588437228037337299406937985 absolute error = 5e-31 relative error = 4.5443851949257193233034762651179e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.29 y[1] (closed_form) = 1.1012664618538834050897220493467 y[1] (numeric) = 1.1012664618538834050897220493472 absolute error = 5e-31 relative error = 4.5402272503449783127412285738035e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.28 y[1] (closed_form) = 1.1022842067155374642978115675971 y[1] (numeric) = 1.1022842067155374642978115675976 absolute error = 5e-31 relative error = 4.5360352344142149945689445117558e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.27 y[1] (closed_form) = 1.1033121800831002003052492153345 y[1] (numeric) = 1.103312180083100200305249215335 absolute error = 5e-31 relative error = 4.5318089388113215331672131959166e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.26 y[1] (closed_form) = 1.1043504847547650167140913586396 y[1] (numeric) = 1.1043504847547650167140913586402 absolute error = 6e-31 relative error = 5.4330577862990442163969547325708e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1216.1MB, alloc=40.3MB, time=12.89 TOP MAIN SOLVE Loop x[1] = -2.25 y[1] (closed_form) = 1.1053992245618643367832176892407 y[1] (numeric) = 1.1053992245618643367832176892413 absolute error = 6e-31 relative error = 5.4279032106053430361823114206300e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.24 y[1] (closed_form) = 1.1064585043792528231970558860814 y[1] (numeric) = 1.106458504379252823197055886082 absolute error = 6e-31 relative error = 5.4227067497358429230283640023685e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.23 y[1] (closed_form) = 1.107528430135794950927853596553 y[1] (numeric) = 1.1075284301357949509278535965536 absolute error = 6e-31 relative error = 5.4174681540810064603608957657098e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.22 y[1] (closed_form) = 1.1086091088249579819575236377746 y[1] (numeric) = 1.1086091088249579819575236377751 absolute error = 5e-31 relative error = 4.5101559785122303231635456934385e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.21 y[1] (closed_form) = 1.1097006485155114011653621107986 y[1] (numeric) = 1.1097006485155114011653621107991 absolute error = 5e-31 relative error = 4.5057196341091531543938575415627e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.2 y[1] (closed_form) = 1.1108031583623338833341444258499 y[1] (numeric) = 1.1108031583623338833341444258504 absolute error = 5e-31 relative error = 4.5012475544015742650286533265019e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.19 y[1] (closed_form) = 1.1119167486173288719803056840571 y[1] (numeric) = 1.1119167486173288719803056840575 absolute error = 4e-31 relative error = 3.5973916257435725625101586795985e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.18 y[1] (closed_form) = 1.1130415306404498615751847797268 y[1] (numeric) = 1.1130415306404498615751847797272 absolute error = 4e-31 relative error = 3.5937562884094534033723034014586e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.17 y[1] (closed_form) = 1.1141776169108364856947421133822 y[1] (numeric) = 1.1141776169108364856947421133826 absolute error = 4e-31 relative error = 3.5900918662236105641235645855843e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1256.5MB, alloc=40.3MB, time=13.31 TOP MAIN SOLVE Loop x[1] = -2.16 y[1] (closed_form) = 1.1153251210380625247158459917298 y[1] (numeric) = 1.1153251210380625247158459917303 absolute error = 5e-31 relative error = 4.4829977427087520855876663551636e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.15 y[1] (closed_form) = 1.1164841577734969578692707141828 y[1] (numeric) = 1.1164841577734969578692707141833 absolute error = 5e-31 relative error = 4.4783438844049935131504822376270e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.14 y[1] (closed_form) = 1.1176548430217791957640792206891 y[1] (numeric) = 1.1176548430217791957640792206894 absolute error = 3e-31 relative error = 2.6841918314324706600272745289956e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.13 y[1] (closed_form) = 1.1188372938524096409162054647724 y[1] (numeric) = 1.1188372938524096409162054647728 absolute error = 4e-31 relative error = 3.5751400332992977630306739746177e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.12 y[1] (closed_form) = 1.1200316285114567353469482026623 y[1] (numeric) = 1.1200316285114567353469482026627 absolute error = 4e-31 relative error = 3.5713277180538873001094327262437e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.11 y[1] (closed_form) = 1.1212379664333816659658919534078 y[1] (numeric) = 1.1212379664333816659658919534083 absolute error = 5e-31 relative error = 4.4593566661899821708949156286498e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.1 y[1] (closed_form) = 1.1224564282529819102186473760726 y[1] (numeric) = 1.1224564282529819102186473760732 absolute error = 6e-31 relative error = 5.3454190728263223702053635655493e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.09 y[1] (closed_form) = 1.12368713581745481636392882593 y[1] (numeric) = 1.1236871358174548163639288259308 absolute error = 8e-31 relative error = 7.1194194050999759088513617150420e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.08 y[1] (closed_form) = 1.1249302121985824247480498144888 y[1] (numeric) = 1.1249302121985824247480498144897 absolute error = 9e-31 relative error = 8.0004962995973318615414356408721e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.07 y[1] (closed_form) = 1.1261857817050387485691178744718 y[1] (numeric) = 1.1261857817050387485691178744725 absolute error = 7e-31 relative error = 6.2156707301010678334357765319003e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1297.0MB, alloc=40.3MB, time=13.73 TOP MAIN SOLVE Loop x[1] = -2.06 y[1] (closed_form) = 1.1274539698948207448692613507224 y[1] (numeric) = 1.127453969894820744869261350723 absolute error = 6e-31 relative error = 5.3217250195675261789789324761374e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.05 y[1] (closed_form) = 1.1287349035878042188623465167449 y[1] (numeric) = 1.1287349035878042188623465167454 absolute error = 5e-31 relative error = 4.4297380936010457188157468558055e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.04 y[1] (closed_form) = 1.1300287108784259171980810770711 y[1] (numeric) = 1.1300287108784259171980810770716 absolute error = 5e-31 relative error = 4.4246663397722509299698095559226e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.03 y[1] (closed_form) = 1.1313355211484930783823989120881 y[1] (numeric) = 1.1313355211484930783823989120885 absolute error = 4e-31 relative error = 3.5356443117240206339166841657051e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.02 y[1] (closed_form) = 1.1326554650801217213198427647316 y[1] (numeric) = 1.1326554650801217213198427647321 absolute error = 5e-31 relative error = 4.4144050456210973821080169770781e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2.01 y[1] (closed_form) = 1.1339886746688049658175810503738 y[1] (numeric) = 1.1339886746688049658175810503744 absolute error = 6e-31 relative error = 5.2910581331443827507959192265463e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -2 y[1] (closed_form) = 1.1353352832366126918939994949725 y[1] (numeric) = 1.1353352832366126918939994949732 absolute error = 7e-31 relative error = 6.1655795458451771084181039891167e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.99 y[1] (closed_form) = 1.1366954254455238578687982134042 y[1] (numeric) = 1.1366954254455238578687982134049 absolute error = 7e-31 relative error = 6.1582019627257443250739056085308e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.98 y[1] (closed_form) = 1.1380692373108928104775135397954 y[1] (numeric) = 1.1380692373108928104775135397962 absolute error = 8e-31 relative error = 7.0294492968661051260698606925283e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1337.4MB, alloc=40.3MB, time=14.16 TOP MAIN SOLVE Loop x[1] = -1.97 y[1] (closed_form) = 1.1394568562150509336526980245391 y[1] (numeric) = 1.13945685621505093365269802454 absolute error = 9e-31 relative error = 7.8985000185925602053210316740853e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.96 y[1] (closed_form) = 1.140858420921044996147971461096 y[1] (numeric) = 1.1408584209210449961479714610968 absolute error = 8e-31 relative error = 7.0122636194782080686305785725598e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.95 y[1] (closed_form) = 1.1422740715865135718511540088638 y[1] (numeric) = 1.1422740715865135718511540088646 absolute error = 8e-31 relative error = 7.0035731345006686273308835281226e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.94 y[1] (closed_form) = 1.1437039497777029204400764475696 y[1] (numeric) = 1.1437039497777029204400764475703 absolute error = 7e-31 relative error = 6.1204650043925803491587008059876e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.93 y[1] (closed_form) = 1.1451481984836237299808130836871 y[1] (numeric) = 1.1451481984836237299808130836879 absolute error = 8e-31 relative error = 6.9859953590228737074262141663969e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.92 y[1] (closed_form) = 1.146606962130350137154394456995 y[1] (numeric) = 1.1466069621303501371543944569959 absolute error = 9e-31 relative error = 7.8492459031282680454967109057751e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.91 y[1] (closed_form) = 1.1480803865954624550259384084542 y[1] (numeric) = 1.1480803865954624550259384084552 absolute error = 1.0e-30 relative error = 8.7101914785376430936117105037622e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.9 y[1] (closed_form) = 1.1495686192226350526410120691037 y[1] (numeric) = 1.1495686192226350526410120691047 absolute error = 1.0e-30 relative error = 8.6989152563700214784467400892590e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.89 y[1] (closed_form) = 1.1510718088363708452493410130273 y[1] (numeric) = 1.1510718088363708452493410130282 absolute error = 9e-31 relative error = 7.8187997750532900057815701983251e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1377.7MB, alloc=40.3MB, time=14.56 TOP MAIN SOLVE Loop x[1] = -1.88 y[1] (closed_form) = 1.1525901057568838686171667280872 y[1] (numeric) = 1.152590105756883868617166728088 absolute error = 8e-31 relative error = 6.9408890116634769072651068115458e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.87 y[1] (closed_form) = 1.154123661815131425698085826774 y[1] (numeric) = 1.1541236618151314256980858267748 absolute error = 8e-31 relative error = 6.9316662197343002327067955207715e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.86 y[1] (closed_form) = 1.1556726303679973088895649117416 y[1] (numeric) = 1.1556726303679973088895649117425 absolute error = 9e-31 relative error = 7.7876725324317470991347559600823e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.85 y[1] (closed_form) = 1.1572371663136276162100094749031 y[1] (numeric) = 1.157237166313627616210009474904 absolute error = 9e-31 relative error = 7.7771439269181516153262813280755e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.84 y[1] (closed_form) = 1.158817426106920694990784426392 y[1] (numeric) = 1.158817426106920694990784426393 absolute error = 1.0e-30 relative error = 8.6294870742454033864413862746817e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.83 y[1] (closed_form) = 1.160413567775172762090463784878 y[1] (numeric) = 1.1604135677751727620904637848791 absolute error = 1.1e-30 relative error = 9.4793789951025655334000583086929e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.82 y[1] (closed_form) = 1.1620257509338807652063690145142 y[1] (numeric) = 1.1620257509338807652063690145154 absolute error = 1.2e-30 relative error = 1.0326793524460199062928625191245e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.81 y[1] (closed_form) = 1.1636541368027040655826962573359 y[1] (numeric) = 1.1636541368027040655826962573372 absolute error = 1.3e-30 relative error = 1.1171704365456255712015367802097e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.8 y[1] (closed_form) = 1.1652988882215865382968047204322 y[1] (numeric) = 1.1652988882215865382968047204334 absolute error = 1.2e-30 relative error = 1.0297787221194146524868662698349e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1418.2MB, alloc=40.3MB, time=14.98 TOP MAIN SOLVE Loop x[1] = -1.79 y[1] (closed_form) = 1.1669601696670407023471299750829 y[1] (numeric) = 1.1669601696670407023471299750841 absolute error = 1.2e-30 relative error = 1.0283127318239030257181706879402e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.78 y[1] (closed_form) = 1.1686381472685955089693011128318 y[1] (numeric) = 1.168638147268595508969301112833 absolute error = 1.2e-30 relative error = 1.0268362390913775277721860000698e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.77 y[1] (closed_form) = 1.1703329888254094329729999061631 y[1] (numeric) = 1.1703329888254094329729999061641 absolute error = 1.0e-30 relative error = 8.5445767106303473539996501328438e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.76 y[1] (closed_form) = 1.172044863823050528422539948626 y[1] (numeric) = 1.1720448638230505284225399486269 absolute error = 9e-31 relative error = 7.6788869417875585577007116419278e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.75 y[1] (closed_form) = 1.1737739434504451266807172586664 y[1] (numeric) = 1.1737739434504451266807172586672 absolute error = 8e-31 relative error = 6.8156224157464842423505210785252e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.74 y[1] (closed_form) = 1.1755204006169968716998606943422 y[1] (numeric) = 1.1755204006169968716998606943431 absolute error = 9e-31 relative error = 7.6561835892224062434730729147037e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.73 y[1] (closed_form) = 1.1772844099698778044778771942594 y[1] (numeric) = 1.1772844099698778044778771942603 absolute error = 9e-31 relative error = 7.6447117822874045389052056761806e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.72 y[1] (closed_form) = 1.1790661479114932258021467343306 y[1] (numeric) = 1.1790661479114932258021467343313 absolute error = 7e-31 relative error = 5.9369018544033850354106652920515e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.71 y[1] (closed_form) = 1.1808657926171220837820954906518 y[1] (numeric) = 1.1808657926171220837820954906527 absolute error = 9e-31 relative error = 7.6215265581142244222584506196131e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1458.7MB, alloc=40.3MB, time=15.41 TOP MAIN SOLVE Loop x[1] = -1.7 y[1] (closed_form) = 1.1826835240527346502239008377589 y[1] (numeric) = 1.1826835240527346502239008377597 absolute error = 8e-31 relative error = 6.7642778793317223653283698768690e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.69 y[1] (closed_form) = 1.1845195239929892676298137659024 y[1] (numeric) = 1.1845195239929892676298137659032 absolute error = 8e-31 relative error = 6.7537932790100208066833871629966e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.68 y[1] (closed_form) = 1.1863739760394099665117959887401 y[1] (numeric) = 1.1863739760394099665117959887407 absolute error = 6e-31 relative error = 5.0574271866872836427902288641517e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.67 y[1] (closed_form) = 1.1882470656387467707963511700788 y[1] (numeric) = 1.1882470656387467707963511700795 absolute error = 7e-31 relative error = 5.8910307480853092896118331902646e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.66 y[1] (closed_form) = 1.1901389801015205273663910582943 y[1] (numeric) = 1.1901389801015205273663910582951 absolute error = 8e-31 relative error = 6.7219040244506475693548864721636e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.65 y[1] (closed_form) = 1.1920499086207541142385447911733 y[1] (numeric) = 1.1920499086207541142385447911741 absolute error = 8e-31 relative error = 6.7111284033873181024683792257319e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.64 y[1] (closed_form) = 1.1939800422908919005123384942873 y[1] (numeric) = 1.1939800422908919005123384942881 absolute error = 8e-31 relative error = 6.7002794993544313887860862333351e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.63 y[1] (closed_form) = 1.1959295741269093500530063600373 y[1] (numeric) = 1.1959295741269093500530063600381 absolute error = 8e-31 relative error = 6.6893571102131286845076338966602e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.62 y[1] (closed_form) = 1.1978986990836146798842262112941 y[1] (numeric) = 1.197898699083614679884226211295 absolute error = 9e-31 relative error = 7.5131561682844684783055220381016e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1499.1MB, alloc=40.3MB, time=15.83 TOP MAIN SOLVE Loop x[1] = -1.61 y[1] (closed_form) = 1.1998876140751445034727035921351 y[1] (numeric) = 1.199887614075144503472703592136 absolute error = 9e-31 relative error = 7.5007024778208631767805494729836e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.6 y[1] (closed_form) = 1.2018965179946554084851792676434 y[1] (numeric) = 1.2018965179946554084851792676442 absolute error = 8e-31 relative error = 6.6561470810713958547393786256007e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.59 y[1] (closed_form) = 1.2039256117342134381920455363505 y[1] (numeric) = 1.2039256117342134381920455363512 absolute error = 7e-31 relative error = 5.8143127214618690141410505803412e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.58 y[1] (closed_form) = 1.2059750982048834654822863400384 y[1] (numeric) = 1.2059750982048834654822863400391 absolute error = 7e-31 relative error = 5.8044316258433786775771608381915e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.57 y[1] (closed_form) = 1.2080451823570204684438838657276 y[1] (numeric) = 1.2080451823570204684438838657283 absolute error = 7e-31 relative error = 5.7944852578628554630058730258812e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.56 y[1] (closed_form) = 1.2101360712007647366541591331939 y[1] (numeric) = 1.2101360712007647366541591331947 absolute error = 8e-31 relative error = 6.6108268238479597338140275260986e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.55 y[1] (closed_form) = 1.2122479738267430577177549975797 y[1] (numeric) = 1.2122479738267430577177549975804 absolute error = 7e-31 relative error = 5.7743961228517212731359367855623e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.54 y[1] (closed_form) = 1.2143811014269779541881664116833 y[1] (numeric) = 1.2143811014269779541881664116839 absolute error = 6e-31 relative error = 4.9407883513252997319779599543091e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.53 y[1] (closed_form) = 1.2165356673160070618139345231369 y[1] (numeric) = 1.2165356673160070618139345231375 absolute error = 6e-31 relative error = 4.9320378852825210254331651024512e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop memory used=1539.6MB, alloc=40.3MB, time=16.25 x[1] = -1.52 y[1] (closed_form) = 1.2187118869522147610649287664188 y[1] (numeric) = 1.2187118869522147610649287664195 absolute error = 7e-31 relative error = 5.7437693641487123621153195434104e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.51 y[1] (closed_form) = 1.2209099779593781951196459967695 y[1] (numeric) = 1.2209099779593781951196459967703 absolute error = 8e-31 relative error = 6.5524896547828638977976537255637e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.5 y[1] (closed_form) = 1.223130160148429828933280470764 y[1] (numeric) = 1.223130160148429828933280470765 absolute error = 1.0e-30 relative error = 8.1757447619364365960721717865626e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.49 y[1] (closed_form) = 1.2253726555394387256606070068809 y[1] (numeric) = 1.2253726555394387256606070068817 absolute error = 8e-31 relative error = 6.5286261806439659882886346179275e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.48 y[1] (closed_form) = 1.2276376883838127385796374057948 y[1] (numeric) = 1.2276376883838127385796374057957 absolute error = 9e-31 relative error = 7.3311532263631596843274913058988e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.47 y[1] (closed_form) = 1.2299254851867238387537443843114 y[1] (numeric) = 1.2299254851867238387537443843123 absolute error = 9e-31 relative error = 7.3175164742875827422807303525533e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.46 y[1] (closed_form) = 1.2322362747297588209837070706824 y[1] (numeric) = 1.2322362747297588209837070706832 absolute error = 8e-31 relative error = 6.4922613982894444287932572036688e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.45 y[1] (closed_form) = 1.234570288093797653139148917061 y[1] (numeric) = 1.2345702880937976531391489170618 absolute error = 8e-31 relative error = 6.4799874718774961987152602799100e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.44 y[1] (closed_form) = 1.2369277586821217567233665275514 y[1] (numeric) = 1.2369277586821217567233665275522 absolute error = 8e-31 relative error = 6.4676372115082600833965357193139e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.43 y[1] (closed_form) = 1.2393089222437545295188628493952 y[1] (numeric) = 1.239308922243754529518862849396 absolute error = 8e-31 relative error = 6.4552105261342685591163122842241e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1580.0MB, alloc=40.3MB, time=16.67 TOP MAIN SOLVE Loop x[1] = -1.42 y[1] (closed_form) = 1.2417140168970364443852997809855 y[1] (numeric) = 1.2417140168970364443852997809862 absolute error = 7e-31 relative error = 5.6373689148589546346287739452928e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.41 y[1] (closed_form) = 1.2441432831534370817393959731224 y[1] (numeric) = 1.2441432831534370817393959731229 absolute error = 5e-31 relative error = 4.0188297181711043293365323605415e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.4 y[1] (closed_form) = 1.2465969639416064769398612398338 y[1] (numeric) = 1.2465969639416064769398612398343 absolute error = 5e-31 relative error = 4.0109194427929087407717179577595e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.39 y[1] (closed_form) = 1.2490753046316681877321489284998 y[1] (numeric) = 1.2490753046316681877321489285005 absolute error = 7e-31 relative error = 5.6041457020593207089724651624305e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.38 y[1] (closed_form) = 1.2515785530597565110800150148691 y[1] (numeric) = 1.2515785530597565110800150148697 absolute error = 6e-31 relative error = 4.7939460014968237576092128626240e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.37 y[1] (closed_form) = 1.2541069595528003031260148277283 y[1] (numeric) = 1.254106959552800303126014827729 absolute error = 7e-31 relative error = 5.5816610749820869671158762354052e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.36 y[1] (closed_form) = 1.2566607769535558806835867050428 y[1] (numeric) = 1.2566607769535558806835867050435 absolute error = 7e-31 relative error = 5.5703178840113575920380415636982e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.35 y[1] (closed_form) = 1.2592402606458915075717326107116 y[1] (numeric) = 1.2592402606458915075717326107122 absolute error = 6e-31 relative error = 4.7647777691943160262449091427019e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.34 y[1] (closed_form) = 1.2618456685803259942619996555144 y[1] (numeric) = 1.2618456685803259942619996555149 absolute error = 5e-31 relative error = 3.9624497072018219536772489501000e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1620.5MB, alloc=40.3MB, time=17.09 TOP MAIN SOLVE Loop x[1] = -1.33 y[1] (closed_form) = 1.2644772612998239647190094577137 y[1] (numeric) = 1.2644772612998239647190094577143 absolute error = 6e-31 relative error = 4.7450438087216201450566810152153e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.32 y[1] (closed_form) = 1.2671353019658503699827155236038 y[1] (numeric) = 1.2671353019658503699827155236045 absolute error = 7e-31 relative error = 5.5242719456557701073811680487637e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.31 y[1] (closed_form) = 1.2698200563846868539654590407689 y[1] (numeric) = 1.2698200563846868539654590407696 absolute error = 7e-31 relative error = 5.5125920911422258172803864601038e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.3 y[1] (closed_form) = 1.2725317930340126031223331675634 y[1] (numeric) = 1.272531793034012603122333167564 absolute error = 6e-31 relative error = 4.7150098982553516756125308335504e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.29 y[1] (closed_form) = 1.2752707830897523381019736371362 y[1] (numeric) = 1.2752707830897523381019736371369 absolute error = 7e-31 relative error = 5.4890303242423979335270400531286e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.28 y[1] (closed_form) = 1.2780373004531941321993141560141 y[1] (numeric) = 1.2780373004531941321993141560148 absolute error = 7e-31 relative error = 5.4771484349617874752878191069150e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.27 y[1] (closed_form) = 1.2808316217783797684147501301548 y[1] (numeric) = 1.2808316217783797684147501301554 absolute error = 6e-31 relative error = 4.6844564874727697280452850834816e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.26 y[1] (closed_form) = 1.2836540264997703741782420084759 y[1] (numeric) = 1.2836540264997703741782420084766 absolute error = 7e-31 relative error = 5.4531827544586852831183707453014e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.25 y[1] (closed_form) = 1.2865047968601901003248854266478 y[1] (numeric) = 1.2865047968601901003248854266486 absolute error = 8e-31 relative error = 6.2183988893975291759961563812925e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1661.0MB, alloc=40.3MB, time=17.52 TOP MAIN SOLVE Loop x[1] = -1.24 y[1] (closed_form) = 1.2893842179390506387131321849311 y[1] (numeric) = 1.2893842179390506387131321849318 absolute error = 7e-31 relative error = 5.4289480998835142552888411790924e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.23 y[1] (closed_form) = 1.2922925776808594009609443919072 y[1] (numeric) = 1.2922925776808594009609443919078 absolute error = 6e-31 relative error = 4.6429114456167228254710355357062e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.22 y[1] (closed_form) = 1.2952301669240142091415122843203 y[1] (numeric) = 1.2952301669240142091415122843209 absolute error = 6e-31 relative error = 4.6323812965607024472409711067595e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.21 y[1] (closed_form) = 1.298197279429887377931600950376 y[1] (numeric) = 1.2981972794298873779316009503765 absolute error = 5e-31 relative error = 3.8514947452330093990702642433979e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.2 y[1] (closed_form) = 1.3011942119122020966449776070832 y[1] (numeric) = 1.3011942119122020966449776070838 absolute error = 6e-31 relative error = 4.6111487009941058575854759147808e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.19 y[1] (closed_form) = 1.3042212640667040488136031743295 y[1] (numeric) = 1.30422126406670404881360317433 absolute error = 5e-31 relative error = 3.8337053211427139659958236764620e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.18 y[1] (closed_form) = 1.3072787386011312365032726969182 y[1] (numeric) = 1.3072787386011312365032726969187 absolute error = 5e-31 relative error = 3.8247390188188235524680633311346e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.17 y[1] (closed_form) = 1.3103669412654850063711111154575 y[1] (numeric) = 1.3103669412654850063711111154581 absolute error = 6e-31 relative error = 4.5788700943611325767001661280881e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.16 y[1] (closed_form) = 1.313486180882605304592756074811 y[1] (numeric) = 1.3134861808826053045927560748116 absolute error = 6e-31 relative error = 4.5679962890574625185000872033063e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1701.4MB, alloc=40.3MB, time=17.94 TOP MAIN SOLVE Loop x[1] = -1.15 y[1] (closed_form) = 1.3166367693790532182101999524295 y[1] (numeric) = 1.3166367693790532182101999524302 absolute error = 7e-31 relative error = 5.3165764186437775221000354914782e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.14 y[1] (closed_form) = 1.3198190218163038911801614276738 y[1] (numeric) = 1.3198190218163038911801614276746 absolute error = 8e-31 relative error = 6.0614371120296388722119846743975e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.13 y[1] (closed_form) = 1.3230332564222529344405856126403 y[1] (numeric) = 1.323033256422252934440585612641 absolute error = 7e-31 relative error = 5.2908722936635794196923510819047e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.12 y[1] (closed_form) = 1.3262797946230394806625348237426 y[1] (numeric) = 1.3262797946230394806625348237432 absolute error = 6e-31 relative error = 4.5239322986936884375616273533012e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.11 y[1] (closed_form) = 1.3295589610751890660194644838161 y[1] (numeric) = 1.3295589610751890660194644838166 absolute error = 5e-31 relative error = 3.7606455571978507938649025411787e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.1 y[1] (closed_form) = 1.3328710836980795532888469064313 y[1] (numeric) = 1.3328710836980795532888469064318 absolute error = 5e-31 relative error = 3.7513005279755880210498842120604e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.09 y[1] (closed_form) = 1.336216493706733342905508150893 y[1] (numeric) = 1.3362164937067333429055081508935 absolute error = 5e-31 relative error = 3.7419086080353211301039529222498e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.08 y[1] (closed_form) = 1.3395955256449391512151102152476 y[1] (numeric) = 1.3395955256449391512151102152481 absolute error = 5e-31 relative error = 3.7324699166883108391953665779536e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.07 y[1] (closed_form) = 1.3430085174187066681332054893988 y[1] (numeric) = 1.3430085174187066681332054893993 absolute error = 5e-31 relative error = 3.7229845791373797604576795274039e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.06 y[1] (closed_form) = 1.3464558103300574397035083480901 y[1] (numeric) = 1.3464558103300574397035083480908 absolute error = 7e-31 relative error = 5.1988338171188003718278369639521e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1741.9MB, alloc=40.3MB, time=18.36 TOP MAIN SOLVE Loop x[1] = -1.05 y[1] (closed_form) = 1.3499377491111553546717988735768 y[1] (numeric) = 1.3499377491111553546717988735776 absolute error = 8e-31 relative error = 5.9261991934572319503271650165144e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.04 y[1] (closed_form) = 1.353454681958780148152558265309 y[1] (numeric) = 1.3534546819587801481525582653098 absolute error = 8e-31 relative error = 5.9108000486739919543949631426191e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.03 y[1] (closed_form) = 1.3570069605691473697674306156514 y[1] (numeric) = 1.3570069605691473697674306156521 absolute error = 7e-31 relative error = 5.1584112708339416277026264841960e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.02 y[1] (closed_form) = 1.360594940173078298281341634654 y[1] (numeric) = 1.3605949401730782982813416346547 absolute error = 7e-31 relative error = 5.1448081962656316746308388931252e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1.01 y[1] (closed_form) = 1.3642189795715233197570462956374 y[1] (numeric) = 1.3642189795715233197570462956381 absolute error = 7e-31 relative error = 5.1311410446720029365662550975652e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -1 y[1] (closed_form) = 1.3678794411714423215955237701615 y[1] (numeric) = 1.3678794411714423215955237701621 absolute error = 6e-31 relative error = 4.3863514717800292755069554509309e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.99 y[1] (closed_form) = 1.3715766910220456905315241199082 y[1] (numeric) = 1.3715766910220456905315241199089 absolute error = 7e-31 relative error = 5.1036154564451454891743323645501e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.98 y[1] (closed_form) = 1.3753110988513995387142672324775 y[1] (numeric) = 1.3753110988513995387142672324782 absolute error = 7e-31 relative error = 5.0897575143879067280548192341887e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.97 y[1] (closed_form) = 1.3790830381033988184264065277403 y[1] (numeric) = 1.379083038103398818426406527741 absolute error = 7e-31 relative error = 5.0758364845287615704646792674602e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1782.4MB, alloc=40.3MB, time=18.77 TOP MAIN SOLVE Loop x[1] = -0.96 y[1] (closed_form) = 1.3828928859751120227835403627544 y[1] (numeric) = 1.3828928859751120227835403627552 absolute error = 8e-31 relative error = 5.7849744409951186285047443931325e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.95 y[1] (closed_form) = 1.386741023454501206915461774036 y[1] (numeric) = 1.3867410234545012069154617740366 absolute error = 6e-31 relative error = 4.3266910681371785505917811839162e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.94 y[1] (closed_form) = 1.3906278353585211016626981379217 y[1] (numeric) = 1.3906278353585211016626981379221 absolute error = 4e-31 relative error = 2.8763986296655354913640405724237e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.93 y[1] (closed_form) = 1.3945537103716011297314597702349 y[1] (numeric) = 1.3945537103716011297314597702353 absolute error = 4e-31 relative error = 2.8683011419718901004058204815604e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.92 y[1] (closed_form) = 1.3985190410845141725406814138044 y[1] (numeric) = 1.3985190410845141725406814138047 absolute error = 3e-31 relative error = 2.1451263171029692289436645481855e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.91 y[1] (closed_form) = 1.4025242240336359746702320649927 y[1] (numeric) = 1.402524224033635974670232064993 absolute error = 3e-31 relative error = 2.1390004882568449910476403595396e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.9 y[1] (closed_form) = 1.4065696597405991118834542396456 y[1] (numeric) = 1.4065696597405991118834542396459 absolute error = 3e-31 relative error = 2.1328485078750118903892947104010e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.89 y[1] (closed_form) = 1.4106557527523454881538800158902 y[1] (numeric) = 1.4106557527523454881538800158904 absolute error = 2e-31 relative error = 1.4177803451322398564511779757216e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.88 y[1] (closed_form) = 1.4147829116815813669792037174992 y[1] (numeric) = 1.4147829116815813669792037174994 absolute error = 2e-31 relative error = 1.4136444421871351601811498675116e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1822.8MB, alloc=40.3MB, time=19.19 TOP MAIN SOLVE Loop x[1] = -0.87 y[1] (closed_form) = 1.4189515492476389825193552735605 y[1] (numeric) = 1.4189515492476389825193552735605 absolute error = 0 relative error = 0 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.86 y[1] (closed_form) = 1.4231620823177488167538395179062 y[1] (numeric) = 1.4231620823177488167538395179062 absolute error = 0 relative error = 0 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.85 y[1] (closed_form) = 1.4274149319487266699204508411764 y[1] (numeric) = 1.4274149319487266699204508411764 absolute error = 0 relative error = 0 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.84 y[1] (closed_form) = 1.4317105234290796929771464081439 y[1] (numeric) = 1.4317105234290796929771464081438 absolute error = 1e-31 relative error = 6.9846521600253877547452685305925e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.83 y[1] (closed_form) = 1.4360492863215355927254126049699 y[1] (numeric) = 1.4360492863215355927254126049698 absolute error = 1e-31 relative error = 6.9635492982383412771797471191198e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.82 y[1] (closed_form) = 1.4404316545059992625510781754405 y[1] (numeric) = 1.4404316545059992625510781754404 absolute error = 1e-31 relative error = 6.9423634010803050838063370332925e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.81 y[1] (closed_form) = 1.4448580662229411344814454391058 y[1] (numeric) = 1.4448580662229411344814454391059 absolute error = 1e-31 relative error = 6.9210950430178816050265833174363e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.8 y[1] (closed_form) = 1.4493289641172215914301023850156 y[1] (numeric) = 1.4493289641172215914301023850158 absolute error = 2e-31 relative error = 1.3799489622552248852677481238968e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.79 y[1] (closed_form) = 1.4538447952823558221071605875315 y[1] (numeric) = 1.4538447952823558221071605875317 absolute error = 2e-31 relative error = 1.3756626611656807825655419466102e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1863.2MB, alloc=40.3MB, time=19.61 TOP MAIN SOLVE Loop x[1] = -0.78 y[1] (closed_form) = 1.4584060113052235451172974700586 y[1] (numeric) = 1.458406011305223545117297470059 absolute error = 4e-31 relative error = 2.7427204557530153646831992078330e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.77 y[1] (closed_form) = 1.4630130683112280732552709485309 y[1] (numeric) = 1.4630130683112280732552709485312 absolute error = 3e-31 relative error = 2.0505626812089468825155955959930e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.76 y[1] (closed_form) = 1.4676664270099092339429686851366 y[1] (numeric) = 1.4676664270099092339429686851369 absolute error = 3e-31 relative error = 2.0440612013670766615975116363683e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.75 y[1] (closed_form) = 1.4723665527410147071380465509433 y[1] (numeric) = 1.4723665527410147071380465509435 absolute error = 2e-31 relative error = 1.3583573983507859463193602315531e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.74 y[1] (closed_form) = 1.4771139155210343878863400708347 y[1] (numeric) = 1.477113915521034387886340070835 absolute error = 3e-31 relative error = 2.0309875687155689920702679639577e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.73 y[1] (closed_form) = 1.4819089900902024269930828566272 y[1] (numeric) = 1.4819089900902024269930828566273 absolute error = 1e-31 relative error = 6.7480527258231352430444901184653e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.72 y[1] (closed_form) = 1.4867522559599716500561676479956 y[1] (numeric) = 1.4867522559599716500561676479957 absolute error = 1e-31 relative error = 6.7260701706776044673704233794290e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.71 y[1] (closed_form) = 1.4916441974609651023429154350493 y[1] (numeric) = 1.4916441974609651023429154350494 absolute error = 1e-31 relative error = 6.7040115980886858956345048867835e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.7 y[1] (closed_form) = 1.4965853037914095147048000933975 y[1] (numeric) = 1.4965853037914095147048000933975 absolute error = 0 relative error = 0 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1903.6MB, alloc=40.3MB, time=20.02 TOP MAIN SOLVE Loop x[1] = -0.69 y[1] (closed_form) = 1.5015760690660555339170813603031 y[1] (numeric) = 1.5015760690660555339170813603029 absolute error = 2e-31 relative error = 1.3319338535036405126436397664060e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.68 y[1] (closed_form) = 1.5066169923655896095071471097274 y[1] (numeric) = 1.5066169923655896095071471097272 absolute error = 2e-31 relative error = 1.3274773948087053418831482688196e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.67 y[1] (closed_form) = 1.511708577786542478301424470106 y[1] (numeric) = 1.5117085777865424783014244701057 absolute error = 3e-31 relative error = 1.9845094776088572773036956610802e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.66 y[1] (closed_form) = 1.5168513344916992375809050183918 y[1] (numeric) = 1.5168513344916992375809050183915 absolute error = 3e-31 relative error = 1.9777811653541562622863392140578e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.65 y[1] (closed_form) = 1.5220457767610160478946081372088 y[1] (numeric) = 1.5220457767610160478946081372086 absolute error = 2e-31 relative error = 1.3140209253469975718664666444707e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.64 y[1] (closed_form) = 1.5272924240430485572436946085663 y[1] (numeric) = 1.5272924240430485572436946085661 absolute error = 2e-31 relative error = 1.3095069212126384621817278440586e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.63 y[1] (closed_form) = 1.532591801006897189521506018502 y[1] (numeric) = 1.5325918010068971895215060185018 absolute error = 2e-31 relative error = 1.3049789243854889401414344450334e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.62 y[1] (closed_form) = 1.5379444375946744917816618612558 y[1] (numeric) = 1.5379444375946744917816618612558 absolute error = 0 relative error = 0 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.61 y[1] (closed_form) = 1.5433508690744997871126640878166 y[1] (numeric) = 1.5433508690744997871126640878165 absolute error = 1e-31 relative error = 6.4794080208065023494238414897327e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1944.0MB, alloc=40.3MB, time=20.42 TOP MAIN SOLVE Loop x[1] = -0.6 y[1] (closed_form) = 1.5488116360940264326284589172326 y[1] (numeric) = 1.5488116360940264326284589172326 absolute error = 0 relative error = 0 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.59 y[1] (closed_form) = 1.5543272847345070353453611638809 y[1] (numeric) = 1.5543272847345070353453611638809 absolute error = 0 relative error = 0 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.58 y[1] (closed_form) = 1.5598983665654020325119832698729 y[1] (numeric) = 1.559898366565402032511983269873 absolute error = 1e-31 relative error = 6.4106740633481706299903193393552e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.57 y[1] (closed_form) = 1.5655254386995370972957093374648 y[1] (numeric) = 1.5655254386995370972957093374649 absolute error = 1e-31 relative error = 6.3876317514884192038084809758594e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.56 y[1] (closed_form) = 1.5712090638488148856122474668313 y[1] (numeric) = 1.5712090638488148856122474668315 absolute error = 2e-31 relative error = 1.2729050805631326858293178537671e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.55 y[1] (closed_form) = 1.5769498103804866953193699648816 y[1] (numeric) = 1.5769498103804866953193699648817 absolute error = 1e-31 relative error = 6.3413559101080068273821909239451e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.54 y[1] (closed_form) = 1.5827482523739896649876540047778 y[1] (numeric) = 1.5827482523739896649876540047779 absolute error = 1e-31 relative error = 6.3181241773610165108925714245166e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.53 y[1] (closed_form) = 1.5886049696783551960154643004118 y[1] (numeric) = 1.588604969678355196015464300412 absolute error = 2e-31 relative error = 1.2589662239347897446906870273212e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.52 y[1] (closed_form) = 1.5945205479701943389782298053389 y[1] (numeric) = 1.5945205479701943389782298053392 absolute error = 3e-31 relative error = 1.8814432989395867360123065460775e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=1984.4MB, alloc=40.3MB, time=20.84 TOP MAIN SOLVE Loop x[1] = -0.51 y[1] (closed_form) = 1.6004955788122659427989706801995 y[1] (numeric) = 1.6004955788122659427989706801998 absolute error = 3e-31 relative error = 1.8744194234052878713089458081169e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.5 y[1] (closed_form) = 1.6065306597126334236037995349912 y[1] (numeric) = 1.6065306597126334236037995349916 absolute error = 4e-31 relative error = 2.4898373248074182585556022629820e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.49 y[1] (closed_form) = 1.612626394184416068988579968019 y[1] (numeric) = 1.6126263941844160689885799680194 absolute error = 4e-31 relative error = 2.4804257293723605255409319412298e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.48 y[1] (closed_form) = 1.6187833918061408528769619869106 y[1] (numeric) = 1.6187833918061408528769619869109 absolute error = 3e-31 relative error = 1.8532436243077469307391483905157e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.47 y[1] (closed_form) = 1.6250022682827007962015734619291 y[1] (numeric) = 1.6250022682827007962015734619294 absolute error = 3e-31 relative error = 1.8461512691735465111954496278709e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.46 y[1] (closed_form) = 1.6312836455069259692952345339618 y[1] (numeric) = 1.6312836455069259692952345339619 absolute error = 1e-31 relative error = 6.1301417613933547072915558647686e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.45 y[1] (closed_form) = 1.6376281516217732931437434383122 y[1] (numeric) = 1.6376281516217732931437434383126 absolute error = 4e-31 relative error = 2.4425569357968879531910769320719e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.44 y[1] (closed_form) = 1.644036421083141358532184030009 y[1] (numeric) = 1.6440364210831413585321840300093 absolute error = 3e-31 relative error = 1.8247770922395432464283562768930e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.43 y[1] (closed_form) = 1.6505090947233165446190154984879 y[1] (numeric) = 1.6505090947233165446190154984882 absolute error = 3e-31 relative error = 1.8176210052952817326451371524414e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2024.8MB, alloc=40.3MB, time=21.27 TOP MAIN SOLVE Loop x[1] = -0.42 y[1] (closed_form) = 1.65704681981505678160267362234 y[1] (numeric) = 1.6570468198150567816026736223403 absolute error = 3e-31 relative error = 1.8104497495941788798922296456636e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.41 y[1] (closed_form) = 1.6636502501363193659103535378148 y[1] (numeric) = 1.6636502501363193659103535378151 absolute error = 3e-31 relative error = 1.8032636365451093127879327241309e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.4 y[1] (closed_form) = 1.6703200460356393007444329251478 y[1] (numeric) = 1.6703200460356393007444329251482 absolute error = 4e-31 relative error = 2.3947506404498080014763146376221e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.39 y[1] (closed_form) = 1.6770568744981646998750723870924 y[1] (numeric) = 1.6770568744981646998750723870928 absolute error = 4e-31 relative error = 2.3851307971871513477702549293200e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.38 y[1] (closed_form) = 1.6838614092123558582744019662858 y[1] (numeric) = 1.6838614092123558582744019662862 absolute error = 4e-31 relative error = 2.3754924117365708154199710896969e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.37 y[1] (closed_form) = 1.6907343306373546595549399642394 y[1] (numeric) = 1.6907343306373546595549399642399 absolute error = 5e-31 relative error = 2.9572948921639003573088353827621e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.36 y[1] (closed_form) = 1.6976763260710310572091292638382 y[1] (numeric) = 1.6976763260710310572091292638387 absolute error = 5e-31 relative error = 2.9452021702933254994034964990165e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.35 y[1] (closed_form) = 1.7046880897187134343548206990309 y[1] (numeric) = 1.7046880897187134343548206990313 absolute error = 4e-31 relative error = 2.3464703156693202311767091900789e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.34 y[1] (closed_form) = 1.711770322762609715079953510757 y[1] (numeric) = 1.7117703227626097150799535107574 absolute error = 4e-31 relative error = 2.3367620917416294164535000064361e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2065.2MB, alloc=40.3MB, time=21.69 TOP MAIN SOLVE Loop x[1] = -0.33 y[1] (closed_form) = 1.7189237334319261695554184761104 y[1] (numeric) = 1.7189237334319261695554184761108 absolute error = 4e-31 relative error = 2.3270375073673449612153524143628e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.32 y[1] (closed_form) = 1.7261490370736909248550475294236 y[1] (numeric) = 1.7261490370736909248550475294241 absolute error = 5e-31 relative error = 2.8966212607437472969148952355457e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.31 y[1] (closed_form) = 1.7334469562242892638928316633154 y[1] (numeric) = 1.7334469562242892638928316633159 absolute error = 5e-31 relative error = 2.8844263056602316633854625867287e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.3 y[1] (closed_form) = 1.7408182206817178660668737793178 y[1] (numeric) = 1.7408182206817178660668737793184 absolute error = 6e-31 relative error = 3.4466551008699539229124275914079e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.29 y[1] (closed_form) = 1.7482635675785652150943529512748 y[1] (numeric) = 1.7482635675785652150943529512753 absolute error = 5e-31 relative error = 2.8599806646575931714686868430676e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.28 y[1] (closed_form) = 1.7557837414557254721391008071943 y[1] (numeric) = 1.7557837414557254721391008071948 absolute error = 5e-31 relative error = 2.8477311196961450794931720976937e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.27 y[1] (closed_form) = 1.7633794943368531856805312195579 y[1] (numeric) = 1.7633794943368531856805312195584 absolute error = 5e-31 relative error = 2.8354645248272716626746708865119e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.26 y[1] (closed_form) = 1.7710515858035662836569559954336 y[1] (numeric) = 1.7710515858035662836569559954341 absolute error = 5e-31 relative error = 2.8231814590151458331971603393008e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.25 y[1] (closed_form) = 1.7788007830714048682451702669783 y[1] (numeric) = 1.778800783071404868245170266979 absolute error = 7e-31 relative error = 3.9352355062005867281912654653207e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.24 y[1] (closed_form) = 1.7866278610665534092190847475156 y[1] (numeric) = 1.7866278610665534092190847475163 absolute error = 7e-31 relative error = 3.9179955448703506136489677404181e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2105.6MB, alloc=40.3MB, time=22.11 TOP MAIN SOLVE Loop x[1] = -0.23 y[1] (closed_form) = 1.7945336025033340081706760906637 y[1] (numeric) = 1.7945336025033340081706760906645 absolute error = 8e-31 relative error = 4.4579828367884446169335040626583e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.22 y[1] (closed_form) = 1.8025187979624784829842553829934 y[1] (numeric) = 1.8025187979624784829842553829942 absolute error = 8e-31 relative error = 4.4382338808577181163358148443138e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.21 y[1] (closed_form) = 1.8105842459701870998377291515507 y[1] (numeric) = 1.8105842459701870998377291515514 absolute error = 7e-31 relative error = 3.8661553670202768924174120559586e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.2 y[1] (closed_form) = 1.818730753077981858669935508619 y[1] (numeric) = 1.8187307530779818586699355086198 absolute error = 8e-31 relative error = 4.3986719784998232684732203347135e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.19 y[1] (closed_form) = 1.8269591339433623175091467937083 y[1] (numeric) = 1.8269591339433623175091467937092 absolute error = 9e-31 relative error = 4.9262185632878034604511529613421e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.18 y[1] (closed_form) = 1.8352702114112720213123849740188 y[1] (numeric) = 1.8352702114112720213123849740197 absolute error = 9e-31 relative error = 4.9039100313622204861622844647538e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.17 y[1] (closed_form) = 1.8436648165963836820263226519154 y[1] (numeric) = 1.8436648165963836820263226519164 absolute error = 1.0e-30 relative error = 5.4239794077435099187655012021973e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.16 y[1] (closed_form) = 1.8521437889662113384563469814686 y[1] (numeric) = 1.8521437889662113384563469814696 absolute error = 1.0e-30 relative error = 5.3991488455556568091951121252524e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.15 y[1] (closed_form) = 1.8607079764250578072290337645433 y[1] (numeric) = 1.8607079764250578072290337645444 absolute error = 1.1e-30 relative error = 5.9117282987812450438951726306166e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2145.9MB, alloc=40.3MB, time=22.53 TOP MAIN SOLVE Loop x[1] = -0.14 y[1] (closed_form) = 1.8693582353988058196630844161712 y[1] (numeric) = 1.8693582353988058196630844161722 absolute error = 1.0e-30 relative error = 5.3494294515821449294505814937512e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.13 y[1] (closed_form) = 1.8780954309205613237330724091574 y[1] (numeric) = 1.8780954309205613237330724091585 absolute error = 1.1e-30 relative error = 5.8569973702605062766868371085051e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.12 y[1] (closed_form) = 1.8869204367171575155275652287698 y[1] (numeric) = 1.8869204367171575155275652287711 absolute error = 1.3e-30 relative error = 6.8895326729394327600195490042371e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.11 y[1] (closed_form) = 1.8958341352965282506768545828765 y[1] (numeric) = 1.8958341352965282506768545828779 absolute error = 1.4e-30 relative error = 7.3846122608243119561569211679385e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.1 y[1] (closed_form) = 1.9048374180359595731642490594464 y[1] (numeric) = 1.9048374180359595731642490594479 absolute error = 1.5e-30 relative error = 7.8746878121840997914878977390623e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.09 y[1] (closed_form) = 1.9139311852712281867473535464995 y[1] (numeric) = 1.913931185271228186747353546501 absolute error = 1.5e-30 relative error = 7.8372723718770018502680231269801e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.08 y[1] (closed_form) = 1.9231163463866357829107598495724 y[1] (numeric) = 1.9231163463866357829107598495739 absolute error = 1.5e-30 relative error = 7.7998401023337267788245705668837e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.07 y[1] (closed_form) = 1.932393819905948228857972632485 y[1] (numeric) = 1.9323938199059482288579726324864 absolute error = 1.4e-30 relative error = 7.2449000073294561030195296334089e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.06 y[1] (closed_form) = 1.9417645335842487095371527832712 y[1] (numeric) = 1.9417645335842487095371527832727 absolute error = 1.5e-30 relative error = 7.7249325242911510843942862524276e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2186.3MB, alloc=40.3MB, time=22.94 TOP MAIN SOLVE Loop x[1] = -0.05 y[1] (closed_form) = 1.9512294245007140090914253197796 y[1] (numeric) = 1.9512294245007140090914253197813 absolute error = 1.7e-30 relative error = 8.7124557402315758422455226462008e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.04 y[1] (closed_form) = 1.9607894391523232094392106913232 y[1] (numeric) = 1.9607894391523232094392106913249 absolute error = 1.7e-30 relative error = 8.6699773369594129205574128866278e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.03 y[1] (closed_form) = 1.9704455335485081769325283519592 y[1] (numeric) = 1.9704455335485081769325283519608 absolute error = 1.6e-30 relative error = 8.1199910008099262388681367373351e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.02 y[1] (closed_form) = 1.9801986733067553022208141042253 y[1] (numeric) = 1.9801986733067553022208141042268 absolute error = 1.5e-30 relative error = 7.5749975000999959525449668978163e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = -0.01 y[1] (closed_form) = 1.99004983374916805357390597718 y[1] (numeric) = 1.9900498337491680535739059771816 absolute error = 1.6e-30 relative error = 8.0399996666699999662701829771376e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0 y[1] (closed_form) = 2 y[1] (numeric) = 2.0000000000000000000000000000016 absolute error = 1.6e-30 relative error = 8.0000000000000000000000000000000e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.01 y[1] (closed_form) = 2.0100501670841680575421654569029 y[1] (numeric) = 2.0100501670841680575421654569044 absolute error = 1.5e-30 relative error = 7.4625003124968750316217034589335e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.02 y[1] (closed_form) = 2.0202013400267558101601439204832 y[1] (numeric) = 2.0202013400267558101601439204847 absolute error = 1.5e-30 relative error = 7.4250024999000040474550331021835e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.03 y[1] (closed_form) = 2.0304545339535168556124399538312 y[1] (numeric) = 2.0304545339535168556124399538328 absolute error = 1.6e-30 relative error = 7.8800089991900737611318632626649e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2226.7MB, alloc=40.3MB, time=23.36 TOP MAIN SOLVE Loop x[1] = 0.04 y[1] (closed_form) = 2.0408107741923882267570447579169 y[1] (numeric) = 2.0408107741923882267570447579186 absolute error = 1.7e-30 relative error = 8.3300226630405870794425871133723e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.05 y[1] (closed_form) = 2.0512710963760240396975176363356 y[1] (numeric) = 2.0512710963760240396975176363375 absolute error = 1.9e-30 relative error = 9.2625494668000034704314746895407e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.06 y[1] (closed_form) = 2.0618365465453596222246848771684 y[1] (numeric) = 2.0618365465453596222246848771702 absolute error = 1.8e-30 relative error = 8.7300809708506186987268564970865e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.07 y[1] (closed_form) = 2.0725081812542164790531039498891 y[1] (numeric) = 2.0725081812542164790531039498908 absolute error = 1.7e-30 relative error = 8.2026214196713747320477140165749e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.08 y[1] (closed_form) = 2.0832870676749585544359877586749 y[1] (numeric) = 2.0832870676749585544359877586765 absolute error = 1.6e-30 relative error = 7.6801705575106914359204580619906e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.09 y[1] (closed_form) = 2.0941742837052103578728976235449 y[1] (numeric) = 2.0941742837052103578728976235466 absolute error = 1.7e-30 relative error = 8.1177579785393979030295737894226e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.1 y[1] (closed_form) = 2.1051709180756476248117078264902 y[1] (numeric) = 2.105170918075647624811707826492 absolute error = 1.8e-30 relative error = 8.5503746253790802502145227131256e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.11 y[1] (closed_form) = 2.116278070458871291500737769053 y[1] (numeric) = 2.1162780704588712915007377690549 absolute error = 1.9e-30 relative error = 8.9780262174527194880727498435121e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.12 y[1] (closed_form) = 2.1274968515793756714792655693748 y[1] (numeric) = 2.1274968515793756714792655693767 absolute error = 1.9e-30 relative error = 8.9306830164731367353560437630384e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2267.2MB, alloc=40.3MB, time=23.78 TOP MAIN SOLVE Loop x[1] = 0.13 y[1] (closed_form) = 2.138828383324621830615712602619 y[1] (numeric) = 2.1388283833246218306157126026208 absolute error = 1.8e-30 relative error = 8.4158224850282624563306301860823e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.14 y[1] (closed_form) = 2.1502737988572272681235642576211 y[1] (numeric) = 2.150273798857227268123564257623 absolute error = 1.9e-30 relative error = 8.8360840419939246340438951618728e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.15 y[1] (closed_form) = 2.1618342427282831226166202143317 y[1] (numeric) = 2.1618342427282831226166202143336 absolute error = 1.9e-30 relative error = 8.7888329384687585605447018198439e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.16 y[1] (closed_form) = 2.173510870991810235018611086892 y[1] (numeric) = 2.1735108709918102350186110868941 absolute error = 2.1e-30 relative error = 9.6617874243331207006902645369695e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.17 y[1] (closed_form) = 2.1853048513203655140288527643693 y[1] (numeric) = 2.1853048513203655140288527643715 absolute error = 2.2e-30 relative error = 1.0067245302964278178715897355166e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.18 y[1] (closed_form) = 2.1972173631218101648768239736005 y[1] (numeric) = 2.1972173631218101648768239736026 absolute error = 2.1e-30 relative error = 9.5575432601548188656213362489075e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.19 y[1] (closed_form) = 2.2092495976572514582858497035543 y[1] (numeric) = 2.2092495976572514582858497035565 absolute error = 2.2e-30 relative error = 9.9581324008520359855638483167195e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.2 y[1] (closed_form) = 2.2214027581601698339210719946397 y[1] (numeric) = 2.2214027581601698339210719946419 absolute error = 2.2e-30 relative error = 9.9036520591254860116986440795380e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.21 y[1] (closed_form) = 2.2336780599567432511313258071563 y[1] (numeric) = 2.2336780599567432511313258071585 absolute error = 2.2e-30 relative error = 9.8492259893648440524024192527014e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.22 y[1] (closed_form) = 2.2460767305873808195202647829927 y[1] (numeric) = 2.2460767305873808195202647829948 absolute error = 2.1e-30 relative error = 9.3496360627484899446184860336762e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2307.7MB, alloc=40.3MB, time=24.20 TOP MAIN SOLVE Loop x[1] = 0.23 y[1] (closed_form) = 2.258600009929477862811072376219 y[1] (numeric) = 2.2586000099294778628110723762212 absolute error = 2.2e-30 relative error = 9.7405471988317773034328638276895e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.24 y[1] (closed_form) = 2.2712491503214046916134410512278 y[1] (numeric) = 2.27124915032140469161344105123 absolute error = 2.2e-30 relative error = 9.6862997161217552142461013872575e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.25 y[1] (closed_form) = 2.2840254166877414840734205680624 y[1] (numeric) = 2.2840254166877414840734205680644 absolute error = 2.0e-30 relative error = 8.7564699822840379194535272419412e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.26 y[1] (closed_form) = 2.2969300866657717979985630881788 y[1] (numeric) = 2.2969300866657717979985630881807 absolute error = 1.9e-30 relative error = 8.2719104557424458338507907106570e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.27 y[1] (closed_form) = 2.3099644507332473639149892266262 y[1] (numeric) = 2.309964450733247363914989226628 absolute error = 1.8e-30 relative error = 7.7923277106218220143711848085572e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.28 y[1] (closed_form) = 2.3231298123374369356421517730364 y[1] (numeric) = 2.3231298123374369356421517730381 absolute error = 1.7e-30 relative error = 7.3177141930331067297232148678416e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.29 y[1] (closed_form) = 2.3364274880254721033778956250755 y[1] (numeric) = 2.3364274880254721033778956250771 absolute error = 1.6e-30 relative error = 6.8480618730957018513002021021836e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.3 y[1] (closed_form) = 2.349858807576003103983744313328 y[1] (numeric) = 2.3498588075760031039837443133297 absolute error = 1.7e-30 relative error = 7.2344772142017972184147884910109e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.31 y[1] (closed_form) = 2.3634251141321777941611551872143 y[1] (numeric) = 2.3634251141321777941611551872161 absolute error = 1.8e-30 relative error = 7.6160652996231660118123346877771e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2348.1MB, alloc=40.3MB, time=24.61 TOP MAIN SOLVE Loop x[1] = 0.32 y[1] (closed_form) = 2.3771277643359570845268770678281 y[1] (numeric) = 2.37712776433595708452687706783 absolute error = 1.9e-30 relative error = 7.9928392091737602717233981049265e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.33 y[1] (closed_form) = 2.3909681284637802662427478049531 y[1] (numeric) = 2.3909681284637802662427478049549 absolute error = 1.8e-30 relative error = 7.5283312168469476745309141353675e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.34 y[1] (closed_form) = 2.4049475905635937968456495337223 y[1] (numeric) = 2.404947590563593796845649533724 absolute error = 1.7e-30 relative error = 7.0687611100980749800726249726463e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.35 y[1] (closed_form) = 2.4190675485932572482703956619399 y[1] (numeric) = 2.4190675485932572482703956619416 absolute error = 1.7e-30 relative error = 7.0275011584053890174989859421646e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.36 y[1] (closed_form) = 2.4333294145603402577756905512456 y[1] (numeric) = 2.4333294145603402577756905512474 absolute error = 1.8e-30 relative error = 7.3972721869440282021474126035404e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.37 y[1] (closed_form) = 2.4477346146633244615847523355192 y[1] (numeric) = 2.447734614663324461584752335521 absolute error = 1.8e-30 relative error = 7.3537383882099587136881926220567e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.38 y[1] (closed_form) = 2.46228458943422453155163160907 y[1] (numeric) = 2.4622845894342245315516316090718 absolute error = 1.8e-30 relative error = 7.3102841471854313306101300963641e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.39 y[1] (closed_form) = 2.4769807938826425770757438765387 y[1] (numeric) = 2.4769807938826425770757438765405 absolute error = 1.8e-30 relative error = 7.2669114126578189350338528180603e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.4 y[1] (closed_form) = 2.4918246976412703178248529528372 y[1] (numeric) = 2.4918246976412703178248529528391 absolute error = 1.9e-30 relative error = 7.6249344578634119929875054712954e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2388.4MB, alloc=40.3MB, time=25.03 TOP MAIN SOLVE Loop x[1] = 0.41 y[1] (closed_form) = 2.5068177851128535776050298262424 y[1] (numeric) = 2.5068177851128535776050298262441 absolute error = 1.7e-30 relative error = 6.7815060595777138942017145632580e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.42 y[1] (closed_form) = 2.5219615556186337959494448003237 y[1] (numeric) = 2.5219615556186337959494448003254 absolute error = 1.7e-30 relative error = 6.7407847522996530139440320079060e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.43 y[1] (closed_form) = 2.5372575235482814017008534659144 y[1] (numeric) = 2.537257523548281401700853465916 absolute error = 1.6e-30 relative error = 6.3060213050918307592259351869791e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.44 y[1] (closed_form) = 2.5527072185113360420500796461917 y[1] (numeric) = 2.5527072185113360420500796461934 absolute error = 1.7e-30 relative error = 6.6595964773092549369059810976060e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.45 y[1] (closed_form) = 2.5683121854901688111795997746932 y[1] (numeric) = 2.5683121854901688111795997746948 absolute error = 1.6e-30 relative error = 6.2297722568124481872356922717127e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.46 y[1] (closed_form) = 2.5840739849944817748625620134736 y[1] (numeric) = 2.5840739849944817748625620134751 absolute error = 1.5e-30 relative error = 5.8047873579099679390626662028470e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.47 y[1] (closed_form) = 2.5999941932173602410984500463115 y[1] (numeric) = 2.599994193217360241098450046313 absolute error = 1.5e-30 relative error = 5.7692436541322674440227518606458e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.48 y[1] (closed_form) = 2.616074402192893382142499105688 y[1] (numeric) = 2.6160744021928933821424991056895 absolute error = 1.5e-30 relative error = 5.7337818784612653463042580474212e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.49 y[1] (closed_form) = 2.6323162199553789701224181313345 y[1] (numeric) = 2.6323162199553789701224181313359 absolute error = 1.4e-30 relative error = 5.3185099471967381606067382056958e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2428.7MB, alloc=40.3MB, time=25.45 TOP MAIN SOLVE Loop x[1] = 0.5 y[1] (closed_form) = 2.6487212707001281468486507878142 y[1] (numeric) = 2.6487212707001281468486507878154 absolute error = 1.2e-30 relative error = 4.5304880255777452243331932110538e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.51 y[1] (closed_form) = 2.6652911949458863084291607887622 y[1] (numeric) = 2.6652911949458863084291607887634 absolute error = 1.2e-30 relative error = 4.5023223063788485147642167675324e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.52 y[1] (closed_form) = 2.6820276496988863469125541946667 y[1] (numeric) = 2.6820276496988863469125541946678 absolute error = 1.1e-30 relative error = 4.1013745705548486346215426643825e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.53 y[1] (closed_form) = 2.6989323086185506544204144868253 y[1] (numeric) = 2.6989323086185506544204144868265 absolute error = 1.2e-30 relative error = 4.4462026563912615318558778360726e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.54 y[1] (closed_form) = 2.716006862184858460107349114715 y[1] (numeric) = 2.7160068621848584601073491147161 absolute error = 1.1e-30 relative error = 4.0500634049028818380181714330315e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.55 y[1] (closed_form) = 2.7332530178673952368219167671373 y[1] (numeric) = 2.7332530178673952368219167671385 absolute error = 1.2e-30 relative error = 4.3903729078703918071413708912658e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.56 y[1] (closed_form) = 2.7506725002961010825499764350019 y[1] (numeric) = 2.7506725002961010825499764350031 absolute error = 1.2e-30 relative error = 4.3625695166212038850240928773972e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.57 y[1] (closed_form) = 2.7682670514337351516208933928238 y[1] (numeric) = 2.7682670514337351516208933928251 absolute error = 1.3e-30 relative error = 4.6960787230650550350489747313827e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.58 y[1] (closed_form) = 2.7860384307500733822634435579423 y[1] (numeric) = 2.7860384307500733822634435579437 absolute error = 1.4e-30 relative error = 5.0250563113125611180135529249025e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2469.2MB, alloc=40.3MB, time=25.86 TOP MAIN SOLVE Loop x[1] = 0.59 y[1] (closed_form) = 2.8039884153978569404293370747409 y[1] (numeric) = 2.8039884153978569404293370747423 absolute error = 1.4e-30 relative error = 4.9928879602783754269602330340168e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.6 y[1] (closed_form) = 2.8221188003905089748753676681629 y[1] (numeric) = 2.8221188003905089748753676681641 absolute error = 1.2e-30 relative error = 4.2521243252904545650906723630574e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.61 y[1] (closed_form) = 2.8404313987816374553277937710156 y[1] (numeric) = 2.8404313987816374553277937710169 absolute error = 1.3e-30 relative error = 4.5767695729515469457490060633475e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.62 y[1] (closed_form) = 2.8589280418463420441623540602681 y[1] (numeric) = 2.8589280418463420441623540602693 absolute error = 1.2e-30 relative error = 4.1973774171140752460368664833258e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.63 y[1] (closed_form) = 2.8776105792643431324381749672586 y[1] (numeric) = 2.8776105792643431324381749672599 absolute error = 1.3e-30 relative error = 4.5176369914943218890806761072830e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.64 y[1] (closed_form) = 2.8964808793049513533417815912859 y[1] (numeric) = 2.8964808793049513533417815912872 absolute error = 1.3e-30 relative error = 4.4882050121178499958187690136190e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.65 y[1] (closed_form) = 2.9155408290138960701466981926821 y[1] (numeric) = 2.9155408290138960701466981926834 absolute error = 1.3e-30 relative error = 4.4588639852445157828679668109407e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.66 y[1] (closed_form) = 2.9347923344020315216931251510197 y[1] (numeric) = 2.9347923344020315216931251510211 absolute error = 1.4e-30 relative error = 4.7703545616806041093304170010636e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.67 y[1] (closed_form) = 2.9542373206359394961594960015662 y[1] (numeric) = 2.9542373206359394961594960015677 absolute error = 1.5e-30 relative error = 5.0774526119557136134815216945988e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2509.7MB, alloc=40.3MB, time=26.28 TOP MAIN SOLVE Loop x[1] = 0.68 y[1] (closed_form) = 2.9738777322304475935521277966183 y[1] (numeric) = 2.9738777322304475935521277966198 absolute error = 1.5e-30 relative error = 5.0439195389347099358763879838528e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.69 y[1] (closed_form) = 2.9937155332430823288996461769344 y[1] (numeric) = 2.9937155332430823288996461769359 absolute error = 1.5e-30 relative error = 5.0104960987226961551727017519548e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.7 y[1] (closed_form) = 3.0137527074704765216245493885831 y[1] (numeric) = 3.0137527074704765216245493885846 absolute error = 1.5e-30 relative error = 4.9771834174775084020381750555519e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.71 y[1] (closed_form) = 3.0339912586467506119945217716624 y[1] (numeric) = 3.0339912586467506119945217716639 absolute error = 1.5e-30 relative error = 4.9439826028669711565482426698250e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.72 y[1] (closed_form) = 3.0544332106438877429504601670086 y[1] (numeric) = 3.0544332106438877429504601670099 absolute error = 1.3e-30 relative error = 4.2561087781191141924184496067425e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.73 y[1] (closed_form) = 3.0750806076741226449863758349892 y[1] (numeric) = 3.0750806076741226449863758349906 absolute error = 1.4e-30 relative error = 4.5527261838476106597377138341483e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.74 y[1] (closed_form) = 3.0959355144943645631383178428338 y[1] (numeric) = 3.0959355144943645631383178428351 absolute error = 1.3e-30 relative error = 4.1990538688992010343621721561831e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.75 y[1] (closed_form) = 3.1170000166126746685453698198371 y[1] (numeric) = 3.1170000166126746685453698198384 absolute error = 1.3e-30 relative error = 4.1706769107198913489241584949045e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.76 y[1] (closed_form) = 3.138276220496818602495941263298 y[1] (numeric) = 3.1382762204968186024959412632992 absolute error = 1.2e-30 relative error = 3.8237551945316933536099534545269e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2550.1MB, alloc=40.3MB, time=26.70 TOP MAIN SOLVE Loop x[1] = 0.77 y[1] (closed_form) = 3.15976625378491500838755239034 y[1] (numeric) = 3.1597662537849150083875523903413 absolute error = 1.3e-30 relative error = 4.1142283814278968424324190840302e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.78 y[1] (closed_form) = 3.181472265498201116628849542537 y[1] (numeric) = 3.1814722654982011166288495425383 absolute error = 1.3e-30 relative error = 4.0861585188027000647796025745429e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.79 y[1] (closed_form) = 3.203396426255936659219646589984 y[1] (numeric) = 3.2033964262559366592196465899852 absolute error = 1.2e-30 relative error = 3.7460240330059153046067483203386e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.8 y[1] (closed_form) = 3.2255409284924676045795375313951 y[1] (numeric) = 3.2255409284924676045795375313962 absolute error = 1.1e-30 relative error = 3.4102807075962631310273853185672e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.81 y[1] (closed_form) = 3.2479079866764714191794502001334 y[1] (numeric) = 3.2479079866764714191794502001344 absolute error = 1.0e-30 relative error = 3.0789049569821183949734166825637e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.82 y[1] (closed_form) = 3.2704998375324057806850092252533 y[1] (numeric) = 3.2704998375324057806850092252542 absolute error = 9e-31 relative error = 2.7518729390277254245742966700367e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.83 y[1] (closed_form) = 3.2933187402641828876675637932731 y[1] (numeric) = 3.293318740264182887667563793274 absolute error = 9e-31 relative error = 2.7328056315854928505382275927922e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.84 y[1] (closed_form) = 3.3163669767810917335002471928655 y[1] (numeric) = 3.3163669767810917335002471928663 absolute error = 8e-31 relative error = 2.4122782719796897962037851755259e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.85 y[1] (closed_form) = 3.3396468519259909368547269375638 y[1] (numeric) = 3.3396468519259909368547269375645 absolute error = 7e-31 relative error = 2.0960300026821893492895856097474e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.86 y[1] (closed_form) = 3.3631606937057949482718564674462 y[1] (numeric) = 3.3631606937057949482718564674468 absolute error = 6e-31 relative error = 1.7840360739316110791273191946750e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2590.6MB, alloc=40.3MB, time=27.13 TOP MAIN SOLVE Loop x[1] = 0.87 y[1] (closed_form) = 3.3869108535242766816189579740184 y[1] (numeric) = 3.386910853524276681618957974019 absolute error = 6e-31 relative error = 1.7715258120114537085739779547011e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.88 y[1] (closed_form) = 3.4108997064172098508908849161329 y[1] (numeric) = 3.4108997064172098508908849161336 absolute error = 7e-31 relative error = 2.0522444523450269393659754637094e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.89 y[1] (closed_form) = 3.4351296512898745267844969337052 y[1] (numeric) = 3.4351296512898745267844969337059 absolute error = 7e-31 relative error = 2.0377687920371605024208770849743e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.9 y[1] (closed_form) = 3.4596031111569496638001265636025 y[1] (numeric) = 3.459603111156949663800126563603 absolute error = 5e-31 relative error = 1.4452524868749801826845088159983e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.91 y[1] (closed_form) = 3.4843225333848165873226590099968 y[1] (numeric) = 3.4843225333848165873226590099972 absolute error = 4e-31 relative error = 1.1479993489908733452698128539473e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.92 y[1] (closed_form) = 3.5092903899362976712328533227943 y[1] (numeric) = 3.5092903899362976712328533227946 absolute error = 3e-31 relative error = 8.5487368289703077105633545181451e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.93 y[1] (closed_form) = 3.5345091776178546801206156940979 y[1] (numeric) = 3.5345091776178546801206156940982 absolute error = 3e-31 relative error = 8.4877414352108242469563463882977e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.94 y[1] (closed_form) = 3.5599814183292714961404455052082 y[1] (numeric) = 3.5599814183292714961404455052085 absolute error = 3e-31 relative error = 8.4270102775084838147696957068217e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.95 y[1] (closed_form) = 3.5857096593158461989898093013769 y[1] (numeric) = 3.5857096593158461989898093013772 absolute error = 3e-31 relative error = 8.3665446593141072470410940804183e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2631.0MB, alloc=40.3MB, time=27.55 TOP MAIN SOLVE Loop x[1] = 0.96 y[1] (closed_form) = 3.6116964734231177184286012988948 y[1] (numeric) = 3.6116964734231177184286012988951 absolute error = 3e-31 relative error = 8.3063458462683051431072085257539e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.97 y[1] (closed_form) = 3.6379444593541525322172152885726 y[1] (numeric) = 3.6379444593541525322172152885728 absolute error = 2e-31 relative error = 5.4976100442035383701009163786847e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.98 y[1] (closed_form) = 3.6644562419294171383574280391061 y[1] (numeric) = 3.6644562419294171383574280391065 absolute error = 4e-31 relative error = 1.0915671346354818696829604376064e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 0.99 y[1] (closed_form) = 3.691234472349262289099879404071 y[1] (numeric) = 3.6912344723492622890998794040714 absolute error = 4e-31 relative error = 1.0836483106027740061860957916856e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1 y[1] (closed_form) = 3.7182818284590452353602874713527 y[1] (numeric) = 3.7182818284590452353602874713531 absolute error = 4e-31 relative error = 1.0757656854799804829953630327126e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.01 y[1] (closed_form) = 3.7456010150169164939897763166604 y[1] (numeric) = 3.7456010150169164939897763166607 absolute error = 3e-31 relative error = 8.0093955228342731290017638675768e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.02 y[1] (closed_form) = 3.7731947639642979167991997771454 y[1] (numeric) = 3.7731947639642979167991997771458 absolute error = 4e-31 relative error = 1.0601096021339247573538063467857e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.03 y[1] (closed_form) = 3.8010658346990791093697628196836 y[1] (numeric) = 3.8010658346990791093697628196841 absolute error = 5e-31 relative error = 1.3154205208328988373552667970027e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.04 y[1] (closed_form) = 3.8292170143515595195194860071813 y[1] (numeric) = 3.8292170143515595195194860071819 absolute error = 6e-31 relative error = 1.5668999634945060342037776430355e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2671.3MB, alloc=40.3MB, time=27.95 TOP MAIN SOLVE Loop x[1] = 1.05 y[1] (closed_form) = 3.8576511180631637898643122162488 y[1] (numeric) = 3.8576511180631637898643122162493 absolute error = 5e-31 relative error = 1.2961255040892300310455218646785e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.06 y[1] (closed_form) = 3.8863709892679582462413752849215 y[1] (numeric) = 3.886370989267958246241375284922 absolute error = 5e-31 relative error = 1.2865472734865711629801164543200e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.07 y[1] (closed_form) = 3.9153794999769966738778707729755 y[1] (numeric) = 3.915379499976996673877870772976 absolute error = 5e-31 relative error = 1.2770154208626202395423204725960e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.08 y[1] (closed_form) = 3.9446795510655238161201013252344 y[1] (numeric) = 3.9446795510655238161201013252348 absolute error = 4e-31 relative error = 1.0140240666493513286437067376372e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.09 y[1] (closed_form) = 3.9742740725630653163119065891359 y[1] (numeric) = 3.9742740725630653163119065891364 absolute error = 5e-31 relative error = 1.2580913919646788698960470777503e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.1 y[1] (closed_form) = 4.0041660239464331120584079535887 y[1] (numeric) = 4.0041660239464331120584079535892 absolute error = 5e-31 relative error = 1.2486994720244119789501157879397e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.11 y[1] (closed_form) = 4.0343583944356755826586664593838 y[1] (numeric) = 4.0343583944356755826586664593843 absolute error = 5e-31 relative error = 1.2393544428021492061350974588214e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.12 y[1] (closed_form) = 4.0648542032930020449686230918988 y[1] (numeric) = 4.0648542032930020449686230918994 absolute error = 6e-31 relative error = 1.4760677013063115624383726466987e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.13 y[1] (closed_form) = 4.0956565001247114903930123270235 y[1] (numeric) = 4.0956565001247114903930123270241 absolute error = 6e-31 relative error = 1.4649666054312176402636990726532e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2711.7MB, alloc=40.3MB, time=28.38 TOP MAIN SOLVE Loop x[1] = 1.14 y[1] (closed_form) = 4.1267683651861557561315562411795 y[1] (numeric) = 4.1267683651861557561315562411801 absolute error = 6e-31 relative error = 1.4539221659777708458410114942020e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.15 y[1] (closed_form) = 4.1581929096897676272507006280068 y[1] (numeric) = 4.1581929096897676272507006280073 absolute error = 5e-31 relative error = 1.2024454152544446270714032203728e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.16 y[1] (closed_form) = 4.1899332761161846726477912360218 y[1] (numeric) = 4.1899332761161846726477912360223 absolute error = 5e-31 relative error = 1.1933364257854479012499273305780e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.17 y[1] (closed_form) = 4.2219926385284999275505572724101 y[1] (numeric) = 4.2219926385284999275505572724106 absolute error = 5e-31 relative error = 1.1842749213657228527498615599265e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.18 y[1] (closed_form) = 4.2543742028896708478820285629729 y[1] (numeric) = 4.2543742028896708478820285629736 absolute error = 7e-31 relative error = 1.6453653736536470265447113364115e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.19 y[1] (closed_form) = 4.2870812073831182776508312036078 y[1] (numeric) = 4.2870812073831182776508312036086 absolute error = 8e-31 relative error = 1.8660714861716576544066821176608e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.2 y[1] (closed_form) = 4.3201169227365474895307674296016 y[1] (numeric) = 4.3201169227365474895307674296024 absolute error = 8e-31 relative error = 1.8518017320078588565526987802924e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.21 y[1] (closed_form) = 4.3534846525490236810035894273757 y[1] (numeric) = 4.3534846525490236810035894273763 absolute error = 6e-31 relative error = 1.3782063057203887211156829079224e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.22 y[1] (closed_form) = 4.3871877336213346338871451880633 y[1] (numeric) = 4.387187733621334633887145188064 absolute error = 7e-31 relative error = 1.5955551540125138115522003754472e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2752.1MB, alloc=40.3MB, time=28.81 TOP MAIN SOLVE Loop x[1] = 1.23 y[1] (closed_form) = 4.4212295362896735737901523514522 y[1] (numeric) = 4.421229536289673573790152351453 absolute error = 8e-31 relative error = 1.8094514058443695660386192857250e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.24 y[1] (closed_form) = 4.455613464762675598057615494122 y[1] (numeric) = 4.4556134647626755980576154941228 absolute error = 8e-31 relative error = 1.7954878858474122796698957953228e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.25 y[1] (closed_form) = 4.4903429574618413761305460296723 y[1] (numeric) = 4.4903429574618413761305460296731 absolute error = 8e-31 relative error = 1.7816011106024708240038436187077e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.26 y[1] (closed_form) = 4.5254214873653821649737080556228 y[1] (numeric) = 4.5254214873653821649737080556236 absolute error = 8e-31 relative error = 1.7677911377615025335790048625127e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.27 y[1] (closed_form) = 4.5608525623555205243594713895519 y[1] (numeric) = 4.5608525623555205243594713895529 absolute error = 1.0e-30 relative error = 2.1925725208787171199245248608637e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.28 y[1] (closed_form) = 4.5966397255692814623687184072408 y[1] (numeric) = 4.5966397255692814623687184072418 absolute error = 1.0e-30 relative error = 2.1755022357688750353031155615499e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.29 y[1] (closed_form) = 4.6327865557528090905156817025115 y[1] (numeric) = 4.6327865557528090905156817025126 absolute error = 1.1e-30 relative error = 2.3743809190476603901717942022262e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.3 y[1] (closed_form) = 4.6692966676192442204574899160115 y[1] (numeric) = 4.6692966676192442204574899160125 absolute error = 1.0e-30 relative error = 2.1416501695744138739791152774157e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.31 y[1] (closed_form) = 4.7061737122101986903463250122245 y[1] (numeric) = 4.7061737122101986903463250122254 absolute error = 9e-31 relative error = 1.9123815971028525206395031227236e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2792.6MB, alloc=40.3MB, time=29.22 TOP MAIN SOLVE Loop x[1] = 1.32 y[1] (closed_form) = 4.7434213772608625685580558298259 y[1] (numeric) = 4.7434213772608625685580558298268 absolute error = 9e-31 relative error = 1.8973646412997241476527839373038e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.33 y[1] (closed_form) = 4.7810433875687807458219777860331 y[1] (numeric) = 4.781043387568780745821977786034 absolute error = 9e-31 relative error = 1.8824342869175697824149784771772e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.34 y[1] (closed_form) = 4.8190435053663357937181865600786 y[1] (numeric) = 4.8190435053663357937181865600796 absolute error = 1.0e-30 relative error = 2.0751005855963560926455020997997e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.35 y[1] (closed_form) = 4.8574255306969743381388389099302 y[1] (numeric) = 4.8574255306969743381388389099312 absolute error = 1.0e-30 relative error = 2.0587037180094732895918180954964e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.36 y[1] (closed_form) = 4.8961933017952145706641697713002 y[1] (numeric) = 4.8961933017952145706641697713011 absolute error = 9e-31 relative error = 1.8381627205568259530939465609593e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.37 y[1] (closed_form) = 4.9353506954704728989210772223787 y[1] (numeric) = 4.9353506954704728989210772223795 absolute error = 8e-31 relative error = 1.6209587714490434661532843023943e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.38 y[1] (closed_form) = 4.9749016274947481189091677809396 y[1] (numeric) = 4.9749016274947481189091677809404 absolute error = 8e-31 relative error = 1.6080719980042349898543828498346e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.39 y[1] (closed_form) = 5.0148500529942018780345658588566 y[1] (numeric) = 5.0148500529942018780345658588574 absolute error = 8e-31 relative error = 1.5952620547893477611743255286510e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.4 y[1] (closed_form) = 5.0551999668446745872241088952286 y[1] (numeric) = 5.0551999668446745872241088952294 absolute error = 8e-31 relative error = 1.5825288915313460147652512675847e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.41 y[1] (closed_form) = 5.0959554040711763340407372797126 y[1] (numeric) = 5.0959554040711763340407372797133 absolute error = 7e-31 relative error = 1.3736383945604539389288546952418e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2833.0MB, alloc=40.3MB, time=29.64 TOP MAIN SOLVE Loop x[1] = 1.42 y[1] (closed_form) = 5.1371204402513927462243008090194 y[1] (numeric) = 5.13712044025139274622430080902 absolute error = 6e-31 relative error = 1.1679695015494674560324794754633e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.43 y[1] (closed_form) = 5.1786991919232461565803917643529 y[1] (numeric) = 5.1786991919232461565803917643535 absolute error = 6e-31 relative error = 1.1585921053992985806627657868319e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.44 y[1] (closed_form) = 5.2206958169965528256733289292909 y[1] (numeric) = 5.2206958169965528256733289292915 absolute error = 6e-31 relative error = 1.1492720913688049374525982105145e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.45 y[1] (closed_form) = 5.2631145151688173883886106755809 y[1] (numeric) = 5.2631145151688173883886106755816 absolute error = 7e-31 relative error = 1.3300109621071908261241472550786e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.46 y[1] (closed_form) = 5.3059595283452061041559898892827 y[1] (numeric) = 5.3059595283452061041559898892834 absolute error = 7e-31 relative error = 1.3192712764967361248058999467900e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.47 y[1] (closed_form) = 5.3492351410627409085081719198621 y[1] (numeric) = 5.3492351410627409085081719198629 absolute error = 8e-31 relative error = 1.4955409117443708957504619088418e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.48 y[1] (closed_form) = 5.3929456809187566857337876433172 y[1] (numeric) = 5.3929456809187566857337876433181 absolute error = 9e-31 relative error = 1.6688467736368403156725086941009e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.49 y[1] (closed_form) = 5.4370955190036646087089558540139 y[1] (numeric) = 5.4370955190036646087089558540147 absolute error = 8e-31 relative error = 1.4713738193560340117113653820723e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.5 y[1] (closed_form) = 5.4816890703380648226020554601193 y[1] (numeric) = 5.4816890703380648226020554601202 absolute error = 9e-31 relative error = 1.6418297142572070635350453920938e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2873.5MB, alloc=40.3MB, time=30.06 TOP MAIN SOLVE Loop x[1] = 1.51 y[1] (closed_form) = 5.5267307943142521840843397438116 y[1] (numeric) = 5.5267307943142521840843397438124 absolute error = 8e-31 relative error = 1.4475103452171361022023462744361e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.52 y[1] (closed_form) = 5.5722251951421592069882364234397 y[1] (numeric) = 5.5722251951421592069882364234405 absolute error = 8e-31 relative error = 1.4356921552586144432967776646736e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.53 y[1] (closed_form) = 5.6181768222997808090795197077546 y[1] (numeric) = 5.6181768222997808090795197077554 absolute error = 8e-31 relative error = 1.4239494862899719660891131967315e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.54 y[1] (closed_form) = 5.6645902709881259027933867662438 y[1] (numeric) = 5.6645902709881259027933867662446 absolute error = 8e-31 relative error = 1.4122821982329336906960533942546e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.55 y[1] (closed_form) = 5.7114701825907413254726398125845 y[1] (numeric) = 5.7114701825907413254726398125853 absolute error = 8e-31 relative error = 1.4006901453123185449875008165004e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.56 y[1] (closed_form) = 5.758821245137854061883935504415 y[1] (numeric) = 5.7588212451378540618839355044158 absolute error = 8e-31 relative error = 1.3891731761520402661859724739015e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.57 y[1] (closed_form) = 5.8066481937751781736211397590791 y[1] (numeric) = 5.8066481937751781736211397590801 absolute error = 1.0e-30 relative error = 1.7221639173387779099916099630266e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.58 y[1] (closed_form) = 5.8549558112374333164794020642401 y[1] (numeric) = 5.8549558112374333164794020642411 absolute error = 1.0e-30 relative error = 1.7079548202237447463183416597267e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.59 y[1] (closed_form) = 5.9037489283266221980462867706038 y[1] (numeric) = 5.9037489283266221980462867706047 absolute error = 9e-31 relative error = 1.5244550724061684103900778252757e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2913.9MB, alloc=40.3MB, time=30.48 TOP MAIN SOLVE Loop x[1] = 1.6 y[1] (closed_form) = 5.953032424395114803654286356424 y[1] (numeric) = 5.953032424395114803654286356425 absolute error = 1.0e-30 relative error = 1.6798161486607551815757767179988e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.61 y[1] (closed_form) = 6.0028112278335876995198834453142 y[1] (numeric) = 6.0028112278335876995198834453153 absolute error = 1.1e-30 relative error = 1.8324747493300561172682173107978e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.62 y[1] (closed_form) = 6.053090316563867207406092924905 y[1] (numeric) = 6.053090316563867207406092924906 absolute error = 1.0e-30 relative error = 1.6520487019061461352160866243317e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.63 y[1] (closed_form) = 6.1038747185367257355366544351225 y[1] (numeric) = 6.1038747185367257355366544351234 absolute error = 9e-31 relative error = 1.4744732510102302299289118662573e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.64 y[1] (closed_form) = 6.1551695122346810458097983038692 y[1] (numeric) = 6.1551695122346810458097983038701 absolute error = 9e-31 relative error = 1.4621855632262646876156529874983e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.65 y[1] (closed_form) = 6.2069798271798487376573070927123 y[1] (numeric) = 6.2069798271798487376573070927133 absolute error = 1.0e-30 relative error = 1.6110894957658523719145259678353e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.66 y[1] (closed_form) = 6.2593108444468987342204704726538 y[1] (numeric) = 6.2593108444468987342204704726549 absolute error = 1.1e-30 relative error = 1.7573819663803595921370311007753e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.67 y[1] (closed_form) = 6.3121677971811670669190161888314 y[1] (numeric) = 6.3121677971811670669190161888324 absolute error = 1.0e-30 relative error = 1.5842417884495581576973811567648e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.68 y[1] (closed_form) = 6.3655559711219747700232352669232 y[1] (numeric) = 6.3655559711219747700232352669241 absolute error = 9e-31 relative error = 1.4138592199690745358146567037724e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2954.2MB, alloc=40.3MB, time=30.89 TOP MAIN SOLVE Loop x[1] = 1.69 y[1] (closed_form) = 6.4194807051312062175548592062532 y[1] (numeric) = 6.4194807051312062175548592062541 absolute error = 9e-31 relative error = 1.4019825611137265924811894416291e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.7 y[1] (closed_form) = 6.4739473917271997607908626630091 y[1] (numeric) = 6.4739473917271997607908626630101 absolute error = 1.0e-30 relative error = 1.5446526508353470433395376539140e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.71 y[1] (closed_form) = 6.528961477624004055878852351461 y[1] (numeric) = 6.528961477624004055878852351462 absolute error = 1.0e-30 relative error = 1.5316371576508617530461659782080e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.72 y[1] (closed_form) = 6.5845284642760540076461854730193 y[1] (numeric) = 6.5845284642760540076461854730203 absolute error = 1.0e-30 relative error = 1.5187116365665928065561924399266e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.73 y[1] (closed_form) = 6.640653908428320797651096717808 y[1] (numeric) = 6.640653908428320797651096717809 absolute error = 1.0e-30 relative error = 1.5058757974584394012164381375773e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.74 y[1] (closed_form) = 6.6973434226719910119370988363601 y[1] (numeric) = 6.697343422671991011937098836361 absolute error = 9e-31 relative error = 1.3438164107775937565269270852963e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.75 y[1] (closed_form) = 6.7546026760057304368664997048427 y[1] (numeric) = 6.7546026760057304368664997048437 absolute error = 1.0e-30 relative error = 1.4804719803168946970618486518432e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.76 y[1] (closed_form) = 6.8124373944025886498803406244497 y[1] (numeric) = 6.8124373944025886498803406244507 absolute error = 1.0e-30 relative error = 1.4679033980138238247769870645243e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.77 y[1] (closed_form) = 6.8708533613826010961162539158285 y[1] (numeric) = 6.8708533613826010961162539158295 absolute error = 1.0e-30 relative error = 1.4554232893696526460003498671559e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=2994.7MB, alloc=40.3MB, time=31.31 TOP MAIN SOLVE Loop x[1] = 1.78 y[1] (closed_form) = 6.9298564185911459115690715820469 y[1] (numeric) = 6.9298564185911459115690715820477 absolute error = 8e-31 relative error = 1.1544250727241498148520933328678e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.79 y[1] (closed_form) = 6.9894524663831133289584667268155 y[1] (numeric) = 6.9894524663831133289584667268162 absolute error = 7e-31 relative error = 1.0015090643605656833106709870156e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.8 y[1] (closed_form) = 7.0496474644129460837310239530277 y[1] (numeric) = 7.0496474644129460837310239530286 absolute error = 9e-31 relative error = 1.2766595841043901063485029762386e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.81 y[1] (closed_form) = 7.1104474322306098247290409259947 y[1] (numeric) = 7.1104474322306098247290409259955 absolute error = 8e-31 relative error = 1.1251050058730734079905428910175e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.82 y[1] (closed_form) = 7.1718584498835531270637716458996 y[1] (numeric) = 7.1718584498835531270637716459003 absolute error = 7e-31 relative error = 9.7603711073155054662496863844064e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.83 y[1] (closed_form) = 7.2338866585247173036960337699729 y[1] (numeric) = 7.2338866585247173036960337699736 absolute error = 7e-31 relative error = 9.6766791220745829692723562174117e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.84 y[1] (closed_form) = 7.2965382610266568172120145770248 y[1] (numeric) = 7.2965382610266568172120145770256 absolute error = 8e-31 relative error = 1.0964103406036772908468909802544e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.85 y[1] (closed_form) = 7.3598195226018317043472218706367 y[1] (numeric) = 7.3598195226018317043472218706374 absolute error = 7e-31 relative error = 9.5111027906365985474622563371920e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.86 y[1] (closed_form) = 7.4237367714291340430179442929097 y[1] (numeric) = 7.4237367714291340430179442929104 absolute error = 7e-31 relative error = 9.4292136366419670067296758660256e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3035.0MB, alloc=40.3MB, time=31.73 TOP MAIN SOLVE Loop x[1] = 1.87 y[1] (closed_form) = 7.4882963992867111150290313243491 y[1] (numeric) = 7.4882963992867111150290313243496 absolute error = 5e-31 relative error = 6.6770861266606235455825279951770e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.88 y[1] (closed_form) = 7.5535048621911485473016181413198 y[1] (numeric) = 7.5535048621911485473016181413203 absolute error = 5e-31 relative error = 6.6194436771032693295930824278378e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.89 y[1] (closed_form) = 7.6193686810430773504675724967601 y[1] (numeric) = 7.6193686810430773504675724967604 absolute error = 3e-31 relative error = 3.9373340831556999807280993389163e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.9 y[1] (closed_form) = 7.6858944422792694160725307276929 y[1] (numeric) = 7.6858944422792694160725307276932 absolute error = 3e-31 relative error = 3.9032542308899355646597797322238e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.91 y[1] (closed_form) = 7.7530887985312866824806579188518 y[1] (numeric) = 7.7530887985312866824806579188522 absolute error = 4e-31 relative error = 5.1592340858494276255531579849509e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.92 y[1] (closed_form) = 7.8209584692907498349465988329418 y[1] (numeric) = 7.8209584692907498349465988329421 absolute error = 3e-31 relative error = 3.8358469895724398483442969807498e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.93 y[1] (closed_form) = 7.8895102415812930672790192339938 y[1] (numeric) = 7.8895102415812930672790192339941 absolute error = 3e-31 relative error = 3.8025174036642235971516968760114e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.94 y[1] (closed_form) = 7.958750970637272101131868125876 y[1] (numeric) = 7.9587509706372721011318681258764 absolute error = 4e-31 relative error = 5.0259142606138265762359953943567e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.95 y[1] (closed_form) = 8.0286875805892933342908819335644 y[1] (numeric) = 8.0286875805892933342908819335647 absolute error = 3e-31 relative error = 3.7366007456224926475091867695410e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3075.5MB, alloc=40.3MB, time=32.14 TOP MAIN SOLVE Loop x[1] = 1.96 y[1] (closed_form) = 8.099327065156632671441435472082 y[1] (numeric) = 8.0993270651566326714414354720821 absolute error = 1e-31 relative error = 1.2346704756522399142117767842999e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.97 y[1] (closed_form) = 8.1706764883466132798778341038975 y[1] (numeric) = 8.1706764883466132798778341038977 absolute error = 2e-31 relative error = 2.4477777364609773215088185020330e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.98 y[1] (closed_form) = 8.2427429851610122085124347531447 y[1] (numeric) = 8.2427429851610122085124347531449 absolute error = 2e-31 relative error = 2.4263767578347371848253482686788e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 1.99 y[1] (closed_form) = 8.315533762309566511435170833514 y[1] (numeric) = 8.3155337623095665114351708335141 absolute error = 1e-31 relative error = 1.2025686246775081070372777020987e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2 y[1] (closed_form) = 8.389056098930650227230427460575 y[1] (numeric) = 8.3890560989306502272304274605751 absolute error = 1e-31 relative error = 1.1920292202211755594027085869760e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.01 y[1] (closed_form) = 8.4633173473191942823497647873654 y[1] (numeric) = 8.4633173473191942823497647873655 absolute error = 1e-31 relative error = 1.1815697780926954153401346224225e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.02 y[1] (closed_form) = 8.5383249336619221111374286770603 y[1] (numeric) = 8.5383249336619221111374286770604 absolute error = 1e-31 relative error = 1.1711899087578052357839660458441e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.03 y[1] (closed_form) = 8.6140863587799745166833496561362 y[1] (numeric) = 8.6140863587799745166833496561361 absolute error = 1e-31 relative error = 1.1608892206899484152082895857372e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.04 y[1] (closed_form) = 8.6906091988789980356085715614843 y[1] (numeric) = 8.6906091988789980356085715614842 absolute error = 1e-31 relative error = 1.1506673204554981400603808881549e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3115.9MB, alloc=40.3MB, time=32.56 TOP MAIN SOLVE Loop x[1] = 2.05 y[1] (closed_form) = 8.7679011063067718162446641452442 y[1] (numeric) = 8.7679011063067718162446641452441 absolute error = 1e-31 relative error = 1.1405238127979085623685062883887e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.06 y[1] (closed_form) = 8.8459698103184487735262954149556 y[1] (numeric) = 8.8459698103184487735262954149554 absolute error = 2e-31 relative error = 2.2609166014415794034035584128755e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.07 y[1] (closed_form) = 8.9248231178494875453501560543463 y[1] (numeric) = 8.924823117849487545350156054346 absolute error = 3e-31 relative error = 3.3614111567097092852752434347118e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.08 y[1] (closed_form) = 9.0044689142963525442399839278696 y[1] (numeric) = 9.0044689142963525442399839278692 absolute error = 4e-31 relative error = 4.4422386684563028375936193739026e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.09 y[1] (closed_form) = 9.0849151643050601749734407164419 y[1] (numeric) = 9.0849151643050601749734407164415 absolute error = 4e-31 relative error = 4.4029029745001204557431914247899e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.1 y[1] (closed_form) = 9.1661699125676500734497274104786 y[1] (numeric) = 9.1661699125676500734497274104783 absolute error = 3e-31 relative error = 3.2729046358683881489731821722541e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.11 y[1] (closed_form) = 9.2482412846266610145855536665902 y[1] (numeric) = 9.2482412846266610145855536665899 absolute error = 3e-31 relative error = 3.2438600028601069746305062281017e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.12 y[1] (closed_form) = 9.3311374876876919375006494494469 y[1] (numeric) = 9.3311374876876919375006494494464 absolute error = 5e-31 relative error = 5.3584035243264087486320909219533e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.13 y[1] (closed_form) = 9.414866811440129344772473954749 y[1] (numeric) = 9.4148668114401293447724739547485 absolute error = 5e-31 relative error = 5.3107495837587779621165753172803e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.14 y[1] (closed_form) = 9.4994376288861231491839890633767 y[1] (numeric) = 9.4994376288861231491839890633762 absolute error = 5e-31 relative error = 5.2634694761254889995454245167379e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3156.4MB, alloc=40.3MB, time=32.98 TOP MAIN SOLVE Loop x[1] = 2.15 y[1] (closed_form) = 9.5848583971778938662399876124018 y[1] (numeric) = 9.5848583971778938662399876124012 absolute error = 6e-31 relative error = 6.2598733871400778421942131484776e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.16 y[1] (closed_form) = 9.6711376584634548838689864354103 y[1] (numeric) = 9.6711376584634548838689864354096 absolute error = 7e-31 relative error = 7.2380316020774708017726710277121e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.17 y[1] (closed_form) = 9.7582840407408343822424252687577 y[1] (numeric) = 9.7582840407408343822424252687571 absolute error = 6e-31 relative error = 6.1486220066458415381465312162369e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.18 y[1] (closed_form) = 9.8463062587208823266150074163392 y[1] (numeric) = 9.8463062587208823266150074163385 absolute error = 7e-31 relative error = 7.1092649528345654409846904744724e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.19 y[1] (closed_form) = 9.9352131146987488146044744309985 y[1] (numeric) = 9.9352131146987488146044744309978 absolute error = 7e-31 relative error = 7.0456465494874801560722231070280e-30 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.2 y[1] (closed_form) = 10.025013499434120926471777166889 y[1] (numeric) = 10.025013499434120926471777166887 absolute error = 2e-30 relative error = 1.9950097823937029398853866939930e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.21 y[1] (closed_form) = 10.115716393040306102820204373562 y[1] (numeric) = 10.115716393040306102820204373559 absolute error = 3e-30 relative error = 2.9656821953450810736368547506224e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.22 y[1] (closed_form) = 10.20733086588225095879214402908 y[1] (numeric) = 10.207330865882250958792144029077 absolute error = 3e-30 relative error = 2.9390641289266180610187258393680e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.23 y[1] (closed_form) = 10.299866079483585337393248594605 y[1] (numeric) = 10.299866079483585337393248594602 absolute error = 3e-30 relative error = 2.9126592295949676981955211714518e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3196.8MB, alloc=40.3MB, time=33.41 TOP MAIN SOLVE Loop x[1] = 2.24 y[1] (closed_form) = 10.393331287442782307105209171014 y[1] (numeric) = 10.39333128744278230710520917101 absolute error = 4e-30 relative error = 3.8486216684277138464775733175414e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.25 y[1] (closed_form) = 10.487735836358525720550369044512 y[1] (numeric) = 10.487735836358525720550369044507 absolute error = 5e-30 relative error = 4.7674732449554746984807381614167e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.26 y[1] (closed_form) = 10.583089166764377871735185285297 y[1] (numeric) = 10.583089166764377871735185285294 absolute error = 3e-30 relative error = 2.8347110685047789180152263371461e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.27 y[1] (closed_form) = 10.679400814072840719417155056108 y[1] (numeric) = 10.679400814072840719417155056105 absolute error = 3e-30 relative error = 2.8091463671320708009967208245004e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.28 y[1] (closed_form) = 10.776680409528905083504263631818 y[1] (numeric) = 10.776680409528905083504263631816 absolute error = 2e-30 relative error = 1.8558590623431400217242219529765e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.29 y[1] (closed_form) = 10.874937681173183170201221053971 y[1] (numeric) = 10.874937681173183170201221053969 absolute error = 2e-30 relative error = 1.8390909986200867490350857047855e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.3 y[1] (closed_form) = 10.974182454814720739957615156909 y[1] (numeric) = 10.974182454814720739957615156907 absolute error = 2e-30 relative error = 1.8224592202971227067860949395282e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.31 y[1] (closed_form) = 11.074424655013586200245455289684 y[1] (numeric) = 11.074424655013586200245455289682 absolute error = 2e-30 relative error = 1.8059628940583969169173475822874e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.32 y[1] (closed_form) = 11.175674306073334882894211461532 y[1] (numeric) = 11.175674306073334882894211461527 absolute error = 5e-30 relative error = 4.4740029666780716503434498846966e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3237.3MB, alloc=40.3MB, time=33.83 TOP MAIN SOLVE Loop x[1] = 2.33 y[1] (closed_form) = 11.277941533043447753238138736105 y[1] (numeric) = 11.277941533043447753238138736099 absolute error = 6e-30 relative error = 5.3201197952839974833674431417638e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.34 y[1] (closed_form) = 11.381236562731844795782169982426 y[1] (numeric) = 11.381236562731844795782169982419 absolute error = 7e-30 relative error = 6.1504740380510867360054934651052e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.35 y[1] (closed_form) = 11.485569724727574328568707539109 y[1] (numeric) = 11.485569724727574328568707539101 absolute error = 8e-30 relative error = 6.9652617952217007782135075000537e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.36 y[1] (closed_form) = 11.590951452433780516028994407103 y[1] (numeric) = 11.590951452433780516028994407095 absolute error = 8e-30 relative error = 6.9019355596733349885594908993159e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.37 y[1] (closed_form) = 11.69739228411105237793115923818 y[1] (numeric) = 11.69739228411105237793115923817 absolute error = 1.0e-29 relative error = 8.5489139434806547330671388333768e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.38 y[1] (closed_form) = 11.804902863931258630195290329287 y[1] (numeric) = 11.804902863931258630195290329277 absolute error = 1.0e-29 relative error = 8.4710565730735784928120919325876e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.39 y[1] (closed_form) = 11.913493943041973741937818758192 y[1] (numeric) = 11.913493943041973741937818758183 absolute error = 9e-30 relative error = 7.5544588707802317882017833536909e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.4 y[1] (closed_form) = 12.023176380641601652237939769668 y[1] (numeric) = 12.023176380641601652237939769658 absolute error = 1.0e-29 relative error = 8.3172696493922370662952439093841e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.41 y[1] (closed_form) = 12.133961145065304659893688471457 y[1] (numeric) = 12.133961145065304659893688471446 absolute error = 1.1e-29 relative error = 9.0654649940704077383778447435482e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3277.6MB, alloc=40.3MB, time=34.25 TOP MAIN SOLVE Loop x[1] = 2.42 y[1] (closed_form) = 12.245859314881846079961589205531 y[1] (numeric) = 12.245859314881846079961589205518 absolute error = 1.3e-29 relative error = 1.0615833210007304604432842029199e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.43 y[1] (closed_form) = 12.358882080001456352259571153473 y[1] (numeric) = 12.358882080001456352259571153461 absolute error = 1.2e-29 relative error = 9.7096160658558415000835514462264e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.44 y[1] (closed_form) = 12.473040742794833389367225302064 y[1] (numeric) = 12.473040742794833389367225302052 absolute error = 1.2e-29 relative error = 9.6207494607374791735342448673276e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.45 y[1] (closed_form) = 12.58834671922338906509070619308 y[1] (numeric) = 12.588346719223389065090706193068 absolute error = 1.2e-29 relative error = 9.5326259020774049281948029850600e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.46 y[1] (closed_form) = 12.704811539980854868983000160809 y[1] (numeric) = 12.704811539980854868983000160798 absolute error = 1.1e-29 relative error = 8.6581370887588751410103509674091e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.47 y[1] (closed_form) = 12.822446851646360888436353300643 y[1] (numeric) = 12.822446851646360888436353300631 absolute error = 1.2e-29 relative error = 9.3585882155239650216198773874834e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.48 y[1] (closed_form) = 12.941264417849103427205970766319 y[1] (numeric) = 12.941264417849103427205970766307 absolute error = 1.2e-29 relative error = 9.2726642563991858973049794545342e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.49 y[1] (closed_form) = 13.061276120444717728097399349678 y[1] (numeric) = 13.061276120444717728097399349666 absolute error = 1.2e-29 relative error = 9.1874636822174594701292391355305e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.5 y[1] (closed_form) = 13.182493960703473438070175951168 y[1] (numeric) = 13.182493960703473438070175951156 absolute error = 1.2e-29 relative error = 9.1029816025492261431967411975497e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3318.1MB, alloc=40.3MB, time=34.67 TOP MAIN SOLVE Loop x[1] = 2.51 y[1] (closed_form) = 13.304930060510411636294418494051 y[1] (numeric) = 13.30493006051041163629441849404 absolute error = 1.1e-29 relative error = 8.2676120430339274259114454008582e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.52 y[1] (closed_form) = 13.428596663577543439863282465196 y[1] (numeric) = 13.428596663577543439863282465184 absolute error = 1.2e-29 relative error = 8.9361534199233684448856859763259e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.53 y[1] (closed_form) = 13.553506136668231408032023200075 y[1] (numeric) = 13.553506136668231408032023200065 absolute error = 1.0e-29 relative error = 7.3781646602465284515212136856502e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.54 y[1] (closed_form) = 13.679670970833876184144409056144 y[1] (numeric) = 13.679670970833876184144409056133 absolute error = 1.1e-29 relative error = 8.0411290764616024949251789517817e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.55 y[1] (closed_form) = 13.807103782663032044941253752753 y[1] (numeric) = 13.80710378266303204494125375274 absolute error = 1.3e-29 relative error = 9.4154430969973033197100557991999e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.56 y[1] (closed_form) = 13.935817315543076269846931825039 y[1] (numeric) = 13.935817315543076269846931825026 absolute error = 1.3e-29 relative error = 9.3284804942876738342075767424454e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.57 y[1] (closed_form) = 14.065824440934558498222200489047 y[1] (numeric) = 14.065824440934558498222200489034 absolute error = 1.3e-29 relative error = 9.2422595309573313437835498343236e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.58 y[1] (closed_form) = 14.197138159658357510581014537849 y[1] (numeric) = 14.197138159658357510581014537836 absolute error = 1.3e-29 relative error = 9.1567750160662198846657158939797e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.59 y[1] (closed_form) = 14.329771603195774150522090176603 y[1] (numeric) = 14.32977160319577415052209017659 absolute error = 1.3e-29 relative error = 9.0720217739554109377304897882994e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3358.6MB, alloc=40.3MB, time=35.09 TOP MAIN SOLVE Loop x[1] = 2.6 y[1] (closed_form) = 14.463738035001690397750825332584 y[1] (numeric) = 14.463738035001690397750825332572 absolute error = 1.2e-29 relative error = 8.2966104412016181423027770437950e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.61 y[1] (closed_form) = 14.599050851830925909193181507426 y[1] (numeric) = 14.599050851830925909193181507414 absolute error = 1.2e-29 relative error = 8.2197124469191307402575476239813e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.62 y[1] (closed_form) = 14.735723585077924664960939361653 y[1] (numeric) = 14.735723585077924664960939361641 absolute error = 1.2e-29 relative error = 8.1434752292393398896090799313876e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.63 y[1] (closed_form) = 14.873769902129905688949333816751 y[1] (numeric) = 14.873769902129905688949333816739 absolute error = 1.2e-29 relative error = 8.0678940705420047221055898026454e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.64 y[1] (closed_form) = 15.013203607733613160266757797534 y[1] (numeric) = 15.013203607733613160266757797521 absolute error = 1.3e-29 relative error = 8.6590446247617862542412413754412e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.65 y[1] (closed_form) = 15.154038645375802591646639807897 y[1] (numeric) = 15.154038645375802591646639807885 absolute error = 1.2e-29 relative error = 7.9186811389462534332583281134660e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.66 y[1] (closed_form) = 15.2962890986776011246097455111 y[1] (numeric) = 15.296289098677601124609745511088 absolute error = 1.2e-29 relative error = 7.8450400110687154891723914260026e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.67 y[1] (closed_form) = 15.439969192802881378568390330594 y[1] (numeric) = 15.439969192802881378568390330581 absolute error = 1.3e-29 relative error = 8.4197059188821194187203717777211e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.68 y[1] (closed_form) = 15.585093295880789692431122279052 y[1] (numeric) = 15.585093295880789692431122279039 absolute error = 1.3e-29 relative error = 8.3413039326726125622892383771711e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.69 y[1] (closed_form) = 15.731675920442571012717479636724 y[1] (numeric) = 15.731675920442571012717479636712 absolute error = 1.2e-29 relative error = 7.6279222002066327048341843229088e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3399.2MB, alloc=40.3MB, time=35.52 TOP MAIN SOLVE Loop x[1] = 2.7 y[1] (closed_form) = 15.879731724872834111868993019468 y[1] (numeric) = 15.879731724872834111868993019457 absolute error = 1.1e-29 relative error = 6.9270691662696138465571961359835e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.71 y[1] (closed_form) = 16.029275514875402264487654649923 y[1] (numeric) = 16.02927551487540226448765464991 absolute error = 1.3e-29 relative error = 8.1101606793992715057087477794675e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.72 y[1] (closed_form) = 16.18032224495389596779102498073 y[1] (numeric) = 16.180322244953895967791024980718 absolute error = 1.2e-29 relative error = 7.4164159516306300041745018215055e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.73 y[1] (closed_form) = 16.332887019907195765789845226944 y[1] (numeric) = 16.332887019907195765789845226933 absolute error = 1.1e-29 relative error = 6.7348779101898805142750604414855e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.74 y[1] (closed_form) = 16.486985096339934724716796743092 y[1] (numeric) = 16.486985096339934724716796743081 absolute error = 1.1e-29 relative error = 6.6719293647217341748528869245542e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.75 y[1] (closed_form) = 16.642631884188171610212698046157 y[1] (numeric) = 16.642631884188171610212698046145 absolute error = 1.2e-29 relative error = 7.2103980208809146423668134713889e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.76 y[1] (closed_form) = 16.799842948260397334859256656509 y[1] (numeric) = 16.799842948260397334859256656498 absolute error = 1.1e-29 relative error = 6.5476802574151660165542708972380e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.77 y[1] (closed_form) = 16.958634009794028777987305352163 y[1] (numeric) = 16.958634009794028777987305352152 absolute error = 1.1e-29 relative error = 6.4863714811270937888703242111359e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.78 y[1] (closed_form) = 17.119020948027545628439586166743 y[1] (numeric) = 17.119020948027545628439586166733 absolute error = 1.0e-29 relative error = 5.8414555542396251664284462914846e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3439.6MB, alloc=40.3MB, time=35.92 TOP MAIN SOLVE Loop x[1] = 2.79 y[1] (closed_form) = 17.281019801788427465282476812269 y[1] (numeric) = 17.281019801788427465282476812259 absolute error = 1.0e-29 relative error = 5.7866955276361013593160932838731e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.8 y[1] (closed_form) = 17.444646771097049871498016010925 y[1] (numeric) = 17.444646771097049871498016010915 absolute error = 1.0e-29 relative error = 5.7324175898868746208291173987213e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.81 y[1] (closed_form) = 17.609918218786699971604181488378 y[1] (numeric) = 17.609918218786699971604181488367 absolute error = 1.1e-29 relative error = 6.2464798889667333291373596629819e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.82 y[1] (closed_form) = 17.776850672139873396107200104494 y[1] (numeric) = 17.776850672139873396107200104482 absolute error = 1.2e-29 relative error = 6.7503520287800843229592833599365e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.83 y[1] (closed_form) = 17.945460824541016303845920701474 y[1] (numeric) = 17.945460824541016303845920701462 absolute error = 1.2e-29 relative error = 6.6869277514398514096263755020577e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.84 y[1] (closed_form) = 18.11576553714587773780777371626 y[1] (numeric) = 18.115765537145877737807773716247 absolute error = 1.3e-29 relative error = 7.1760699117814582231705823481625e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.85 y[1] (closed_form) = 18.287781840567639251043030753446 y[1] (numeric) = 18.287781840567639251043030753432 absolute error = 1.4e-29 relative error = 7.6553844102317060080879431961786e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.86 y[1] (closed_form) = 18.46152693657999041704506824997 y[1] (numeric) = 18.461526936579990417045068249956 absolute error = 1.4e-29 relative error = 7.5833380673730495263791414883109e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.87 y[1] (closed_form) = 18.637018199837320533566907580682 y[1] (numeric) = 18.63701819983732053356690758067 absolute error = 1.2e-29 relative error = 6.4387982408606254546820982681140e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3479.9MB, alloc=40.3MB, time=36.34 TOP MAIN SOLVE Loop x[1] = 2.88 y[1] (closed_form) = 18.814273179612198540477911123657 y[1] (numeric) = 18.814273179612198540477911123643 absolute error = 1.4e-29 relative error = 7.4411590957289210763899274185461e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.89 y[1] (closed_form) = 18.993309601550314901100324712728 y[1] (numeric) = 18.993309601550314901100324712714 absolute error = 1.4e-29 relative error = 7.3710165809424073810868337603096e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.9 y[1] (closed_form) = 19.174145369443060942676256574128 y[1] (numeric) = 19.174145369443060942676256574113 absolute error = 1.5e-29 relative error = 7.8230344617626602169932987483358e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.91 y[1] (closed_form) = 19.356798567017922915376293819354 y[1] (numeric) = 19.356798567017922915376293819338 absolute error = 1.6e-29 relative error = 8.2658296745735749658084334982927e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.92 y[1] (closed_form) = 19.541287459746869810747657378403 y[1] (numeric) = 19.541287459746869810747657378386 absolute error = 1.7e-29 relative error = 8.6995291559055809243819727402651e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.93 y[1] (closed_form) = 19.727630496672915779890735060899 y[1] (numeric) = 19.72763049667291577989073506088 absolute error = 1.9e-29 relative error = 9.6311617369376259473374318681763e-29 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.94 y[1] (closed_form) = 19.915846312255039809127950820668 y[1] (numeric) = 19.915846312255039809127950820648 absolute error = 2.0e-29 relative error = 1.0042254638053305805902756759190e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.95 y[1] (closed_form) = 20.105953728231647146669975298563 y[1] (numeric) = 20.105953728231647146669975298542 absolute error = 2.1e-29 relative error = 1.0444667427296912288634002699110e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.96 y[1] (closed_form) = 20.297971755502758827974833963076 y[1] (numeric) = 20.297971755502758827974833963053 absolute error = 2.3e-29 relative error = 1.1331181399326129297794195111390e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3520.3MB, alloc=40.3MB, time=36.77 TOP MAIN SOLVE Loop x[1] = 2.97 y[1] (closed_form) = 20.491919596031117520320945259013 y[1] (numeric) = 20.49191959603111752032094525899 absolute error = 2.3e-29 relative error = 1.1223936289723998531270809430008e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.98 y[1] (closed_form) = 20.687816644762399798762806219384 y[1] (numeric) = 20.687816644762399798762806219362 absolute error = 2.2e-29 relative error = 1.0634278318379146030393446179419e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 2.99 y[1] (closed_form) = 20.885682491564726876297103339624 y[1] (numeric) = 20.8856824915647268762971033396 absolute error = 2.4e-29 relative error = 1.1491125563980529850098997441081e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3 y[1] (closed_form) = 21.085536923187667740928529654582 y[1] (numeric) = 21.085536923187667740928529654558 absolute error = 2.4e-29 relative error = 1.1382209562616027410923556425220e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.01 y[1] (closed_form) = 21.28739992524093060158152265589 y[1] (numeric) = 21.287399925240930601581522655867 absolute error = 2.3e-29 relative error = 1.0804513506005213178292955732601e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.02 y[1] (closed_form) = 21.491291684192940513651429258142 y[1] (numeric) = 21.491291684192940513651429258119 absolute error = 2.3e-29 relative error = 1.0702009138388238203195059453098e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.03 y[1] (closed_form) = 21.697232589389503043623139836616 y[1] (numeric) = 21.697232589389503043623139836591 absolute error = 2.5e-29 relative error = 1.1522206759319911597873952245933e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.04 y[1] (closed_form) = 21.905243235092755840805878527866 y[1] (numeric) = 21.905243235092755840805878527842 absolute error = 2.4e-29 relative error = 1.0956280988266494405115784123996e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.05 y[1] (closed_form) = 22.115344422540612013040455245769 y[1] (numeric) = 22.115344422540612013040455245744 absolute error = 2.5e-29 relative error = 1.1304368370821872369340897263521e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3560.7MB, alloc=40.3MB, time=37.19 TOP MAIN SOLVE Loop x[1] = 3.06 y[1] (closed_form) = 22.327557162026901252432758671981 y[1] (numeric) = 22.327557162026901252432758671956 absolute error = 2.5e-29 relative error = 1.1196925762446684836913891622418e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.07 y[1] (closed_form) = 22.541902675002416726959520286426 y[1] (numeric) = 22.5419026750024167269595202864 absolute error = 2.6e-29 relative error = 1.1534075173180656334706486380982e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.08 y[1] (closed_form) = 22.758402396197077844386388260106 y[1] (numeric) = 22.758402396197077844386388260081 absolute error = 2.5e-29 relative error = 1.0984953849035331424269459436884e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.09 y[1] (closed_form) = 22.977077975763421106543177882497 y[1] (numeric) = 22.977077975763421106543177882472 absolute error = 2.5e-29 relative error = 1.0880408738818046611123513164816e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.1 y[1] (closed_form) = 23.197951281441633404827974381257 y[1] (numeric) = 23.197951281441633404827974381231 absolute error = 2.6e-29 relative error = 1.1207886284682391863980523354496e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.11 y[1] (closed_form) = 23.421044400746344262073838971462 y[1] (numeric) = 23.421044400746344262073838971435 absolute error = 2.7e-29 relative error = 1.1528093938944758297628280774286e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.12 y[1] (closed_form) = 23.646379643175395701824637747618 y[1] (numeric) = 23.646379643175395701824637747591 absolute error = 2.7e-29 relative error = 1.1418238397349124809646697733961e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.13 y[1] (closed_form) = 23.873979542440810623847568694562 y[1] (numeric) = 23.873979542440810623847568694536 absolute error = 2.6e-29 relative error = 1.0890517835026104255807989239216e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.14 y[1] (closed_form) = 24.103866858722182784579084580015 y[1] (numeric) = 24.103866858722182784579084579989 absolute error = 2.6e-29 relative error = 1.0786651018440921157996363047444e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3601.2MB, alloc=40.3MB, time=37.59 TOP MAIN SOLVE Loop x[1] = 3.15 y[1] (closed_form) = 24.33606458094271372338008756421 y[1] (numeric) = 24.336064580942713723380087564185 absolute error = 2.5e-29 relative error = 1.0272819550116252692500791817880e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.16 y[1] (closed_form) = 24.57059592906812424018972480695 y[1] (numeric) = 24.570595929068124240189724806924 absolute error = 2.6e-29 relative error = 1.0581753928581286957101575325269e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.17 y[1] (closed_form) = 24.807484356428670317641316402232 y[1] (numeric) = 24.807484356428670317641316402206 absolute error = 2.6e-29 relative error = 1.0480708009904397400491034008047e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.18 y[1] (closed_form) = 25.046753552064495691167646951714 y[1] (numeric) = 25.046753552064495691167646951688 absolute error = 2.6e-29 relative error = 1.0380586827731585326448684965412e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.19 y[1] (closed_form) = 25.288427443094555604307098296172 y[1] (numeric) = 25.288427443094555604307098296144 absolute error = 2.8e-29 relative error = 1.1072258274266827289322026303496e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.2 y[1] (closed_form) = 25.532530197109348643560263727964 y[1] (numeric) = 25.532530197109348643560263727936 absolute error = 2.8e-29 relative error = 1.0966402383094020424343008767565e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.21 y[1] (closed_form) = 25.779086224587695927974479188157 y[1] (numeric) = 25.779086224587695927974479188129 absolute error = 2.8e-29 relative error = 1.0861517648866091565858228959920e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.22 y[1] (closed_form) = 26.02812018133780933338921927269 y[1] (numeric) = 26.028120181337809333389219272661 absolute error = 2.9e-29 relative error = 1.1141795795453961270057610821479e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.23 y[1] (closed_form) = 26.279656970962892860199012888142 y[1] (numeric) = 26.279656970962892860199012888112 absolute error = 3.0e-29 relative error = 1.1415674121297631568523623326077e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.24 y[1] (closed_form) = 26.533721747351523706825329504055 y[1] (numeric) = 26.533721747351523706825329504026 absolute error = 2.9e-29 relative error = 1.0929488247495717049946963522312e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3641.7MB, alloc=40.3MB, time=38.02 TOP MAIN SOLVE Loop x[1] = 3.25 y[1] (closed_form) = 26.790339917193062089080107669377 y[1] (numeric) = 26.790339917193062089080107669349 absolute error = 2.8e-29 relative error = 1.0451528456356248855359966490780e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.26 y[1] (closed_form) = 27.049537142518341348499043982636 y[1] (numeric) = 27.049537142518341348499043982607 absolute error = 2.9e-29 relative error = 1.0721070696036342023928260620588e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.27 y[1] (closed_form) = 27.311339343265892420772724659149 y[1] (numeric) = 27.31133934326589242077272465912 absolute error = 2.9e-29 relative error = 1.0618300199602066599221936996181e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.28 y[1] (closed_form) = 27.575772699873959288860970327214 y[1] (numeric) = 27.575772699873959288860970327185 absolute error = 2.9e-29 relative error = 1.0516477748648019003076471473242e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.29 y[1] (closed_form) = 27.842863655898564624495725565399 y[1] (numeric) = 27.842863655898564624495725565369 absolute error = 3.0e-29 relative error = 1.0774753764828511761401755246376e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.3 y[1] (closed_form) = 28.112638920657887426818372110231 y[1] (numeric) = 28.1126389206578874268183721102 absolute error = 3.1e-29 relative error = 1.1027068674517213560980506952595e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.31 y[1] (closed_form) = 28.385125471903217098118984843308 y[1] (numeric) = 28.385125471903217098118984843277 absolute error = 3.1e-29 relative error = 1.0921212953835661194773694481750e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.32 y[1] (closed_form) = 28.660350558516751054310906965868 y[1] (numeric) = 28.660350558516751054310906965837 absolute error = 3.1e-29 relative error = 1.0816336644838419587170426005596e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.33 y[1] (closed_form) = 28.938341703236505652149863987642 y[1] (numeric) = 28.938341703236505652149863987612 absolute error = 3.0e-29 relative error = 1.0366869085882954019042567514031e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3682.2MB, alloc=40.3MB, time=38.44 TOP MAIN SOLVE Loop x[1] = 3.34 y[1] (closed_form) = 29.2191267054086129265611051166 y[1] (numeric) = 29.219126705408612926561105116569 absolute error = 3.1e-29 relative error = 1.0609488884642722100052189850703e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.35 y[1] (closed_form) = 29.502733643767278370041893023457 y[1] (numeric) = 29.502733643767278370041893023426 absolute error = 3.1e-29 relative error = 1.0507500889345226084492886853989e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.36 y[1] (closed_form) = 29.789190879242677752233921434877 y[1] (numeric) = 29.789190879242677752233921434845 absolute error = 3.2e-29 relative error = 1.0742151450074405991453165290935e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.37 y[1] (closed_form) = 30.078527057797073771687539613154 y[1] (numeric) = 30.078527057797073771687539613122 absolute error = 3.2e-29 relative error = 1.0638818828631714688620036804653e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.38 y[1] (closed_form) = 30.370771113289436153846398566086 y[1] (numeric) = 30.370771113289436153846398566055 absolute error = 3.1e-29 relative error = 1.0207182387422237736719391915900e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.39 y[1] (closed_form) = 30.665952270368851659649508823945 y[1] (numeric) = 30.665952270368851659649508823911 absolute error = 3.4e-29 relative error = 1.1087214804300302343702279208496e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.4 y[1] (closed_form) = 30.96410004739701334816275303373 y[1] (numeric) = 30.964100047397013348162753033696 absolute error = 3.4e-29 relative error = 1.0980457997473173311183711183179e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.41 y[1] (closed_form) = 31.265244259400081344601532358897 y[1] (numeric) = 31.265244259400081344601532358863 absolute error = 3.4e-29 relative error = 1.0874695146441306980216802280077e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.42 y[1] (closed_form) = 31.569415021050210302281241122151 y[1] (numeric) = 31.569415021050210302281241122117 absolute error = 3.4e-29 relative error = 1.0769917648879175257217880740654e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3722.6MB, alloc=40.3MB, time=38.86 TOP MAIN SOLVE Loop x[1] = 3.43 y[1] (closed_form) = 31.876642749677041713726379239121 y[1] (numeric) = 31.876642749677041713726379239088 absolute error = 3.3e-29 relative error = 1.0352407641903989272233985425201e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.44 y[1] (closed_form) = 32.186958168309462222678998645337 y[1] (numeric) = 32.186958168309462222678998645303 absolute error = 3.4e-29 relative error = 1.0563284614286918548322260997108e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.45 y[1] (closed_form) = 32.500392308747932115372491603845 y[1] (numeric) = 32.500392308747932115372491603812 absolute error = 3.3e-29 relative error = 1.0153723587858843024954945735563e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.46 y[1] (closed_form) = 32.81697651466769122648013054928 y[1] (numeric) = 32.816976514667691226480130549246 absolute error = 3.4e-29 relative error = 1.0360491309979013834824094296053e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.47 y[1] (closed_form) = 33.136742444753152582914967864034 y[1] (numeric) = 33.136742444753152582914967863999 absolute error = 3.5e-29 relative error = 1.0562293520056578237194912609655e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.48 y[1] (closed_form) = 33.459722075863797227457478986324 y[1] (numeric) = 33.45972207586379722745747898629 absolute error = 3.4e-29 relative error = 1.0161471133236319608856800705288e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.49 y[1] (closed_form) = 33.785947706231886814331566095013 y[1] (numeric) = 33.785947706231886814331566094978 absolute error = 3.5e-29 relative error = 1.0359336462698715054628574768629e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.5 y[1] (closed_form) = 34.115451958692313750653249350389 y[1] (numeric) = 34.115451958692313750653249350353 absolute error = 3.6e-29 relative error = 1.0552403070488274791504240921105e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.51 y[1] (closed_form) = 34.448267783944911871457741316409 y[1] (numeric) = 34.448267783944911871457741316372 absolute error = 3.7e-29 relative error = 1.0740743259446083950742310113901e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3763.1MB, alloc=40.3MB, time=39.28 TOP MAIN SOLVE Loop x[1] = 3.52 y[1] (closed_form) = 34.78442846384955388209100856303 y[1] (numeric) = 34.784428463849553882091008562994 absolute error = 3.6e-29 relative error = 1.0349458533554390380937015973660e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.53 y[1] (closed_form) = 35.123967614754365080455983293164 y[1] (numeric) = 35.123967614754365080455983293127 absolute error = 3.7e-29 relative error = 1.0534117445335981502588352350245e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.54 y[1] (closed_form) = 35.466919190857386183259170295692 y[1] (numeric) = 35.466919190857386183259170295655 absolute error = 3.7e-29 relative error = 1.0432256548952751804398066650022e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.55 y[1] (closed_form) = 35.813317487602021425341668911734 y[1] (numeric) = 35.813317487602021425341668911697 absolute error = 3.7e-29 relative error = 1.0331352300107017018570643875879e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.56 y[1] (closed_form) = 36.163197145106611479734092630969 y[1] (numeric) = 36.163197145106611479734092630931 absolute error = 3.8e-29 relative error = 1.0507920482672792039400145597234e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.57 y[1] (closed_form) = 36.516593151628474158585378769949 y[1] (numeric) = 36.51659315162847415858537876991 absolute error = 3.9e-29 relative error = 1.0680076270549016749709851282788e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.58 y[1] (closed_form) = 36.873540847062759301922291319834 y[1] (numeric) = 36.873540847062759301922291319793 absolute error = 4.1e-29 relative error = 1.1119084052722846284641643553145e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.59 y[1] (closed_form) = 37.234075926476467742644215040193 y[1] (numeric) = 37.234075926476467742644215040153 absolute error = 4.0e-29 relative error = 1.0742847513923860920459940743484e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.6 y[1] (closed_form) = 37.598234443677987752594765899184 y[1] (numeric) = 37.598234443677987752594765899143 absolute error = 4.1e-29 relative error = 1.0904767366515000622488345466524e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3803.5MB, alloc=40.3MB, time=39.69 TOP MAIN SOLVE Loop x[1] = 3.61 y[1] (closed_form) = 37.966052814822505926329448641597 y[1] (numeric) = 37.966052814822505926329448641556 absolute error = 4.1e-29 relative error = 1.0799121046366188593908505891389e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.62 y[1] (closed_form) = 38.337567822053653046672257335396 y[1] (numeric) = 38.337567822053653046672257335356 absolute error = 4.0e-29 relative error = 1.0433630058553175683495954962303e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.63 y[1] (closed_form) = 38.71281661718174909968248956046 y[1] (numeric) = 38.712816617181749099682489560419 absolute error = 4.1e-29 relative error = 1.0590807795112262580796551755977e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.64 y[1] (closed_form) = 39.091836725399015266598485317448 y[1] (numeric) = 39.091836725399015266598485317407 absolute error = 4.1e-29 relative error = 1.0488123207923151856510082732801e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.65 y[1] (closed_form) = 39.474666049032124417053505344034 y[1] (numeric) = 39.474666049032124417053505343992 absolute error = 4.2e-29 relative error = 1.0639735355286126354940854248898e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.66 y[1] (closed_form) = 39.861342871332465361740206261101 y[1] (numeric) = 39.861342871332465361740206261059 absolute error = 4.2e-29 relative error = 1.0536524104461522537704316797615e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.67 y[1] (closed_form) = 40.251905860304499894107543068851 y[1] (numeric) = 40.25190586030449989410754306881 absolute error = 4.1e-29 relative error = 1.0185853097811513385327225960107e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.68 y[1] (closed_form) = 40.646394072572595459984576852157 y[1] (numeric) = 40.646394072572595459984576852114 absolute error = 4.3e-29 relative error = 1.0579044213177958762190445723818e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.69 y[1] (closed_form) = 41.044846957286720141620521375166 y[1] (numeric) = 41.044846957286720141620521375124 absolute error = 4.2e-29 relative error = 1.0232709612416696044321572070298e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3843.9MB, alloc=40.3MB, time=40.11 TOP MAIN SOLVE Loop x[1] = 3.7 y[1] (closed_form) = 41.447304360067390528894189239039 y[1] (numeric) = 41.447304360067390528894189238995 absolute error = 4.4e-29 relative error = 1.0615889423774448563367309180366e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.71 y[1] (closed_form) = 41.853806526990266975767426064963 y[1] (numeric) = 41.853806526990266975767426064919 absolute error = 4.4e-29 relative error = 1.0512783340656414870587295493555e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.72 y[1] (closed_form) = 42.264394108610794704828685161265 y[1] (numeric) = 42.264394108610794704828685161219 absolute error = 4.6e-29 relative error = 1.0883865951512156297460180685543e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.73 y[1] (closed_form) = 42.679108164029293227391075798772 y[1] (numeric) = 42.679108164029293227391075798727 absolute error = 4.5e-29 relative error = 1.0543800453151641869808770001855e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.74 y[1] (closed_form) = 43.097990164996900591474480707947 y[1] (numeric) = 43.0979901649969005914744807079 absolute error = 4.7e-29 relative error = 1.0905380928452717795793382604162e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.75 y[1] (closed_form) = 43.521082000062783055518172621604 y[1] (numeric) = 43.521082000062783055518172621557 absolute error = 4.7e-29 relative error = 1.0799363857712039028334826744375e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.76 y[1] (closed_form) = 43.948425978763024912247320706349 y[1] (numeric) = 43.948425978763024912247320706302 absolute error = 4.7e-29 relative error = 1.0694353427517875550760784964234e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.77 y[1] (closed_form) = 44.380064835851617355166526689092 y[1] (numeric) = 44.380064835851617355166526689044 absolute error = 4.8e-29 relative error = 1.0815666939094709196067944871317e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.78 y[1] (closed_form) = 44.816041735573969490092875840424 y[1] (numeric) = 44.816041735573969490092875840378 absolute error = 4.6e-29 relative error = 1.0264181801554828296018878640149e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3884.2MB, alloc=40.3MB, time=40.53 TOP MAIN SOLVE Loop x[1] = 3.79 y[1] (closed_form) = 45.256400275983368846390927167131 y[1] (numeric) = 45.256400275983368846390927167084 absolute error = 4.7e-29 relative error = 1.0385271412083988326710597912464e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.8 y[1] (closed_form) = 45.701184493300823037557828729065 y[1] (numeric) = 45.701184493300823037557828729017 absolute error = 4.8e-29 relative error = 1.0503010049342627497080622553123e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.81 y[1] (closed_form) = 46.150438866318718558957830086431 y[1] (numeric) = 46.150438866318718558957830086382 absolute error = 4.9e-29 relative error = 1.0617450495310659728501323483898e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.82 y[1] (closed_form) = 46.604208320848737092255693225917 y[1] (numeric) = 46.604208320848737092255693225866 absolute error = 5.1e-29 relative error = 1.0943217755977795036640814113803e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.83 y[1] (closed_form) = 47.062538234214474111886054582464 y[1] (numeric) = 47.062538234214474111886054582411 absolute error = 5.3e-29 relative error = 1.1261611036837148335573730676607e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.84 y[1] (closed_form) = 47.525474439789209059163246411121 y[1] (numeric) = 47.52547443978920905916324641107 absolute error = 5.1e-29 relative error = 1.0731086980438822020538417931671e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.85 y[1] (closed_form) = 47.993063231579280864830476241162 y[1] (numeric) = 47.993063231579280864830476241111 absolute error = 5.1e-29 relative error = 1.0626535704527016820351490590532e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.86 y[1] (closed_form) = 48.46535136885352716142011166414 y[1] (numeric) = 48.465351368853527161420111664087 absolute error = 5.3e-29 relative error = 1.0935647530260285057451068147211e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.87 y[1] (closed_form) = 48.942386080819250133204185354246 y[1] (numeric) = 48.942386080819250133204185354194 absolute error = 5.2e-29 relative error = 1.0624737403307568417332071035057e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.88 y[1] (closed_form) = 49.424215071345176604216766568584 y[1] (numeric) = 49.424215071345176604216766568532 absolute error = 5.2e-29 relative error = 1.0521158489808408478792521591552e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3924.6MB, alloc=40.3MB, time=40.95 TOP MAIN SOLVE Loop x[1] = 3.89 y[1] (closed_form) = 49.910886523731884664292814557216 y[1] (numeric) = 49.910886523731884664292814557161 absolute error = 5.5e-29 relative error = 1.1019639968496315432618375505033e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.9 y[1] (closed_form) = 50.40244910553017387976148654122 y[1] (numeric) = 50.402449105530173879761486541166 absolute error = 5.4e-29 relative error = 1.0713765096401853538303125130255e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.91 y[1] (closed_form) = 50.89895197340786092983029148288 y[1] (numeric) = 50.898951973407860929830291482824 absolute error = 5.6e-29 relative error = 1.1002191170705671851318245245142e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.92 y[1] (closed_form) = 51.400444778065487352279404612568 y[1] (numeric) = 51.400444778065487352279404612513 absolute error = 5.5e-29 relative error = 1.0700296512506167829659075561856e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.93 y[1] (closed_form) = 51.906977669201430973337148919991 y[1] (numeric) = 51.906977669201430973337148919936 absolute error = 5.5e-29 relative error = 1.0595877947375423446399898248959e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.94 y[1] (closed_form) = 52.418601300526917537017237808153 y[1] (numeric) = 52.418601300526917537017237808096 absolute error = 5.7e-29 relative error = 1.0874002469697151140908977592588e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.95 y[1] (closed_form) = 52.9353668348314340392599029227 y[1] (numeric) = 52.935366834831434039259902922643 absolute error = 5.7e-29 relative error = 1.0767848304112259444106793786794e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.96 y[1] (closed_form) = 53.457325949099050312431513118509 y[1] (numeric) = 53.457325949099050312431513118452 absolute error = 5.7e-29 relative error = 1.0662710673982123601720436681174e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.97 y[1] (closed_form) = 53.984530839676160496604750057851 y[1] (numeric) = 53.984530839676160496604750057792 absolute error = 5.9e-29 relative error = 1.0929056728346650577346877140598e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=3965.1MB, alloc=40.3MB, time=41.36 TOP MAIN SOLVE Loop x[1] = 3.98 y[1] (closed_form) = 54.517034227491161176072934038621 y[1] (numeric) = 54.517034227491161176072934038563 absolute error = 5.8e-29 relative error = 1.0638876604691106408867803373333e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 3.99 y[1] (closed_form) = 55.054889363326588153261897764787 y[1] (numeric) = 55.054889363326588153261897764727 absolute error = 6.0e-29 relative error = 1.0898214617059510668012796131200e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4 y[1] (closed_form) = 55.598150033144239078110261202861 y[1] (numeric) = 55.5981500331442390781102612028 absolute error = 6.1e-29 relative error = 1.0971588076875850396343814149218e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.01 y[1] (closed_form) = 56.146870563463814449618662535082 y[1] (numeric) = 56.14687056346381444961866253502 absolute error = 6.2e-29 relative error = 1.1042467617125746733841717386071e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.02 y[1] (closed_form) = 56.701105826795614858150315907712 y[1] (numeric) = 56.701105826795614858150315907648 absolute error = 6.4e-29 relative error = 1.1287257817422512890739778269312e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.03 y[1] (closed_form) = 57.260911247127837742734388822998 y[1] (numeric) = 57.260911247127837742734388822933 absolute error = 6.5e-29 relative error = 1.1351548304823798776039253898285e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.04 y[1] (closed_form) = 57.826342805469022397620692052799 y[1] (numeric) = 57.826342805469022397620692052733 absolute error = 6.6e-29 relative error = 1.1413483336137581296249518826840e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.05 y[1] (closed_form) = 58.397457045446197477205057110728 y[1] (numeric) = 58.397457045446197477205057110661 absolute error = 6.7e-29 relative error = 1.1473102321537582128263277818907e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.06 y[1] (closed_form) = 58.974311078959290818741032291737 y[1] (numeric) = 58.97431107895929081874103229167 absolute error = 6.7e-29 relative error = 1.1360878791834517024184837165958e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=4005.5MB, alloc=40.3MB, time=41.78 TOP MAIN SOLVE Loop x[1] = 4.07 y[1] (closed_form) = 59.556962591892367028532192341085 y[1] (numeric) = 59.556962591892367028532192341018 absolute error = 6.7e-29 relative error = 1.1249734218165261437752473504879e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.08 y[1] (closed_form) = 60.145469849882263960123061503388 y[1] (numeric) = 60.145469849882263960123061503321 absolute error = 6.7e-29 relative error = 1.1139658592280687608399092747197e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.09 y[1] (closed_form) = 60.739891704145204952943682133229 y[1] (numeric) = 60.73989170414520495294368213316 absolute error = 6.9e-29 relative error = 1.1359914886922836323491646760973e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.1 y[1] (closed_form) = 61.340287597361969497487219708124 y[1] (numeric) = 61.340287597361969497487219708055 absolute error = 6.9e-29 relative error = 1.1248724566294248651684656811369e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.11 y[1] (closed_form) = 61.946717569622210848991447239727 y[1] (numeric) = 61.946717569622210848991447239659 absolute error = 6.8e-29 relative error = 1.0977175654799542236198883609201e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.12 y[1] (closed_form) = 62.559242264428515026339091755126 y[1] (numeric) = 62.559242264428515026339091755057 absolute error = 6.9e-29 relative error = 1.1029545356119783229879789004618e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.13 y[1] (closed_form) = 63.177922934760801607080332059943 y[1] (numeric) = 63.177922934760801607080332059873 absolute error = 7.0e-29 relative error = 1.1079819776962888770292066213335e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.14 y[1] (closed_form) = 63.802821449201672763710634207787 y[1] (numeric) = 63.802821449201672763710634207715 absolute error = 7.2e-29 relative error = 1.1284767407554966946945912341650e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.15 y[1] (closed_form) = 64.434000298123323081212027004718 y[1] (numeric) = 64.434000298123323081212027004645 absolute error = 7.3e-29 relative error = 1.1329422302238491707270465340710e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=4045.9MB, alloc=40.3MB, time=42.20 TOP MAIN SOLVE Loop x[1] = 4.16 y[1] (closed_form) = 65.071522599936628851995347043461 y[1] (numeric) = 65.071522599936628851995347043388 absolute error = 7.3e-29 relative error = 1.1218425062651153094042160530901e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.17 y[1] (closed_form) = 65.71545210740304176238053926293 y[1] (numeric) = 65.715452107403041762380539262856 absolute error = 7.4e-29 relative error = 1.1260669694405660065145347966387e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.18 y[1] (closed_form) = 66.365853214009918165243590001587 y[1] (numeric) = 66.365853214009918165243590001511 absolute error = 7.6e-29 relative error = 1.1451672256050540895291940330091e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.19 y[1] (closed_form) = 67.022790960409921477070149341099 y[1] (numeric) = 67.022790960409921477070149341023 absolute error = 7.6e-29 relative error = 1.1339426322143594087250746247060e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.2 y[1] (closed_form) = 67.686331040925141645021734653992 y[1] (numeric) = 67.686331040925141645021734653916 absolute error = 7.6e-29 relative error = 1.1228264086887523890405840658832e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.21 y[1] (closed_form) = 68.356539810116582101381339598584 y[1] (numeric) = 68.356539810116582101381339598508 absolute error = 7.6e-29 relative error = 1.1118175409568084451980194763231e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.22 y[1] (closed_form) = 69.033484289419671159548483832735 y[1] (numeric) = 69.033484289419671159548483832658 absolute error = 7.7e-29 relative error = 1.1154007478049504550455076112231e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.23 y[1] (closed_form) = 69.717232173846461408252914213396 y[1] (numeric) = 69.71723217384646140825291421332 absolute error = 7.6e-29 relative error = 1.0901178608250951124626244655275e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.24 y[1] (closed_form) = 70.407851838755187329511563631169 y[1] (numeric) = 70.407851838755187329511563631092 absolute error = 7.7e-29 relative error = 1.0936280256972169259579720890813e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=4086.3MB, alloc=40.3MB, time=42.63 TOP MAIN SOLVE Loop x[1] = 4.25 y[1] (closed_form) = 71.105412346687858101731879995094 y[1] (numeric) = 71.105412346687858101731879995017 absolute error = 7.7e-29 relative error = 1.0828992823299015167670192806749e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.26 y[1] (closed_form) = 71.809983454276569352939848696489 y[1] (numeric) = 71.809983454276569352939848696411 absolute error = 7.8e-29 relative error = 1.0861999439070305287575193070453e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.27 y[1] (closed_form) = 72.521635619219224501063310332678 y[1] (numeric) = 72.5216356192192245010633103326 absolute error = 7.8e-29 relative error = 1.0755411034790414196355347774682e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.28 y[1] (closed_form) = 73.240440007325363259217722516329 y[1] (numeric) = 73.240440007325363259217722516251 absolute error = 7.8e-29 relative error = 1.0649854095933693873079106905552e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.29 y[1] (closed_form) = 73.96646849963280189471643767276 y[1] (numeric) = 73.966468499632801894716437672682 absolute error = 7.8e-29 relative error = 1.0545318923856317692502122557392e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.3 y[1] (closed_form) = 74.699793699595796911761951170653 y[1] (numeric) = 74.699793699595796911761951170573 absolute error = 8.0e-29 relative error = 1.0709534262131822016294870651243e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.31 y[1] (closed_form) = 75.440488940345450980176545280381 y[1] (numeric) = 75.4404889403454509801765452803 absolute error = 8.1e-29 relative error = 1.0736939955950011285387095420587e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.32 y[1] (closed_form) = 76.188628292023087156815560466137 y[1] (numeric) = 76.188628292023087156815560466053 absolute error = 8.4e-29 relative error = 1.1025267403166354120433225390269e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.33 y[1] (closed_form) = 76.944286569187324743196600893995 y[1] (numeric) = 76.944286569187324743196600893911 absolute error = 8.4e-29 relative error = 1.0916989908596821857276063099593e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=4126.8MB, alloc=40.3MB, time=43.05 TOP MAIN SOLVE Loop x[1] = 4.34 y[1] (closed_form) = 77.70753933829559749310302086642 y[1] (numeric) = 77.707539338295597493103020866336 absolute error = 8.4e-29 relative error = 1.0809761924684104729282386542808e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.35 y[1] (closed_form) = 78.478462925260862328217071820222 y[1] (numeric) = 78.478462925260862328217071820136 absolute error = 8.6e-29 relative error = 1.0958420539135977998699816015510e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.36 y[1] (closed_form) = 79.257134423084254238951551456582 y[1] (numeric) = 79.257134423084254238951551456495 absolute error = 8.7e-29 relative error = 1.0976929791024664676002534310135e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.37 y[1] (closed_form) = 80.043631699564450642330605120616 y[1] (numeric) = 80.043631699564450642330605120529 absolute error = 8.7e-29 relative error = 1.0869072048922712952682913578276e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.38 y[1] (closed_form) = 80.838033405084516139779959223782 y[1] (numeric) = 80.838033405084516139779959223696 absolute error = 8.6e-29 relative error = 1.0638556676539685425773484073539e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.39 y[1] (closed_form) = 81.640418980477006365791424660798 y[1] (numeric) = 81.640418980477006365791424660709 absolute error = 8.9e-29 relative error = 1.0901462916460891646350159444273e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.4 y[1] (closed_form) = 82.450868664968117444400811726181 y[1] (numeric) = 82.450868664968117444400811726091 absolute error = 9.0e-29 relative error = 1.0915591485846815813561999386448e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.41 y[1] (closed_form) = 83.269463504201675475045050936085 y[1] (numeric) = 83.269463504201675475045050935994 absolute error = 9.1e-29 relative error = 1.0928375922033921965959552800438e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.42 y[1] (closed_form) = 84.096285358343768453433785661304 y[1] (numeric) = 84.096285358343768453433785661211 absolute error = 9.3e-29 relative error = 1.1058752429279901961165994738836e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=4167.3MB, alloc=40.3MB, time=43.45 TOP MAIN SOLVE Loop x[1] = 4.43 y[1] (closed_form) = 84.931416910268831097381406177663 y[1] (numeric) = 84.931416910268831097381406177569 absolute error = 9.4e-29 relative error = 1.1067753655789382068831036418421e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.44 y[1] (closed_form) = 85.774941673828001192903868431231 y[1] (numeric) = 85.774941673828001192903868431138 absolute error = 9.3e-29 relative error = 1.0842327395994783633576298703306e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.45 y[1] (closed_form) = 86.626944002200574303105227123016 y[1] (numeric) = 86.626944002200574303105227122922 absolute error = 9.4e-29 relative error = 1.0851127334886952586335321534806e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.46 y[1] (closed_form) = 87.4875090963293919922843405557 y[1] (numeric) = 87.487509096329391992284340555606 absolute error = 9.4e-29 relative error = 1.0744390938882479252324370963537e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.47 y[1] (closed_form) = 88.356723013441007111113671531353 y[1] (numeric) = 88.356723013441007111113671531259 absolute error = 9.4e-29 relative error = 1.0638692427026806544595158063826e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.48 y[1] (closed_form) = 89.234672675651478166518863585011 y[1] (numeric) = 89.234672675651478166518863584916 absolute error = 9.5e-29 relative error = 1.0646086005750727178406959786087e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.49 y[1] (closed_form) = 90.121445878658653362867599725013 y[1] (numeric) = 90.121445878658653362867599724918 absolute error = 9.5e-29 relative error = 1.0541331097584689339414362456345e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.5 y[1] (closed_form) = 91.017131300521813550115456745574 y[1] (numeric) = 91.017131300521813550115456745478 absolute error = 9.6e-29 relative error = 1.0547464925369452837089963357032e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.51 y[1] (closed_form) = 91.92181851052955205051996320841 y[1] (numeric) = 91.921818510529552050519963208313 absolute error = 9.7e-29 relative error = 1.0552445716561704809693001217532e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.52 y[1] (closed_form) = 92.835597978156778159295456987861 y[1] (numeric) = 92.835597978156778159295456987761 absolute error = 1.00e-28 relative error = 1.0771730045141620017185764962534e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=4207.7MB, alloc=40.3MB, time=43.88 TOP MAIN SOLVE Loop x[1] = 4.53 y[1] (closed_form) = 93.758561082111740027023002329753 y[1] (numeric) = 93.758561082111740027023002329652 absolute error = 1.01e-28 relative error = 1.0772349621657094634657341288340e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.54 y[1] (closed_form) = 94.690800119473971633642818281708 y[1] (numeric) = 94.690800119473971633642818281603 absolute error = 1.05e-28 relative error = 1.1088722438454277394792049921036e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.55 y[1] (closed_form) = 95.632408314924077656341598932635 y[1] (numeric) = 95.632408314924077656341598932531 absolute error = 1.04e-28 relative error = 1.0874974481194792166829868806768e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.56 y[1] (closed_form) = 96.583479830066279217513027221686 y[1] (numeric) = 96.583479830066279217513027221579 absolute error = 1.07e-28 relative error = 1.1078499158268169490788280443410e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.57 y[1] (closed_form) = 97.54410977284465277513509238733 y[1] (numeric) = 97.544109772844652775135092387222 absolute error = 1.08e-28 relative error = 1.1071914055241720711402207352171e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.58 y[1] (closed_form) = 98.51439420705400378730014068658 y[1] (numeric) = 98.514394207054003787300140686471 absolute error = 1.09e-28 relative error = 1.1064372965732066301389535566815e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.59 y[1] (closed_form) = 99.494430161946326246189866862324 y[1] (numeric) = 99.494430161946326246189866862215 absolute error = 1.09e-28 relative error = 1.0955387132986392315711292147518e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.6 y[1] (closed_form) = 100.48431564193380873545405348757 y[1] (numeric) = 100.48431564193380873545405348746 absolute error = 1.1e-28 relative error = 1.0946982053594753730243942294381e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.61 y[1] (closed_form) = 101.48414963638935731968466139449 y[1] (numeric) = 101.48414963638935731968466139438 absolute error = 1.1e-28 relative error = 1.0839131075554393631700228086834e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=4248.1MB, alloc=40.3MB, time=44.30 TOP MAIN SOLVE Loop x[1] = 4.62 y[1] (closed_form) = 102.49403212954561532644134822903 y[1] (numeric) = 102.49403212954561532644134822892 absolute error = 1.1e-28 relative error = 1.0732332187006492465302486449370e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.63 y[1] (closed_form) = 103.51406411049346993105582833176 y[1] (numeric) = 103.51406411049346993105582833165 absolute error = 1.1e-28 relative error = 1.0626575330148691855901975355618e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.64 y[1] (closed_form) = 104.54434758328104540320567097554 y[1] (numeric) = 104.54434758328104540320567097543 absolute error = 1.1e-28 relative error = 1.0521850539300838694418584204653e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.65 y[1] (closed_form) = 105.58498557711419292299805009791 y[1] (numeric) = 105.58498557711419292299805009779 absolute error = 1.2e-28 relative error = 1.1365252298335332362645654666201e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.66 y[1] (closed_form) = 106.63608215665949702404549041811 y[1] (numeric) = 106.63608215665949702404549041799 absolute error = 1.2e-28 relative error = 1.1253226635212227465653329271338e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.67 y[1] (closed_form) = 107.69774243245082897276378483542 y[1] (numeric) = 107.69774243245082897276378483529 absolute error = 1.3e-28 relative error = 1.2070819412165244270660854383444e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.68 y[1] (closed_form) = 108.77007257140048774790216962363 y[1] (numeric) = 108.77007257140048774790216962352 absolute error = 1.1e-28 relative error = 1.0113075904016901779868139248538e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.69 y[1] (closed_form) = 109.85317980741597974316302378673 y[1] (numeric) = 109.85317980741597974316302378661 absolute error = 1.2e-28 relative error = 1.0923671049884259033283640773547e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.7 y[1] (closed_form) = 110.94717245212349887972870045537 y[1] (numeric) = 110.94717245212349887972870045524 absolute error = 1.3e-28 relative error = 1.1717288248702171873424996614588e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=4288.4MB, alloc=40.3MB, time=44.72 TOP MAIN SOLVE Loop x[1] = 4.71 y[1] (closed_form) = 112.05215990569917948564300622207 y[1] (numeric) = 112.05215990569917948564300622194 absolute error = 1.3e-28 relative error = 1.1601739770960716685833131306411e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.72 y[1] (closed_form) = 113.1682526678092050763613407161 y[1] (numeric) = 113.16825266780920507636134071598 absolute error = 1.2e-28 relative error = 1.0603680552729262966774454149833e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.73 y[1] (closed_form) = 114.29556234865986705646433913828 y[1] (numeric) = 114.29556234865986705646433913814 absolute error = 1.4e-28 relative error = 1.2248944501705889844202477585030e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.74 y[1] (closed_form) = 115.43420168015867835761360206601 y[1] (numeric) = 115.43420168015867835761360206586 absolute error = 1.5e-28 relative error = 1.2994415677219747091702590859876e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.75 y[1] (closed_form) = 116.58428452718765813341426713653 y[1] (numeric) = 116.58428452718765813341426713637 absolute error = 1.6e-28 relative error = 1.3723976661939175981169587038729e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.76 y[1] (closed_form) = 117.74592589898991484904834409238 y[1] (numeric) = 117.74592589898991484904834409221 absolute error = 1.7e-28 relative error = 1.4437866847795397691245088954075e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.77 y[1] (closed_form) = 118.91924196067066643347662739359 y[1] (numeric) = 118.91924196067066643347662739344 absolute error = 1.5e-28 relative error = 1.2613602098944463204909985414316e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.78 y[1] (closed_form) = 120.10435004481384760580862199534 y[1] (numeric) = 120.10435004481384760580862199517 absolute error = 1.7e-28 relative error = 1.4154358267337434036731582632447e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.79 y[1] (closed_form) = 121.30136866321546604625365765727 y[1] (numeric) = 121.3013686632154660462536576571 absolute error = 1.7e-28 relative error = 1.4014681109822658688064737889903e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=4328.8MB, alloc=40.3MB, time=45.14 TOP MAIN SOLVE Loop x[1] = 4.8 y[1] (closed_form) = 122.51041751873488075704811629788 y[1] (numeric) = 122.51041751873488075704811629771 absolute error = 1.7e-28 relative error = 1.3876370960371821806230222556207e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.81 y[1] (closed_form) = 123.73161751726518775107096333766 y[1] (numeric) = 123.73161751726518775107096333748 absolute error = 1.8e-28 relative error = 1.4547615525585711240058490335704e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.82 y[1] (closed_form) = 124.96509077982391011669179924248 y[1] (numeric) = 124.96509077982391011669179924229 absolute error = 1.9e-28 relative error = 1.5204246147010859747000908018487e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.83 y[1] (closed_form) = 126.21096065476520153793352471171 y[1] (numeric) = 126.21096065476520153793352471151 absolute error = 2.0e-28 relative error = 1.5846484248469970812224790086388e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.84 y[1] (closed_form) = 127.46935173011478450047850596726 y[1] (numeric) = 127.46935173011478450047850596706 absolute error = 2.0e-28 relative error = 1.5690046060911264868958108964652e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.85 y[1] (closed_form) = 128.74038984602885668761799019549 y[1] (numeric) = 128.74038984602885668761799019528 absolute error = 2.1e-28 relative error = 1.6311897163831501954508121616724e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.86 y[1] (closed_form) = 130.0242021073782114671668226883 y[1] (numeric) = 130.02420210737821146716682268809 absolute error = 2.1e-28 relative error = 1.6150839351167498469078064017736e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.87 y[1] (closed_form) = 131.32091689645883089187895918358 y[1] (numeric) = 131.32091689645883089187895918337 absolute error = 2.1e-28 relative error = 1.5991359561217228361242415991440e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.88 y[1] (closed_form) = 132.63066388583022228325601109699 y[1] (numeric) = 132.63066388583022228325601109679 absolute error = 2.0e-28 relative error = 1.5079469116746785171380023203082e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=4369.3MB, alloc=40.3MB, time=45.56 TOP MAIN SOLVE Loop x[1] = 4.89 y[1] (closed_form) = 133.95357405128278224310585398182 y[1] (numeric) = 133.95357405128278224310585398161 absolute error = 2.1e-28 relative error = 1.5677073305980145505040519544113e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.9 y[1] (closed_form) = 135.28977968493548484005862777435 y[1] (numeric) = 135.28977968493548484005862777414 absolute error = 2.1e-28 relative error = 1.5522236822992143374272678679103e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.91 y[1] (closed_form) = 136.63941440846520375077355696288 y[1] (numeric) = 136.63941440846520375077355696267 absolute error = 2.1e-28 relative error = 1.5368918324857069754472597338051e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.92 y[1] (closed_form) = 138.00261318646899129907518322816 y[1] (numeric) = 138.00261318646899129907518322795 absolute error = 2.1e-28 relative error = 1.5217103151245999413744290358993e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.93 y[1] (closed_form) = 139.37951233996065063205819382868 y[1] (numeric) = 139.37951233996065063205819382849 absolute error = 1.9e-28 relative error = 1.3631845657241997525778491527293e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.94 y[1] (closed_form) = 140.77024956000295070162563718432 y[1] (numeric) = 140.77024956000295070162563718413 absolute error = 1.9e-28 relative error = 1.3497170076338679568071614960196e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.95 y[1] (closed_form) = 142.17496392147684728431889649845 y[1] (numeric) = 142.17496392147684728431889649825 absolute error = 2.0e-28 relative error = 1.4067174309990322041660415046975e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.96 y[1] (closed_form) = 143.59379589698908697301579351366 y[1] (numeric) = 143.59379589698908697301579351345 absolute error = 2.1e-28 relative error = 1.4624587273300387487948896630239e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.97 y[1] (closed_form) = 145.02688737091958491248570083683 y[1] (numeric) = 145.02688737091958491248570083662 absolute error = 2.1e-28 relative error = 1.4480073578556899719839007149683e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 memory used=4409.8MB, alloc=40.3MB, time=45.98 TOP MAIN SOLVE Loop x[1] = 4.98 y[1] (closed_form) = 146.47438165360998102828140547844 y[1] (numeric) = 146.47438165360998102828140547823 absolute error = 2.1e-28 relative error = 1.4336978086490142087620714934603e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 TOP MAIN SOLVE Loop x[1] = 4.99 y[1] (closed_form) = 147.93642349569479361641444906234 y[1] (numeric) = 147.93642349569479361641444906211 absolute error = 2.3e-28 relative error = 1.5547219174640476469526558885564e-28 % Desired digits = 8 Estimated correct digits = 12 Correct digits = 32 h = 0.001 NO POLE (given) for Equation 1 NO POLE (ratio test) for Equation 1 NO REAL POLE (three term test) for Equation 1 NO COMPLEX POLE (six term test) for Equation 1 Finished! diff ( y , x , 2 ) = diff ( y , x , 1 ) ; Iterations = 10000 Total Elapsed Time = 46 Seconds Elapsed Time(since restart) = 46 Seconds Time to Timeout = 2 Minutes 14 Seconds Percent Done = 100 % > quit memory used=4419.1MB, alloc=40.3MB, time=46.08