|\^/| Maple 2016 (X86 64 LINUX)
._|\| |/|_. Copyright (c) Maplesoft, a division of Waterloo Maple Inc. 2016
\ MAPLE / All rights reserved. Maple is a trademark of
<____ ____> Waterloo Maple Inc.
| Type ? for help.
#BEGIN OUTFILE1
# before write maple top matter
# before write_ats library and user def block
#BEGIN ATS LIBRARY BLOCK
# Begin Function number 2
> omniout_str := proc(iolevel,str)
> global glob_iolevel;
> if (glob_iolevel >= iolevel) then # if number 1
> printf("%s\n",str);
> fi;# end if 1;
> end;
omniout_str := proc(iolevel, str)
global glob_iolevel;
if iolevel <= glob_iolevel then printf("%s\n", str) end if
end proc
# End Function number 2
# Begin Function number 3
> omniout_str_noeol := proc(iolevel,str)
> global glob_iolevel;
> if (glob_iolevel >= iolevel) then # if number 1
> printf("%s",str);
> fi;# end if 1;
> end;
omniout_str_noeol := proc(iolevel, str)
global glob_iolevel;
if iolevel <= glob_iolevel then printf("%s", str) end if
end proc
# End Function number 3
# Begin Function number 4
> omniout_labstr := proc(iolevel,label,str)
> global glob_iolevel;
> if (glob_iolevel >= iolevel) then # if number 1
> print(label,str);
> fi;# end if 1;
> end;
omniout_labstr := proc(iolevel, label, str)
global glob_iolevel;
if iolevel <= glob_iolevel then print(label, str) end if
end proc
# End Function number 4
# Begin Function number 5
> omniout_float := proc(iolevel,prelabel,prelen,value,vallen,postlabel)
> global glob_iolevel;
> if (glob_iolevel >= iolevel) then # if number 1
> if vallen = 4 then
> printf("%-30s = %-42.4g %s \n",prelabel,value, postlabel);
> else
> printf("%-30s = %-42.32g %s \n",prelabel,value, postlabel);
> fi;# end if 1;
> fi;# end if 0;
> end;
omniout_float := proc(iolevel, prelabel, prelen, value, vallen, postlabel)
global glob_iolevel;
if iolevel <= glob_iolevel then
if vallen = 4 then
printf("%-30s = %-42.4g %s \n", prelabel, value, postlabel)
else printf("%-30s = %-42.32g %s \n", prelabel, value, postlabel)
end if
end if
end proc
# End Function number 5
# Begin Function number 6
> omniout_complex := proc(iolevel,prelabel,prelen,value,vallen,postlabel)
> global glob_iolevel;
> if (glob_iolevel >= iolevel) then # if number 0
> if vallen = 4 then
> printf("%-30s = %-20.4g %-20g %s \n",prelabel,Re(value), Im(value), postlabel);
> else
> printf("%-30s = %-20.12g %-20.12g %s \n",prelabel,Re(value),Im(value), postlabel);
> fi;# end if 0;
> fi;# end if -1;
> end;
omniout_complex := proc(iolevel, prelabel, prelen, value, vallen, postlabel)
global glob_iolevel;
if iolevel <= glob_iolevel then
if vallen = 4 then printf("%-30s = %-20.4g %-20g %s \n", prelabel,
Re(value), Im(value), postlabel)
else printf("%-30s = %-20.12g %-20.12g %s \n", prelabel, Re(value),
Im(value), postlabel)
end if
end if
end proc
# End Function number 6
# Begin Function number 7
> omniout_int := proc(iolevel,prelabel,prelen,value,vallen,postlabel)
> global glob_iolevel;
> if (glob_iolevel >= iolevel) then # if number -1
> if vallen = 5 then # if number 0
> printf("%-30s = %-32d %s\n",prelabel,value, postlabel);
> else
> printf("%-30s = %-32d %s \n",prelabel,value, postlabel);
> fi;# end if 0;
> fi;# end if -1;
> end;
omniout_int := proc(iolevel, prelabel, prelen, value, vallen, postlabel)
global glob_iolevel;
if iolevel <= glob_iolevel then
if vallen = 5 then
printf("%-30s = %-32d %s\n", prelabel, value, postlabel)
else printf("%-30s = %-32d %s \n", prelabel, value, postlabel)
end if
end if
end proc
# End Function number 7
# Begin Function number 8
> logitem_time := proc(fd,secs_in)
> global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year;
> local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int;
> fprintf(fd,"
");
> if (secs_in >= 0) then # if number -1
> years_int := int_trunc(secs_in / glob_sec_in_year);
> sec_temp := int_trunc(secs_in) mod int_trunc(glob_sec_in_year);
> days_int := int_trunc(sec_temp / glob_sec_in_day) ;
> sec_temp := sec_temp mod int_trunc(glob_sec_in_day) ;
> hours_int := int_trunc(sec_temp / glob_sec_in_hour);
> sec_temp := sec_temp mod int_trunc(glob_sec_in_hour);
> minutes_int := int_trunc(sec_temp / glob_sec_in_minute);
> sec_int := sec_temp mod int_trunc(glob_sec_in_minute);
> if (years_int > 0) then # if number 0
> fprintf(fd,"%d Years %d Days %d Hours %d Minutes %d Seconds",years_int,days_int,hours_int,minutes_int,sec_int);
> elif
> (days_int > 0) then # if number 1
> fprintf(fd,"%d Days %d Hours %d Minutes %d Seconds",days_int,hours_int,minutes_int,sec_int);
> elif
> (hours_int > 0) then # if number 2
> fprintf(fd,"%d Hours %d Minutes %d Seconds",hours_int,minutes_int,sec_int);
> elif
> (minutes_int > 0) then # if number 3
> fprintf(fd,"%d Minutes %d Seconds",minutes_int,sec_int);
> else
> fprintf(fd,"%d Seconds",sec_int);
> fi;# end if 3
> else
> fprintf(fd," 0.0 Seconds");
> fi;# end if 2
> fprintf(fd," | \n");
> end;
logitem_time := proc(fd, secs_in)
local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int;
global
glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year;
fprintf(fd, "");
if 0 <= secs_in then
years_int := int_trunc(secs_in/glob_sec_in_year);
sec_temp := int_trunc(secs_in) mod int_trunc(glob_sec_in_year);
days_int := int_trunc(sec_temp/glob_sec_in_day);
sec_temp := sec_temp mod int_trunc(glob_sec_in_day);
hours_int := int_trunc(sec_temp/glob_sec_in_hour);
sec_temp := sec_temp mod int_trunc(glob_sec_in_hour);
minutes_int := int_trunc(sec_temp/glob_sec_in_minute);
sec_int := sec_temp mod int_trunc(glob_sec_in_minute);
if 0 < years_int then fprintf(fd,
"%d Years %d Days %d Hours %d Minutes %d Seconds", years_int,
days_int, hours_int, minutes_int, sec_int)
elif 0 < days_int then fprintf(fd,
"%d Days %d Hours %d Minutes %d Seconds", days_int, hours_int,
minutes_int, sec_int)
elif 0 < hours_int then fprintf(fd,
"%d Hours %d Minutes %d Seconds", hours_int, minutes_int,
sec_int)
elif 0 < minutes_int then
fprintf(fd, "%d Minutes %d Seconds", minutes_int, sec_int)
else fprintf(fd, "%d Seconds", sec_int)
end if
else fprintf(fd, " 0.0 Seconds")
end if;
fprintf(fd, " | \n")
end proc
# End Function number 8
# Begin Function number 9
> omniout_timestr := proc(secs_in)
> global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year;
> local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int;
> if (secs_in >= 0) then # if number 2
> years_int := int_trunc(secs_in / glob_sec_in_year);
> sec_temp := (int_trunc(secs_in) mod int_trunc(glob_sec_in_year));
> days_int := int_trunc(sec_temp / glob_sec_in_day) ;
> sec_temp := (sec_temp mod int_trunc(glob_sec_in_day)) ;
> hours_int := int_trunc(sec_temp / glob_sec_in_hour);
> sec_temp := (sec_temp mod int_trunc(glob_sec_in_hour));
> minutes_int := int_trunc(sec_temp / glob_sec_in_minute);
> sec_int := (sec_temp mod int_trunc(glob_sec_in_minute));
> if (years_int > 0) then # if number 3
> printf(" = %d Years %d Days %d Hours %d Minutes %d Seconds\n",years_int,days_int,hours_int,minutes_int,sec_int);
> elif
> (days_int > 0) then # if number 4
> printf(" = %d Days %d Hours %d Minutes %d Seconds\n",days_int,hours_int,minutes_int,sec_int);
> elif
> (hours_int > 0) then # if number 5
> printf(" = %d Hours %d Minutes %d Seconds\n",hours_int,minutes_int,sec_int);
> elif
> (minutes_int > 0) then # if number 6
> printf(" = %d Minutes %d Seconds\n",minutes_int,sec_int);
> else
> printf(" = %d Seconds\n",sec_int);
> fi;# end if 6
> else
> printf(" 0.0 Seconds\n");
> fi;# end if 5
> end;
omniout_timestr := proc(secs_in)
local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int;
global
glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year;
if 0 <= secs_in then
years_int := int_trunc(secs_in/glob_sec_in_year);
sec_temp := int_trunc(secs_in) mod int_trunc(glob_sec_in_year);
days_int := int_trunc(sec_temp/glob_sec_in_day);
sec_temp := sec_temp mod int_trunc(glob_sec_in_day);
hours_int := int_trunc(sec_temp/glob_sec_in_hour);
sec_temp := sec_temp mod int_trunc(glob_sec_in_hour);
minutes_int := int_trunc(sec_temp/glob_sec_in_minute);
sec_int := sec_temp mod int_trunc(glob_sec_in_minute);
if 0 < years_int then printf(
" = %d Years %d Days %d Hours %d Minutes %d Seconds\n",
years_int, days_int, hours_int, minutes_int, sec_int)
elif 0 < days_int then printf(
" = %d Days %d Hours %d Minutes %d Seconds\n", days_int,
hours_int, minutes_int, sec_int)
elif 0 < hours_int then printf(
" = %d Hours %d Minutes %d Seconds\n", hours_int, minutes_int,
sec_int)
elif 0 < minutes_int then
printf(" = %d Minutes %d Seconds\n", minutes_int, sec_int)
else printf(" = %d Seconds\n", sec_int)
end if
else printf(" 0.0 Seconds\n")
end if
end proc
# End Function number 9
# Begin Function number 10
> zero_ats_ar := proc(arr_a)
> global ATS_MAX_TERMS;
> local iii;
> iii := 1;
> while (iii <= ATS_MAX_TERMS) do # do number 1
> arr_a [iii] := glob__0;
> iii := iii + 1;
> od;# end do number 1
> end;
zero_ats_ar := proc(arr_a)
local iii;
global ATS_MAX_TERMS;
iii := 1;
while iii <= ATS_MAX_TERMS do arr_a[iii] := glob__0; iii := iii + 1
end do
end proc
# End Function number 10
# Begin Function number 11
> ats := proc(mmm_ats,arr_a,arr_b,jjj_ats)
> global ATS_MAX_TERMS;
> local iii_ats, lll_ats,ma_ats, ret_ats;
> ret_ats := glob__0;
> if (jjj_ats <= mmm_ats) then # if number 5
> ma_ats := mmm_ats + 1;
> iii_ats := jjj_ats;
> while (iii_ats <= mmm_ats) do # do number 1
> lll_ats := ma_ats - iii_ats;
> if ((lll_ats <= ATS_MAX_TERMS and (iii_ats <= ATS_MAX_TERMS) )) then # if number 6
> ret_ats := ret_ats + c(arr_a[iii_ats])*c(arr_b[lll_ats]);
> fi;# end if 6;
> iii_ats := iii_ats + 1;
> od;# end do number 1
> fi;# end if 5;
> ret_ats;
> end;
ats := proc(mmm_ats, arr_a, arr_b, jjj_ats)
local iii_ats, lll_ats, ma_ats, ret_ats;
global ATS_MAX_TERMS;
ret_ats := glob__0;
if jjj_ats <= mmm_ats then
ma_ats := mmm_ats + 1;
iii_ats := jjj_ats;
while iii_ats <= mmm_ats do
lll_ats := ma_ats - iii_ats;
if lll_ats <= ATS_MAX_TERMS and iii_ats <= ATS_MAX_TERMS then
ret_ats := ret_ats + c(arr_a[iii_ats])*c(arr_b[lll_ats])
end if;
iii_ats := iii_ats + 1
end do
end if;
ret_ats
end proc
# End Function number 11
# Begin Function number 12
> att := proc(mmm_att,arr_aa,arr_bb,jjj_att)
> global ATS_MAX_TERMS;
> local al_att, iii_att,lll_att, ma_att, ret_att;
> ret_att := glob__0;
> if (jjj_att < mmm_att) then # if number 5
> ma_att := mmm_att + 2;
> iii_att := jjj_att;
> while ((iii_att < mmm_att) and (iii_att <= ATS_MAX_TERMS) ) do # do number 1
> lll_att := ma_att - iii_att;
> al_att := (lll_att - 1);
> if ((lll_att <= ATS_MAX_TERMS and (iii_att <= ATS_MAX_TERMS) )) then # if number 6
> ret_att := ret_att + c(arr_aa[iii_att])*c(arr_bb[lll_att])* c(al_att);
> fi;# end if 6;
> iii_att := iii_att + 1;
> od;# end do number 1;
> ret_att := ret_att / c(mmm_att) ;
> fi;# end if 5;
> ret_att;
> end;
att := proc(mmm_att, arr_aa, arr_bb, jjj_att)
local al_att, iii_att, lll_att, ma_att, ret_att;
global ATS_MAX_TERMS;
ret_att := glob__0;
if jjj_att < mmm_att then
ma_att := mmm_att + 2;
iii_att := jjj_att;
while iii_att < mmm_att and iii_att <= ATS_MAX_TERMS do
lll_att := ma_att - iii_att;
al_att := lll_att - 1;
if lll_att <= ATS_MAX_TERMS and iii_att <= ATS_MAX_TERMS then
ret_att :=
ret_att + c(arr_aa[iii_att])*c(arr_bb[lll_att])*c(al_att)
end if;
iii_att := iii_att + 1
end do;
ret_att := ret_att/c(mmm_att)
end if;
ret_att
end proc
# End Function number 12
# Begin Function number 13
> logditto := proc(file)
> fprintf(file,"");
> fprintf(file,"ditto");
> fprintf(file," | ");
> end;
logditto := proc(file)
fprintf(file, ""); fprintf(file, "ditto"); fprintf(file, " | ")
end proc
# End Function number 13
# Begin Function number 14
> logitem_integer := proc(file,n)
> fprintf(file,"");
> fprintf(file,"%d",n);
> fprintf(file," | ");
> end;
logitem_integer := proc(file, n)
fprintf(file, ""); fprintf(file, "%d", n); fprintf(file, " | ")
end proc
# End Function number 14
# Begin Function number 15
> logitem_str := proc(file,str)
> fprintf(file,"");
> fprintf(file,str);
> fprintf(file," | ");
> end;
logitem_str := proc(file, str)
fprintf(file, ""); fprintf(file, str); fprintf(file, " | ")
end proc
# End Function number 15
# Begin Function number 16
> logitem_good_digits := proc(file,rel_error)
> global glob_small_float,glob_prec;
> local good_digits;
> fprintf(file,"");
> fprintf(file,"%d",glob_min_good_digits);
> fprintf(file," | ");
> end;
logitem_good_digits := proc(file, rel_error)
local good_digits;
global glob_small_float, glob_prec;
fprintf(file, "");
fprintf(file, "%d", glob_min_good_digits);
fprintf(file, " | ")
end proc
# End Function number 16
# Begin Function number 17
> log_revs := proc(file,revs)
> fprintf(file,revs);
> end;
log_revs := proc(file, revs) fprintf(file, revs) end proc
# End Function number 17
# Begin Function number 18
> logitem_float := proc(file,x)
> fprintf(file,"");
> fprintf(file,"%g",x);
> fprintf(file," | ");
> end;
logitem_float := proc(file, x)
fprintf(file, ""); fprintf(file, "%g", x); fprintf(file, " | ")
end proc
# End Function number 18
# Begin Function number 19
> logitem_complex := proc(file,x)
> fprintf(file,"");
> fprintf(file,"%g + %g I",Re(x),Im(x));
> fprintf(file," | ");
> end;
logitem_complex := proc(file, x)
fprintf(file, "");
fprintf(file, "%g + %g I", Re(x), Im(x));
fprintf(file, " | ")
end proc
# End Function number 19
# Begin Function number 20
> logitem_h_reason := proc(file)
> global glob_h_reason;
> fprintf(file,"");
> if (glob_h_reason = 1) then # if number 5
> fprintf(file,"Max H");
> elif
> (glob_h_reason = 2) then # if number 6
> fprintf(file,"Display Interval");
> elif
> (glob_h_reason = 3) then # if number 7
> fprintf(file,"Optimal");
> elif
> (glob_h_reason = 4) then # if number 8
> fprintf(file,"Pole Accuracy");
> elif
> (glob_h_reason = 5) then # if number 9
> fprintf(file,"Min H (Pole)");
> elif
> (glob_h_reason = 6) then # if number 10
> fprintf(file,"Pole");
> elif
> (glob_h_reason = 7) then # if number 11
> fprintf(file,"Opt Iter");
> else
> fprintf(file,"Impossible");
> fi;# end if 11
> fprintf(file," | ");
> end;
logitem_h_reason := proc(file)
global glob_h_reason;
fprintf(file, "");
if glob_h_reason = 1 then fprintf(file, "Max H")
elif glob_h_reason = 2 then fprintf(file, "Display Interval")
elif glob_h_reason = 3 then fprintf(file, "Optimal")
elif glob_h_reason = 4 then fprintf(file, "Pole Accuracy")
elif glob_h_reason = 5 then fprintf(file, "Min H (Pole)")
elif glob_h_reason = 6 then fprintf(file, "Pole")
elif glob_h_reason = 7 then fprintf(file, "Opt Iter")
else fprintf(file, "Impossible")
end if;
fprintf(file, " | ")
end proc
# End Function number 20
# Begin Function number 21
> logstart := proc(file)
> fprintf(file,"");
> end;
logstart := proc(file) fprintf(file, "
") end proc
# End Function number 21
# Begin Function number 22
> logend := proc(file)
> fprintf(file,"
\n");
> end;
logend := proc(file) fprintf(file, "\n") end proc
# End Function number 22
# Begin Function number 23
> chk_data := proc()
> global glob_max_iter,ALWAYS, ATS_MAX_TERMS;
> local errflag;
> errflag := false;
> if (glob_max_iter < 2) then # if number 11
> omniout_str(ALWAYS,"Illegal max_iter");
> errflag := true;
> fi;# end if 11;
> if (errflag) then # if number 11
> quit;
> fi;# end if 11
> end;
chk_data := proc()
local errflag;
global glob_max_iter, ALWAYS, ATS_MAX_TERMS;
errflag := false;
if glob_max_iter < 2 then
omniout_str(ALWAYS, "Illegal max_iter"); errflag := true
end if;
if errflag then quit end if
end proc
# End Function number 23
# Begin Function number 24
> comp_expect_sec := proc(t_end2,t_start2,t2,clock_sec2)
> global glob_small_float;
> local ms2, rrr, sec_left, sub1, sub2;
> ;
> ms2 := c(clock_sec2);
> sub1 := c(t_end2-t_start2);
> sub2 := c(t2-t_start2);
> if (sub1 = glob__0) then # if number 11
> sec_left := glob__0;
> else
> if (sub2 > glob__0) then # if number 12
> rrr := (sub1/sub2);
> sec_left := rrr * c(ms2) - c(ms2);
> else
> sec_left := glob__0;
> fi;# end if 12
> fi;# end if 11;
> sec_left;
> end;
comp_expect_sec := proc(t_end2, t_start2, t2, clock_sec2)
local ms2, rrr, sec_left, sub1, sub2;
global glob_small_float;
ms2 := c(clock_sec2);
sub1 := c(t_end2 - t_start2);
sub2 := c(t2 - t_start2);
if sub1 = glob__0 then sec_left := glob__0
else
if glob__0 < sub2 then
rrr := sub1/sub2; sec_left := rrr*c(ms2) - c(ms2)
else sec_left := glob__0
end if
end if;
sec_left
end proc
# End Function number 24
# Begin Function number 25
> comp_percent := proc(t_end2,t_start2, t2)
> global glob_small_float;
> local rrr, sub1, sub2;
> sub1 := (t_end2-t_start2);
> sub2 := (t2-t_start2);
> if (sub2 > glob_small_float) then # if number 11
> rrr := (glob__100*sub2)/sub1;
> else
> rrr := 0.0;
> fi;# end if 11;
> rrr;
> end;
comp_percent := proc(t_end2, t_start2, t2)
local rrr, sub1, sub2;
global glob_small_float;
sub1 := t_end2 - t_start2;
sub2 := t2 - t_start2;
if glob_small_float < sub2 then rrr := glob__100*sub2/sub1
else rrr := 0.
end if;
rrr
end proc
# End Function number 25
# Begin Function number 26
> comp_rad_from_ratio := proc(term1,term2,last_no)
> #TOP TWO TERM RADIUS ANALYSIS
> global glob_h,glob_larger_float;
> local ret;
> if (float_abs(term2) > glob__0) then # if number 11
> ret := float_abs(term1 * glob_h / term2);
> else
> ret := glob_larger_float;
> fi;# end if 11;
> ret;
> #BOTTOM TWO TERM RADIUS ANALYSIS
> end;
comp_rad_from_ratio := proc(term1, term2, last_no)
local ret;
global glob_h, glob_larger_float;
if glob__0 < float_abs(term2) then ret := float_abs(term1*glob_h/term2)
else ret := glob_larger_float
end if;
ret
end proc
# End Function number 26
# Begin Function number 27
> comp_ord_from_ratio := proc(term1,term2,last_no)
> #TOP TWO TERM ORDER ANALYSIS
> global glob_h,glob_larger_float;
> local ret;
> if (float_abs(term2) > glob__0) then # if number 11
> ret := glob__1 + float_abs(term2) * c(last_no) * ln(float_abs(term1 * glob_h / term2))/ln(c(last_no));
> else
> ret := glob_larger_float;
> fi;# end if 11;
> ret;
> #BOTTOM TWO TERM ORDER ANALYSIS
> end;
comp_ord_from_ratio := proc(term1, term2, last_no)
local ret;
global glob_h, glob_larger_float;
if glob__0 < float_abs(term2) then ret := glob__1 + float_abs(term2)*
c(last_no)*ln(float_abs(term1*glob_h/term2))/ln(c(last_no))
else ret := glob_larger_float
end if;
ret
end proc
# End Function number 27
# Begin Function number 28
> c := proc(in_val)
> #To Force Conversion when needed
> local ret;
> ret := evalc(in_val);
> ret;
> #End Conversion
> end;
c := proc(in_val) local ret; ret := evalc(in_val); ret end proc
# End Function number 28
# Begin Function number 29
> comp_rad_from_three_terms := proc(term1,term2,term3,last_no)
> #TOP THREE TERM RADIUS ANALYSIS
> global glob_h,glob_larger_float;
> local ret,temp;
> temp := float_abs(term2*term2*c(last_no)+glob__m2*term2*term2-term1*term3*c(last_no)+term1*term3);
> if (float_abs(temp) > glob__0) then # if number 11
> ret := float_abs((term2*glob_h*term1)/(temp));
> else
> ret := glob_larger_float;
> fi;# end if 11;
> ret;
> #BOTTOM THREE TERM RADIUS ANALYSIS
> end;
comp_rad_from_three_terms := proc(term1, term2, term3, last_no)
local ret, temp;
global glob_h, glob_larger_float;
temp := float_abs(term2*term2*c(last_no) + glob__m2*term2*term2
- term1*term3*c(last_no) + term1*term3);
if glob__0 < float_abs(temp) then
ret := float_abs(term2*glob_h*term1/temp)
else ret := glob_larger_float
end if;
ret
end proc
# End Function number 29
# Begin Function number 30
> comp_ord_from_three_terms := proc(term1,term2,term3,last_no)
> #TOP THREE TERM ORDER ANALYSIS
> local ret;
> ret := float_abs((glob__4*term1*term3*c(last_no)-glob__3*term1*term3-glob__4*term2*term2*c(last_no)+glob__4*term2*term2+term2*term2*c(last_no*last_no)-term1*term3*c(last_no*last_no))/(term2*term2*c(last_no)-glob__2*term2*term2-term1*term3*c(last_no)+term1*term3));
> ret;
> #TOP THREE TERM ORDER ANALYSIS
> end;
comp_ord_from_three_terms := proc(term1, term2, term3, last_no)
local ret;
ret := float_abs((glob__4*term1*term3*c(last_no) - glob__3*term1*term3
- glob__4*term2*term2*c(last_no) + glob__4*term2*term2
+ term2*term2*c(last_no*last_no) - term1*term3*c(last_no*last_no))
/(term2*term2*c(last_no) - glob__2*term2*term2
- term1*term3*c(last_no) + term1*term3));
ret
end proc
# End Function number 30
# Begin Function number 31
> comp_rad_from_six_terms := proc(term1,term2,term3,term4,term5,term6,last_no)
> #TOP SIX TERM RADIUS ANALYSIS
> global glob_h,glob_larger_float,glob_six_term_ord_save;
> local ret,rm0,rm1,rm2,rm3,rm4,nr1,nr2,dr1,dr2,ds2,rad_c,ord_no,ds1,rcs;
> if ((term5 <> glob__0) and (term4 <> glob__0) and (term3 <> glob__0) and (term2 <> glob__0) and (term1 <> glob__0)) then # if number 11
> rm0 := term6/term5;
> rm1 := term5/term4;
> rm2 := term4/term3;
> rm3 := term3/term2;
> rm4 := term2/term1;
> nr1 := c(last_no-1)*rm0 - glob__2*c(last_no-2)*rm1 + c(last_no-3)*rm2;
> nr2 := c(last_no-2)*rm1 - glob__2*c(last_no-3)*rm2 + c(last_no-4)*rm3;
> dr1 := glob__m1/rm1 + glob__2/rm2 - glob__1/rm3;
> dr2 := glob__m1/rm2 + glob__2/rm3 - glob__1/rm4;
> ds1 := glob__3/rm1 - glob__8/rm2 + glob__5/rm3;
> ds2 := glob__3/rm2 - glob__8/rm3 + glob__5/rm4;
> if ((float_abs(nr1 * dr2 - nr2 * dr1) = glob__0) or (float_abs(dr1) = glob__0)) then # if number 12
> rad_c := glob_larger_float;
> ord_no := glob_larger_float;
> else
> if (float_abs(nr1*dr2 - nr2 * dr1) > glob__0) then # if number 13
> rcs := ((ds1*dr2 - ds2*dr1 +dr1*dr2)/(nr1*dr2 - nr2 * dr1));
> #(Manuels) rcs := (ds1*dr2 - ds2*dr1)/(nr1*dr2 - nr2 * dr1)
> ord_no := (rcs*nr1 - ds1)/(glob__2*dr1) -c(last_no)/glob__2;
> if (float_abs(rcs) <> glob__0) then # if number 14
> if (rcs > glob__0) then # if number 15
> rad_c := float_abs( sqrt(rcs) * float_abs(glob_h));
> else
> rad_c := glob_larger_float;
> ord_no := glob_larger_float;
> fi;# end if 15
> else
> rad_c := glob_larger_float;
> ord_no := glob_larger_float;
> fi;# end if 14
> else
> rad_c := glob_larger_float;
> ord_no := glob_larger_float;
> fi;# end if 13
> fi;# end if 12
> else
> rad_c := glob_larger_float;
> ord_no := glob_larger_float;
> fi;# end if 11;
> glob_six_term_ord_save := ord_no;
> rad_c;
> #BOTTOM SIX TERM RADIUS ANALYSIS
> end;
comp_rad_from_six_terms := proc(
term1, term2, term3, term4, term5, term6, last_no)
local ret, rm0, rm1, rm2, rm3, rm4, nr1, nr2, dr1, dr2, ds2, rad_c, ord_no,
ds1, rcs;
global glob_h, glob_larger_float, glob_six_term_ord_save;
if term5 <> glob__0 and term4 <> glob__0 and term3 <> glob__0 and
term2 <> glob__0 and term1 <> glob__0 then
rm0 := term6/term5;
rm1 := term5/term4;
rm2 := term4/term3;
rm3 := term3/term2;
rm4 := term2/term1;
nr1 := c(last_no - 1)*rm0 - glob__2*c(last_no - 2)*rm1
+ c(last_no - 3)*rm2;
nr2 := c(last_no - 2)*rm1 - glob__2*c(last_no - 3)*rm2
+ c(last_no - 4)*rm3;
dr1 := glob__m1/rm1 + glob__2/rm2 - glob__1/rm3;
dr2 := glob__m1/rm2 + glob__2/rm3 - glob__1/rm4;
ds1 := glob__3/rm1 - glob__8/rm2 + glob__5/rm3;
ds2 := glob__3/rm2 - glob__8/rm3 + glob__5/rm4;
if
float_abs(nr1*dr2 - nr2*dr1) = glob__0 or float_abs(dr1) = glob__0
then rad_c := glob_larger_float; ord_no := glob_larger_float
else
if glob__0 < float_abs(nr1*dr2 - nr2*dr1) then
rcs := (ds1*dr2 - ds2*dr1 + dr1*dr2)/(nr1*dr2 - nr2*dr1);
ord_no :=
(rcs*nr1 - ds1)/(glob__2*dr1) - c(last_no)/glob__2;
if float_abs(rcs) <> glob__0 then
if glob__0 < rcs then
rad_c := float_abs(sqrt(rcs)*float_abs(glob_h))
else
rad_c := glob_larger_float;
ord_no := glob_larger_float
end if
else
rad_c := glob_larger_float; ord_no := glob_larger_float
end if
else rad_c := glob_larger_float; ord_no := glob_larger_float
end if
end if
else rad_c := glob_larger_float; ord_no := glob_larger_float
end if;
glob_six_term_ord_save := ord_no;
rad_c
end proc
# End Function number 31
# Begin Function number 32
> comp_ord_from_six_terms := proc(term1,term2,term3,term4,term5,term6,last_no)
> global glob_six_term_ord_save;
> #TOP SIX TERM ORDER ANALYSIS
> #TOP SAVED FROM SIX TERM RADIUS ANALYSIS
> glob_six_term_ord_save;
> #BOTTOM SIX TERM ORDER ANALYSIS
> end;
comp_ord_from_six_terms := proc(
term1, term2, term3, term4, term5, term6, last_no)
global glob_six_term_ord_save;
glob_six_term_ord_save
end proc
# End Function number 32
# Begin Function number 33
> factorial_2 := proc(nnn)
> ret := nnn!;
> ret;;
> end;
Warning, `ret` is implicitly declared local to procedure `factorial_2`
factorial_2 := proc(nnn) local ret; ret := nnn!; ret end proc
# End Function number 33
# Begin Function number 34
> factorial_1 := proc(nnn)
> global ATS_MAX_TERMS,array_fact_1;
> local ret;
> if (nnn <= ATS_MAX_TERMS) then # if number 11
> if (array_fact_1[nnn] = 0) then # if number 12
> ret := factorial_2(nnn);
> array_fact_1[nnn] := ret;
> else
> ret := array_fact_1[nnn];
> fi;# end if 12;
> else
> ret := factorial_2(nnn);
> fi;# end if 11;
> ret;
> end;
factorial_1 := proc(nnn)
local ret;
global ATS_MAX_TERMS, array_fact_1;
if nnn <= ATS_MAX_TERMS then
if array_fact_1[nnn] = 0 then
ret := factorial_2(nnn); array_fact_1[nnn] := ret
else ret := array_fact_1[nnn]
end if
else ret := factorial_2(nnn)
end if;
ret
end proc
# End Function number 34
# Begin Function number 35
> factorial_3 := proc(mmm,nnn)
> global ATS_MAX_TERMS,array_fact_2;
> local ret;
> if ((nnn <= ATS_MAX_TERMS) and (mmm <= ATS_MAX_TERMS)) then # if number 11
> if (array_fact_2[mmm,nnn] = 0) then # if number 12
> ret := factorial_1(mmm)/factorial_1(nnn);
> array_fact_2[mmm,nnn] := ret;
> else
> ret := array_fact_2[mmm,nnn];
> fi;# end if 12;
> else
> ret := factorial_2(mmm)/factorial_2(nnn);
> fi;# end if 11;
> ret;
> end;
factorial_3 := proc(mmm, nnn)
local ret;
global ATS_MAX_TERMS, array_fact_2;
if nnn <= ATS_MAX_TERMS and mmm <= ATS_MAX_TERMS then
if array_fact_2[mmm, nnn] = 0 then
ret := factorial_1(mmm)/factorial_1(nnn);
array_fact_2[mmm, nnn] := ret
else ret := array_fact_2[mmm, nnn]
end if
else ret := factorial_2(mmm)/factorial_2(nnn)
end if;
ret
end proc
# End Function number 35
# Begin Function number 36
> convfloat := proc(mmm)
> (mmm);
> end;
convfloat := proc(mmm) mmm end proc
# End Function number 36
# Begin Function number 37
> elapsed_time_seconds := proc()
> time();
> end;
elapsed_time_seconds := proc() time() end proc
# End Function number 37
# Begin Function number 38
> float_abs := proc(x)
> abs(x);
> end;
float_abs := proc(x) abs(x) end proc
# End Function number 38
# Begin Function number 39
> expt := proc(x,y)
> x^y;
> end;
expt := proc(x, y) x^y end proc
# End Function number 39
# Begin Function number 40
> neg := proc(x)
> -x;
> end;
neg := proc(x) -x end proc
# End Function number 40
# Begin Function number 41
> int_trunc := proc(x)
> trunc(x);
> end;
int_trunc := proc(x) trunc(x) end proc
# End Function number 41
# Begin Function number 42
> estimated_needed_step_error := proc(x_start,x_end,estimated_h,estimated_answer)
> local desired_abs_gbl_error,range,estimated_steps,step_error;
> global glob_desired_digits_correct,ALWAYS,ATS_MAX_TERMS;
> omniout_float(ALWAYS,"glob_desired_digits_correct",32,glob_desired_digits_correct,32,"");
> desired_abs_gbl_error := expt(glob__10,c( -glob_desired_digits_correct)) * c(float_abs(c(estimated_answer)));
> omniout_float(ALWAYS,"estimated_h",32,estimated_h,32,"");
> omniout_float(ALWAYS,"estimated_answer",32,estimated_answer,32,"");
> omniout_float(ALWAYS,"desired_abs_gbl_error",32,desired_abs_gbl_error,32,"");
> range := (x_end - x_start);
> omniout_float(ALWAYS,"range",32,range,32,"");
> estimated_steps := range / estimated_h;
> omniout_float(ALWAYS,"estimated_steps",32,estimated_steps,32,"");
> step_error := (c(float_abs(desired_abs_gbl_error) /sqrt(c( estimated_steps))/c(ATS_MAX_TERMS)));
> omniout_float(ALWAYS,"step_error",32,step_error,32,"");
> (step_error);;
> end;
estimated_needed_step_error := proc(
x_start, x_end, estimated_h, estimated_answer)
local desired_abs_gbl_error, range, estimated_steps, step_error;
global glob_desired_digits_correct, ALWAYS, ATS_MAX_TERMS;
omniout_float(ALWAYS, "glob_desired_digits_correct", 32,
glob_desired_digits_correct, 32, "");
desired_abs_gbl_error :=
expt(glob__10, c(-glob_desired_digits_correct))*
c(float_abs(c(estimated_answer)));
omniout_float(ALWAYS, "estimated_h", 32, estimated_h, 32, "");
omniout_float(ALWAYS, "estimated_answer", 32, estimated_answer, 32, "")
;
omniout_float(ALWAYS, "desired_abs_gbl_error", 32,
desired_abs_gbl_error, 32, "");
range := x_end - x_start;
omniout_float(ALWAYS, "range", 32, range, 32, "");
estimated_steps := range/estimated_h;
omniout_float(ALWAYS, "estimated_steps", 32, estimated_steps, 32, "");
step_error := c(float_abs(desired_abs_gbl_error)/(
sqrt(c(estimated_steps))*c(ATS_MAX_TERMS)));
omniout_float(ALWAYS, "step_error", 32, step_error, 32, "");
step_error
end proc
# End Function number 42
#END ATS LIBRARY BLOCK
#BEGIN USER FUNCTION BLOCK
#BEGIN BLOCK 3
#BEGIN USER DEF BLOCK
> exact_soln_y1 := proc(x)
> return(c(1.0) + cos(c(x)));
> end;
exact_soln_y1 := proc(x) return c(1.0) + cos(c(x)) end proc
> exact_soln_y2 := proc(x)
> return(c(1.0) + sin(c(x)));
> end;
exact_soln_y2 := proc(x) return c(1.0) + sin(c(x)) end proc
> next_delta := proc()
> global glob_nxt, x_delta;
> x_delta := [ 0.001 + 0.00004 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.0001 + 0.004 * I,
> 0.003 + 0.006 * I,
> 0.0001 + 0.005 * I,
> 0.0001 + 0.003 * I,
> 0.001 + 0.001 * I,
> 0.001 + 0.003 * I,
> 0.000 + 0.000 * I ];
> glob_nxt := glob_nxt + 1;
> it := x_delta[glob_nxt];
> return it;
> end;
Warning, `it` is implicitly declared local to procedure `next_delta`
next_delta := proc()
local it;
global glob_nxt, x_delta;
x_delta := [0.001 + 0.00004*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I,
0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I,
0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I,
0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I,
0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I,
0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I,
0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I,
0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I,
0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I,
0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I,
0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I,
0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I,
0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I,
0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I,
0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I,
0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I,
0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I,
0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I,
0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I,
0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I,
0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I,
0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I,
0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I,
0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.0001 + 0.004*I,
0.003 + 0.006*I, 0.0001 + 0.005*I, 0.0001 + 0.003*I,
0.001 + 0.001*I, 0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.001 + 0.003*I, 0.0001 + 0.004*I, 0.003 + 0.006*I,
0.0001 + 0.005*I, 0.0001 + 0.003*I, 0.001 + 0.001*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I,
0.0001 + 0.004*I, 0.003 + 0.006*I, 0.0001 + 0.005*I,
0.0001 + 0.003*I, 0.001 + 0.001*I, 0.001 + 0.003*I, 0. + 0.*I];
glob_nxt := glob_nxt + 1;
it := x_delta[glob_nxt];
return it
end proc
#END USER DEF BLOCK
#END BLOCK 3
#END USER FUNCTION BLOCK
# before write_aux functions
# Begin Function number 2
> display_poles := proc()
> local rad_given;
> global ALWAYS,glob_display_flag,glob_larger_float, glob_large_float, glob_diff_ord_fm, glob_diff_ord_fmm1, glob_diff_ord_fmm2, glob_diff_rc_fm, glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_guess_error_ord, glob_guess_error_rc, glob_type_given_pole,array_given_rad_poles,array_given_ord_poles,array_rad_test_poles,array_ord_test_poles,glob_least_3_sing,glob_least_6_sing,glob_least_given_sing,glob_least_ratio_sing,array_x ;
> if ((glob_type_given_pole = 1) or (glob_type_given_pole = 2)) then # if number 1
> rad_given := float_abs(array_x[1] - (array_given_rad_poles[1,1] + array_given_rad_poles[1,2] * I ));
> omniout_float(ALWAYS,"Radius of convergence (given) for eq 1 ",4,rad_given,4," ");
> omniout_complex(ALWAYS,"Order of pole (given) ",4,array_given_ord_poles[1,1],4," ");
> if ((float_abs(rad_given) < float_abs(glob_least_given_sing)) and
> (float_abs(rad_given) > 0.0)) then # if number 2
> glob_least_given_sing := rad_given;
> fi;# end if 2;
> elif
> (glob_type_given_pole = 3) then # if number 2
> omniout_str(ALWAYS,"NO POLE (given) for Equation 1");
> elif
> (glob_type_given_pole = 5) then # if number 3
> omniout_str(ALWAYS,"SOME POLE (given) for Equation 1");
> else
> omniout_str(ALWAYS,"NO INFO (given) for Equation 1");
> fi;# end if 3;
> if (array_rad_test_poles[1,1] < glob_large_float) then # if number 3
> omniout_float(ALWAYS,"Radius of convergence (ratio test) for eq 1 ",4,array_rad_test_poles[1,1],4," ");
> if ((float_abs(array_rad_test_poles[1,1]) < glob_least_ratio_sing)) then # if number 4
> glob_least_ratio_sing := array_rad_test_poles[1,1];
> fi;# end if 4;
> omniout_complex(ALWAYS,"Order of pole (ratio test) ",4, array_ord_test_poles[1,1],4," ");
> else
> omniout_str(ALWAYS,"NO POLE (ratio test) for Equation 1");
> fi;# end if 3;
> if ((array_rad_test_poles[1,2] > glob__small) and (array_rad_test_poles[1,2] < glob_large_float)) then # if number 3
> omniout_float(ALWAYS,"Radius of convergence (three term test) for eq 1 ",4,array_rad_test_poles[1,2],4," ");
> if ((float_abs(array_rad_test_poles[1,2]) < glob_least_3_sing)) then # if number 4
> glob_least_3_sing := array_rad_test_poles[1,2];
> fi;# end if 4;
> omniout_complex(ALWAYS,"Order of pole (three term test) ",4, array_ord_test_poles[1,2],4," ");
> else
> omniout_str(ALWAYS,"NO REAL POLE (three term test) for Equation 1");
> fi;# end if 3;
> if ((array_rad_test_poles[1,3] > glob__small) and (array_rad_test_poles[1,3] < glob_large_float)) then # if number 3
> omniout_float(ALWAYS,"Radius of convergence (six term test) for eq 1 ",4,array_rad_test_poles[1,3],4," ");
> if ((float_abs(array_rad_test_poles[1,3]) < glob_least_6_sing)) then # if number 4
> glob_least_6_sing := array_rad_test_poles[1,3];
> fi;# end if 4;
> omniout_complex(ALWAYS,"Order of pole (six term test) ",4, array_ord_test_poles[1,3],4," ");
> else
> omniout_str(ALWAYS,"NO COMPLEX POLE (six term test) for Equation 1");
> fi;# end if 3
> ;
> if ((glob_type_given_pole = 1) or (glob_type_given_pole = 2)) then # if number 3
> rad_given := float_abs(array_x[1] - (array_given_rad_poles[2,1] + array_given_rad_poles[2,2] * I ));
> omniout_float(ALWAYS,"Radius of convergence (given) for eq 2 ",4,rad_given,4," ");
> omniout_complex(ALWAYS,"Order of pole (given) ",4,array_given_ord_poles[2,1],4," ");
> if ((float_abs(rad_given) < float_abs(glob_least_given_sing)) and
> (float_abs(rad_given) > 0.0)) then # if number 4
> glob_least_given_sing := rad_given;
> fi;# end if 4;
> elif
> (glob_type_given_pole = 3) then # if number 4
> omniout_str(ALWAYS,"NO POLE (given) for Equation 2");
> elif
> (glob_type_given_pole = 5) then # if number 5
> omniout_str(ALWAYS,"SOME POLE (given) for Equation 2");
> else
> omniout_str(ALWAYS,"NO INFO (given) for Equation 2");
> fi;# end if 5;
> if (array_rad_test_poles[2,1] < glob_large_float) then # if number 5
> omniout_float(ALWAYS,"Radius of convergence (ratio test) for eq 2 ",4,array_rad_test_poles[2,1],4," ");
> if ((float_abs(array_rad_test_poles[2,1]) < glob_least_ratio_sing)) then # if number 6
> glob_least_ratio_sing := array_rad_test_poles[2,1];
> fi;# end if 6;
> omniout_complex(ALWAYS,"Order of pole (ratio test) ",4, array_ord_test_poles[2,1],4," ");
> else
> omniout_str(ALWAYS,"NO POLE (ratio test) for Equation 2");
> fi;# end if 5;
> if ((array_rad_test_poles[2,2] > glob__small) and (array_rad_test_poles[2,2] < glob_large_float)) then # if number 5
> omniout_float(ALWAYS,"Radius of convergence (three term test) for eq 2 ",4,array_rad_test_poles[2,2],4," ");
> if ((float_abs(array_rad_test_poles[2,2]) < glob_least_3_sing)) then # if number 6
> glob_least_3_sing := array_rad_test_poles[2,2];
> fi;# end if 6;
> omniout_complex(ALWAYS,"Order of pole (three term test) ",4, array_ord_test_poles[2,2],4," ");
> else
> omniout_str(ALWAYS,"NO REAL POLE (three term test) for Equation 2");
> fi;# end if 5;
> if ((array_rad_test_poles[2,3] > glob__small) and (array_rad_test_poles[2,3] < glob_large_float)) then # if number 5
> omniout_float(ALWAYS,"Radius of convergence (six term test) for eq 2 ",4,array_rad_test_poles[2,3],4," ");
> if ((float_abs(array_rad_test_poles[2,3]) < glob_least_6_sing)) then # if number 6
> glob_least_6_sing := array_rad_test_poles[2,3];
> fi;# end if 6;
> omniout_complex(ALWAYS,"Order of pole (six term test) ",4, array_ord_test_poles[2,3],4," ");
> else
> omniout_str(ALWAYS,"NO COMPLEX POLE (six term test) for Equation 2");
> fi;# end if 5
> ;
> end;
display_poles := proc()
local rad_given;
global ALWAYS, glob_display_flag, glob_larger_float, glob_large_float,
glob_diff_ord_fm, glob_diff_ord_fmm1, glob_diff_ord_fmm2, glob_diff_rc_fm,
glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_guess_error_ord,
glob_guess_error_rc, glob_type_given_pole, array_given_rad_poles,
array_given_ord_poles, array_rad_test_poles, array_ord_test_poles,
glob_least_3_sing, glob_least_6_sing, glob_least_given_sing,
glob_least_ratio_sing, array_x;
if glob_type_given_pole = 1 or glob_type_given_pole = 2 then
rad_given := float_abs(array_x[1] - array_given_rad_poles[1, 1]
- array_given_rad_poles[1, 2]*I);
omniout_float(ALWAYS,
"Radius of convergence (given) for eq 1 ", 4,
rad_given, 4, " ");
omniout_complex(ALWAYS,
"Order of pole (given) ", 4,
array_given_ord_poles[1, 1], 4, " ");
if float_abs(rad_given) < float_abs(glob_least_given_sing) and
0. < float_abs(rad_given) then glob_least_given_sing := rad_given
end if
elif glob_type_given_pole = 3 then
omniout_str(ALWAYS, "NO POLE (given) for Equation 1")
elif glob_type_given_pole = 5 then
omniout_str(ALWAYS, "SOME POLE (given) for Equation 1")
else omniout_str(ALWAYS, "NO INFO (given) for Equation 1")
end if;
if array_rad_test_poles[1, 1] < glob_large_float then
omniout_float(ALWAYS,
"Radius of convergence (ratio test) for eq 1 ", 4,
array_rad_test_poles[1, 1], 4, " ");
if float_abs(array_rad_test_poles[1, 1]) < glob_least_ratio_sing
then glob_least_ratio_sing := array_rad_test_poles[1, 1]
end if;
omniout_complex(ALWAYS,
"Order of pole (ratio test) ", 4,
array_ord_test_poles[1, 1], 4, " ")
else omniout_str(ALWAYS, "NO POLE (ratio test) for Equation 1")
end if;
if glob__small < array_rad_test_poles[1, 2] and
array_rad_test_poles[1, 2] < glob_large_float then
omniout_float(ALWAYS,
"Radius of convergence (three term test) for eq 1 ", 4,
array_rad_test_poles[1, 2], 4, " ");
if float_abs(array_rad_test_poles[1, 2]) < glob_least_3_sing then
glob_least_3_sing := array_rad_test_poles[1, 2]
end if;
omniout_complex(ALWAYS,
"Order of pole (three term test) ", 4,
array_ord_test_poles[1, 2], 4, " ")
else omniout_str(ALWAYS,
"NO REAL POLE (three term test) for Equation 1")
end if;
if glob__small < array_rad_test_poles[1, 3] and
array_rad_test_poles[1, 3] < glob_large_float then
omniout_float(ALWAYS,
"Radius of convergence (six term test) for eq 1 ", 4,
array_rad_test_poles[1, 3], 4, " ");
if float_abs(array_rad_test_poles[1, 3]) < glob_least_6_sing then
glob_least_6_sing := array_rad_test_poles[1, 3]
end if;
omniout_complex(ALWAYS,
"Order of pole (six term test) ", 4,
array_ord_test_poles[1, 3], 4, " ")
else omniout_str(ALWAYS,
"NO COMPLEX POLE (six term test) for Equation 1")
end if;
if glob_type_given_pole = 1 or glob_type_given_pole = 2 then
rad_given := float_abs(array_x[1] - array_given_rad_poles[2, 1]
- array_given_rad_poles[2, 2]*I);
omniout_float(ALWAYS,
"Radius of convergence (given) for eq 2 ", 4,
rad_given, 4, " ");
omniout_complex(ALWAYS,
"Order of pole (given) ", 4,
array_given_ord_poles[2, 1], 4, " ");
if float_abs(rad_given) < float_abs(glob_least_given_sing) and
0. < float_abs(rad_given) then glob_least_given_sing := rad_given
end if
elif glob_type_given_pole = 3 then
omniout_str(ALWAYS, "NO POLE (given) for Equation 2")
elif glob_type_given_pole = 5 then
omniout_str(ALWAYS, "SOME POLE (given) for Equation 2")
else omniout_str(ALWAYS, "NO INFO (given) for Equation 2")
end if;
if array_rad_test_poles[2, 1] < glob_large_float then
omniout_float(ALWAYS,
"Radius of convergence (ratio test) for eq 2 ", 4,
array_rad_test_poles[2, 1], 4, " ");
if float_abs(array_rad_test_poles[2, 1]) < glob_least_ratio_sing
then glob_least_ratio_sing := array_rad_test_poles[2, 1]
end if;
omniout_complex(ALWAYS,
"Order of pole (ratio test) ", 4,
array_ord_test_poles[2, 1], 4, " ")
else omniout_str(ALWAYS, "NO POLE (ratio test) for Equation 2")
end if;
if glob__small < array_rad_test_poles[2, 2] and
array_rad_test_poles[2, 2] < glob_large_float then
omniout_float(ALWAYS,
"Radius of convergence (three term test) for eq 2 ", 4,
array_rad_test_poles[2, 2], 4, " ");
if float_abs(array_rad_test_poles[2, 2]) < glob_least_3_sing then
glob_least_3_sing := array_rad_test_poles[2, 2]
end if;
omniout_complex(ALWAYS,
"Order of pole (three term test) ", 4,
array_ord_test_poles[2, 2], 4, " ")
else omniout_str(ALWAYS,
"NO REAL POLE (three term test) for Equation 2")
end if;
if glob__small < array_rad_test_poles[2, 3] and
array_rad_test_poles[2, 3] < glob_large_float then
omniout_float(ALWAYS,
"Radius of convergence (six term test) for eq 2 ", 4,
array_rad_test_poles[2, 3], 4, " ");
if float_abs(array_rad_test_poles[2, 3]) < glob_least_6_sing then
glob_least_6_sing := array_rad_test_poles[2, 3]
end if;
omniout_complex(ALWAYS,
"Order of pole (six term test) ", 4,
array_ord_test_poles[2, 3], 4, " ")
else omniout_str(ALWAYS,
"NO COMPLEX POLE (six term test) for Equation 2")
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 5
> ret := glob__1;
> else
> ret := glob__m1;
> fi;# end if 5;
> ret;;
> end;
my_check_sign := proc(x0, xf)
local ret;
if x0 < xf then ret := glob__1 else ret := glob__m1 end if; ret
end proc
# End Function number 3
# Begin Function number 4
> est_size_answer := proc()
> global
> ALWAYS,
> INFO,
> DEBUGL,
> DEBUGMASSIVE,
> glob_iolevel,
> glob_yes_pole,
> glob_no_pole,
> glob_not_given,
> glob_no_sing_tests,
> glob_ratio_test,
> glob_three_term_test,
> glob_six_term_test,
> glob_log_10,
#Top Generate Globals Decl
> MAX_UNCHANGED,
> glob__small,
> glob_small_float,
> glob_smallish_float,
> glob_large_float,
> glob_larger_float,
> glob__m2,
> glob__m1,
> glob__0,
> glob__1,
> glob__2,
> glob__3,
> glob__4,
> glob__5,
> glob__8,
> glob__10,
> glob__100,
> glob__pi,
> glob__0_5,
> glob__0_8,
> glob__m0_8,
> glob__0_25,
> glob__0_125,
> glob_h,
> glob_nxt,
> glob_prec,
> glob_check_sign,
> glob_desired_digits_correct,
> glob_max_estimated_step_error,
> glob_ratio_of_radius,
> glob_percent_done,
> glob_total_exp_sec,
> glob_optimal_expect_sec,
> glob_estimated_size_answer,
> glob_almost_1,
> glob_clock_sec,
> glob_clock_start_sec,
> glob_disp_incr,
> glob_diff_rc_fm,
> glob_diff_rc_fmm1,
> glob_diff_rc_fmm2,
> glob_diff_ord_fm,
> glob_diff_ord_fmm1,
> glob_diff_ord_fmm2,
> glob_six_term_ord_save,
> glob_guess_error_rc,
> glob_guess_error_ord,
> glob_least_given_sing,
> glob_least_ratio_sing,
> glob_least_3_sing,
> glob_least_6_sing,
> glob_last_good_h,
> glob_max_h,
> glob_min_h,
> glob_display_interval,
> glob_abserr,
> glob_relerr,
> glob_min_pole_est,
> glob_max_rel_trunc_err,
> glob_max_trunc_err,
> glob_max_hours,
> glob_optimal_clock_start_sec,
> glob_optimal_start,
> glob_upper_ratio_limit,
> glob_lower_ratio_limit,
> glob_max_sec,
> glob_orig_start_sec,
> glob_normmax,
> glob_max_minutes,
> glob_next_display,
> glob_est_digits,
> glob_subiter_method,
> glob_html_log,
> glob_min_good_digits,
> glob_good_digits,
> glob_min_apfp_est_good_digits,
> glob_apfp_est_good_digits,
> glob_max_opt_iter,
> glob_dump,
> glob_djd_debug,
> glob_display_flag,
> glob_djd_debug2,
> glob_h_reason,
> glob_sec_in_minute,
> glob_min_in_hour,
> glob_hours_in_day,
> glob_days_in_year,
> glob_sec_in_hour,
> glob_sec_in_day,
> glob_sec_in_year,
> glob_not_yet_finished,
> glob_initial_pass,
> glob_not_yet_start_msg,
> glob_reached_optimal_h,
> glob_optimal_done,
> glob_type_given_pole,
> glob_optimize,
> glob_look_poles,
> glob_dump_closed_form,
> glob_max_iter,
> glob_no_eqs,
> glob_unchanged_h_cnt,
> glob_warned,
> glob_warned2,
> glob_start,
> glob_iter,
#Bottom Generate Globals Decl
#BEGIN CONST
> array_const_1,
> array_const_0D0,
> array_const_1D0,
#END CONST
> array_y1_init,
> array_y2_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_y1,
> array_x,
> array_y2,
> array_tmp0,
> array_tmp1,
> array_tmp2,
> array_tmp3,
> array_tmp4,
> array_tmp5,
> array_m1,
> array_y1_higher,
> array_y1_higher_work,
> array_y1_higher_work2,
> array_y1_set_initial,
> array_y2_higher,
> array_y2_higher_work,
> array_y2_higher_work2,
> array_y2_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_y1[1]) < min_size) then # if number 5
> min_size := float_abs(array_y1[1]);
> omniout_float(ALWAYS,"min_size",32,min_size,32,"");
> fi;# end if 5;
> if (float_abs(array_y2[1]) < min_size) then # if number 5
> min_size := float_abs(array_y2[1]);
> omniout_float(ALWAYS,"min_size",32,min_size,32,"");
> fi;# end if 5;
> if (min_size < glob__1) then # if number 5
> min_size := glob__1;
> omniout_float(ALWAYS,"min_size",32,min_size,32,"");
> fi;# end if 5;
> min_size;
> end;
est_size_answer := proc()
local min_size;
global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole,
glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test,
glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED,
glob__small, glob_small_float, glob_smallish_float, glob_large_float,
glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3,
glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5,
glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec,
glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error,
glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec,
glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1,
glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm,
glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1,
glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc,
glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing,
glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h,
glob_min_h, glob_display_interval, glob_abserr, glob_relerr,
glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err,
glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start,
glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec,
glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display,
glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits,
glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits,
glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag,
glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour,
glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day,
glob_sec_in_year, glob_not_yet_finished, glob_initial_pass,
glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done,
glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form,
glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2,
glob_start, glob_iter, array_const_1, array_const_0D0, array_const_1D0,
array_y1_init, array_y2_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_y1, array_x, array_y2,
array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5,
array_m1, array_y1_higher, array_y1_higher_work, array_y1_higher_work2,
array_y1_set_initial, array_y2_higher, array_y2_higher_work,
array_y2_higher_work2, array_y2_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_y1[1]) < min_size then
min_size := float_abs(array_y1[1]);
omniout_float(ALWAYS, "min_size", 32, min_size, 32, "")
end if;
if float_abs(array_y2[1]) < min_size then
min_size := float_abs(array_y2[1]);
omniout_float(ALWAYS, "min_size", 32, min_size, 32, "")
end if;
if min_size < glob__1 then
min_size := glob__1;
omniout_float(ALWAYS, "min_size", 32, min_size, 32, "")
end if;
min_size
end proc
# End Function number 4
# Begin Function number 5
> test_suggested_h := proc()
> global
> ALWAYS,
> INFO,
> DEBUGL,
> DEBUGMASSIVE,
> glob_iolevel,
> glob_yes_pole,
> glob_no_pole,
> glob_not_given,
> glob_no_sing_tests,
> glob_ratio_test,
> glob_three_term_test,
> glob_six_term_test,
> glob_log_10,
#Top Generate Globals Decl
> MAX_UNCHANGED,
> glob__small,
> glob_small_float,
> glob_smallish_float,
> glob_large_float,
> glob_larger_float,
> glob__m2,
> glob__m1,
> glob__0,
> glob__1,
> glob__2,
> glob__3,
> glob__4,
> glob__5,
> glob__8,
> glob__10,
> glob__100,
> glob__pi,
> glob__0_5,
> glob__0_8,
> glob__m0_8,
> glob__0_25,
> glob__0_125,
> glob_h,
> glob_nxt,
> glob_prec,
> glob_check_sign,
> glob_desired_digits_correct,
> glob_max_estimated_step_error,
> glob_ratio_of_radius,
> glob_percent_done,
> glob_total_exp_sec,
> glob_optimal_expect_sec,
> glob_estimated_size_answer,
> glob_almost_1,
> glob_clock_sec,
> glob_clock_start_sec,
> glob_disp_incr,
> glob_diff_rc_fm,
> glob_diff_rc_fmm1,
> glob_diff_rc_fmm2,
> glob_diff_ord_fm,
> glob_diff_ord_fmm1,
> glob_diff_ord_fmm2,
> glob_six_term_ord_save,
> glob_guess_error_rc,
> glob_guess_error_ord,
> glob_least_given_sing,
> glob_least_ratio_sing,
> glob_least_3_sing,
> glob_least_6_sing,
> glob_last_good_h,
> glob_max_h,
> glob_min_h,
> glob_display_interval,
> glob_abserr,
> glob_relerr,
> glob_min_pole_est,
> glob_max_rel_trunc_err,
> glob_max_trunc_err,
> glob_max_hours,
> glob_optimal_clock_start_sec,
> glob_optimal_start,
> glob_upper_ratio_limit,
> glob_lower_ratio_limit,
> glob_max_sec,
> glob_orig_start_sec,
> glob_normmax,
> glob_max_minutes,
> glob_next_display,
> glob_est_digits,
> glob_subiter_method,
> glob_html_log,
> glob_min_good_digits,
> glob_good_digits,
> glob_min_apfp_est_good_digits,
> glob_apfp_est_good_digits,
> glob_max_opt_iter,
> glob_dump,
> glob_djd_debug,
> glob_display_flag,
> glob_djd_debug2,
> glob_h_reason,
> glob_sec_in_minute,
> glob_min_in_hour,
> glob_hours_in_day,
> glob_days_in_year,
> glob_sec_in_hour,
> glob_sec_in_day,
> glob_sec_in_year,
> glob_not_yet_finished,
> glob_initial_pass,
> glob_not_yet_start_msg,
> glob_reached_optimal_h,
> glob_optimal_done,
> glob_type_given_pole,
> glob_optimize,
> glob_look_poles,
> glob_dump_closed_form,
> glob_max_iter,
> glob_no_eqs,
> glob_unchanged_h_cnt,
> glob_warned,
> glob_warned2,
> glob_start,
> glob_iter,
#Bottom Generate Globals Decl
#BEGIN CONST
> array_const_1,
> array_const_0D0,
> array_const_1D0,
#END CONST
> array_y1_init,
> array_y2_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_y1,
> array_x,
> array_y2,
> array_tmp0,
> array_tmp1,
> array_tmp2,
> array_tmp3,
> array_tmp4,
> array_tmp5,
> array_m1,
> array_y1_higher,
> array_y1_higher_work,
> array_y1_higher_work2,
> array_y1_set_initial,
> array_y2_higher,
> array_y2_higher_work,
> array_y2_higher_work2,
> array_y2_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_y1[no_terms-3] + array_y1[no_terms - 2] * hn_div_ho + array_y1[no_terms - 1] * hn_div_ho_2 + array_y1[no_terms] * hn_div_ho_3);
> if (est_tmp >= max_estimated_step_error) then # if number 5
> max_estimated_step_error := est_tmp;
> fi;# end if 5;
> est_tmp := float_abs(array_y2[no_terms-3] + array_y2[no_terms - 2] * hn_div_ho + array_y2[no_terms - 1] * hn_div_ho_2 + array_y2[no_terms] * hn_div_ho_3);
> if (est_tmp >= max_estimated_step_error) then # if number 5
> max_estimated_step_error := est_tmp;
> fi;# end if 5;
> omniout_float(ALWAYS,"max_estimated_step_error",32,max_estimated_step_error,32,"");
> max_estimated_step_error;
> end;
test_suggested_h := proc()
local max_estimated_step_error, hn_div_ho, hn_div_ho_2, hn_div_ho_3,
no_terms, est_tmp;
global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole,
glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test,
glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED,
glob__small, glob_small_float, glob_smallish_float, glob_large_float,
glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3,
glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5,
glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec,
glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error,
glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec,
glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1,
glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm,
glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1,
glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc,
glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing,
glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h,
glob_min_h, glob_display_interval, glob_abserr, glob_relerr,
glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err,
glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start,
glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec,
glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display,
glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits,
glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits,
glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag,
glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour,
glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day,
glob_sec_in_year, glob_not_yet_finished, glob_initial_pass,
glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done,
glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form,
glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2,
glob_start, glob_iter, array_const_1, array_const_0D0, array_const_1D0,
array_y1_init, array_y2_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_y1, array_x, array_y2,
array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5,
array_m1, array_y1_higher, array_y1_higher_work, array_y1_higher_work2,
array_y1_set_initial, array_y2_higher, array_y2_higher_work,
array_y2_higher_work2, array_y2_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_y1[no_terms - 3]
+ array_y1[no_terms - 2]*hn_div_ho
+ array_y1[no_terms - 1]*hn_div_ho_2
+ array_y1[no_terms]*hn_div_ho_3);
if max_estimated_step_error <= est_tmp then
max_estimated_step_error := est_tmp
end if;
est_tmp := float_abs(array_y2[no_terms - 3]
+ array_y2[no_terms - 2]*hn_div_ho
+ array_y2[no_terms - 1]*hn_div_ho_2
+ array_y2[no_terms]*hn_div_ho_3);
if max_estimated_step_error <= est_tmp then
max_estimated_step_error := est_tmp
end if;
omniout_float(ALWAYS, "max_estimated_step_error", 32,
max_estimated_step_error, 32, "");
max_estimated_step_error
end proc
# End Function number 5
# Begin Function number 6
> track_estimated_error := proc()
> global
> ALWAYS,
> INFO,
> DEBUGL,
> DEBUGMASSIVE,
> glob_iolevel,
> glob_yes_pole,
> glob_no_pole,
> glob_not_given,
> glob_no_sing_tests,
> glob_ratio_test,
> glob_three_term_test,
> glob_six_term_test,
> glob_log_10,
#Top Generate Globals Decl
> MAX_UNCHANGED,
> glob__small,
> glob_small_float,
> glob_smallish_float,
> glob_large_float,
> glob_larger_float,
> glob__m2,
> glob__m1,
> glob__0,
> glob__1,
> glob__2,
> glob__3,
> glob__4,
> glob__5,
> glob__8,
> glob__10,
> glob__100,
> glob__pi,
> glob__0_5,
> glob__0_8,
> glob__m0_8,
> glob__0_25,
> glob__0_125,
> glob_h,
> glob_nxt,
> glob_prec,
> glob_check_sign,
> glob_desired_digits_correct,
> glob_max_estimated_step_error,
> glob_ratio_of_radius,
> glob_percent_done,
> glob_total_exp_sec,
> glob_optimal_expect_sec,
> glob_estimated_size_answer,
> glob_almost_1,
> glob_clock_sec,
> glob_clock_start_sec,
> glob_disp_incr,
> glob_diff_rc_fm,
> glob_diff_rc_fmm1,
> glob_diff_rc_fmm2,
> glob_diff_ord_fm,
> glob_diff_ord_fmm1,
> glob_diff_ord_fmm2,
> glob_six_term_ord_save,
> glob_guess_error_rc,
> glob_guess_error_ord,
> glob_least_given_sing,
> glob_least_ratio_sing,
> glob_least_3_sing,
> glob_least_6_sing,
> glob_last_good_h,
> glob_max_h,
> glob_min_h,
> glob_display_interval,
> glob_abserr,
> glob_relerr,
> glob_min_pole_est,
> glob_max_rel_trunc_err,
> glob_max_trunc_err,
> glob_max_hours,
> glob_optimal_clock_start_sec,
> glob_optimal_start,
> glob_upper_ratio_limit,
> glob_lower_ratio_limit,
> glob_max_sec,
> glob_orig_start_sec,
> glob_normmax,
> glob_max_minutes,
> glob_next_display,
> glob_est_digits,
> glob_subiter_method,
> glob_html_log,
> glob_min_good_digits,
> glob_good_digits,
> glob_min_apfp_est_good_digits,
> glob_apfp_est_good_digits,
> glob_max_opt_iter,
> glob_dump,
> glob_djd_debug,
> glob_display_flag,
> glob_djd_debug2,
> glob_h_reason,
> glob_sec_in_minute,
> glob_min_in_hour,
> glob_hours_in_day,
> glob_days_in_year,
> glob_sec_in_hour,
> glob_sec_in_day,
> glob_sec_in_year,
> glob_not_yet_finished,
> glob_initial_pass,
> glob_not_yet_start_msg,
> glob_reached_optimal_h,
> glob_optimal_done,
> glob_type_given_pole,
> glob_optimize,
> glob_look_poles,
> glob_dump_closed_form,
> glob_max_iter,
> glob_no_eqs,
> glob_unchanged_h_cnt,
> glob_warned,
> glob_warned2,
> glob_start,
> glob_iter,
#Bottom Generate Globals Decl
#BEGIN CONST
> array_const_1,
> array_const_0D0,
> array_const_1D0,
#END CONST
> array_y1_init,
> array_y2_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_y1,
> array_x,
> array_y2,
> array_tmp0,
> array_tmp1,
> array_tmp2,
> array_tmp3,
> array_tmp4,
> array_tmp5,
> array_m1,
> array_y1_higher,
> array_y1_higher_work,
> array_y1_higher_work2,
> array_y1_set_initial,
> array_y2_higher,
> array_y2_higher_work,
> array_y2_higher_work2,
> array_y2_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_y1[no_terms-3])) + c(float_abs(array_y1[no_terms - 2])) * c(hn_div_ho) + c(float_abs(array_y1[no_terms - 1])) * c(hn_div_ho_2) + c(float_abs(array_y1[no_terms])) * c(hn_div_ho_3);
> if (glob_prec * c(float_abs(array_y1[1])) > c(est_tmp)) then # if number 5
> est_tmp := c(glob_prec) * c(float_abs(array_y1[1]));
> fi;# end if 5;
> if (c(est_tmp) >= c(array_max_est_error[1])) then # if number 5
> array_max_est_error[1] := c(est_tmp);
> fi;# end if 5
> ;
> est_tmp := c(float_abs(array_y2[no_terms-3])) + c(float_abs(array_y2[no_terms - 2])) * c(hn_div_ho) + c(float_abs(array_y2[no_terms - 1])) * c(hn_div_ho_2) + c(float_abs(array_y2[no_terms])) * c(hn_div_ho_3);
> if (glob_prec * c(float_abs(array_y2[1])) > c(est_tmp)) then # if number 5
> est_tmp := c(glob_prec) * c(float_abs(array_y2[1]));
> fi;# end if 5;
> if (c(est_tmp) >= c(array_max_est_error[2])) then # if number 5
> array_max_est_error[2] := c(est_tmp);
> fi;# end if 5
> ;
> end;
track_estimated_error := proc()
local hn_div_ho, hn_div_ho_2, hn_div_ho_3, no_terms, est_tmp;
global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole,
glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test,
glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED,
glob__small, glob_small_float, glob_smallish_float, glob_large_float,
glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3,
glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5,
glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec,
glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error,
glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec,
glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1,
glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm,
glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1,
glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc,
glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing,
glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h,
glob_min_h, glob_display_interval, glob_abserr, glob_relerr,
glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err,
glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start,
glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec,
glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display,
glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits,
glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits,
glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag,
glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour,
glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day,
glob_sec_in_year, glob_not_yet_finished, glob_initial_pass,
glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done,
glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form,
glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2,
glob_start, glob_iter, array_const_1, array_const_0D0, array_const_1D0,
array_y1_init, array_y2_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_y1, array_x, array_y2,
array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5,
array_m1, array_y1_higher, array_y1_higher_work, array_y1_higher_work2,
array_y1_set_initial, array_y2_higher, array_y2_higher_work,
array_y2_higher_work2, array_y2_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_y1[no_terms - 3]))
+ c(float_abs(array_y1[no_terms - 2]))*c(hn_div_ho)
+ c(float_abs(array_y1[no_terms - 1]))*c(hn_div_ho_2)
+ c(float_abs(array_y1[no_terms]))*c(hn_div_ho_3);
if c(est_tmp) < glob_prec*c(float_abs(array_y1[1])) then
est_tmp := c(glob_prec)*c(float_abs(array_y1[1]))
end if;
if c(array_max_est_error[1]) <= c(est_tmp) then
array_max_est_error[1] := c(est_tmp)
end if;
est_tmp := c(float_abs(array_y2[no_terms - 3]))
+ c(float_abs(array_y2[no_terms - 2]))*c(hn_div_ho)
+ c(float_abs(array_y2[no_terms - 1]))*c(hn_div_ho_2)
+ c(float_abs(array_y2[no_terms]))*c(hn_div_ho_3);
if c(est_tmp) < glob_prec*c(float_abs(array_y2[1])) then
est_tmp := c(glob_prec)*c(float_abs(array_y2[1]))
end if;
if c(array_max_est_error[2]) <= c(est_tmp) then
array_max_est_error[2] := c(est_tmp)
end if
end proc
# End Function number 6
# Begin Function number 7
> reached_interval := proc()
> global
> ALWAYS,
> INFO,
> DEBUGL,
> DEBUGMASSIVE,
> glob_iolevel,
> glob_yes_pole,
> glob_no_pole,
> glob_not_given,
> glob_no_sing_tests,
> glob_ratio_test,
> glob_three_term_test,
> glob_six_term_test,
> glob_log_10,
#Top Generate Globals Decl
> MAX_UNCHANGED,
> glob__small,
> glob_small_float,
> glob_smallish_float,
> glob_large_float,
> glob_larger_float,
> glob__m2,
> glob__m1,
> glob__0,
> glob__1,
> glob__2,
> glob__3,
> glob__4,
> glob__5,
> glob__8,
> glob__10,
> glob__100,
> glob__pi,
> glob__0_5,
> glob__0_8,
> glob__m0_8,
> glob__0_25,
> glob__0_125,
> glob_h,
> glob_nxt,
> glob_prec,
> glob_check_sign,
> glob_desired_digits_correct,
> glob_max_estimated_step_error,
> glob_ratio_of_radius,
> glob_percent_done,
> glob_total_exp_sec,
> glob_optimal_expect_sec,
> glob_estimated_size_answer,
> glob_almost_1,
> glob_clock_sec,
> glob_clock_start_sec,
> glob_disp_incr,
> glob_diff_rc_fm,
> glob_diff_rc_fmm1,
> glob_diff_rc_fmm2,
> glob_diff_ord_fm,
> glob_diff_ord_fmm1,
> glob_diff_ord_fmm2,
> glob_six_term_ord_save,
> glob_guess_error_rc,
> glob_guess_error_ord,
> glob_least_given_sing,
> glob_least_ratio_sing,
> glob_least_3_sing,
> glob_least_6_sing,
> glob_last_good_h,
> glob_max_h,
> glob_min_h,
> glob_display_interval,
> glob_abserr,
> glob_relerr,
> glob_min_pole_est,
> glob_max_rel_trunc_err,
> glob_max_trunc_err,
> glob_max_hours,
> glob_optimal_clock_start_sec,
> glob_optimal_start,
> glob_upper_ratio_limit,
> glob_lower_ratio_limit,
> glob_max_sec,
> glob_orig_start_sec,
> glob_normmax,
> glob_max_minutes,
> glob_next_display,
> glob_est_digits,
> glob_subiter_method,
> glob_html_log,
> glob_min_good_digits,
> glob_good_digits,
> glob_min_apfp_est_good_digits,
> glob_apfp_est_good_digits,
> glob_max_opt_iter,
> glob_dump,
> glob_djd_debug,
> glob_display_flag,
> glob_djd_debug2,
> glob_h_reason,
> glob_sec_in_minute,
> glob_min_in_hour,
> glob_hours_in_day,
> glob_days_in_year,
> glob_sec_in_hour,
> glob_sec_in_day,
> glob_sec_in_year,
> glob_not_yet_finished,
> glob_initial_pass,
> glob_not_yet_start_msg,
> glob_reached_optimal_h,
> glob_optimal_done,
> glob_type_given_pole,
> glob_optimize,
> glob_look_poles,
> glob_dump_closed_form,
> glob_max_iter,
> glob_no_eqs,
> glob_unchanged_h_cnt,
> glob_warned,
> glob_warned2,
> glob_start,
> glob_iter,
#Bottom Generate Globals Decl
#BEGIN CONST
> array_const_1,
> array_const_0D0,
> array_const_1D0,
#END CONST
> array_y1_init,
> array_y2_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_y1,
> array_x,
> array_y2,
> array_tmp0,
> array_tmp1,
> array_tmp2,
> array_tmp3,
> array_tmp4,
> array_tmp5,
> array_m1,
> array_y1_higher,
> array_y1_higher_work,
> array_y1_higher_work2,
> array_y1_set_initial,
> array_y2_higher,
> array_y2_higher_work,
> array_y2_higher_work2,
> array_y2_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 5
> ret := true;
> else
> ret := false;
> fi;# end if 5;
> return(ret);
> end;
reached_interval := proc()
local ret;
global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole,
glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test,
glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED,
glob__small, glob_small_float, glob_smallish_float, glob_large_float,
glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3,
glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5,
glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec,
glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error,
glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec,
glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1,
glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm,
glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1,
glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc,
glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing,
glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h,
glob_min_h, glob_display_interval, glob_abserr, glob_relerr,
glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err,
glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start,
glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec,
glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display,
glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits,
glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits,
glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag,
glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour,
glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day,
glob_sec_in_year, glob_not_yet_finished, glob_initial_pass,
glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done,
glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form,
glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2,
glob_start, glob_iter, array_const_1, array_const_0D0, array_const_1D0,
array_y1_init, array_y2_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_y1, array_x, array_y2,
array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5,
array_m1, array_y1_higher, array_y1_higher_work, array_y1_higher_work2,
array_y1_set_initial, array_y2_higher, array_y2_higher_work,
array_y2_higher_work2, array_y2_set_initial, array_given_rad_poles,
array_given_ord_poles, array_rad_test_poles, array_ord_test_poles,
array_fact_2, ATS_MAX_TERMS, glob_last;
if glob_check_sign*glob_next_display - glob_h/glob__10 <=
glob_check_sign*array_x[1] then ret := true
else ret := false
end if;
return ret
end proc
# End Function number 7
# Begin Function number 8
> display_alot := proc(iter)
> global
> ALWAYS,
> INFO,
> DEBUGL,
> DEBUGMASSIVE,
> glob_iolevel,
> glob_yes_pole,
> glob_no_pole,
> glob_not_given,
> glob_no_sing_tests,
> glob_ratio_test,
> glob_three_term_test,
> glob_six_term_test,
> glob_log_10,
#Top Generate Globals Decl
> MAX_UNCHANGED,
> glob__small,
> glob_small_float,
> glob_smallish_float,
> glob_large_float,
> glob_larger_float,
> glob__m2,
> glob__m1,
> glob__0,
> glob__1,
> glob__2,
> glob__3,
> glob__4,
> glob__5,
> glob__8,
> glob__10,
> glob__100,
> glob__pi,
> glob__0_5,
> glob__0_8,
> glob__m0_8,
> glob__0_25,
> glob__0_125,
> glob_h,
> glob_nxt,
> glob_prec,
> glob_check_sign,
> glob_desired_digits_correct,
> glob_max_estimated_step_error,
> glob_ratio_of_radius,
> glob_percent_done,
> glob_total_exp_sec,
> glob_optimal_expect_sec,
> glob_estimated_size_answer,
> glob_almost_1,
> glob_clock_sec,
> glob_clock_start_sec,
> glob_disp_incr,
> glob_diff_rc_fm,
> glob_diff_rc_fmm1,
> glob_diff_rc_fmm2,
> glob_diff_ord_fm,
> glob_diff_ord_fmm1,
> glob_diff_ord_fmm2,
> glob_six_term_ord_save,
> glob_guess_error_rc,
> glob_guess_error_ord,
> glob_least_given_sing,
> glob_least_ratio_sing,
> glob_least_3_sing,
> glob_least_6_sing,
> glob_last_good_h,
> glob_max_h,
> glob_min_h,
> glob_display_interval,
> glob_abserr,
> glob_relerr,
> glob_min_pole_est,
> glob_max_rel_trunc_err,
> glob_max_trunc_err,
> glob_max_hours,
> glob_optimal_clock_start_sec,
> glob_optimal_start,
> glob_upper_ratio_limit,
> glob_lower_ratio_limit,
> glob_max_sec,
> glob_orig_start_sec,
> glob_normmax,
> glob_max_minutes,
> glob_next_display,
> glob_est_digits,
> glob_subiter_method,
> glob_html_log,
> glob_min_good_digits,
> glob_good_digits,
> glob_min_apfp_est_good_digits,
> glob_apfp_est_good_digits,
> glob_max_opt_iter,
> glob_dump,
> glob_djd_debug,
> glob_display_flag,
> glob_djd_debug2,
> glob_h_reason,
> glob_sec_in_minute,
> glob_min_in_hour,
> glob_hours_in_day,
> glob_days_in_year,
> glob_sec_in_hour,
> glob_sec_in_day,
> glob_sec_in_year,
> glob_not_yet_finished,
> glob_initial_pass,
> glob_not_yet_start_msg,
> glob_reached_optimal_h,
> glob_optimal_done,
> glob_type_given_pole,
> glob_optimize,
> glob_look_poles,
> glob_dump_closed_form,
> glob_max_iter,
> glob_no_eqs,
> glob_unchanged_h_cnt,
> glob_warned,
> glob_warned2,
> glob_start,
> glob_iter,
#Bottom Generate Globals Decl
#BEGIN CONST
> array_const_1,
> array_const_0D0,
> array_const_1D0,
#END CONST
> array_y1_init,
> array_y2_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_y1,
> array_x,
> array_y2,
> array_tmp0,
> array_tmp1,
> array_tmp2,
> array_tmp3,
> array_tmp4,
> array_tmp5,
> array_m1,
> array_y1_higher,
> array_y1_higher_work,
> array_y1_higher_work2,
> array_y1_set_initial,
> array_y2_higher,
> array_y2_higher_work,
> array_y2_higher_work2,
> array_y2_set_initial,
> array_given_rad_poles,
> array_given_ord_poles,
> array_rad_test_poles,
> array_ord_test_poles,
> array_fact_2,
> ATS_MAX_TERMS,
> glob_last;
> local abserr, closed_form_val_y, ind_var, numeric_val, relerr, term_no, est_rel_err;
> #TOP DISPLAY ALOT
> ind_var := array_x[1];
> omniout_complex(ALWAYS,"x[1] ",33,ind_var,20," ");
> term_no := 1;
> numeric_val := array_y1[term_no];
> omniout_complex(ALWAYS,"h ",33,glob_h,20," ");
> omniout_complex(ALWAYS,"y1[1] (numeric) ",33,numeric_val,20," ");
> closed_form_val_y := evalf(exact_soln_y1(ind_var));
> omniout_complex(ALWAYS,"y1[1] (closed_form) ",33,closed_form_val_y,20," ");
> abserr := float_abs(numeric_val - closed_form_val_y);
> if (float_abs(closed_form_val_y) > 0.0) then # if number 5
> relerr := abserr/float_abs(closed_form_val_y);
> if (float_abs(c(relerr)) > 0.0) then # if number 6
> glob_good_digits := round(-log10(relerr));
> else
> relerr := 0.0 ;
> glob_good_digits := Digits - 2;
> 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;
> omniout_float(ALWAYS,"absolute error ",4,abserr,4," ");
> omniout_float(ALWAYS,"relative error ",4,relerr * glob__100 ,4,"%");
> omniout_int(INFO,"Correct digits ",32,glob_good_digits,4," ")
> ;
> ;
> term_no := 1;
> numeric_val := array_y2[term_no];
> omniout_complex(ALWAYS,"h ",33,glob_h,20," ");
> omniout_complex(ALWAYS,"y2[1] (numeric) ",33,numeric_val,20," ");
> closed_form_val_y := evalf(exact_soln_y2(ind_var));
> omniout_complex(ALWAYS,"y2[1] (closed_form) ",33,closed_form_val_y,20," ");
> abserr := float_abs(numeric_val - closed_form_val_y);
> if (float_abs(closed_form_val_y) > 0.0) then # if number 5
> relerr := abserr/float_abs(closed_form_val_y);
> if (float_abs(c(relerr)) > 0.0) then # if number 6
> glob_good_digits := round(-log10(relerr));
> else
> relerr := 0.0 ;
> glob_good_digits := Digits - 2;
> 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;
> omniout_float(ALWAYS,"absolute error ",4,abserr,4," ");
> omniout_float(ALWAYS,"relative error ",4,relerr * glob__100 ,4,"%");
> omniout_int(INFO,"Correct digits ",32,glob_good_digits,4," ")
> ;
> #BOTTOM DISPLAY ALOT
> end;
display_alot := proc(iter)
local abserr, closed_form_val_y, ind_var, numeric_val, relerr, term_no,
est_rel_err;
global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole,
glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test,
glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED,
glob__small, glob_small_float, glob_smallish_float, glob_large_float,
glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3,
glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5,
glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec,
glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error,
glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec,
glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1,
glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm,
glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1,
glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc,
glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing,
glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h,
glob_min_h, glob_display_interval, glob_abserr, glob_relerr,
glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err,
glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start,
glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec,
glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display,
glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits,
glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits,
glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag,
glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour,
glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day,
glob_sec_in_year, glob_not_yet_finished, glob_initial_pass,
glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done,
glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form,
glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2,
glob_start, glob_iter, array_const_1, array_const_0D0, array_const_1D0,
array_y1_init, array_y2_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_y1, array_x, array_y2,
array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5,
array_m1, array_y1_higher, array_y1_higher_work, array_y1_higher_work2,
array_y1_set_initial, array_y2_higher, array_y2_higher_work,
array_y2_higher_work2, array_y2_set_initial, array_given_rad_poles,
array_given_ord_poles, array_rad_test_poles, array_ord_test_poles,
array_fact_2, ATS_MAX_TERMS, glob_last;
ind_var := array_x[1];
omniout_complex(ALWAYS, "x[1] ", 33,
ind_var, 20, " ");
term_no := 1;
numeric_val := array_y1[term_no];
omniout_complex(ALWAYS, "h ", 33, glob_h,
20, " ");
omniout_complex(ALWAYS, "y1[1] (numeric) ", 33,
numeric_val, 20, " ");
closed_form_val_y := evalf(exact_soln_y1(ind_var));
omniout_complex(ALWAYS, "y1[1] (closed_form) ", 33,
closed_form_val_y, 20, " ");
abserr := float_abs(numeric_val - closed_form_val_y);
if 0. < float_abs(closed_form_val_y) then
relerr := abserr/float_abs(closed_form_val_y);
if 0. < float_abs(c(relerr)) then
glob_good_digits := round(-log10(relerr))
else relerr := 0.; glob_good_digits := Digits - 2
end if
else relerr := glob__m1; glob_good_digits := -16
end if;
if glob_good_digits < glob_min_good_digits then
glob_min_good_digits := glob_good_digits
end if;
omniout_float(ALWAYS, "absolute error ", 4, abserr, 4,
" ");
omniout_float(ALWAYS, "relative error ", 4,
relerr*glob__100, 4, "%");
omniout_int(INFO, "Correct digits ", 32,
glob_good_digits, 4, " ");
term_no := 1;
numeric_val := array_y2[term_no];
omniout_complex(ALWAYS, "h ", 33, glob_h,
20, " ");
omniout_complex(ALWAYS, "y2[1] (numeric) ", 33,
numeric_val, 20, " ");
closed_form_val_y := evalf(exact_soln_y2(ind_var));
omniout_complex(ALWAYS, "y2[1] (closed_form) ", 33,
closed_form_val_y, 20, " ");
abserr := float_abs(numeric_val - closed_form_val_y);
if 0. < float_abs(closed_form_val_y) then
relerr := abserr/float_abs(closed_form_val_y);
if 0. < float_abs(c(relerr)) then
glob_good_digits := round(-log10(relerr))
else relerr := 0.; glob_good_digits := Digits - 2
end if
else relerr := glob__m1; glob_good_digits := -16
end if;
if glob_good_digits < glob_min_good_digits then
glob_min_good_digits := glob_good_digits
end if;
omniout_float(ALWAYS, "absolute error ", 4, abserr, 4,
" ");
omniout_float(ALWAYS, "relative error ", 4,
relerr*glob__100, 4, "%");
omniout_int(INFO, "Correct digits ", 32,
glob_good_digits, 4, " ")
end proc
# End Function number 8
# Begin Function number 9
> prog_report := proc(x_start,x_end)
> global
> ALWAYS,
> INFO,
> DEBUGL,
> DEBUGMASSIVE,
> glob_iolevel,
> glob_yes_pole,
> glob_no_pole,
> glob_not_given,
> glob_no_sing_tests,
> glob_ratio_test,
> glob_three_term_test,
> glob_six_term_test,
> glob_log_10,
#Top Generate Globals Decl
> MAX_UNCHANGED,
> glob__small,
> glob_small_float,
> glob_smallish_float,
> glob_large_float,
> glob_larger_float,
> glob__m2,
> glob__m1,
> glob__0,
> glob__1,
> glob__2,
> glob__3,
> glob__4,
> glob__5,
> glob__8,
> glob__10,
> glob__100,
> glob__pi,
> glob__0_5,
> glob__0_8,
> glob__m0_8,
> glob__0_25,
> glob__0_125,
> glob_h,
> glob_nxt,
> glob_prec,
> glob_check_sign,
> glob_desired_digits_correct,
> glob_max_estimated_step_error,
> glob_ratio_of_radius,
> glob_percent_done,
> glob_total_exp_sec,
> glob_optimal_expect_sec,
> glob_estimated_size_answer,
> glob_almost_1,
> glob_clock_sec,
> glob_clock_start_sec,
> glob_disp_incr,
> glob_diff_rc_fm,
> glob_diff_rc_fmm1,
> glob_diff_rc_fmm2,
> glob_diff_ord_fm,
> glob_diff_ord_fmm1,
> glob_diff_ord_fmm2,
> glob_six_term_ord_save,
> glob_guess_error_rc,
> glob_guess_error_ord,
> glob_least_given_sing,
> glob_least_ratio_sing,
> glob_least_3_sing,
> glob_least_6_sing,
> glob_last_good_h,
> glob_max_h,
> glob_min_h,
> glob_display_interval,
> glob_abserr,
> glob_relerr,
> glob_min_pole_est,
> glob_max_rel_trunc_err,
> glob_max_trunc_err,
> glob_max_hours,
> glob_optimal_clock_start_sec,
> glob_optimal_start,
> glob_upper_ratio_limit,
> glob_lower_ratio_limit,
> glob_max_sec,
> glob_orig_start_sec,
> glob_normmax,
> glob_max_minutes,
> glob_next_display,
> glob_est_digits,
> glob_subiter_method,
> glob_html_log,
> glob_min_good_digits,
> glob_good_digits,
> glob_min_apfp_est_good_digits,
> glob_apfp_est_good_digits,
> glob_max_opt_iter,
> glob_dump,
> glob_djd_debug,
> glob_display_flag,
> glob_djd_debug2,
> glob_h_reason,
> glob_sec_in_minute,
> glob_min_in_hour,
> glob_hours_in_day,
> glob_days_in_year,
> glob_sec_in_hour,
> glob_sec_in_day,
> glob_sec_in_year,
> glob_not_yet_finished,
> glob_initial_pass,
> glob_not_yet_start_msg,
> glob_reached_optimal_h,
> glob_optimal_done,
> glob_type_given_pole,
> glob_optimize,
> glob_look_poles,
> glob_dump_closed_form,
> glob_max_iter,
> glob_no_eqs,
> glob_unchanged_h_cnt,
> glob_warned,
> glob_warned2,
> glob_start,
> glob_iter,
#Bottom Generate Globals Decl
#BEGIN CONST
> array_const_1,
> array_const_0D0,
> array_const_1D0,
#END CONST
> array_y1_init,
> array_y2_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_y1,
> array_x,
> array_y2,
> array_tmp0,
> array_tmp1,
> array_tmp2,
> array_tmp3,
> array_tmp4,
> array_tmp5,
> array_m1,
> array_y1_higher,
> array_y1_higher_work,
> array_y1_higher_work2,
> array_y1_set_initial,
> array_y2_higher,
> array_y2_higher_work,
> array_y2_higher_work2,
> array_y2_set_initial,
> array_given_rad_poles,
> array_given_ord_poles,
> array_rad_test_poles,
> array_ord_test_poles,
> array_fact_2,
> ATS_MAX_TERMS,
> glob_last;
> local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec;
> #TOP PROGRESS REPORT
> clock_sec1 := elapsed_time_seconds();
> total_clock_sec := (clock_sec1) - (glob_orig_start_sec);
> glob_clock_sec := (clock_sec1) - (glob_clock_start_sec);
> left_sec := (glob_max_sec) + (glob_orig_start_sec) - (clock_sec1);
> expect_sec := comp_expect_sec((x_end),(x_start),(array_x[1]) + (glob_h) ,( clock_sec1) - (glob_orig_start_sec));
> opt_clock_sec := ( clock_sec1) - (glob_optimal_clock_start_sec);
> glob_optimal_expect_sec := comp_expect_sec((x_end),(x_start),(array_x[1]) +( glob_h) ,( opt_clock_sec));
> glob_total_exp_sec := glob_optimal_expect_sec + c(total_clock_sec);
> percent_done := comp_percent((x_end),(x_start),(array_x[1]) + (glob_h));
> glob_percent_done := percent_done;
> omniout_str_noeol(INFO,"Total Elapsed Time ");
> omniout_timestr((total_clock_sec));
> if (c(percent_done) < glob__100) then # if number 5
> 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 5;
> #BOTTOM PROGRESS REPORT
> end;
prog_report := proc(x_start, x_end)
local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec,
percent_done, total_clock_sec;
global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole,
glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test,
glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED,
glob__small, glob_small_float, glob_smallish_float, glob_large_float,
glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3,
glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5,
glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec,
glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error,
glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec,
glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1,
glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm,
glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1,
glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc,
glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing,
glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h,
glob_min_h, glob_display_interval, glob_abserr, glob_relerr,
glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err,
glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start,
glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec,
glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display,
glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits,
glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits,
glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag,
glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour,
glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day,
glob_sec_in_year, glob_not_yet_finished, glob_initial_pass,
glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done,
glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form,
glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2,
glob_start, glob_iter, array_const_1, array_const_0D0, array_const_1D0,
array_y1_init, array_y2_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_y1, array_x, array_y2,
array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5,
array_m1, array_y1_higher, array_y1_higher_work, array_y1_higher_work2,
array_y1_set_initial, array_y2_higher, array_y2_higher_work,
array_y2_higher_work2, array_y2_set_initial, array_given_rad_poles,
array_given_ord_poles, array_rad_test_poles, array_ord_test_poles,
array_fact_2, ATS_MAX_TERMS, glob_last;
clock_sec1 := elapsed_time_seconds();
total_clock_sec := clock_sec1 - glob_orig_start_sec;
glob_clock_sec := clock_sec1 - glob_clock_start_sec;
left_sec := glob_max_sec + glob_orig_start_sec - clock_sec1;
expect_sec := comp_expect_sec(x_end, x_start, array_x[1] + glob_h,
clock_sec1 - glob_orig_start_sec);
opt_clock_sec := clock_sec1 - glob_optimal_clock_start_sec;
glob_optimal_expect_sec :=
comp_expect_sec(x_end, x_start, array_x[1] + glob_h, opt_clock_sec)
;
glob_total_exp_sec := glob_optimal_expect_sec + c(total_clock_sec);
percent_done := comp_percent(x_end, x_start, array_x[1] + glob_h);
glob_percent_done := percent_done;
omniout_str_noeol(INFO, "Total Elapsed Time ");
omniout_timestr(total_clock_sec);
if c(percent_done) < glob__100 then
omniout_str_noeol(INFO, "Expected Time Remaining ");
omniout_timestr(expect_sec);
omniout_str_noeol(INFO, "Optimized Time Remaining ");
omniout_timestr(glob_optimal_expect_sec);
omniout_str_noeol(INFO, "Expected Total Time ");
omniout_timestr(glob_total_exp_sec)
end if
end proc
# End Function number 9
# Begin Function number 10
> check_for_pole := proc()
> global
> ALWAYS,
> INFO,
> DEBUGL,
> DEBUGMASSIVE,
> glob_iolevel,
> glob_yes_pole,
> glob_no_pole,
> glob_not_given,
> glob_no_sing_tests,
> glob_ratio_test,
> glob_three_term_test,
> glob_six_term_test,
> glob_log_10,
#Top Generate Globals Decl
> MAX_UNCHANGED,
> glob__small,
> glob_small_float,
> glob_smallish_float,
> glob_large_float,
> glob_larger_float,
> glob__m2,
> glob__m1,
> glob__0,
> glob__1,
> glob__2,
> glob__3,
> glob__4,
> glob__5,
> glob__8,
> glob__10,
> glob__100,
> glob__pi,
> glob__0_5,
> glob__0_8,
> glob__m0_8,
> glob__0_25,
> glob__0_125,
> glob_h,
> glob_nxt,
> glob_prec,
> glob_check_sign,
> glob_desired_digits_correct,
> glob_max_estimated_step_error,
> glob_ratio_of_radius,
> glob_percent_done,
> glob_total_exp_sec,
> glob_optimal_expect_sec,
> glob_estimated_size_answer,
> glob_almost_1,
> glob_clock_sec,
> glob_clock_start_sec,
> glob_disp_incr,
> glob_diff_rc_fm,
> glob_diff_rc_fmm1,
> glob_diff_rc_fmm2,
> glob_diff_ord_fm,
> glob_diff_ord_fmm1,
> glob_diff_ord_fmm2,
> glob_six_term_ord_save,
> glob_guess_error_rc,
> glob_guess_error_ord,
> glob_least_given_sing,
> glob_least_ratio_sing,
> glob_least_3_sing,
> glob_least_6_sing,
> glob_last_good_h,
> glob_max_h,
> glob_min_h,
> glob_display_interval,
> glob_abserr,
> glob_relerr,
> glob_min_pole_est,
> glob_max_rel_trunc_err,
> glob_max_trunc_err,
> glob_max_hours,
> glob_optimal_clock_start_sec,
> glob_optimal_start,
> glob_upper_ratio_limit,
> glob_lower_ratio_limit,
> glob_max_sec,
> glob_orig_start_sec,
> glob_normmax,
> glob_max_minutes,
> glob_next_display,
> glob_est_digits,
> glob_subiter_method,
> glob_html_log,
> glob_min_good_digits,
> glob_good_digits,
> glob_min_apfp_est_good_digits,
> glob_apfp_est_good_digits,
> glob_max_opt_iter,
> glob_dump,
> glob_djd_debug,
> glob_display_flag,
> glob_djd_debug2,
> glob_h_reason,
> glob_sec_in_minute,
> glob_min_in_hour,
> glob_hours_in_day,
> glob_days_in_year,
> glob_sec_in_hour,
> glob_sec_in_day,
> glob_sec_in_year,
> glob_not_yet_finished,
> glob_initial_pass,
> glob_not_yet_start_msg,
> glob_reached_optimal_h,
> glob_optimal_done,
> glob_type_given_pole,
> glob_optimize,
> glob_look_poles,
> glob_dump_closed_form,
> glob_max_iter,
> glob_no_eqs,
> glob_unchanged_h_cnt,
> glob_warned,
> glob_warned2,
> glob_start,
> glob_iter,
#Bottom Generate Globals Decl
#BEGIN CONST
> array_const_1,
> array_const_0D0,
> array_const_1D0,
#END CONST
> array_y1_init,
> array_y2_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_y1,
> array_x,
> array_y2,
> array_tmp0,
> array_tmp1,
> array_tmp2,
> array_tmp3,
> array_tmp4,
> array_tmp5,
> array_m1,
> array_y1_higher,
> array_y1_higher_work,
> array_y1_higher_work2,
> array_y1_set_initial,
> array_y2_higher,
> array_y2_higher_work,
> array_y2_higher_work2,
> array_y2_set_initial,
> array_given_rad_poles,
> array_given_ord_poles,
> array_rad_test_poles,
> array_ord_test_poles,
> array_fact_2,
> ATS_MAX_TERMS,
> glob_last;
> local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, term1, term2, term3, part1, part2, part3, part4, part5, part6, part7, part8, part9, part10, part11, part12, part13, part14, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found_sing, h_new, ratio, term, local_test, tmp_rad,tmp_ord, tmp_ratio, prev_tmp_rad, last_no;
> #TOP CHECK FOR POLE
> tmp_rad := glob_larger_float;
> prev_tmp_rad := glob_larger_float;
> tmp_ratio := glob_larger_float;
> rad_c := glob_larger_float;
> array_rad_test_poles[1,1] := glob_larger_float;
> array_ord_test_poles[1,1] := glob_larger_float;
> found_sing := 1;
> last_no := ATS_MAX_TERMS - 1 - 10;
> cnt := 0;
> while (last_no < ATS_MAX_TERMS-3 and found_sing = 1) do # do number 1
> tmp_rad := comp_rad_from_ratio(array_y1_higher[1,last_no-1],array_y1_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,1]) then # if number 8
> array_rad_test_poles[1,1] := rad_c;
> last_no := last_no - 1;
> tmp_ord := comp_ord_from_ratio(array_y1_higher[1,last_no-1],array_y1_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 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[2,1] := glob_larger_float;
> array_ord_test_poles[2,1] := glob_larger_float;
> found_sing := 1;
> last_no := ATS_MAX_TERMS - 1 - 10;
> cnt := 0;
> while (last_no < ATS_MAX_TERMS-3 and found_sing = 1) do # do number 1
> tmp_rad := comp_rad_from_ratio(array_y2_higher[1,last_no-1],array_y2_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[2,1]) then # if number 10
> array_rad_test_poles[2,1] := rad_c;
> last_no := last_no - 1;
> tmp_ord := comp_ord_from_ratio(array_y2_higher[1,last_no-1],array_y2_higher[1,last_no],last_no);
> array_rad_test_poles[2,1] := rad_c;
> array_ord_test_poles[2,1] := tmp_ord;
> fi;# end if 10;
> fi;# end if 9;
> #BOTTOM general radius test2
> tmp_rad := glob_larger_float;
> prev_tmp_rad := glob_larger_float;
> tmp_ratio := glob_larger_float;
> rad_c := glob_larger_float;
> array_rad_test_poles[1,2] := glob_larger_float;
> array_ord_test_poles[1,2] := glob_larger_float;
> found_sing := 1;
> last_no := ATS_MAX_TERMS - 1 - 10;
> cnt := 0;
> while (last_no < ATS_MAX_TERMS-4 and found_sing = 1) do # do number 1
> tmp_rad := comp_rad_from_three_terms(array_y1_higher[1,last_no-2],array_y1_higher[1,last_no-1],array_y1_higher[1,last_no],last_no);
> if (float_abs(prev_tmp_rad) > glob__0) then # if number 9
> tmp_ratio := tmp_rad / prev_tmp_rad;
> else
> tmp_ratio := glob_large_float;
> fi;# end if 9;
> if ((cnt > 0 ) and (tmp_ratio < glob_upper_ratio_limit) and (tmp_ratio > glob_lower_ratio_limit)) then # if number 9
> rad_c := tmp_rad;
> elif
> (cnt = 0) then # if number 10
> rad_c := tmp_rad;
> elif
> (cnt > 0) then # if number 11
> found_sing := 0;
> fi;# end if 11;
> 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 11
> if (rad_c < array_rad_test_poles[1,2]) then # if number 12
> array_rad_test_poles[1,2] := rad_c;
> last_no := last_no - 1;
> tmp_ord := comp_ord_from_three_terms(array_y1_higher[1,last_no-2],array_y1_higher[1,last_no-1],array_y1_higher[1,last_no],last_no);
> array_rad_test_poles[1,2] := rad_c;
> if (rad_c < glob_min_pole_est) then # if number 13
> glob_min_pole_est := rad_c;
> fi;# end if 13;
> array_ord_test_poles[1,2] := tmp_ord;
> fi;# end if 12;
> fi;# end if 11;
> #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[2,2] := glob_larger_float;
> array_ord_test_poles[2,2] := glob_larger_float;
> found_sing := 1;
> last_no := ATS_MAX_TERMS - 1 - 10;
> cnt := 0;
> while (last_no < ATS_MAX_TERMS-4 and found_sing = 1) do # do number 1
> tmp_rad := comp_rad_from_three_terms(array_y2_higher[1,last_no-2],array_y2_higher[1,last_no-1],array_y2_higher[1,last_no],last_no);
> if (float_abs(prev_tmp_rad) > glob__0) then # if number 11
> tmp_ratio := tmp_rad / prev_tmp_rad;
> else
> tmp_ratio := glob_large_float;
> fi;# end if 11;
> if ((cnt > 0 ) and (tmp_ratio < glob_upper_ratio_limit) and (tmp_ratio > glob_lower_ratio_limit)) then # if number 11
> rad_c := tmp_rad;
> elif
> (cnt = 0) then # if number 12
> rad_c := tmp_rad;
> elif
> (cnt > 0) then # if number 13
> found_sing := 0;
> fi;# end if 13;
> 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 13
> if (rad_c < array_rad_test_poles[2,2]) then # if number 14
> array_rad_test_poles[2,2] := rad_c;
> last_no := last_no - 1;
> tmp_ord := comp_ord_from_three_terms(array_y2_higher[1,last_no-2],array_y2_higher[1,last_no-1],array_y2_higher[1,last_no],last_no);
> array_rad_test_poles[2,2] := rad_c;
> if (rad_c < glob_min_pole_est) then # if number 15
> glob_min_pole_est := rad_c;
> fi;# end if 15;
> array_ord_test_poles[2,2] := tmp_ord;
> fi;# end if 14;
> fi;# end if 13;
> #BOTTOM general radius test2
> tmp_rad := glob_larger_float;
> prev_tmp_rad := glob_larger_float;
> tmp_ratio := glob_larger_float;
> rad_c := glob_larger_float;
> array_rad_test_poles[1,3] := glob_larger_float;
> array_ord_test_poles[1,3] := glob_larger_float;
> found_sing := 1;
> last_no := ATS_MAX_TERMS - 1 - 10;
> cnt := 0;
> while (last_no < ATS_MAX_TERMS-7 and found_sing = 1) do # do number 1
> tmp_rad := comp_rad_from_six_terms(array_y1_higher[1,last_no-5],array_y1_higher[1,last_no-4],array_y1_higher[1,last_no-3],array_y1_higher[1,last_no-2],array_y1_higher[1,last_no-1],array_y1_higher[1,last_no],last_no);
> if (float_abs(prev_tmp_rad) > glob__0) then # if number 13
> tmp_ratio := tmp_rad / prev_tmp_rad;
> else
> tmp_ratio := glob_large_float;
> fi;# end if 13;
> if ((cnt > 0 ) and (tmp_ratio < glob_upper_ratio_limit) and (tmp_ratio > glob_lower_ratio_limit)) then # if number 13
> rad_c := tmp_rad;
> elif
> (cnt = 0) then # if number 14
> rad_c := tmp_rad;
> elif
> (cnt > 0) then # if number 15
> found_sing := 0;
> fi;# end if 15;
> 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 15
> if (rad_c < array_rad_test_poles[1,3]) then # if number 16
> array_rad_test_poles[1,3] := rad_c;
> last_no := last_no - 1;
> tmp_ord := comp_ord_from_six_terms(array_y1_higher[1,last_no-5],array_y1_higher[1,last_no-4],array_y1_higher[1,last_no-3],array_y1_higher[1,last_no-2],array_y1_higher[1,last_no-1],array_y1_higher[1,last_no],last_no);
> array_rad_test_poles[1,3] := rad_c;
> if (rad_c < glob_min_pole_est) then # if number 17
> glob_min_pole_est := rad_c;
> fi;# end if 17;
> array_ord_test_poles[1,3] := tmp_ord;
> fi;# end if 16;
> fi;# end if 15;
> #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[2,3] := glob_larger_float;
> array_ord_test_poles[2,3] := glob_larger_float;
> found_sing := 1;
> last_no := ATS_MAX_TERMS - 1 - 10;
> cnt := 0;
> while (last_no < ATS_MAX_TERMS-7 and found_sing = 1) do # do number 1
> tmp_rad := comp_rad_from_six_terms(array_y2_higher[1,last_no-5],array_y2_higher[1,last_no-4],array_y2_higher[1,last_no-3],array_y2_higher[1,last_no-2],array_y2_higher[1,last_no-1],array_y2_higher[1,last_no],last_no);
> if (float_abs(prev_tmp_rad) > glob__0) then # if number 15
> tmp_ratio := tmp_rad / prev_tmp_rad;
> else
> tmp_ratio := glob_large_float;
> fi;# end if 15;
> if ((cnt > 0 ) and (tmp_ratio < glob_upper_ratio_limit) and (tmp_ratio > glob_lower_ratio_limit)) then # if number 15
> rad_c := tmp_rad;
> elif
> (cnt = 0) then # if number 16
> rad_c := tmp_rad;
> elif
> (cnt > 0) then # if number 17
> found_sing := 0;
> fi;# end if 17;
> 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 17
> if (rad_c < array_rad_test_poles[2,3]) then # if number 18
> array_rad_test_poles[2,3] := rad_c;
> last_no := last_no - 1;
> tmp_ord := comp_ord_from_six_terms(array_y2_higher[1,last_no-5],array_y2_higher[1,last_no-4],array_y2_higher[1,last_no-3],array_y2_higher[1,last_no-2],array_y2_higher[1,last_no-1],array_y2_higher[1,last_no],last_no);
> array_rad_test_poles[2,3] := rad_c;
> if (rad_c < glob_min_pole_est) then # if number 19
> glob_min_pole_est := rad_c;
> fi;# end if 19;
> array_ord_test_poles[2,3] := tmp_ord;
> fi;# end if 18;
> fi;# end if 17;
> #BOTTOM general radius test2
> ;
> if (true) then # if number 17
> display_poles();
> fi;# end if 17
> end;
check_for_pole := proc()
local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, term1, term2,
term3, part1, part2, part3, part4, part5, part6, part7, part8, part9,
part10, part11, part12, part13, part14, rad_c, rcs, rm0, rm1, rm2, rm3, rm4,
found_sing, h_new, ratio, term, local_test, tmp_rad, tmp_ord, tmp_ratio,
prev_tmp_rad, last_no;
global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole,
glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test,
glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED,
glob__small, glob_small_float, glob_smallish_float, glob_large_float,
glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3,
glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5,
glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec,
glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error,
glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec,
glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1,
glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm,
glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1,
glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc,
glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing,
glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h,
glob_min_h, glob_display_interval, glob_abserr, glob_relerr,
glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err,
glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start,
glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec,
glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display,
glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits,
glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits,
glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag,
glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour,
glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day,
glob_sec_in_year, glob_not_yet_finished, glob_initial_pass,
glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done,
glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form,
glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2,
glob_start, glob_iter, array_const_1, array_const_0D0, array_const_1D0,
array_y1_init, array_y2_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_y1, array_x, array_y2,
array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5,
array_m1, array_y1_higher, array_y1_higher_work, array_y1_higher_work2,
array_y1_set_initial, array_y2_higher, array_y2_higher_work,
array_y2_higher_work2, array_y2_set_initial, array_given_rad_poles,
array_given_ord_poles, array_rad_test_poles, array_ord_test_poles,
array_fact_2, ATS_MAX_TERMS, glob_last;
tmp_rad := glob_larger_float;
prev_tmp_rad := glob_larger_float;
tmp_ratio := glob_larger_float;
rad_c := glob_larger_float;
array_rad_test_poles[1, 1] := glob_larger_float;
array_ord_test_poles[1, 1] := glob_larger_float;
found_sing := 1;
last_no := ATS_MAX_TERMS - 11;
cnt := 0;
while last_no < ATS_MAX_TERMS - 3 and found_sing = 1 do
tmp_rad := comp_rad_from_ratio(array_y1_higher[1, last_no - 1],
array_y1_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_y1_higher[1, last_no - 1],
array_y1_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[2, 1] := glob_larger_float;
array_ord_test_poles[2, 1] := glob_larger_float;
found_sing := 1;
last_no := ATS_MAX_TERMS - 11;
cnt := 0;
while last_no < ATS_MAX_TERMS - 3 and found_sing = 1 do
tmp_rad := comp_rad_from_ratio(array_y2_higher[1, last_no - 1],
array_y2_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[2, 1] then
array_rad_test_poles[2, 1] := rad_c;
last_no := last_no - 1;
tmp_ord := comp_ord_from_ratio(array_y2_higher[1, last_no - 1],
array_y2_higher[1, last_no], last_no);
array_rad_test_poles[2, 1] := rad_c;
array_ord_test_poles[2, 1] := tmp_ord
end if
end if;
tmp_rad := glob_larger_float;
prev_tmp_rad := glob_larger_float;
tmp_ratio := glob_larger_float;
rad_c := glob_larger_float;
array_rad_test_poles[1, 2] := glob_larger_float;
array_ord_test_poles[1, 2] := glob_larger_float;
found_sing := 1;
last_no := ATS_MAX_TERMS - 11;
cnt := 0;
while last_no < ATS_MAX_TERMS - 4 and found_sing = 1 do
tmp_rad := comp_rad_from_three_terms(
array_y1_higher[1, last_no - 2],
array_y1_higher[1, last_no - 1], array_y1_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_y1_higher[1, last_no - 2],
array_y1_higher[1, last_no - 1],
array_y1_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[2, 2] := glob_larger_float;
array_ord_test_poles[2, 2] := glob_larger_float;
found_sing := 1;
last_no := ATS_MAX_TERMS - 11;
cnt := 0;
while last_no < ATS_MAX_TERMS - 4 and found_sing = 1 do
tmp_rad := comp_rad_from_three_terms(
array_y2_higher[1, last_no - 2],
array_y2_higher[1, last_no - 1], array_y2_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[2, 2] then
array_rad_test_poles[2, 2] := rad_c;
last_no := last_no - 1;
tmp_ord := comp_ord_from_three_terms(
array_y2_higher[1, last_no - 2],
array_y2_higher[1, last_no - 1],
array_y2_higher[1, last_no], last_no);
array_rad_test_poles[2, 2] := rad_c;
if rad_c < glob_min_pole_est then glob_min_pole_est := rad_c
end if;
array_ord_test_poles[2, 2] := tmp_ord
end if
end if;
tmp_rad := glob_larger_float;
prev_tmp_rad := glob_larger_float;
tmp_ratio := glob_larger_float;
rad_c := glob_larger_float;
array_rad_test_poles[1, 3] := glob_larger_float;
array_ord_test_poles[1, 3] := glob_larger_float;
found_sing := 1;
last_no := ATS_MAX_TERMS - 11;
cnt := 0;
while last_no < ATS_MAX_TERMS - 7 and found_sing = 1 do
tmp_rad := comp_rad_from_six_terms(array_y1_higher[1, last_no - 5],
array_y1_higher[1, last_no - 4],
array_y1_higher[1, last_no - 3],
array_y1_higher[1, last_no - 2],
array_y1_higher[1, last_no - 1], array_y1_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_y1_higher[1, last_no - 5],
array_y1_higher[1, last_no - 4],
array_y1_higher[1, last_no - 3],
array_y1_higher[1, last_no - 2],
array_y1_higher[1, last_no - 1],
array_y1_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;
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[2, 3] := glob_larger_float;
array_ord_test_poles[2, 3] := glob_larger_float;
found_sing := 1;
last_no := ATS_MAX_TERMS - 11;
cnt := 0;
while last_no < ATS_MAX_TERMS - 7 and found_sing = 1 do
tmp_rad := comp_rad_from_six_terms(array_y2_higher[1, last_no - 5],
array_y2_higher[1, last_no - 4],
array_y2_higher[1, last_no - 3],
array_y2_higher[1, last_no - 2],
array_y2_higher[1, last_no - 1], array_y2_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[2, 3] then
array_rad_test_poles[2, 3] := rad_c;
last_no := last_no - 1;
tmp_ord := comp_ord_from_six_terms(
array_y2_higher[1, last_no - 5],
array_y2_higher[1, last_no - 4],
array_y2_higher[1, last_no - 3],
array_y2_higher[1, last_no - 2],
array_y2_higher[1, last_no - 1],
array_y2_higher[1, last_no], last_no);
array_rad_test_poles[2, 3] := rad_c;
if rad_c < glob_min_pole_est then glob_min_pole_est := rad_c
end if;
array_ord_test_poles[2, 3] := tmp_ord
end if
end if;
display_poles()
end proc
# End Function number 10
# Begin Function number 11
> atomall := proc()
> global
> ALWAYS,
> INFO,
> DEBUGL,
> DEBUGMASSIVE,
> glob_iolevel,
> glob_yes_pole,
> glob_no_pole,
> glob_not_given,
> glob_no_sing_tests,
> glob_ratio_test,
> glob_three_term_test,
> glob_six_term_test,
> glob_log_10,
#Top Generate Globals Decl
> MAX_UNCHANGED,
> glob__small,
> glob_small_float,
> glob_smallish_float,
> glob_large_float,
> glob_larger_float,
> glob__m2,
> glob__m1,
> glob__0,
> glob__1,
> glob__2,
> glob__3,
> glob__4,
> glob__5,
> glob__8,
> glob__10,
> glob__100,
> glob__pi,
> glob__0_5,
> glob__0_8,
> glob__m0_8,
> glob__0_25,
> glob__0_125,
> glob_h,
> glob_nxt,
> glob_prec,
> glob_check_sign,
> glob_desired_digits_correct,
> glob_max_estimated_step_error,
> glob_ratio_of_radius,
> glob_percent_done,
> glob_total_exp_sec,
> glob_optimal_expect_sec,
> glob_estimated_size_answer,
> glob_almost_1,
> glob_clock_sec,
> glob_clock_start_sec,
> glob_disp_incr,
> glob_diff_rc_fm,
> glob_diff_rc_fmm1,
> glob_diff_rc_fmm2,
> glob_diff_ord_fm,
> glob_diff_ord_fmm1,
> glob_diff_ord_fmm2,
> glob_six_term_ord_save,
> glob_guess_error_rc,
> glob_guess_error_ord,
> glob_least_given_sing,
> glob_least_ratio_sing,
> glob_least_3_sing,
> glob_least_6_sing,
> glob_last_good_h,
> glob_max_h,
> glob_min_h,
> glob_display_interval,
> glob_abserr,
> glob_relerr,
> glob_min_pole_est,
> glob_max_rel_trunc_err,
> glob_max_trunc_err,
> glob_max_hours,
> glob_optimal_clock_start_sec,
> glob_optimal_start,
> glob_upper_ratio_limit,
> glob_lower_ratio_limit,
> glob_max_sec,
> glob_orig_start_sec,
> glob_normmax,
> glob_max_minutes,
> glob_next_display,
> glob_est_digits,
> glob_subiter_method,
> glob_html_log,
> glob_min_good_digits,
> glob_good_digits,
> glob_min_apfp_est_good_digits,
> glob_apfp_est_good_digits,
> glob_max_opt_iter,
> glob_dump,
> glob_djd_debug,
> glob_display_flag,
> glob_djd_debug2,
> glob_h_reason,
> glob_sec_in_minute,
> glob_min_in_hour,
> glob_hours_in_day,
> glob_days_in_year,
> glob_sec_in_hour,
> glob_sec_in_day,
> glob_sec_in_year,
> glob_not_yet_finished,
> glob_initial_pass,
> glob_not_yet_start_msg,
> glob_reached_optimal_h,
> glob_optimal_done,
> glob_type_given_pole,
> glob_optimize,
> glob_look_poles,
> glob_dump_closed_form,
> glob_max_iter,
> glob_no_eqs,
> glob_unchanged_h_cnt,
> glob_warned,
> glob_warned2,
> glob_start,
> glob_iter,
#Bottom Generate Globals Decl
#BEGIN CONST
> array_const_1,
> array_const_0D0,
> array_const_1D0,
#END CONST
> array_y1_init,
> array_y2_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_y1,
> array_x,
> array_y2,
> array_tmp0,
> array_tmp1,
> array_tmp2,
> array_tmp3,
> array_tmp4,
> array_tmp5,
> array_m1,
> array_y1_higher,
> array_y1_higher_work,
> array_y1_higher_work2,
> array_y1_set_initial,
> array_y2_higher,
> array_y2_higher_work,
> array_y2_higher_work2,
> array_y2_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 neg FULL $eq_no = 1
> array_tmp1[1] := neg(array_y2[1]);
> #emit pre add CONST FULL $eq_no = 1 i = 1
> array_tmp2[1] := array_const_0D0[1] + array_tmp1[1];
> #emit pre add FULL - CONST $eq_no = 1 i = 1
> array_tmp3[1] := array_tmp2[1] + array_const_1D0[1];
> #emit pre assign xxx $eq_no = 1 i = 1 $min_hdrs = 5
> if ( not array_y1_set_initial[1,2]) then # if number 1
> if (1 <= ATS_MAX_TERMS) then # if number 2
> temporary := c(array_tmp3[1]) * (expt((glob_h) , c(1))) * c(factorial_3(0,1));
> if (2 <= ATS_MAX_TERMS) then # if number 3
> array_y1[2] := temporary;
> array_y1_higher[1,2] := temporary;
> fi;# end if 3;
> temporary := c(temporary) / c(glob_h) * c(1);
> array_y1_higher[2,1] := c(temporary);
> fi;# end if 2;
> fi;# end if 1;
> kkk := 2;
> #emit pre sub FULL - CONST $eq_no = 2 i = 1
> array_tmp5[1] := array_y1[1] - array_const_1D0[1];
> #emit pre assign xxx $eq_no = 2 i = 1 $min_hdrs = 5
> if ( not array_y2_set_initial[2,2]) then # if number 1
> if (1 <= ATS_MAX_TERMS) then # if number 2
> temporary := c(array_tmp5[1]) * (expt((glob_h) , c(1))) * c(factorial_3(0,1));
> if (2 <= ATS_MAX_TERMS) then # if number 3
> array_y2[2] := temporary;
> array_y2_higher[1,2] := temporary;
> fi;# end if 3;
> temporary := c(temporary) / c(glob_h) * c(1);
> array_y2_higher[2,1] := c(temporary);
> fi;# end if 2;
> fi;# end if 1;
> kkk := 2;
> #END ATOMHDR1
> #BEGIN ATOMHDR2
> #emit pre neg FULL $eq_no = 1
> array_tmp1[2] := neg(array_y2[2]);
> #emit pre add CONST FULL $eq_no = 1 i = 2
> array_tmp2[2] := array_tmp1[2];
> #emit pre add FULL CONST $eq_no = 1 i = 2
> array_tmp3[2] := array_tmp2[2];
> #emit pre assign xxx $eq_no = 1 i = 2 $min_hdrs = 5
> if ( not array_y1_set_initial[1,3]) then # if number 1
> if (2 <= ATS_MAX_TERMS) then # if number 2
> temporary := c(array_tmp3[2]) * (expt((glob_h) , c(1))) * c(factorial_3(1,2));
> if (3 <= ATS_MAX_TERMS) then # if number 3
> array_y1[3] := temporary;
> array_y1_higher[1,3] := temporary;
> fi;# end if 3;
> temporary := c(temporary) / c(glob_h) * c(2);
> array_y1_higher[2,2] := c(temporary);
> fi;# end if 2;
> fi;# end if 1;
> kkk := 3;
> #emit pre sub FULL CONST $eq_no = 2 i = 2
> array_tmp5[2] := array_y1[2];
> #emit pre assign xxx $eq_no = 2 i = 2 $min_hdrs = 5
> if ( not array_y2_set_initial[2,3]) then # if number 1
> if (2 <= ATS_MAX_TERMS) then # if number 2
> temporary := c(array_tmp5[2]) * (expt((glob_h) , c(1))) * c(factorial_3(1,2));
> if (3 <= ATS_MAX_TERMS) then # if number 3
> array_y2[3] := temporary;
> array_y2_higher[1,3] := temporary;
> fi;# end if 3;
> temporary := c(temporary) / c(glob_h) * c(2);
> array_y2_higher[2,2] := c(temporary);
> fi;# end if 2;
> fi;# end if 1;
> kkk := 3;
> #END ATOMHDR2
> #BEGIN ATOMHDR3
> #emit pre neg FULL $eq_no = 1
> array_tmp1[3] := neg(array_y2[3]);
> #emit pre add CONST FULL $eq_no = 1 i = 3
> array_tmp2[3] := array_tmp1[3];
> #emit pre add FULL CONST $eq_no = 1 i = 3
> array_tmp3[3] := array_tmp2[3];
> #emit pre assign xxx $eq_no = 1 i = 3 $min_hdrs = 5
> if ( not array_y1_set_initial[1,4]) then # if number 1
> if (3 <= ATS_MAX_TERMS) then # if number 2
> temporary := c(array_tmp3[3]) * (expt((glob_h) , c(1))) * c(factorial_3(2,3));
> if (4 <= ATS_MAX_TERMS) then # if number 3
> array_y1[4] := temporary;
> array_y1_higher[1,4] := temporary;
> fi;# end if 3;
> temporary := c(temporary) / c(glob_h) * c(3);
> array_y1_higher[2,3] := c(temporary);
> fi;# end if 2;
> fi;# end if 1;
> kkk := 4;
> #emit pre sub FULL CONST $eq_no = 2 i = 3
> array_tmp5[3] := array_y1[3];
> #emit pre assign xxx $eq_no = 2 i = 3 $min_hdrs = 5
> if ( not array_y2_set_initial[2,4]) then # if number 1
> if (3 <= ATS_MAX_TERMS) then # if number 2
> temporary := c(array_tmp5[3]) * (expt((glob_h) , c(1))) * c(factorial_3(2,3));
> if (4 <= ATS_MAX_TERMS) then # if number 3
> array_y2[4] := temporary;
> array_y2_higher[1,4] := temporary;
> fi;# end if 3;
> temporary := c(temporary) / c(glob_h) * c(3);
> array_y2_higher[2,3] := c(temporary);
> fi;# end if 2;
> fi;# end if 1;
> kkk := 4;
> #END ATOMHDR3
> #BEGIN ATOMHDR4
> #emit pre neg FULL $eq_no = 1
> array_tmp1[4] := neg(array_y2[4]);
> #emit pre add CONST FULL $eq_no = 1 i = 4
> array_tmp2[4] := array_tmp1[4];
> #emit pre add FULL CONST $eq_no = 1 i = 4
> array_tmp3[4] := array_tmp2[4];
> #emit pre assign xxx $eq_no = 1 i = 4 $min_hdrs = 5
> if ( not array_y1_set_initial[1,5]) then # if number 1
> if (4 <= ATS_MAX_TERMS) then # if number 2
> temporary := c(array_tmp3[4]) * (expt((glob_h) , c(1))) * c(factorial_3(3,4));
> if (5 <= ATS_MAX_TERMS) then # if number 3
> array_y1[5] := temporary;
> array_y1_higher[1,5] := temporary;
> fi;# end if 3;
> temporary := c(temporary) / c(glob_h) * c(4);
> array_y1_higher[2,4] := c(temporary);
> fi;# end if 2;
> fi;# end if 1;
> kkk := 5;
> #emit pre sub FULL CONST $eq_no = 2 i = 4
> array_tmp5[4] := array_y1[4];
> #emit pre assign xxx $eq_no = 2 i = 4 $min_hdrs = 5
> if ( not array_y2_set_initial[2,5]) then # if number 1
> if (4 <= ATS_MAX_TERMS) then # if number 2
> temporary := c(array_tmp5[4]) * (expt((glob_h) , c(1))) * c(factorial_3(3,4));
> if (5 <= ATS_MAX_TERMS) then # if number 3
> array_y2[5] := temporary;
> array_y2_higher[1,5] := temporary;
> fi;# end if 3;
> temporary := c(temporary) / c(glob_h) * c(4);
> array_y2_higher[2,4] := c(temporary);
> fi;# end if 2;
> fi;# end if 1;
> kkk := 5;
> #END ATOMHDR4
> #BEGIN ATOMHDR5
> #emit pre neg FULL $eq_no = 1
> array_tmp1[5] := neg(array_y2[5]);
> #emit pre add CONST FULL $eq_no = 1 i = 5
> array_tmp2[5] := array_tmp1[5];
> #emit pre add FULL CONST $eq_no = 1 i = 5
> array_tmp3[5] := array_tmp2[5];
> #emit pre assign xxx $eq_no = 1 i = 5 $min_hdrs = 5
> if ( not array_y1_set_initial[1,6]) then # if number 1
> if (5 <= ATS_MAX_TERMS) then # if number 2
> temporary := c(array_tmp3[5]) * (expt((glob_h) , c(1))) * c(factorial_3(4,5));
> if (6 <= ATS_MAX_TERMS) then # if number 3
> array_y1[6] := temporary;
> array_y1_higher[1,6] := temporary;
> fi;# end if 3;
> temporary := c(temporary) / c(glob_h) * c(5);
> array_y1_higher[2,5] := c(temporary);
> fi;# end if 2;
> fi;# end if 1;
> kkk := 6;
> #emit pre sub FULL CONST $eq_no = 2 i = 5
> array_tmp5[5] := array_y1[5];
> #emit pre assign xxx $eq_no = 2 i = 5 $min_hdrs = 5
> if ( not array_y2_set_initial[2,6]) then # if number 1
> if (5 <= ATS_MAX_TERMS) then # if number 2
> temporary := c(array_tmp5[5]) * (expt((glob_h) , c(1))) * c(factorial_3(4,5));
> if (6 <= ATS_MAX_TERMS) then # if number 3
> array_y2[6] := temporary;
> array_y2_higher[1,6] := temporary;
> fi;# end if 3;
> temporary := c(temporary) / c(glob_h) * c(5);
> array_y2_higher[2,5] := c(temporary);
> fi;# end if 2;
> fi;# end if 1;
> kkk := 6;
> #END ATOMHDR5
> #BEGIN OUTFILE3
> #Top Atomall While Loop-- outfile3
> while (kkk <= ATS_MAX_TERMS) do # do number 1
> #END OUTFILE3
> #BEGIN OUTFILE4
> #emit neg FULL $eq_no = 1
> array_tmp1[kkk] := neg(array_y2[kkk]);
> #emit NOT FULL - FULL add $eq_no = 1
> array_tmp2[kkk] := array_tmp1[kkk];
> #emit FULL - NOT FULL add $eq_no = 1
> array_tmp3[kkk] := array_tmp2[kkk];
> #emit assign $eq_no = 1
> order_d := 1;
> if (kkk + order_d <= ATS_MAX_TERMS) then # if number 1
> if ( not array_y1_set_initial[1,kkk + order_d]) then # if number 2
> temporary := c(array_tmp3[kkk]) * expt((glob_h) , c(order_d)) * c(factorial_3((kkk - 1),(kkk + order_d - 1)));
> array_y1[kkk + order_d] := c(temporary);
> array_y1_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_y1_higher[adj3,term] := c(temporary);
> fi;# end if 3;
> term := term - 1;
> adj2 := adj2 - 1;
> adj3 := adj3 + 1;
> od;# end do number 1
> fi;# end if 2
> fi;# end if 1;
> #emit FULL - NOT FULL sub $eq_no = 2
> array_tmp5[kkk] := array_y1[kkk];
> #emit assign $eq_no = 2
> order_d := 1;
> if (kkk + order_d <= ATS_MAX_TERMS) then # if number 1
> if ( not array_y2_set_initial[2,kkk + order_d]) then # if number 2
> temporary := c(array_tmp5[kkk]) * expt((glob_h) , c(order_d)) * c(factorial_3((kkk - 1),(kkk + order_d - 1)));
> array_y2[kkk + order_d] := c(temporary);
> array_y2_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_y2_higher[adj3,term] := c(temporary);
> fi;# end if 3;
> term := term - 1;
> adj2 := adj2 - 1;
> adj3 := adj3 + 1;
> od;# end do number 1
> fi;# end if 2
> fi;# end if 1;
> kkk := kkk + 1;
> od;# end do number 1;
> #BOTTOM ATOMALL
> #END OUTFILE4
> #BEGIN OUTFILE5
> #BOTTOM ATOMALL ???
> end;
atomall := proc()
local kkk, order_d, adj2, adj3, temporary, term;
global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole,
glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test,
glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED,
glob__small, glob_small_float, glob_smallish_float, glob_large_float,
glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3,
glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5,
glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec,
glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error,
glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec,
glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1,
glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm,
glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1,
glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc,
glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing,
glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h,
glob_min_h, glob_display_interval, glob_abserr, glob_relerr,
glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err,
glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start,
glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec,
glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display,
glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits,
glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits,
glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag,
glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour,
glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day,
glob_sec_in_year, glob_not_yet_finished, glob_initial_pass,
glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done,
glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form,
glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2,
glob_start, glob_iter, array_const_1, array_const_0D0, array_const_1D0,
array_y1_init, array_y2_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_y1, array_x, array_y2,
array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5,
array_m1, array_y1_higher, array_y1_higher_work, array_y1_higher_work2,
array_y1_set_initial, array_y2_higher, array_y2_higher_work,
array_y2_higher_work2, array_y2_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] := neg(array_y2[1]);
array_tmp2[1] := array_const_0D0[1] + array_tmp1[1];
array_tmp3[1] := array_tmp2[1] + array_const_1D0[1];
if not array_y1_set_initial[1, 2] then
if 1 <= ATS_MAX_TERMS then
temporary :=
c(array_tmp3[1])*expt(glob_h, c(1))*c(factorial_3(0, 1));
if 2 <= ATS_MAX_TERMS then
array_y1[2] := temporary;
array_y1_higher[1, 2] := temporary
end if;
temporary := c(temporary)*c(1)/c(glob_h);
array_y1_higher[2, 1] := c(temporary)
end if
end if;
kkk := 2;
array_tmp5[1] := array_y1[1] - array_const_1D0[1];
if not array_y2_set_initial[2, 2] then
if 1 <= ATS_MAX_TERMS then
temporary :=
c(array_tmp5[1])*expt(glob_h, c(1))*c(factorial_3(0, 1));
if 2 <= ATS_MAX_TERMS then
array_y2[2] := temporary;
array_y2_higher[1, 2] := temporary
end if;
temporary := c(temporary)*c(1)/c(glob_h);
array_y2_higher[2, 1] := c(temporary)
end if
end if;
kkk := 2;
array_tmp1[2] := neg(array_y2[2]);
array_tmp2[2] := array_tmp1[2];
array_tmp3[2] := array_tmp2[2];
if not array_y1_set_initial[1, 3] then
if 2 <= ATS_MAX_TERMS then
temporary :=
c(array_tmp3[2])*expt(glob_h, c(1))*c(factorial_3(1, 2));
if 3 <= ATS_MAX_TERMS then
array_y1[3] := temporary;
array_y1_higher[1, 3] := temporary
end if;
temporary := c(temporary)*c(2)/c(glob_h);
array_y1_higher[2, 2] := c(temporary)
end if
end if;
kkk := 3;
array_tmp5[2] := array_y1[2];
if not array_y2_set_initial[2, 3] then
if 2 <= ATS_MAX_TERMS then
temporary :=
c(array_tmp5[2])*expt(glob_h, c(1))*c(factorial_3(1, 2));
if 3 <= ATS_MAX_TERMS then
array_y2[3] := temporary;
array_y2_higher[1, 3] := temporary
end if;
temporary := c(temporary)*c(2)/c(glob_h);
array_y2_higher[2, 2] := c(temporary)
end if
end if;
kkk := 3;
array_tmp1[3] := neg(array_y2[3]);
array_tmp2[3] := array_tmp1[3];
array_tmp3[3] := array_tmp2[3];
if not array_y1_set_initial[1, 4] then
if 3 <= ATS_MAX_TERMS then
temporary :=
c(array_tmp3[3])*expt(glob_h, c(1))*c(factorial_3(2, 3));
if 4 <= ATS_MAX_TERMS then
array_y1[4] := temporary;
array_y1_higher[1, 4] := temporary
end if;
temporary := c(temporary)*c(3)/c(glob_h);
array_y1_higher[2, 3] := c(temporary)
end if
end if;
kkk := 4;
array_tmp5[3] := array_y1[3];
if not array_y2_set_initial[2, 4] then
if 3 <= ATS_MAX_TERMS then
temporary :=
c(array_tmp5[3])*expt(glob_h, c(1))*c(factorial_3(2, 3));
if 4 <= ATS_MAX_TERMS then
array_y2[4] := temporary;
array_y2_higher[1, 4] := temporary
end if;
temporary := c(temporary)*c(3)/c(glob_h);
array_y2_higher[2, 3] := c(temporary)
end if
end if;
kkk := 4;
array_tmp1[4] := neg(array_y2[4]);
array_tmp2[4] := array_tmp1[4];
array_tmp3[4] := array_tmp2[4];
if not array_y1_set_initial[1, 5] then
if 4 <= ATS_MAX_TERMS then
temporary :=
c(array_tmp3[4])*expt(glob_h, c(1))*c(factorial_3(3, 4));
if 5 <= ATS_MAX_TERMS then
array_y1[5] := temporary;
array_y1_higher[1, 5] := temporary
end if;
temporary := c(temporary)*c(4)/c(glob_h);
array_y1_higher[2, 4] := c(temporary)
end if
end if;
kkk := 5;
array_tmp5[4] := array_y1[4];
if not array_y2_set_initial[2, 5] then
if 4 <= ATS_MAX_TERMS then
temporary :=
c(array_tmp5[4])*expt(glob_h, c(1))*c(factorial_3(3, 4));
if 5 <= ATS_MAX_TERMS then
array_y2[5] := temporary;
array_y2_higher[1, 5] := temporary
end if;
temporary := c(temporary)*c(4)/c(glob_h);
array_y2_higher[2, 4] := c(temporary)
end if
end if;
kkk := 5;
array_tmp1[5] := neg(array_y2[5]);
array_tmp2[5] := array_tmp1[5];
array_tmp3[5] := array_tmp2[5];
if not array_y1_set_initial[1, 6] then
if 5 <= ATS_MAX_TERMS then
temporary :=
c(array_tmp3[5])*expt(glob_h, c(1))*c(factorial_3(4, 5));
if 6 <= ATS_MAX_TERMS then
array_y1[6] := temporary;
array_y1_higher[1, 6] := temporary
end if;
temporary := c(temporary)*c(5)/c(glob_h);
array_y1_higher[2, 5] := c(temporary)
end if
end if;
kkk := 6;
array_tmp5[5] := array_y1[5];
if not array_y2_set_initial[2, 6] then
if 5 <= ATS_MAX_TERMS then
temporary :=
c(array_tmp5[5])*expt(glob_h, c(1))*c(factorial_3(4, 5));
if 6 <= ATS_MAX_TERMS then
array_y2[6] := temporary;
array_y2_higher[1, 6] := temporary
end if;
temporary := c(temporary)*c(5)/c(glob_h);
array_y2_higher[2, 5] := c(temporary)
end if
end if;
kkk := 6;
while kkk <= ATS_MAX_TERMS do
array_tmp1[kkk] := neg(array_y2[kkk]);
array_tmp2[kkk] := array_tmp1[kkk];
array_tmp3[kkk] := array_tmp2[kkk];
order_d := 1;
if kkk + order_d <= ATS_MAX_TERMS then
if not array_y1_set_initial[1, kkk + order_d] then
temporary := c(array_tmp3[kkk])*expt(glob_h, c(order_d))*
c(factorial_3(kkk - 1, kkk + order_d - 1));
array_y1[kkk + order_d] := c(temporary);
array_y1_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_y1_higher[adj3, term] := c(temporary)
end if;
term := term - 1;
adj2 := adj2 - 1;
adj3 := adj3 + 1
end do
end if
end if;
array_tmp5[kkk] := array_y1[kkk];
order_d := 1;
if kkk + order_d <= ATS_MAX_TERMS then
if not array_y2_set_initial[2, kkk + order_d] then
temporary := c(array_tmp5[kkk])*expt(glob_h, c(order_d))*
c(factorial_3(kkk - 1, kkk + order_d - 1));
array_y2[kkk + order_d] := c(temporary);
array_y2_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_y2_higher[adj3, term] := c(temporary)
end if;
term := term - 1;
adj2 := adj2 - 1;
adj3 := adj3 + 1
end do
end if
end if;
kkk := kkk + 1
end do
end proc
# End Function number 12
#END OUTFILE5
# Begin Function number 12
> main := proc()
> #BEGIN OUTFIEMAIN
> local d1,d2,d3,d4,est_err_2,niii,done_once,max_terms,display_max,
> term,ord,order_diff,term_no,html_log_file,iiif,jjjf,
> rows,r_order,sub_iter,calc_term,iii,temp_sum,current_iter,
> x_start,x_end
> ,it,last_min_pole_est, opt_iter, tmp,subiter, est_needed_step_err,estimated_step_error,min_value,est_answer,found_h,repeat_it;
> global
> ALWAYS,
> INFO,
> DEBUGL,
> DEBUGMASSIVE,
> glob_iolevel,
> glob_yes_pole,
> glob_no_pole,
> glob_not_given,
> glob_no_sing_tests,
> glob_ratio_test,
> glob_three_term_test,
> glob_six_term_test,
> glob_log_10,
> #Top Generate Globals Decl
> MAX_UNCHANGED,
> glob__small,
> glob_small_float,
> glob_smallish_float,
> glob_large_float,
> glob_larger_float,
> glob__m2,
> glob__m1,
> glob__0,
> glob__1,
> glob__2,
> glob__3,
> glob__4,
> glob__5,
> glob__8,
> glob__10,
> glob__100,
> glob__pi,
> glob__0_5,
> glob__0_8,
> glob__m0_8,
> glob__0_25,
> glob__0_125,
> glob_h,
> glob_nxt,
> glob_prec,
> glob_check_sign,
> glob_desired_digits_correct,
> glob_max_estimated_step_error,
> glob_ratio_of_radius,
> glob_percent_done,
> glob_total_exp_sec,
> glob_optimal_expect_sec,
> glob_estimated_size_answer,
> glob_almost_1,
> glob_clock_sec,
> glob_clock_start_sec,
> glob_disp_incr,
> glob_diff_rc_fm,
> glob_diff_rc_fmm1,
> glob_diff_rc_fmm2,
> glob_diff_ord_fm,
> glob_diff_ord_fmm1,
> glob_diff_ord_fmm2,
> glob_six_term_ord_save,
> glob_guess_error_rc,
> glob_guess_error_ord,
> glob_least_given_sing,
> glob_least_ratio_sing,
> glob_least_3_sing,
> glob_least_6_sing,
> glob_last_good_h,
> glob_max_h,
> glob_min_h,
> glob_display_interval,
> glob_abserr,
> glob_relerr,
> glob_min_pole_est,
> glob_max_rel_trunc_err,
> glob_max_trunc_err,
> glob_max_hours,
> glob_optimal_clock_start_sec,
> glob_optimal_start,
> glob_upper_ratio_limit,
> glob_lower_ratio_limit,
> glob_max_sec,
> glob_orig_start_sec,
> glob_normmax,
> glob_max_minutes,
> glob_next_display,
> glob_est_digits,
> glob_subiter_method,
> glob_html_log,
> glob_min_good_digits,
> glob_good_digits,
> glob_min_apfp_est_good_digits,
> glob_apfp_est_good_digits,
> glob_max_opt_iter,
> glob_dump,
> glob_djd_debug,
> glob_display_flag,
> glob_djd_debug2,
> glob_h_reason,
> glob_sec_in_minute,
> glob_min_in_hour,
> glob_hours_in_day,
> glob_days_in_year,
> glob_sec_in_hour,
> glob_sec_in_day,
> glob_sec_in_year,
> glob_not_yet_finished,
> glob_initial_pass,
> glob_not_yet_start_msg,
> glob_reached_optimal_h,
> glob_optimal_done,
> glob_type_given_pole,
> glob_optimize,
> glob_look_poles,
> glob_dump_closed_form,
> glob_max_iter,
> glob_no_eqs,
> glob_unchanged_h_cnt,
> glob_warned,
> glob_warned2,
> glob_start,
> glob_iter,
> #Bottom Generate Globals Decl
> #BEGIN CONST
> array_const_1,
> array_const_0D0,
> array_const_1D0,
> #END CONST
> array_y1_init,
> array_y2_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_y1,
> array_x,
> array_y2,
> array_tmp0,
> array_tmp1,
> array_tmp2,
> array_tmp3,
> array_tmp4,
> array_tmp5,
> array_m1,
> array_y1_higher,
> array_y1_higher_work,
> array_y1_higher_work2,
> array_y1_set_initial,
> array_y2_higher,
> array_y2_higher_work,
> array_y2_higher_work2,
> array_y2_set_initial,
> array_given_rad_poles,
> array_given_ord_poles,
> array_rad_test_poles,
> array_ord_test_poles,
> array_fact_2,
> ATS_MAX_TERMS,
> glob_last;
> ATS_MAX_TERMS := 40;
> # before first input block
> #BEGIN FIRST INPUT BLOCK
> #BEGIN BLOCK 1
> #BEGIN FIRST INPUT BLOCK
> Digits:=32;
> max_terms:=40;
> #END BLOCK 1
> #END FIRST INPUT BLOCK
> #START OF INITS AFTER INPUT BLOCK
> glob_html_log := true;
> #END OF INITS AFTER INPUT BLOCK
> # before generate arrays
> array_y1_init:= Array(0..(40),[]);
> array_y2_init:= Array(0..(40),[]);
> array_norms:= Array(0..(40),[]);
> array_fact_1:= Array(0..(40),[]);
> array_1st_rel_error:= Array(0..(3),[]);
> array_last_rel_error:= Array(0..(3),[]);
> array_est_rel_error:= Array(0..(3),[]);
> array_max_est_error:= Array(0..(3),[]);
> array_type_pole:= Array(0..(3),[]);
> array_type_real_pole:= Array(0..(3),[]);
> array_type_complex_pole:= Array(0..(3),[]);
> array_est_digits:= Array(0..(3),[]);
> array_y1:= Array(0..(40),[]);
> array_x:= Array(0..(40),[]);
> array_y2:= Array(0..(40),[]);
> array_tmp0:= Array(0..(40),[]);
> array_tmp1:= Array(0..(40),[]);
> array_tmp2:= Array(0..(40),[]);
> array_tmp3:= Array(0..(40),[]);
> array_tmp4:= Array(0..(40),[]);
> array_tmp5:= Array(0..(40),[]);
> array_m1:= Array(0..(40),[]);
> array_y1_higher := Array(0..(2) ,(0..40+ 1),[]);
> array_y1_higher_work := Array(0..(2) ,(0..40+ 1),[]);
> array_y1_higher_work2 := Array(0..(2) ,(0..40+ 1),[]);
> array_y1_set_initial := Array(0..(3) ,(0..40+ 1),[]);
> array_y2_higher := Array(0..(2) ,(0..40+ 1),[]);
> array_y2_higher_work := Array(0..(2) ,(0..40+ 1),[]);
> array_y2_higher_work2 := Array(0..(2) ,(0..40+ 1),[]);
> array_y2_set_initial := Array(0..(3) ,(0..40+ 1),[]);
> array_given_rad_poles := Array(0..(3) ,(0..3+ 1),[]);
> array_given_ord_poles := Array(0..(3) ,(0..3+ 1),[]);
> array_rad_test_poles := Array(0..(3) ,(0..4+ 1),[]);
> array_ord_test_poles := Array(0..(3) ,(0..4+ 1),[]);
> array_fact_2 := Array(0..(40) ,(0..40+ 1),[]);
> # before generate constants
> # before generate globals definition
> #Top Generate Globals Definition
> #Bottom Generate Globals Deninition
> # before generate const definition
> # before arrays initialized
> term := 1;
> while (term <= 40) do # do number 1
> array_y1_init[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 40) do # do number 1
> array_y2_init[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 40) do # do number 1
> array_norms[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 40) do # do number 1
> array_fact_1[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 3) do # do number 1
> array_1st_rel_error[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 3) do # do number 1
> array_last_rel_error[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 3) do # do number 1
> array_est_rel_error[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 3) do # do number 1
> array_max_est_error[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 3) do # do number 1
> array_type_pole[term] := 0;
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 3) do # do number 1
> array_type_real_pole[term] := 0;
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 3) do # do number 1
> array_type_complex_pole[term] := 0;
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 3) do # do number 1
> array_est_digits[term] := 0;
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 40) do # do number 1
> array_y1[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 40) do # do number 1
> array_x[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 40) do # do number 1
> array_y2[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 40) do # do number 1
> array_tmp0[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 40) do # do number 1
> array_tmp1[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 40) do # do number 1
> array_tmp2[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 40) do # do number 1
> array_tmp3[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 40) do # do number 1
> array_tmp4[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 40) do # do number 1
> array_tmp5[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> term := 1;
> while (term <= 40) do # do number 1
> array_m1[term] := c(0.0);
> term := term + 1;
> od;# end do number 1;
> ord := 1;
> while (ord <=2) do # do number 1
> term := 1;
> while (term <= 40) do # do number 2
> array_y1_higher[ord,term] := c(0.0);
> term := term + 1;
> od;# end do number 2;
> ord := ord + 1;
> od;# end do number 1;
> ord := 1;
> while (ord <=2) do # do number 1
> term := 1;
> while (term <= 40) do # do number 2
> array_y1_higher_work[ord,term] := c(0.0);
> term := term + 1;
> od;# end do number 2;
> ord := ord + 1;
> od;# end do number 1;
> ord := 1;
> while (ord <=2) do # do number 1
> term := 1;
> while (term <= 40) do # do number 2
> array_y1_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 <=3) do # do number 1
> term := 1;
> while (term <= 40) do # do number 2
> array_y1_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 <= 40) do # do number 2
> array_y2_higher[ord,term] := c(0.0);
> term := term + 1;
> od;# end do number 2;
> ord := ord + 1;
> od;# end do number 1;
> ord := 1;
> while (ord <=2) do # do number 1
> term := 1;
> while (term <= 40) do # do number 2
> array_y2_higher_work[ord,term] := c(0.0);
> term := term + 1;
> od;# end do number 2;
> ord := ord + 1;
> od;# end do number 1;
> ord := 1;
> while (ord <=2) do # do number 1
> term := 1;
> while (term <= 40) do # do number 2
> array_y2_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 <=3) do # do number 1
> term := 1;
> while (term <= 40) do # do number 2
> array_y2_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 <=3) 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 <=3) 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 <=3) 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 <=3) do # do number 1
> term := 1;
> while (term <= 4) do # do number 2
> array_ord_test_poles[ord,term] := c(0.0);
> term := term + 1;
> od;# end do number 2;
> ord := ord + 1;
> od;# end do number 1;
> ord := 1;
> while (ord <=40) do # do number 1
> term := 1;
> while (term <= 40) do # do number 2
> array_fact_2[ord,term] := c(0.0);
> term := term + 1;
> od;# end do number 2;
> ord := ord + 1;
> od;# end do number 1;
> # before symbols initialized
> #BEGIN SYMBOLS INITIALIZATED
> zero_ats_ar(array_y1);
> zero_ats_ar(array_x);
> zero_ats_ar(array_y2);
> zero_ats_ar(array_tmp0);
> zero_ats_ar(array_tmp1);
> zero_ats_ar(array_tmp2);
> zero_ats_ar(array_tmp3);
> zero_ats_ar(array_tmp4);
> zero_ats_ar(array_tmp5);
> zero_ats_ar(array_m1);
> zero_ats_ar(array_const_1);
> array_const_1[1] := c(1);
> zero_ats_ar(array_const_0D0);
> array_const_0D0[1] := c(0.0);
> zero_ats_ar(array_const_1D0);
> array_const_1D0[1] := c(1.0);
> zero_ats_ar(array_m1);
> array_m1[1] := glob__m1;
> #END SYMBOLS INITIALIZATED
> # before generate factorials init
> #Initing Factorial Tables
> iiif := 0;
> while (iiif <= ATS_MAX_TERMS) do # do number 1
> jjjf := 0;
> while (jjjf <= ATS_MAX_TERMS) do # do number 2
> array_fact_1[iiif] := 0;
> array_fact_2[iiif,jjjf] := 0;
> jjjf := jjjf + 1;
> od;# end do number 2;
> iiif := iiif + 1;
> od;# end do number 1;
> #Done Initing Factorial Table
> ALWAYS := 1;
> INFO := 2;
> DEBUGL := 3;
> DEBUGMASSIVE := 4;
> glob_iolevel := 5;
> glob_yes_pole := 4;
> glob_no_pole := 3;
> glob_not_given := 0;
> glob_no_sing_tests := 4;
> glob_ratio_test := 1;
> glob_three_term_test := 2;
> glob_six_term_test := 3;
> glob_log_10 := log(c(10.0));
> MAX_UNCHANGED := 10;
> glob__small := c(0.1e-50);
> glob_small_float := c(0.1e-50);
> glob_smallish_float := c(0.1e-60);
> glob_large_float := c(1.0e100);
> glob_larger_float := c(1.1e100);
> glob__m2 := c(-2);
> glob__m1 := c(-1);
> glob__0 := c(0);
> glob__1 := c(1);
> glob__2 := c(2);
> glob__3 := c(3);
> glob__4 := c(4);
> glob__5 := c(5);
> glob__8 := c(8);
> glob__10 := c(10);
> glob__100 := c(100);
> glob__pi := c(0.0);
> glob__0_5 := c(0.5);
> glob__0_8 := c(0.8);
> glob__m0_8 := c(-0.8);
> glob__0_25 := c(0.25);
> glob__0_125 := c(0.125);
> glob_h := 0.1;
> glob_nxt := 1;
> glob_prec := c(1.0e-16);
> glob_check_sign := c(1.0);
> glob_desired_digits_correct := c(8.0);
> glob_max_estimated_step_error := c(0.0);
> glob_ratio_of_radius := c(0.1);
> glob_percent_done := c(0.0);
> glob_total_exp_sec := c(0.1);
> glob_optimal_expect_sec := c(0.1);
> glob_estimated_size_answer := c(100.0);
> glob_almost_1 := c(0.9990);
> glob_clock_sec := c(0.0);
> glob_clock_start_sec := c(0.0);
> glob_disp_incr := c(0.1);
> glob_diff_rc_fm := c(0.1);
> glob_diff_rc_fmm1 := c(0.1);
> glob_diff_rc_fmm2 := c(0.1);
> glob_diff_ord_fm := c(0.1);
> glob_diff_ord_fmm1 := c(0.1);
> glob_diff_ord_fmm2 := c(0.1);
> glob_six_term_ord_save := c(0.1);
> glob_guess_error_rc := c(0.1);
> glob_guess_error_ord := c(0.1);
> glob_least_given_sing := c(9.9e200);
> glob_least_ratio_sing := c(9.9e200);
> glob_least_3_sing := c(9.9e100);
> glob_least_6_sing := c(9.9e100);
> glob_last_good_h := c(0.1);
> glob_max_h := c(0.1);
> glob_min_h := c(0.000001);
> glob_display_interval := c(0.1);
> glob_abserr := c(0.1e-10);
> glob_relerr := c(0.1e-10);
> glob_min_pole_est := c(0.1e+10);
> glob_max_rel_trunc_err := c(0.1e-10);
> glob_max_trunc_err := c(0.1e-10);
> glob_max_hours := c(0.0);
> glob_optimal_clock_start_sec := c(0.0);
> glob_optimal_start := c(0.0);
> glob_upper_ratio_limit := c(1.0001);
> glob_lower_ratio_limit := c(0.9999);
> glob_max_sec := c(10000.0);
> glob_orig_start_sec := c(0.0);
> glob_normmax := c(0.0);
> glob_max_minutes := c(0.0);
> glob_next_display := c(0.0);
> glob_est_digits := 1;
> glob_subiter_method := 3;
> glob_html_log := true;
> glob_min_good_digits := 99999;
> glob_good_digits := 0;
> glob_min_apfp_est_good_digits := 99999;
> glob_apfp_est_good_digits := 0;
> glob_max_opt_iter := 10;
> glob_dump := false;
> glob_djd_debug := true;
> glob_display_flag := true;
> glob_djd_debug2 := true;
> glob_h_reason := 0;
> glob_sec_in_minute := 60 ;
> glob_min_in_hour := 60;
> glob_hours_in_day := 24;
> glob_days_in_year := 365;
> glob_sec_in_hour := 3600;
> glob_sec_in_day := 86400;
> glob_sec_in_year := 31536000;
> glob_not_yet_finished := true;
> glob_initial_pass := true;
> glob_not_yet_start_msg := true;
> glob_reached_optimal_h := false;
> glob_optimal_done := false;
> glob_type_given_pole := 0;
> glob_optimize := false;
> glob_look_poles := false;
> glob_dump_closed_form := false;
> glob_max_iter := 10000;
> glob_no_eqs := 0;
> glob_unchanged_h_cnt := 0;
> glob_warned := false;
> glob_warned2 := false;
> glob_start := 0;
> glob_iter := 0;
> # before generate set diff initial
> array_y1_set_initial[1,1] := true;
> array_y1_set_initial[1,2] := false;
> array_y1_set_initial[1,3] := false;
> array_y1_set_initial[1,4] := false;
> array_y1_set_initial[1,5] := false;
> array_y1_set_initial[1,6] := false;
> array_y1_set_initial[1,7] := false;
> array_y1_set_initial[1,8] := false;
> array_y1_set_initial[1,9] := false;
> array_y1_set_initial[1,10] := false;
> array_y1_set_initial[1,11] := false;
> array_y1_set_initial[1,12] := false;
> array_y1_set_initial[1,13] := false;
> array_y1_set_initial[1,14] := false;
> array_y1_set_initial[1,15] := false;
> array_y1_set_initial[1,16] := false;
> array_y1_set_initial[1,17] := false;
> array_y1_set_initial[1,18] := false;
> array_y1_set_initial[1,19] := false;
> array_y1_set_initial[1,20] := false;
> array_y1_set_initial[1,21] := false;
> array_y1_set_initial[1,22] := false;
> array_y1_set_initial[1,23] := false;
> array_y1_set_initial[1,24] := false;
> array_y1_set_initial[1,25] := false;
> array_y1_set_initial[1,26] := false;
> array_y1_set_initial[1,27] := false;
> array_y1_set_initial[1,28] := false;
> array_y1_set_initial[1,29] := false;
> array_y1_set_initial[1,30] := false;
> array_y1_set_initial[1,31] := false;
> array_y1_set_initial[1,32] := false;
> array_y1_set_initial[1,33] := false;
> array_y1_set_initial[1,34] := false;
> array_y1_set_initial[1,35] := false;
> array_y1_set_initial[1,36] := false;
> array_y1_set_initial[1,37] := false;
> array_y1_set_initial[1,38] := false;
> array_y1_set_initial[1,39] := false;
> array_y1_set_initial[1,40] := false;
> array_y2_set_initial[2,1] := true;
> array_y2_set_initial[2,2] := false;
> array_y2_set_initial[2,3] := false;
> array_y2_set_initial[2,4] := false;
> array_y2_set_initial[2,5] := false;
> array_y2_set_initial[2,6] := false;
> array_y2_set_initial[2,7] := false;
> array_y2_set_initial[2,8] := false;
> array_y2_set_initial[2,9] := false;
> array_y2_set_initial[2,10] := false;
> array_y2_set_initial[2,11] := false;
> array_y2_set_initial[2,12] := false;
> array_y2_set_initial[2,13] := false;
> array_y2_set_initial[2,14] := false;
> array_y2_set_initial[2,15] := false;
> array_y2_set_initial[2,16] := false;
> array_y2_set_initial[2,17] := false;
> array_y2_set_initial[2,18] := false;
> array_y2_set_initial[2,19] := false;
> array_y2_set_initial[2,20] := false;
> array_y2_set_initial[2,21] := false;
> array_y2_set_initial[2,22] := false;
> array_y2_set_initial[2,23] := false;
> array_y2_set_initial[2,24] := false;
> array_y2_set_initial[2,25] := false;
> array_y2_set_initial[2,26] := false;
> array_y2_set_initial[2,27] := false;
> array_y2_set_initial[2,28] := false;
> array_y2_set_initial[2,29] := false;
> array_y2_set_initial[2,30] := false;
> array_y2_set_initial[2,31] := false;
> array_y2_set_initial[2,32] := false;
> array_y2_set_initial[2,33] := false;
> array_y2_set_initial[2,34] := false;
> array_y2_set_initial[2,35] := false;
> array_y2_set_initial[2,36] := false;
> array_y2_set_initial[2,37] := false;
> array_y2_set_initial[2,38] := false;
> array_y2_set_initial[2,39] := false;
> array_y2_set_initial[2,40] := false;
> # before generate init omniout const
> ALWAYS := 1;
> INFO := 2;
> DEBUGL := 3;
> DEBUGMASSIVE := 4;
> ATS_MAX_TERMS := 40;
> glob_iolevel := INFO;
> # set default block
> #Write Set Defaults
> glob_orig_start_sec := elapsed_time_seconds();
> glob_display_flag := true;
> glob_no_eqs := 2;
> glob_iter := -1;
> opt_iter := -1;
> glob_max_iter := 10000;
> glob_max_hours := (0.0);
> glob_max_minutes := (15.0);
> omniout_str(ALWAYS,"##############ECHO OF PROBLEM#################");
> omniout_str(ALWAYS,"##############temp/mtest1postcpx.cpx#################");
> omniout_str(ALWAYS,"diff ( y1 , x , 1 ) = neg ( y2 ) + 1.0 ; ");
> omniout_str(ALWAYS,"diff ( y2 , x , 1 ) = y1 - 1.0 ; ");
> omniout_str(ALWAYS,"!");
> omniout_str(ALWAYS,"#BEGIN FIRST INPUT BLOCK");
> omniout_str(ALWAYS,"Digits:=32;");
> omniout_str(ALWAYS,"max_terms:=40;");
> omniout_str(ALWAYS,"!");
> omniout_str(ALWAYS,"#END FIRST INPUT BLOCK");
> omniout_str(ALWAYS,"#BEGIN SECOND INPUT BLOCK");
> omniout_str(ALWAYS,"x_start := 0.1 + 0.1 * I;");
> omniout_str(ALWAYS,"x_end := 99.0 + 99.0 * I;");
> omniout_str(ALWAYS,"array_y1_init[0 + 1] := exact_soln_y1(x_start);");
> omniout_str(ALWAYS,"array_y2_init[0 + 1] := exact_soln_y2(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:=10000;");
> omniout_str(ALWAYS,"glob_upper_ratio_limit:=c(1.000001);");
> omniout_str(ALWAYS,"glob_lower_ratio_limit:=c(0.999999);");
> omniout_str(ALWAYS,"glob_look_poles:=true;");
> omniout_str(ALWAYS,"glob_h:=c(0.001);");
> omniout_str(ALWAYS,"glob_display_interval:=c(0.01);");
> omniout_str(ALWAYS,"#END OVERRIDE BLOCK");
> omniout_str(ALWAYS,"!");
> omniout_str(ALWAYS,"#BEGIN USER DEF BLOCK");
> omniout_str(ALWAYS,"exact_soln_y1 := proc(x)");
> omniout_str(ALWAYS,"return(c(1.0) + cos(c(x)));");
> omniout_str(ALWAYS,"end;");
> omniout_str(ALWAYS,"exact_soln_y2 := proc(x)");
> omniout_str(ALWAYS,"return(c(1.0) + sin(c(x)));");
> omniout_str(ALWAYS,"end;");
> omniout_str(ALWAYS,"");
> omniout_str(ALWAYS,"");
> omniout_str(ALWAYS,"");
> omniout_str(ALWAYS,"");
> omniout_str(ALWAYS,"next_delta := proc()");
> omniout_str(ALWAYS,"global glob_nxt, x_delta;");
> omniout_str(ALWAYS,"");
> omniout_str(ALWAYS,"x_delta := [ 0.001 + 0.00004 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.004 * I,");
> omniout_str(ALWAYS,"0.003 + 0.006 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.005 * I,");
> omniout_str(ALWAYS,"0.0001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.001 + 0.001 * I,");
> omniout_str(ALWAYS,"0.001 + 0.003 * I,");
> omniout_str(ALWAYS,"0.000 + 0.000 * I ];");
> omniout_str(ALWAYS,"");
> omniout_str(ALWAYS,"glob_nxt := glob_nxt + 1;");
> omniout_str(ALWAYS,"it := x_delta[glob_nxt];");
> omniout_str(ALWAYS,"return it;");
> omniout_str(ALWAYS,"end;");
> omniout_str(ALWAYS,"#END USER DEF BLOCK");
> omniout_str(ALWAYS,"#######END OF ECHO OF PROBLEM#################");
> glob_unchanged_h_cnt := 0;
> glob_warned := false;
> glob_warned2 := false;
> glob_small_float := glob__0;
> glob_smallish_float := glob__0;
> glob_large_float := c(1.0e100);
> glob_larger_float := c( 1.1e100);
> glob_almost_1 := c( 0.99);
> # before second block
> #TOP SECOND INPUT BLOCK
> #BEGIN SECOND INPUT BLOCK
> #BEGIN BLOCK 2
> #END FIRST INPUT BLOCK
> #BEGIN SECOND INPUT BLOCK
> x_start := 0.1 + 0.1 * I;
> x_end := 99.0 + 99.0 * I;
> array_y1_init[0 + 1] := exact_soln_y1(x_start);
> array_y2_init[0 + 1] := exact_soln_y2(x_start);
> glob_look_poles := true;
> glob_type_given_pole := 3;
> #END SECOND INPUT BLOCK
> #BEGIN OVERRIDE BLOCK
> glob_desired_digits_correct:=8;
> glob_max_minutes:=(3.0);
> glob_subiter_method:=3;
> glob_max_iter:=10000;
> glob_upper_ratio_limit:=c(1.000001);
> glob_lower_ratio_limit:=c(0.999999);
> glob_look_poles:=true;
> glob_h:=c(0.001);
> glob_display_interval:=c(0.01);
> #END OVERRIDE BLOCK
> #END BLOCK 2
> #END SECOND INPUT BLOCK
> #BEGIN INITS AFTER SECOND INPUT BLOCK
> glob_last_good_h := glob_h;
> glob_max_sec := (60.0) * (glob_max_minutes) + (3600.0) * (glob_max_hours);
> # after second input block
> found_h := true;
> glob_h := next_delta();
> #START ADJUST ALL SERIES
> if (float_abs(glob_min_pole_est) * glob_ratio_of_radius < float_abs(glob_h)) then # if number 17
> 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 18
> omniout_str(ALWAYS,"SETTING H FOR MIN H");
> h_new := glob_min_h;
> glob_h_reason := 5;
> fi;# end if 18;
> term := 1;
> ratio := c(1.0);
> while (term <= ATS_MAX_TERMS) do # do number 1
> array_y1[term] := array_y1[term]* ratio;
> array_y1_higher[1,term] := array_y1_higher[1,term]* ratio;
> array_x[term] := array_x[term]* ratio;
> array_y2[term] := array_y2[term]* ratio;
> array_y2_higher[1,term] := array_y2_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 17;
> #BOTTOM ADJUST ALL SERIES
> #END OPTIMIZE CODE
> if (glob_html_log) then # if number 17
> html_log_file := fopen("entry.html",WRITE,TEXT);
> fi;# end if 17;
> #BEGIN SOLUTION CODE
> found_h := true;
> if (found_h) then # if number 17
> omniout_str(ALWAYS,"START of Soultion");
> #Start Series -- INITIALIZE FOR SOLUTION
> array_x[1] := c(x_start);
> array_x[2] := c(glob_h);
> glob_next_display := c(x_start);
> glob_min_pole_est := glob_larger_float;
> glob_least_given_sing := glob_larger_float;
> glob_least_ratio_sing := glob_larger_float;
> glob_least_3_sing := glob_larger_float;
> glob_least_6_sing := glob_larger_float;
> order_diff := 1;
> #Start Series array_y1
> term_no := 1;
> while (term_no <= order_diff) do # do number 1
> array_y1[term_no] := array_y1_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 18
> array_y1_higher[r_order,term_no] := array_y1_init[it]* expt(glob_h , c(term_no - 1)) / (c(factorial_1(term_no - 1)));
> fi;# end if 18;
> term_no := term_no + 1;
> od;# end do number 2;
> r_order := r_order + 1;
> od;# end do number 1
> ;
> order_diff := 1;
> #Start Series array_y2
> term_no := 1;
> while (term_no <= order_diff) do # do number 1
> array_y2[term_no] := array_y2_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 18
> array_y2_higher[r_order,term_no] := array_y2_init[it]* expt(glob_h , c(term_no - 1)) / (c(factorial_1(term_no - 1)));
> fi;# end if 18;
> term_no := term_no + 1;
> od;# end do number 2;
> r_order := r_order + 1;
> od;# end do number 1
> ;
> current_iter := 1;
> glob_clock_start_sec := elapsed_time_seconds();
> glob_clock_sec := elapsed_time_seconds();
> glob_iter := 0;
> omniout_str(DEBUGL," ");
> glob_reached_optimal_h := true;
> found_h := true;
> glob_h := next_delta();
> #START ADJUST ALL SERIES
> if (float_abs(glob_min_pole_est) * glob_ratio_of_radius < float_abs(glob_h)) then # if number 18
> 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 19
> omniout_str(ALWAYS,"SETTING H FOR MIN H");
> h_new := glob_min_h;
> glob_h_reason := 5;
> fi;# end if 19;
> term := 1;
> ratio := c(1.0);
> while (term <= ATS_MAX_TERMS) do # do number 1
> array_y1[term] := array_y1[term]* ratio;
> array_y1_higher[1,term] := array_y1_higher[1,term]* ratio;
> array_x[term] := array_x[term]* ratio;
> array_y2[term] := array_y2[term]* ratio;
> array_y2_higher[1,term] := array_y2_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 18;
> #BOTTOM ADJUST ALL SERIES
> #END OPTIMIZE CODE
> glob_optimal_clock_start_sec := elapsed_time_seconds();
> while ((glob_iter < glob_max_iter) and ((glob_iter < 10) or ( not ((Re(glob_h) = 0.0) and (Im(glob_h) = 0.0))))) do # do number 1
> #left paren 0001C
> if (true) then # if number 18
> omniout_str(INFO," ");
> fi;# end if 18;
> found_h := true;
> glob_h := next_delta();
> #START ADJUST ALL SERIES
> if (float_abs(glob_min_pole_est) * glob_ratio_of_radius < float_abs(glob_h)) then # if number 18
> 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 19
> omniout_str(ALWAYS,"SETTING H FOR MIN H");
> h_new := glob_min_h;
> glob_h_reason := 5;
> fi;# end if 19;
> term := 1;
> ratio := c(1.0);
> while (term <= ATS_MAX_TERMS) do # do number 2
> array_y1[term] := array_y1[term]* ratio;
> array_y1_higher[1,term] := array_y1_higher[1,term]* ratio;
> array_x[term] := array_x[term]* ratio;
> array_y2[term] := array_y2[term]* ratio;
> array_y2_higher[1,term] := array_y2_higher[1,term]* ratio;
> array_x[term] := array_x[term]* ratio;
> ratio := ratio * h_new / float_abs(glob_h);
> term := term + 1;
> od;# end do number 2;
> glob_h := h_new;
> fi;# end if 18;
> #BOTTOM ADJUST ALL SERIES
> #END OPTIMIZE CODE
> glob_iter := glob_iter + 1;
> glob_clock_sec := elapsed_time_seconds();
> if (glob_subiter_method = 1 ) then # if number 18
> atomall();
> elif
> (glob_subiter_method = 2 ) then # if number 19
> subiter := 1;
> while (subiter <= 2) do # do number 2
> atomall();
> subiter := subiter + 1;
> od;# end do number 2;
> else
> subiter := 1;
> while (subiter <= 2 + ATS_MAX_TERMS) do # do number 2
> atomall();
> subiter := subiter + 1;
> od;# end do number 2;
> fi;# end if 19;
> if ( not ((Re(glob_h) = 0.0) and (Im(glob_h) = 0.0))) then # if number 19
> display_alot(current_iter);
> fi;# end if 19;
> if ((glob_look_poles) and ( not ((Re(glob_h) = 0.0) and (Im(glob_h) = 0.0)))) then # if number 19
> check_for_pole();
> fi;# end if 19;
> if (true) then # if number 19
> glob_next_display := glob_next_display + glob_display_interval;
> fi;# end if 19;
> array_x[1] := array_x[1] + glob_h;
> array_x[2] := glob_h;
> #Jump Series array_y1;
> order_diff := 2;
> #START PART 1 SUM AND ADJUST
> #START SUM AND ADJUST EQ =1
> #sum_and_adjust array_y1
> #BEFORE ADJUST SUBSERIES EQ =1
> ord := 2;
> calc_term := 1;
> #adjust_subseriesarray_y1
> iii := ATS_MAX_TERMS;
> while (iii >= calc_term) do # do number 2
> array_y1_higher_work[2,iii] := array_y1_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_y1
> iii := ATS_MAX_TERMS;
> while (iii >= calc_term) do # do number 2
> temp_sum := temp_sum + array_y1_higher_work[ord,iii];
> iii := iii - 1;
> od;# end do number 2;
> array_y1_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_y1
> iii := ATS_MAX_TERMS;
> while (iii >= calc_term) do # do number 2
> array_y1_higher_work[1,iii] := array_y1_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_y1
> iii := ATS_MAX_TERMS;
> while (iii >= calc_term) do # do number 2
> temp_sum := temp_sum + array_y1_higher_work[ord,iii];
> iii := iii - 1;
> od;# end do number 2;
> array_y1_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_y1
> iii := ATS_MAX_TERMS;
> while (iii >= calc_term) do # do number 2
> array_y1_higher_work[1,iii] := array_y1_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_y1
> iii := ATS_MAX_TERMS;
> while (iii >= calc_term) do # do number 2
> temp_sum := temp_sum + array_y1_higher_work[ord,iii];
> iii := iii - 1;
> od;# end do number 2;
> array_y1_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_y1[term_no] := array_y1_higher_work2[1,term_no];
> ord := 1;
> while (ord <= order_diff) do # do number 3
> array_y1_higher[ord,term_no] := array_y1_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
> #Jump Series array_y2;
> order_diff := 2;
> #START PART 1 SUM AND ADJUST
> #START SUM AND ADJUST EQ =2
> #sum_and_adjust array_y2
> #BEFORE ADJUST SUBSERIES EQ =2
> ord := 2;
> calc_term := 1;
> #adjust_subseriesarray_y2
> iii := ATS_MAX_TERMS;
> while (iii >= calc_term) do # do number 2
> array_y2_higher_work[2,iii] := array_y2_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 =2
> #BEFORE SUM SUBSERIES EQ =2
> temp_sum := glob__0;
> ord := 2;
> calc_term := 1;
> #sum_subseriesarray_y2
> iii := ATS_MAX_TERMS;
> while (iii >= calc_term) do # do number 2
> temp_sum := temp_sum + array_y2_higher_work[ord,iii];
> iii := iii - 1;
> od;# end do number 2;
> array_y2_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , c(calc_term - 1)) / c(factorial_1(calc_term - 1));
> #AFTER SUM SUBSERIES EQ =2
> #BEFORE ADJUST SUBSERIES EQ =2
> ord := 1;
> calc_term := 2;
> #adjust_subseriesarray_y2
> iii := ATS_MAX_TERMS;
> while (iii >= calc_term) do # do number 2
> array_y2_higher_work[1,iii] := array_y2_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 =2
> #BEFORE SUM SUBSERIES EQ =2
> temp_sum := glob__0;
> ord := 1;
> calc_term := 2;
> #sum_subseriesarray_y2
> iii := ATS_MAX_TERMS;
> while (iii >= calc_term) do # do number 2
> temp_sum := temp_sum + array_y2_higher_work[ord,iii];
> iii := iii - 1;
> od;# end do number 2;
> array_y2_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , c(calc_term - 1)) / c(factorial_1(calc_term - 1));
> #AFTER SUM SUBSERIES EQ =2
> #BEFORE ADJUST SUBSERIES EQ =2
> ord := 1;
> calc_term := 1;
> #adjust_subseriesarray_y2
> iii := ATS_MAX_TERMS;
> while (iii >= calc_term) do # do number 2
> array_y2_higher_work[1,iii] := array_y2_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 =2
> #BEFORE SUM SUBSERIES EQ =2
> temp_sum := glob__0;
> ord := 1;
> calc_term := 1;
> #sum_subseriesarray_y2
> iii := ATS_MAX_TERMS;
> while (iii >= calc_term) do # do number 2
> temp_sum := temp_sum + array_y2_higher_work[ord,iii];
> iii := iii - 1;
> od;# end do number 2;
> array_y2_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , c(calc_term - 1)) / c(factorial_1(calc_term - 1));
> #AFTER SUM SUBSERIES EQ =2
> #END SUM AND ADJUST EQ =2
> #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_y2[term_no] := array_y2_higher_work2[1,term_no];
> ord := 1;
> while (ord <= order_diff) do # do number 3
> array_y2_higher[ord,term_no] := array_y2_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 19
> omniout_str(ALWAYS,"Maximum Iterations Reached before Solution Completed!");
> fi;# end if 19;
> if (elapsed_time_seconds() - (glob_orig_start_sec) >= (glob_max_sec )) then # if number 19
> omniout_str(ALWAYS,"Maximum Time Reached before Solution Completed!");
> fi;# end if 19;
> glob_clock_sec := elapsed_time_seconds();
> omniout_str(INFO,"diff ( y1 , x , 1 ) = neg ( y2 ) + 1.0 ; ");
> omniout_str(INFO,"diff ( y2 , x , 1 ) = y1 - 1.0 ; ");
> omniout_int(INFO,"Iterations ",32,glob_iter,4," ")
> ;
> prog_report(x_start,x_end);
> if (glob_html_log) then # if number 19
> logstart(html_log_file);
> logitem_str(html_log_file,"2017-11-26T15:06:43-06:00")
> ;
> logitem_str(html_log_file,"Maple")
> ;
> logitem_str(html_log_file,"mtest1")
> ;
> logitem_str(html_log_file,"diff ( y1 , x , 1 ) = neg ( y2 ) + 1.0 ; ")
> ;
> logitem_complex(html_log_file,x_start)
> ;
> logitem_complex(html_log_file,x_end)
> ;
> logitem_complex(html_log_file,array_x[1])
> ;
> logitem_complex(html_log_file,glob_h)
> ;
> logitem_h_reason(html_log_file)
> ;
> logitem_integer(html_log_file,Digits)
> ;
> ;
> glob_desired_digits_correct := 0.0;
> logitem_float(html_log_file,glob_desired_digits_correct)
> ;
> if (array_est_digits[1] <> -16) then # if number 20
> logitem_integer(html_log_file,array_est_digits[1])
> ;
> else
> logitem_str(html_log_file,"Unknown")
> ;
> fi;# end if 20;
> if (glob_min_good_digits <> -16) then # if number 20
> logitem_integer(html_log_file,glob_min_good_digits)
> ;
> else
> logitem_str(html_log_file,"Unknown")
> ;
> fi;# end if 20;
> if (glob_good_digits <> -16) then # if number 20
> logitem_integer(html_log_file,glob_good_digits)
> ;
> else
> logitem_str(html_log_file,"Unknown")
> ;
> fi;# end if 20;
> 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 20
> logitem_str(html_log_file,"Not Given")
> ;
> logitem_str(html_log_file,"NA")
> ;
> elif
> (glob_type_given_pole = 4) then # if number 21
> logitem_str(html_log_file,"No Solution")
> ;
> logitem_str(html_log_file,"NA")
> ;
> elif
> (glob_type_given_pole = 5) then # if number 22
> logitem_str(html_log_file,"Some Pole")
> ;
> logitem_str(html_log_file,"????")
> ;
> elif
> (glob_type_given_pole = 3) then # if number 23
> logitem_str(html_log_file,"No Pole")
> ;
> logitem_str(html_log_file,"NA")
> ;
> elif
> (glob_type_given_pole = 1) then # if number 24
> 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 25
> logitem_str(html_log_file,"Complex Sing")
> ;
> logitem_float(html_log_file,glob_least_given_sing)
> ;
> fi;# end if 25;
> if (glob_least_ratio_sing < glob_large_float) then # if number 25
> glob_least_ratio_sing := 0;
> logitem_float(html_log_file,glob_least_ratio_sing)
> ;
> else
> logitem_str(html_log_file,"NONE")
> ;
> fi;# end if 25;
> if (glob_least_3_sing < glob_large_float) then # if number 25
> logitem_float(html_log_file,glob_least_3_sing)
> ;
> else
> logitem_str(html_log_file,"NONE")
> ;
> fi;# end if 25;
> if (glob_least_6_sing < glob_large_float) then # if number 25
> glob_least_6_sing := 0.0;
> logitem_float(html_log_file,glob_least_6_sing)
> ;
> else
> logitem_str(html_log_file,"NONE")
> ;
> fi;# end if 25;
> 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 25
> logitem_time(html_log_file,(glob_total_exp_sec))
> ;
> 0;
> else
> logitem_str(html_log_file,"Done")
> ;
> 0;
> fi;# end if 25;
> log_revs(html_log_file," 309 | ")
> ;
> logitem_str(html_log_file,"mtest1 diffeq.mxt")
> ;
> logitem_str(html_log_file,"mtest1 maple results")
> ;
> logitem_str(html_log_file,"OK")
> ;
> logend(html_log_file)
> ;
> logditto(html_log_file)
> ;
> logditto(html_log_file)
> ;
> logditto(html_log_file)
> ;
> logitem_str(html_log_file,"diff ( y2 , x , 1 ) = y1 - 1.0 ; ")
> ;
> logditto(html_log_file)
> ;
> logditto(html_log_file)
> ;
> logditto(html_log_file)
> ;
> logditto(html_log_file)
> ;
> logditto(html_log_file)
> ;
> logditto(html_log_file)
> ;
> ;
> glob_desired_digits_correct := 0.0;
> logditto(html_log_file)
> ;
> if (array_est_digits[2] <> -16) then # if number 25
> logitem_integer(html_log_file,array_est_digits[2])
> ;
> else
> logitem_str(html_log_file,"Unknown")
> ;
> fi;# end if 25;
> if (glob_min_good_digits <> -16) then # if number 25
> logitem_integer(html_log_file,glob_min_good_digits)
> ;
> else
> logitem_str(html_log_file,"Unknown")
> ;
> fi;# end if 25;
> if (glob_good_digits <> -16) then # if number 25
> logitem_integer(html_log_file,glob_good_digits)
> ;
> else
> logitem_str(html_log_file,"Unknown")
> ;
> fi;# end if 25;
> logitem_str(html_log_file,"NA")
> ;
> logitem_str(html_log_file,"NA")
> ;
> logditto(html_log_file)
> ;
> if (glob_type_given_pole = 0) then # if number 25
> logditto(html_log_file)
> ;
> logditto(html_log_file)
> ;
> elif
> (glob_type_given_pole = 4) then # if number 26
> logditto(html_log_file)
> ;
> logditto(html_log_file)
> ;
> elif
> (glob_type_given_pole = 5) then # if number 27
> logditto(html_log_file)
> ;
> logditto(html_log_file)
> ;
> elif
> (glob_type_given_pole = 3) then # if number 28
> logditto(html_log_file)
> ;
> logditto(html_log_file)
> ;
> elif
> (glob_type_given_pole = 1) then # if number 29
> logditto(html_log_file)
> ;
> logditto(html_log_file)
> ;
> elif
> (glob_type_given_pole = 2) then # if number 30
> logditto(html_log_file)
> ;
> logditto(html_log_file)
> ;
> fi;# end if 30;
> if (glob_least_ratio_sing < glob_large_float) then # if number 30
> glob_least_ratio_sing := 0;
> logditto(html_log_file)
> ;
> else
> logditto(html_log_file)
> ;
> fi;# end if 30;
> if (glob_least_3_sing < glob_large_float) then # if number 30
> logditto(html_log_file)
> ;
> else
> logditto(html_log_file)
> ;
> fi;# end if 30;
> if (glob_least_6_sing < glob_large_float) then # if number 30
> glob_least_6_sing := 0.0;
> logditto(html_log_file)
> ;
> else
> logditto(html_log_file)
> ;
> fi;# end if 30;
> logditto(html_log_file)
> ;
> logditto(html_log_file)
> ;
> if (c(glob_percent_done) < glob__100) then # if number 30
> logditto(html_log_file)
> ;
> 0;
> else
> logditto(html_log_file)
> ;
> 0;
> fi;# end if 30;
> logditto(html_log_file);
> ;
> logditto(html_log_file)
> ;
> logditto(html_log_file)
> ;
> logditto(html_log_file)
> ;
> logend(html_log_file)
> ;
> ;
> fi;# end if 29;
> if (glob_html_log) then # if number 29
> fclose(html_log_file);
> fi;# end if 29
> ;
> ;;
> end;
> # End Function number 12
> #END OUTFILEMAIN
> end;
Warning, `h_new` is implicitly declared local to procedure `main`
Warning, `ratio` is implicitly declared local to procedure `main`
main := proc()
local d1, d2, d3, d4, est_err_2, niii, done_once, max_terms, display_max,
term, ord, order_diff, term_no, html_log_file, iiif, jjjf, rows, r_order,
sub_iter, calc_term, iii, temp_sum, current_iter, x_start, x_end, it,
last_min_pole_est, opt_iter, tmp, subiter, est_needed_step_err,
estimated_step_error, min_value, est_answer, found_h, repeat_it, h_new,
ratio;
global ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, glob_iolevel, glob_yes_pole,
glob_no_pole, glob_not_given, glob_no_sing_tests, glob_ratio_test,
glob_three_term_test, glob_six_term_test, glob_log_10, MAX_UNCHANGED,
glob__small, glob_small_float, glob_smallish_float, glob_large_float,
glob_larger_float, glob__m2, glob__m1, glob__0, glob__1, glob__2, glob__3,
glob__4, glob__5, glob__8, glob__10, glob__100, glob__pi, glob__0_5,
glob__0_8, glob__m0_8, glob__0_25, glob__0_125, glob_h, glob_nxt, glob_prec,
glob_check_sign, glob_desired_digits_correct, glob_max_estimated_step_error,
glob_ratio_of_radius, glob_percent_done, glob_total_exp_sec,
glob_optimal_expect_sec, glob_estimated_size_answer, glob_almost_1,
glob_clock_sec, glob_clock_start_sec, glob_disp_incr, glob_diff_rc_fm,
glob_diff_rc_fmm1, glob_diff_rc_fmm2, glob_diff_ord_fm, glob_diff_ord_fmm1,
glob_diff_ord_fmm2, glob_six_term_ord_save, glob_guess_error_rc,
glob_guess_error_ord, glob_least_given_sing, glob_least_ratio_sing,
glob_least_3_sing, glob_least_6_sing, glob_last_good_h, glob_max_h,
glob_min_h, glob_display_interval, glob_abserr, glob_relerr,
glob_min_pole_est, glob_max_rel_trunc_err, glob_max_trunc_err,
glob_max_hours, glob_optimal_clock_start_sec, glob_optimal_start,
glob_upper_ratio_limit, glob_lower_ratio_limit, glob_max_sec,
glob_orig_start_sec, glob_normmax, glob_max_minutes, glob_next_display,
glob_est_digits, glob_subiter_method, glob_html_log, glob_min_good_digits,
glob_good_digits, glob_min_apfp_est_good_digits, glob_apfp_est_good_digits,
glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag,
glob_djd_debug2, glob_h_reason, glob_sec_in_minute, glob_min_in_hour,
glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day,
glob_sec_in_year, glob_not_yet_finished, glob_initial_pass,
glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done,
glob_type_given_pole, glob_optimize, glob_look_poles, glob_dump_closed_form,
glob_max_iter, glob_no_eqs, glob_unchanged_h_cnt, glob_warned, glob_warned2,
glob_start, glob_iter, array_const_1, array_const_0D0, array_const_1D0,
array_y1_init, array_y2_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_y1, array_x, array_y2,
array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5,
array_m1, array_y1_higher, array_y1_higher_work, array_y1_higher_work2,
array_y1_set_initial, array_y2_higher, array_y2_higher_work,
array_y2_higher_work2, array_y2_set_initial, array_given_rad_poles,
array_given_ord_poles, array_rad_test_poles, array_ord_test_poles,
array_fact_2, ATS_MAX_TERMS, glob_last;
ATS_MAX_TERMS := 40;
Digits := 32;
max_terms := 40;
glob_html_log := true;
array_y1_init := Array(0 .. 40, []);
array_y2_init := Array(0 .. 40, []);
array_norms := Array(0 .. 40, []);
array_fact_1 := Array(0 .. 40, []);
array_1st_rel_error := Array(0 .. 3, []);
array_last_rel_error := Array(0 .. 3, []);
array_est_rel_error := Array(0 .. 3, []);
array_max_est_error := Array(0 .. 3, []);
array_type_pole := Array(0 .. 3, []);
array_type_real_pole := Array(0 .. 3, []);
array_type_complex_pole := Array(0 .. 3, []);
array_est_digits := Array(0 .. 3, []);
array_y1 := Array(0 .. 40, []);
array_x := Array(0 .. 40, []);
array_y2 := Array(0 .. 40, []);
array_tmp0 := Array(0 .. 40, []);
array_tmp1 := Array(0 .. 40, []);
array_tmp2 := Array(0 .. 40, []);
array_tmp3 := Array(0 .. 40, []);
array_tmp4 := Array(0 .. 40, []);
array_tmp5 := Array(0 .. 40, []);
array_m1 := Array(0 .. 40, []);
array_y1_higher := Array(0 .. 2, 0 .. 41, []);
array_y1_higher_work := Array(0 .. 2, 0 .. 41, []);
array_y1_higher_work2 := Array(0 .. 2, 0 .. 41, []);
array_y1_set_initial := Array(0 .. 3, 0 .. 41, []);
array_y2_higher := Array(0 .. 2, 0 .. 41, []);
array_y2_higher_work := Array(0 .. 2, 0 .. 41, []);
array_y2_higher_work2 := Array(0 .. 2, 0 .. 41, []);
array_y2_set_initial := Array(0 .. 3, 0 .. 41, []);
array_given_rad_poles := Array(0 .. 3, 0 .. 4, []);
array_given_ord_poles := Array(0 .. 3, 0 .. 4, []);
array_rad_test_poles := Array(0 .. 3, 0 .. 5, []);
array_ord_test_poles := Array(0 .. 3, 0 .. 5, []);
array_fact_2 := Array(0 .. 40, 0 .. 41, []);
term := 1;
while term <= 40 do array_y1_init[term] := c(0.); term := term + 1
end do;
term := 1;
while term <= 40 do array_y2_init[term] := c(0.); term := term + 1
end do;
term := 1;
while term <= 40 do array_norms[term] := c(0.); term := term + 1 end do
;
term := 1;
while term <= 40 do array_fact_1[term] := c(0.); term := term + 1
end do;
term := 1;
while term <= 3 do array_1st_rel_error[term] := c(0.); term := term + 1
end do;
term := 1;
while term <= 3 do
array_last_rel_error[term] := c(0.); term := term + 1
end do;
term := 1;
while term <= 3 do array_est_rel_error[term] := c(0.); term := term + 1
end do;
term := 1;
while term <= 3 do array_max_est_error[term] := c(0.); term := term + 1
end do;
term := 1;
while term <= 3 do array_type_pole[term] := 0; term := term + 1 end do;
term := 1;
while term <= 3 do array_type_real_pole[term] := 0; term := term + 1
end do;
term := 1;
while term <= 3 do array_type_complex_pole[term] := 0; term := term + 1
end do;
term := 1;
while term <= 3 do array_est_digits[term] := 0; term := term + 1 end do
;
term := 1;
while term <= 40 do array_y1[term] := c(0.); term := term + 1 end do;
term := 1;
while term <= 40 do array_x[term] := c(0.); term := term + 1 end do;
term := 1;
while term <= 40 do array_y2[term] := c(0.); term := term + 1 end do;
term := 1;
while term <= 40 do array_tmp0[term] := c(0.); term := term + 1 end do;
term := 1;
while term <= 40 do array_tmp1[term] := c(0.); term := term + 1 end do;
term := 1;
while term <= 40 do array_tmp2[term] := c(0.); term := term + 1 end do;
term := 1;
while term <= 40 do array_tmp3[term] := c(0.); term := term + 1 end do;
term := 1;
while term <= 40 do array_tmp4[term] := c(0.); term := term + 1 end do;
term := 1;
while term <= 40 do array_tmp5[term] := c(0.); term := term + 1 end do;
term := 1;
while term <= 40 do array_m1[term] := c(0.); term := term + 1 end do;
ord := 1;
while ord <= 2 do
term := 1;
while term <= 40 do
array_y1_higher[ord, term] := c(0.); term := term + 1
end do;
ord := ord + 1
end do;
ord := 1;
while ord <= 2 do
term := 1;
while term <= 40 do
array_y1_higher_work[ord, term] := c(0.); term := term + 1
end do;
ord := ord + 1
end do;
ord := 1;
while ord <= 2 do
term := 1;
while term <= 40 do
array_y1_higher_work2[ord, term] := c(0.); term := term + 1
end do;
ord := ord + 1
end do;
ord := 1;
while ord <= 3 do
term := 1;
while term <= 40 do
array_y1_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 <= 40 do
array_y2_higher[ord, term] := c(0.); term := term + 1
end do;
ord := ord + 1
end do;
ord := 1;
while ord <= 2 do
term := 1;
while term <= 40 do
array_y2_higher_work[ord, term] := c(0.); term := term + 1
end do;
ord := ord + 1
end do;
ord := 1;
while ord <= 2 do
term := 1;
while term <= 40 do
array_y2_higher_work2[ord, term] := c(0.); term := term + 1
end do;
ord := ord + 1
end do;
ord := 1;
while ord <= 3 do
term := 1;
while term <= 40 do
array_y2_set_initial[ord, term] := c(0.); term := term + 1
end do;
ord := ord + 1
end do;
ord := 1;
while ord <= 3 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 <= 3 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 <= 3 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 <= 3 do
term := 1;
while term <= 4 do
array_ord_test_poles[ord, term] := c(0.); term := term + 1
end do;
ord := ord + 1
end do;
ord := 1;
while ord <= 40 do
term := 1;
while term <= 40 do
array_fact_2[ord, term] := c(0.); term := term + 1
end do;
ord := ord + 1
end do;
zero_ats_ar(array_y1);
zero_ats_ar(array_x);
zero_ats_ar(array_y2);
zero_ats_ar(array_tmp0);
zero_ats_ar(array_tmp1);
zero_ats_ar(array_tmp2);
zero_ats_ar(array_tmp3);
zero_ats_ar(array_tmp4);
zero_ats_ar(array_tmp5);
zero_ats_ar(array_m1);
zero_ats_ar(array_const_1);
array_const_1[1] := c(1);
zero_ats_ar(array_const_0D0);
array_const_0D0[1] := c(0.);
zero_ats_ar(array_const_1D0);
array_const_1D0[1] := c(1.0);
zero_ats_ar(array_m1);
array_m1[1] := glob__m1;
iiif := 0;
while iiif <= ATS_MAX_TERMS do
jjjf := 0;
while jjjf <= ATS_MAX_TERMS do
array_fact_1[iiif] := 0;
array_fact_2[iiif, jjjf] := 0;
jjjf := jjjf + 1
end do;
iiif := iiif + 1
end do;
ALWAYS := 1;
INFO := 2;
DEBUGL := 3;
DEBUGMASSIVE := 4;
glob_iolevel := 5;
glob_yes_pole := 4;
glob_no_pole := 3;
glob_not_given := 0;
glob_no_sing_tests := 4;
glob_ratio_test := 1;
glob_three_term_test := 2;
glob_six_term_test := 3;
glob_log_10 := log(c(10.0));
MAX_UNCHANGED := 10;
glob__small := c(0.1*10^(-50));
glob_small_float := c(0.1*10^(-50));
glob_smallish_float := c(0.1*10^(-60));
glob_large_float := c(0.10*10^101);
glob_larger_float := c(0.11*10^101);
glob__m2 := c(-2);
glob__m1 := c(-1);
glob__0 := c(0);
glob__1 := c(1);
glob__2 := c(2);
glob__3 := c(3);
glob__4 := c(4);
glob__5 := c(5);
glob__8 := c(8);
glob__10 := c(10);
glob__100 := c(100);
glob__pi := c(0.);
glob__0_5 := c(0.5);
glob__0_8 := c(0.8);
glob__m0_8 := c(-0.8);
glob__0_25 := c(0.25);
glob__0_125 := c(0.125);
glob_h := 0.1;
glob_nxt := 1;
glob_prec := c(0.10*10^(-15));
glob_check_sign := c(1.0);
glob_desired_digits_correct := c(8.0);
glob_max_estimated_step_error := c(0.);
glob_ratio_of_radius := c(0.1);
glob_percent_done := c(0.);
glob_total_exp_sec := c(0.1);
glob_optimal_expect_sec := c(0.1);
glob_estimated_size_answer := c(100.0);
glob_almost_1 := c(0.9990);
glob_clock_sec := c(0.);
glob_clock_start_sec := c(0.);
glob_disp_incr := c(0.1);
glob_diff_rc_fm := c(0.1);
glob_diff_rc_fmm1 := c(0.1);
glob_diff_rc_fmm2 := c(0.1);
glob_diff_ord_fm := c(0.1);
glob_diff_ord_fmm1 := c(0.1);
glob_diff_ord_fmm2 := c(0.1);
glob_six_term_ord_save := c(0.1);
glob_guess_error_rc := c(0.1);
glob_guess_error_ord := c(0.1);
glob_least_given_sing := c(0.99*10^201);
glob_least_ratio_sing := c(0.99*10^201);
glob_least_3_sing := c(0.99*10^101);
glob_least_6_sing := c(0.99*10^101);
glob_last_good_h := c(0.1);
glob_max_h := c(0.1);
glob_min_h := c(0.1*10^(-5));
glob_display_interval := c(0.1);
glob_abserr := c(0.1*10^(-10));
glob_relerr := c(0.1*10^(-10));
glob_min_pole_est := c(0.1*10^10);
glob_max_rel_trunc_err := c(0.1*10^(-10));
glob_max_trunc_err := c(0.1*10^(-10));
glob_max_hours := c(0.);
glob_optimal_clock_start_sec := c(0.);
glob_optimal_start := c(0.);
glob_upper_ratio_limit := c(1.0001);
glob_lower_ratio_limit := c(0.9999);
glob_max_sec := c(10000.0);
glob_orig_start_sec := c(0.);
glob_normmax := c(0.);
glob_max_minutes := c(0.);
glob_next_display := c(0.);
glob_est_digits := 1;
glob_subiter_method := 3;
glob_html_log := true;
glob_min_good_digits := 99999;
glob_good_digits := 0;
glob_min_apfp_est_good_digits := 99999;
glob_apfp_est_good_digits := 0;
glob_max_opt_iter := 10;
glob_dump := false;
glob_djd_debug := true;
glob_display_flag := true;
glob_djd_debug2 := true;
glob_h_reason := 0;
glob_sec_in_minute := 60;
glob_min_in_hour := 60;
glob_hours_in_day := 24;
glob_days_in_year := 365;
glob_sec_in_hour := 3600;
glob_sec_in_day := 86400;
glob_sec_in_year := 31536000;
glob_not_yet_finished := true;
glob_initial_pass := true;
glob_not_yet_start_msg := true;
glob_reached_optimal_h := false;
glob_optimal_done := false;
glob_type_given_pole := 0;
glob_optimize := false;
glob_look_poles := false;
glob_dump_closed_form := false;
glob_max_iter := 10000;
glob_no_eqs := 0;
glob_unchanged_h_cnt := 0;
glob_warned := false;
glob_warned2 := false;
glob_start := 0;
glob_iter := 0;
array_y1_set_initial[1, 1] := true;
array_y1_set_initial[1, 2] := false;
array_y1_set_initial[1, 3] := false;
array_y1_set_initial[1, 4] := false;
array_y1_set_initial[1, 5] := false;
array_y1_set_initial[1, 6] := false;
array_y1_set_initial[1, 7] := false;
array_y1_set_initial[1, 8] := false;
array_y1_set_initial[1, 9] := false;
array_y1_set_initial[1, 10] := false;
array_y1_set_initial[1, 11] := false;
array_y1_set_initial[1, 12] := false;
array_y1_set_initial[1, 13] := false;
array_y1_set_initial[1, 14] := false;
array_y1_set_initial[1, 15] := false;
array_y1_set_initial[1, 16] := false;
array_y1_set_initial[1, 17] := false;
array_y1_set_initial[1, 18] := false;
array_y1_set_initial[1, 19] := false;
array_y1_set_initial[1, 20] := false;
array_y1_set_initial[1, 21] := false;
array_y1_set_initial[1, 22] := false;
array_y1_set_initial[1, 23] := false;
array_y1_set_initial[1, 24] := false;
array_y1_set_initial[1, 25] := false;
array_y1_set_initial[1, 26] := false;
array_y1_set_initial[1, 27] := false;
array_y1_set_initial[1, 28] := false;
array_y1_set_initial[1, 29] := false;
array_y1_set_initial[1, 30] := false;
array_y1_set_initial[1, 31] := false;
array_y1_set_initial[1, 32] := false;
array_y1_set_initial[1, 33] := false;
array_y1_set_initial[1, 34] := false;
array_y1_set_initial[1, 35] := false;
array_y1_set_initial[1, 36] := false;
array_y1_set_initial[1, 37] := false;
array_y1_set_initial[1, 38] := false;
array_y1_set_initial[1, 39] := false;
array_y1_set_initial[1, 40] := false;
array_y2_set_initial[2, 1] := true;
array_y2_set_initial[2, 2] := false;
array_y2_set_initial[2, 3] := false;
array_y2_set_initial[2, 4] := false;
array_y2_set_initial[2, 5] := false;
array_y2_set_initial[2, 6] := false;
array_y2_set_initial[2, 7] := false;
array_y2_set_initial[2, 8] := false;
array_y2_set_initial[2, 9] := false;
array_y2_set_initial[2, 10] := false;
array_y2_set_initial[2, 11] := false;
array_y2_set_initial[2, 12] := false;
array_y2_set_initial[2, 13] := false;
array_y2_set_initial[2, 14] := false;
array_y2_set_initial[2, 15] := false;
array_y2_set_initial[2, 16] := false;
array_y2_set_initial[2, 17] := false;
array_y2_set_initial[2, 18] := false;
array_y2_set_initial[2, 19] := false;
array_y2_set_initial[2, 20] := false;
array_y2_set_initial[2, 21] := false;
array_y2_set_initial[2, 22] := false;
array_y2_set_initial[2, 23] := false;
array_y2_set_initial[2, 24] := false;
array_y2_set_initial[2, 25] := false;
array_y2_set_initial[2, 26] := false;
array_y2_set_initial[2, 27] := false;
array_y2_set_initial[2, 28] := false;
array_y2_set_initial[2, 29] := false;
array_y2_set_initial[2, 30] := false;
array_y2_set_initial[2, 31] := false;
array_y2_set_initial[2, 32] := false;
array_y2_set_initial[2, 33] := false;
array_y2_set_initial[2, 34] := false;
array_y2_set_initial[2, 35] := false;
array_y2_set_initial[2, 36] := false;
array_y2_set_initial[2, 37] := false;
array_y2_set_initial[2, 38] := false;
array_y2_set_initial[2, 39] := false;
array_y2_set_initial[2, 40] := false;
ALWAYS := 1;
INFO := 2;
DEBUGL := 3;
DEBUGMASSIVE := 4;
ATS_MAX_TERMS := 40;
glob_iolevel := INFO;
glob_orig_start_sec := elapsed_time_seconds();
glob_display_flag := true;
glob_no_eqs := 2;
glob_iter := -1;
opt_iter := -1;
glob_max_iter := 10000;
glob_max_hours := 0.;
glob_max_minutes := 15.0;
omniout_str(ALWAYS, "##############ECHO OF PROBLEM#################");
omniout_str(ALWAYS,
"##############temp/mtest1postcpx.cpx#################");
omniout_str(ALWAYS,
"diff ( y1 , x , 1 ) = neg ( y2 ) + 1.0 ; ");
omniout_str(ALWAYS, "diff ( y2 , x , 1 ) = y1 - 1.0 ; ");
omniout_str(ALWAYS, "!");
omniout_str(ALWAYS, "#BEGIN FIRST INPUT BLOCK");
omniout_str(ALWAYS, "Digits:=32;");
omniout_str(ALWAYS, "max_terms:=40;");
omniout_str(ALWAYS, "!");
omniout_str(ALWAYS, "#END FIRST INPUT BLOCK");
omniout_str(ALWAYS, "#BEGIN SECOND INPUT BLOCK");
omniout_str(ALWAYS, "x_start := 0.1 + 0.1 * I;");
omniout_str(ALWAYS, "x_end := 99.0 + 99.0 * I;");
omniout_str(ALWAYS, "array_y1_init[0 + 1] := exact_soln_y1(x_start);");
omniout_str(ALWAYS, "array_y2_init[0 + 1] := exact_soln_y2(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:=10000;");
omniout_str(ALWAYS, "glob_upper_ratio_limit:=c(1.000001);");
omniout_str(ALWAYS, "glob_lower_ratio_limit:=c(0.999999);");
omniout_str(ALWAYS, "glob_look_poles:=true;");
omniout_str(ALWAYS, "glob_h:=c(0.001);");
omniout_str(ALWAYS, "glob_display_interval:=c(0.01);");
omniout_str(ALWAYS, "#END OVERRIDE BLOCK");
omniout_str(ALWAYS, "!");
omniout_str(ALWAYS, "#BEGIN USER DEF BLOCK");
omniout_str(ALWAYS, "exact_soln_y1 := proc(x)");
omniout_str(ALWAYS, "return(c(1.0) + cos(c(x)));");
omniout_str(ALWAYS, "end;");
omniout_str(ALWAYS, "exact_soln_y2 := proc(x)");
omniout_str(ALWAYS, "return(c(1.0) + sin(c(x)));");
omniout_str(ALWAYS, "end;");
omniout_str(ALWAYS, "");
omniout_str(ALWAYS, "");
omniout_str(ALWAYS, "");
omniout_str(ALWAYS, "");
omniout_str(ALWAYS, "next_delta := proc()");
omniout_str(ALWAYS, "global glob_nxt, x_delta;");
omniout_str(ALWAYS, "");
omniout_str(ALWAYS, "x_delta := [ 0.001 + 0.00004 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.0001 + 0.004 * I,");
omniout_str(ALWAYS, "0.003 + 0.006 * I,");
omniout_str(ALWAYS, "0.0001 + 0.005 * I,");
omniout_str(ALWAYS, "0.0001 + 0.003 * I,");
omniout_str(ALWAYS, "0.001 + 0.001 * I,");
omniout_str(ALWAYS, "0.001 + 0.003 * I,");
omniout_str(ALWAYS, "0.000 + 0.000 * I ];");
omniout_str(ALWAYS, "");
omniout_str(ALWAYS, "glob_nxt := glob_nxt + 1;");
omniout_str(ALWAYS, "it := x_delta[glob_nxt];");
omniout_str(ALWAYS, "return it;");
omniout_str(ALWAYS, "end;");
omniout_str(ALWAYS, "#END USER DEF BLOCK");
omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################");
glob_unchanged_h_cnt := 0;
glob_warned := false;
glob_warned2 := false;
glob_small_float := glob__0;
glob_smallish_float := glob__0;
glob_large_float := c(0.10*10^101);
glob_larger_float := c(0.11*10^101);
glob_almost_1 := c(0.99);
x_start := 0.1 + 0.1*I;
x_end := 99.0 + 99.0*I;
array_y1_init[1] := exact_soln_y1(x_start);
array_y2_init[1] := exact_soln_y2(x_start);
glob_look_poles := true;
glob_type_given_pole := 3;
glob_desired_digits_correct := 8;
glob_max_minutes := 3.0;
glob_subiter_method := 3;
glob_max_iter := 10000;
glob_upper_ratio_limit := c(1.000001);
glob_lower_ratio_limit := c(0.999999);
glob_look_poles := true;
glob_h := c(0.001);
glob_display_interval := c(0.01);
glob_last_good_h := glob_h;
glob_max_sec := 60.0*glob_max_minutes + 3600.0*glob_max_hours;
found_h := true;
glob_h := next_delta();
if
float_abs(glob_min_pole_est)*glob_ratio_of_radius < float_abs(glob_h)
then
h_new := glob_check_sign*glob_min_pole_est*glob_ratio_of_radius;
omniout_str(ALWAYS, "SETTING H FOR POLE");
glob_h_reason := 6;
if glob_check_sign*h_new < glob_check_sign*glob_min_h then
omniout_str(ALWAYS, "SETTING H FOR MIN H");
h_new := glob_min_h;
glob_h_reason := 5
end if;
term := 1;
ratio := c(1.0);
while term <= ATS_MAX_TERMS do
array_y1[term] := array_y1[term]*ratio;
array_y1_higher[1, term] := array_y1_higher[1, term]*ratio;
array_x[term] := array_x[term]*ratio;
array_y2[term] := array_y2[term]*ratio;
array_y2_higher[1, term] := array_y2_higher[1, term]*ratio;
array_x[term] := array_x[term]*ratio;
ratio := ratio*h_new/float_abs(glob_h);
term := term + 1
end do;
glob_h := h_new
end if;
if glob_html_log then html_log_file := fopen("entry.html", WRITE, TEXT)
end if;
found_h := true;
if found_h then
omniout_str(ALWAYS, "START of Soultion");
array_x[1] := c(x_start);
array_x[2] := c(glob_h);
glob_next_display := c(x_start);
glob_min_pole_est := glob_larger_float;
glob_least_given_sing := glob_larger_float;
glob_least_ratio_sing := glob_larger_float;
glob_least_3_sing := glob_larger_float;
glob_least_6_sing := glob_larger_float;
order_diff := 1;
term_no := 1;
while term_no <= order_diff do
array_y1[term_no] := array_y1_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_y1_higher[r_order, term_no] := array_y1_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;
order_diff := 1;
term_no := 1;
while term_no <= order_diff do
array_y2[term_no] := array_y2_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_y2_higher[r_order, term_no] := array_y2_init[it]*
expt(glob_h, c(term_no - 1))/
c(factorial_1(term_no - 1))
end if;
term_no := term_no + 1
end do;
r_order := r_order + 1
end do;
current_iter := 1;
glob_clock_start_sec := elapsed_time_seconds();
glob_clock_sec := elapsed_time_seconds();
glob_iter := 0;
omniout_str(DEBUGL, " ");
glob_reached_optimal_h := true;
found_h := true;
glob_h := next_delta();
if float_abs(glob_min_pole_est)*glob_ratio_of_radius <
float_abs(glob_h) then
h_new := glob_check_sign*glob_min_pole_est*glob_ratio_of_radius
;
omniout_str(ALWAYS, "SETTING H FOR POLE");
glob_h_reason := 6;
if glob_check_sign*h_new < glob_check_sign*glob_min_h then
omniout_str(ALWAYS, "SETTING H FOR MIN H");
h_new := glob_min_h;
glob_h_reason := 5
end if;
term := 1;
ratio := c(1.0);
while term <= ATS_MAX_TERMS do
array_y1[term] := array_y1[term]*ratio;
array_y1_higher[1, term] := array_y1_higher[1, term]*ratio;
array_x[term] := array_x[term]*ratio;
array_y2[term] := array_y2[term]*ratio;
array_y2_higher[1, term] := array_y2_higher[1, term]*ratio;
array_x[term] := array_x[term]*ratio;
ratio := ratio*h_new/float_abs(glob_h);
term := term + 1
end do;
glob_h := h_new
end if;
glob_optimal_clock_start_sec := elapsed_time_seconds();
while glob_iter < glob_max_iter and
(glob_iter < 10 or not (Re(glob_h) = 0. and Im(glob_h) = 0.)) do
omniout_str(INFO, " ");
found_h := true;
glob_h := next_delta();
if float_abs(glob_min_pole_est)*glob_ratio_of_radius <
float_abs(glob_h) then
h_new :=
glob_check_sign*glob_min_pole_est*glob_ratio_of_radius;
omniout_str(ALWAYS, "SETTING H FOR POLE");
glob_h_reason := 6;
if glob_check_sign*h_new < glob_check_sign*glob_min_h then
omniout_str(ALWAYS, "SETTING H FOR MIN H");
h_new := glob_min_h;
glob_h_reason := 5
end if;
term := 1;
ratio := c(1.0);
while term <= ATS_MAX_TERMS do
array_y1[term] := array_y1[term]*ratio;
array_y1_higher[1, term] :=
array_y1_higher[1, term]*ratio;
array_x[term] := array_x[term]*ratio;
array_y2[term] := array_y2[term]*ratio;
array_y2_higher[1, term] :=
array_y2_higher[1, term]*ratio;
array_x[term] := array_x[term]*ratio;
ratio := ratio*h_new/float_abs(glob_h);
term := term + 1
end do;
glob_h := h_new
end if;
glob_iter := glob_iter + 1;
glob_clock_sec := elapsed_time_seconds();
if glob_subiter_method = 1 then atomall()
elif glob_subiter_method = 2 then
subiter := 1;
while subiter <= 2 do atomall(); subiter := subiter + 1
end do
else
subiter := 1;
while subiter <= 2 + ATS_MAX_TERMS do
atomall(); subiter := subiter + 1
end do
end if;
if not (Re(glob_h) = 0. and Im(glob_h) = 0.) then
display_alot(current_iter)
end if;
if
glob_look_poles and not (Re(glob_h) = 0. and Im(glob_h) = 0.)
then check_for_pole()
end if;
glob_next_display := glob_next_display + glob_display_interval;
array_x[1] := array_x[1] + glob_h;
array_x[2] := glob_h;
order_diff := 2;
ord := 2;
calc_term := 1;
iii := ATS_MAX_TERMS;
while calc_term <= iii do
array_y1_higher_work[2, iii] := array_y1_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_y1_higher_work[ord, iii];
iii := iii - 1
end do;
array_y1_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_y1_higher_work[1, iii] := array_y1_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_y1_higher_work[ord, iii];
iii := iii - 1
end do;
array_y1_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_y1_higher_work[1, iii] := array_y1_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_y1_higher_work[ord, iii];
iii := iii - 1
end do;
array_y1_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_y1[term_no] := array_y1_higher_work2[1, term_no];
ord := 1;
while ord <= order_diff do
array_y1_higher[ord, term_no] :=
array_y1_higher_work2[ord, term_no];
ord := ord + 1
end do;
term_no := term_no - 1
end do;
order_diff := 2;
ord := 2;
calc_term := 1;
iii := ATS_MAX_TERMS;
while calc_term <= iii do
array_y2_higher_work[2, iii] := array_y2_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_y2_higher_work[ord, iii];
iii := iii - 1
end do;
array_y2_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_y2_higher_work[1, iii] := array_y2_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_y2_higher_work[ord, iii];
iii := iii - 1
end do;
array_y2_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_y2_higher_work[1, iii] := array_y2_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_y2_higher_work[ord, iii];
iii := iii - 1
end do;
array_y2_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_y2[term_no] := array_y2_higher_work2[1, term_no];
ord := 1;
while ord <= order_diff do
array_y2_higher[ord, term_no] :=
array_y2_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 ( y1 , x , 1 ) = neg ( y2 ) + 1.0 ; ");
omniout_str(INFO, "diff ( y2 , x , 1 ) = y1 - 1.0 ; ");
omniout_int(INFO, "Iterations ", 32, glob_iter,
4, " ");
prog_report(x_start, x_end);
if glob_html_log then
logstart(html_log_file);
logitem_str(html_log_file, "2017-11-26T15:06:43-06:00");
logitem_str(html_log_file, "Maple");
logitem_str(html_log_file,
"mtest1");
logitem_str(html_log_file,
"diff ( y1 , x , 1 ) = neg ( y2 ) + 1.0 ; ");
logitem_complex(html_log_file, x_start);
logitem_complex(html_log_file, x_end);
logitem_complex(html_log_file, array_x[1]);
logitem_complex(html_log_file, glob_h);
logitem_h_reason(html_log_file);
logitem_integer(html_log_file, Digits);
glob_desired_digits_correct := 0.;
logitem_float(html_log_file, glob_desired_digits_correct);
if array_est_digits[1] <> -16 then
logitem_integer(html_log_file, array_est_digits[1])
else logitem_str(html_log_file, "Unknown")
end if;
if glob_min_good_digits <> -16 then
logitem_integer(html_log_file, glob_min_good_digits)
else logitem_str(html_log_file, "Unknown")
end if;
if glob_good_digits <> -16 then
logitem_integer(html_log_file, glob_good_digits)
else logitem_str(html_log_file, "Unknown")
end if;
logitem_str(html_log_file, "NA");
logitem_str(html_log_file, "NA");
logitem_integer(html_log_file, ATS_MAX_TERMS);
if glob_type_given_pole = 0 then
logitem_str(html_log_file, "Not Given");
logitem_str(html_log_file, "NA")
elif glob_type_given_pole = 4 then
logitem_str(html_log_file, "No Solution");
logitem_str(html_log_file, "NA")
elif glob_type_given_pole = 5 then
logitem_str(html_log_file, "Some Pole");
logitem_str(html_log_file, "????")
elif glob_type_given_pole = 3 then
logitem_str(html_log_file, "No Pole");
logitem_str(html_log_file, "NA")
elif glob_type_given_pole = 1 then
logitem_str(html_log_file, "Real Sing");
logitem_float(html_log_file, glob_least_given_sing)
elif glob_type_given_pole = 2 then
logitem_str(html_log_file, "Complex Sing");
logitem_float(html_log_file, glob_least_given_sing)
end if;
if glob_least_ratio_sing < glob_large_float then
glob_least_ratio_sing := 0;
logitem_float(html_log_file, glob_least_ratio_sing)
else logitem_str(html_log_file, "NONE")
end if;
if glob_least_3_sing < glob_large_float then
logitem_float(html_log_file, glob_least_3_sing)
else logitem_str(html_log_file, "NONE")
end if;
if glob_least_6_sing < glob_large_float then
glob_least_6_sing := 0.;
logitem_float(html_log_file, glob_least_6_sing)
else logitem_str(html_log_file, "NONE")
end if;
logitem_integer(html_log_file, glob_iter);
logitem_time(html_log_file, glob_clock_sec);
if c(glob_percent_done) < glob__100 then
logitem_time(html_log_file, glob_total_exp_sec); 0
else logitem_str(html_log_file, "Done"); 0
end if;
log_revs(html_log_file, " 309 | ");
logitem_str(html_log_file,
"mtest1 diffeq.mxt");
logitem_str(html_log_file, "mtest1 maple results");
logitem_str(html_log_file, "OK");
logend(html_log_file);
logditto(html_log_file);
logditto(html_log_file);
logditto(html_log_file);
logitem_str(html_log_file,
"diff ( y2 , x , 1 ) = y1 - 1.0 ; ");
logditto(html_log_file);
logditto(html_log_file);
logditto(html_log_file);
logditto(html_log_file);
logditto(html_log_file);
logditto(html_log_file);
glob_desired_digits_correct := 0.;
logditto(html_log_file);
if array_est_digits[2] <> -16 then
logitem_integer(html_log_file, array_est_digits[2])
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");
logditto(html_log_file);
if glob_type_given_pole = 0 then
logditto(html_log_file); logditto(html_log_file)
elif glob_type_given_pole = 4 then
logditto(html_log_file); logditto(html_log_file)
elif glob_type_given_pole = 5 then
logditto(html_log_file); logditto(html_log_file)
elif glob_type_given_pole = 3 then
logditto(html_log_file); logditto(html_log_file)
elif glob_type_given_pole = 1 then
logditto(html_log_file); logditto(html_log_file)
elif glob_type_given_pole = 2 then
logditto(html_log_file); logditto(html_log_file)
end if;
if glob_least_ratio_sing < glob_large_float then
glob_least_ratio_sing := 0; logditto(html_log_file)
else logditto(html_log_file)
end if;
if glob_least_3_sing < glob_large_float then
logditto(html_log_file)
else logditto(html_log_file)
end if;
if glob_least_6_sing < glob_large_float then
glob_least_6_sing := 0.; logditto(html_log_file)
else logditto(html_log_file)
end if;
logditto(html_log_file);
logditto(html_log_file);
if c(glob_percent_done) < glob__100 then
logditto(html_log_file); 0
else logditto(html_log_file); 0
end if;
logditto(html_log_file);
logditto(html_log_file);
logditto(html_log_file);
logditto(html_log_file);
logend(html_log_file)
end if;
if glob_html_log then fclose(html_log_file) end if
end if
end proc
# End Function number 12
> main();
memory used=3.7MB, alloc=40.3MB, time=0.08
##############ECHO OF PROBLEM#################
##############temp/mtest1postcpx.cpx#################
diff ( y1 , x , 1 ) = neg ( y2 ) + 1.0 ;
diff ( y2 , x , 1 ) = y1 - 1.0 ;
!
#BEGIN FIRST INPUT BLOCK
Digits:=32;
max_terms:=40;
!
#END FIRST INPUT BLOCK
#BEGIN SECOND INPUT BLOCK
x_start := 0.1 + 0.1 * I;
x_end := 99.0 + 99.0 * I;
array_y1_init[0 + 1] := exact_soln_y1(x_start);
array_y2_init[0 + 1] := exact_soln_y2(x_start);
glob_look_poles := true;
glob_type_given_pole := 3;
#END SECOND INPUT BLOCK
#BEGIN OVERRIDE BLOCK
glob_desired_digits_correct:=8;
glob_max_minutes:=(3.0);
glob_subiter_method:=3;
glob_max_iter:=10000;
glob_upper_ratio_limit:=c(1.000001);
glob_lower_ratio_limit:=c(0.999999);
glob_look_poles:=true;
glob_h:=c(0.001);
glob_display_interval:=c(0.01);
#END OVERRIDE BLOCK
!
#BEGIN USER DEF BLOCK
exact_soln_y1 := proc(x)
return(c(1.0) + cos(c(x)));
end;
exact_soln_y2 := proc(x)
return(c(1.0) + sin(c(x)));
end;
next_delta := proc()
global glob_nxt, x_delta;
x_delta := [ 0.001 + 0.00004 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.0001 + 0.004 * I,
0.003 + 0.006 * I,
0.0001 + 0.005 * I,
0.0001 + 0.003 * I,
0.001 + 0.001 * I,
0.001 + 0.003 * I,
0.000 + 0.000 * I ];
glob_nxt := glob_nxt + 1;
it := x_delta[glob_nxt];
return it;
end;
#END USER DEF BLOCK
#######END OF ECHO OF PROBLEM#################
START of Soultion
x[1] = 0.1 0.1
h = 0.0001 0.005
y1[1] (numeric) = 1.99998333334 -0.00999998888889
y1[1] (closed_form) = 1.99998333334 -0.00999998888889
absolute error = 0
relative error = 0 %
Correct digits = 30
h = 0.0001 0.005
y2[1] (numeric) = 1.10033299984 0.0996663334921
y2[1] (closed_form) = 1.10033299984 0.0996663334921
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.1414
Order of pole (three term test) = 32 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.1414
Order of pole (three term test) = 33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=53.9MB, alloc=40.3MB, time=0.70
x[1] = 0.1001 0.105
h = 0.0001 0.003
y1[1] (numeric) = 2.00048412347 -0.0105122476776
y1[1] (closed_form) = 2.00048412347 -0.0105122476776
absolute error = 0
relative error = 0 %
Correct digits = 30
h = 0.0001 0.003
y2[1] (numeric) = 1.10048430307 0.104666466122
y2[1] (closed_form) = 1.10048430307 0.104666466122
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.1452
Order of pole (three term test) = 32 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.1452
Order of pole (three term test) = 33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=100.9MB, alloc=40.3MB, time=1.31
x[1] = 0.1002 0.108
h = 0.001 0.001
y1[1] (numeric) = 2.00079256889 -0.0108245151295
y1[1] (closed_form) = 2.00079256889 -0.0108245151295
absolute error = 0
relative error = 0 %
Correct digits = 30
h = 0.001 0.001
y2[1] (numeric) = 1.1006163718 0.107667312081
y2[1] (closed_form) = 1.1006163718 0.107667312081
absolute error = 1e-32
relative error = 9.043e-31 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.1475
Order of pole (three term test) = 32 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.1475
Order of pole (three term test) = 33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=148.2MB, alloc=40.3MB, time=1.92
x[1] = 0.1012 0.109
h = 0.001 0.003
y1[1] (numeric) = 2.00079960894 -0.0110337996083
y1[1] (closed_form) = 2.00079960894 -0.0110337996083
absolute error = 0
relative error = 0 %
Correct digits = 30
h = 0.001 0.003
y2[1] (numeric) = 1.10162809688 0.108657179181
y2[1] (closed_form) = 1.10162809688 0.108657179181
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.1489
Order of pole (three term test) = 32 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.1489
Order of pole (three term test) = 33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=195.3MB, alloc=40.3MB, time=2.53
x[1] = 0.1022 0.112
h = 0.0001 0.004
y1[1] (numeric) = 2.00102792236 -0.0114503883919
y1[1] (closed_form) = 2.00102792236 -0.0114503883919
absolute error = 1e-33
relative error = 4.997e-32 %
Correct digits = 33
h = 0.0001 0.004
y2[1] (numeric) = 1.10266273475 0.111648676907
y2[1] (closed_form) = 1.10266273475 0.111648676907
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.1518
Order of pole (three term test) = 32 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.1518
Order of pole (three term test) = 33 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1023 0.116
h = 0.003 0.006
y1[1] (numeric) = 2.00147225055 -0.0118726973391
y1[1] (closed_form) = 2.00147225055 -0.0118726973391
absolute error = 0
relative error = 0 %
Correct digits = 30
h = 0.003 0.006
y2[1] (numeric) = 1.10280950546 0.115652505773
y2[1] (closed_form) = 1.10280950546 0.115652505773
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.155
Order of pole (three term test) = 32 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.155
Order of pole (three term test) = 33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=242.1MB, alloc=40.3MB, time=3.13
x[1] = 0.1053 0.122
h = 0.0001 0.005
y1[1] (numeric) = 2.00187103916 -0.0128547054021
y1[1] (closed_form) = 2.00187103916 -0.0128547054021
absolute error = 1e-33
relative error = 4.995e-32 %
Correct digits = 33
h = 0.0001 0.005
y2[1] (numeric) = 1.10588867776 0.121625440337
y2[1] (closed_form) = 1.10588867776 0.121625440337
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.1616
Order of pole (three term test) = 32 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.1616
Order of pole (three term test) = 33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=289.1MB, alloc=40.3MB, time=3.74
x[1] = 0.1054 0.127
h = 0.0001 0.003
y1[1] (numeric) = 2.00248109187 -0.0133969752478
y1[1] (closed_form) = 2.00248109187 -0.0133969752478
absolute error = 1e-33
relative error = 4.994e-32 %
Correct digits = 33
h = 0.0001 0.003
y2[1] (numeric) = 1.10605452381 0.126634997662
y2[1] (closed_form) = 1.10605452381 0.126634997662
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.1656
Order of pole (three term test) = 32 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.1656
Order of pole (three term test) = 33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=336.2MB, alloc=40.3MB, time=4.34
x[1] = 0.1055 0.13
h = 0.001 0.001
y1[1] (numeric) = 2.00285489407 -0.0137281638158
y1[1] (closed_form) = 2.00285489407 -0.0137281638158
absolute error = 2e-33
relative error = 9.986e-32 %
Correct digits = 33
h = 0.001 0.001
y2[1] (numeric) = 1.10619547806 0.129641643138
y2[1] (closed_form) = 1.10619547806 0.129641643138
absolute error = 1e-31
relative error = 8.979e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.1681
Order of pole (three term test) = 31.99 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.1681
Order of pole (three term test) = 33.01 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1065 0.131
h = 0.001 0.003
y1[1] (numeric) = 2.00287832643 -0.0139650037997
y1[1] (closed_form) = 2.00287832643 -0.0139650037997
absolute error = 2e-33
relative error = 9.985e-32 %
Correct digits = 33
h = 0.001 0.003
y2[1] (numeric) = 1.10721219109 0.130630663334
y2[1] (closed_form) = 1.10721219109 0.130630663334
absolute error = 1e-31
relative error = 8.969e-30 %
Correct digits = 31
memory used=383.5MB, alloc=40.3MB, time=4.95
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.1695
Order of pole (three term test) = 31.99 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.1695
Order of pole (three term test) = 33.01 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1075 0.134
h = 0.0001 0.004
y1[1] (numeric) = 2.00316697577 -0.014420336423
y1[1] (closed_form) = 2.00316697577 -0.014420336423
absolute error = 2e-33
relative error = 9.984e-32 %
Correct digits = 33
h = 0.0001 0.004
y2[1] (numeric) = 1.10825778955 0.133625537144
y2[1] (closed_form) = 1.10825778955 0.133625537144
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.1725
Order of pole (three term test) = 31.99 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.1725
Order of pole (three term test) = 33.01 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=430.0MB, alloc=40.3MB, time=5.54
x[1] = 0.1076 0.138
h = 0.003 0.006
y1[1] (numeric) = 2.00369866804 -0.014867247953
y1[1] (closed_form) = 2.00369866804 -0.014867247953
absolute error = 2e-33
relative error = 9.981e-32 %
Correct digits = 33
h = 0.003 0.006
y2[1] (numeric) = 1.10841670753 0.137637798716
y2[1] (closed_form) = 1.10841670753 0.137637798716
absolute error = 1e-31
relative error = 8.953e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.1759
Order of pole (three term test) = 31.99 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.1759
Order of pole (three term test) = 33.01 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=477.2MB, alloc=40.3MB, time=6.15
x[1] = 0.1106 0.144
h = 0.0001 0.005
y1[1] (numeric) = 2.00421252288 -0.015948936748
y1[1] (closed_form) = 2.00421252288 -0.015948936748
absolute error = 3e-33
relative error = 1.497e-31 %
Correct digits = 33
h = 0.0001 0.005
y2[1] (numeric) = 1.11152099795 0.143615303875
y2[1] (closed_form) = 1.11152099795 0.143615303875
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.1826
Order of pole (three term test) = 31.99 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.1826
Order of pole (three term test) = 33.01 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=524.3MB, alloc=40.3MB, time=6.76
x[1] = 0.1107 0.149
h = 0.0001 0.003
y1[1] (numeric) = 2.00493198983 -0.0165216071589
y1[1] (closed_form) = 2.00493198983 -0.0165216071589
absolute error = 4e-33
relative error = 1.995e-31 %
Correct digits = 33
h = 0.0001 0.003
y2[1] (numeric) = 1.11170263074 0.148636531188
y2[1] (closed_form) = 1.11170263074 0.148636531188
absolute error = 1.005e-31
relative error = 8.960e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.1869
Order of pole (three term test) = 31.99 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.1869
Order of pole (three term test) = 33.01 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1108 0.152
h = 0.001 0.001
y1[1] (numeric) = 2.005371242 -0.0168719550168
y1[1] (closed_form) = 2.005371242 -0.0168719550168
absolute error = 4e-33
relative error = 1.995e-31 %
Correct digits = 33
h = 0.001 0.001
y2[1] (numeric) = 1.11185323598 0.151650314108
y2[1] (closed_form) = 1.11185323598 0.151650314108
absolute error = 0
relative error = 0 %
Correct digits = 30
memory used=571.4MB, alloc=40.3MB, time=7.36
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.1895
Order of pole (three term test) = 31.99 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.1895
Order of pole (three term test) = 33.01 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1118 0.153
h = 0.001 0.003
y1[1] (numeric) = 2.00541102212 -0.0171364639514
y1[1] (closed_form) = 2.00541102212 -0.0171364639514
absolute error = 4e-33
relative error = 1.995e-31 %
Correct digits = 33
h = 0.001 0.003
y2[1] (numeric) = 1.11287563116 0.152638701201
y2[1] (closed_form) = 1.11287563116 0.152638701201
absolute error = 1e-31
relative error = 8.902e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.1909
Order of pole (three term test) = 31.99 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.1909
Order of pole (three term test) = 33.01 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=618.4MB, alloc=40.3MB, time=7.97
x[1] = 0.1128 0.156
h = 0.0001 0.004
y1[1] (numeric) = 2.00576003279 -0.0176308153291
y1[1] (closed_form) = 2.00576003279 -0.0176308153291
absolute error = 4e-33
relative error = 1.994e-31 %
Correct digits = 33
h = 0.0001 0.004
y2[1] (numeric) = 1.1139333654 0.155638072673
y2[1] (closed_form) = 1.1139333654 0.155638072673
absolute error = 1e-31
relative error = 8.891e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.194
Order of pole (three term test) = 31.99 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.194
Order of pole (three term test) = 33.01 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=665.4MB, alloc=40.3MB, time=8.57
x[1] = 0.1129 0.16
h = 0.003 0.006
y1[1] (numeric) = 2.00637922732 -0.0181026571991
y1[1] (closed_form) = 2.00637922732 -0.0181026571991
absolute error = 5e-33
relative error = 2.492e-31 %
Correct digits = 33
h = 0.003 0.006
y2[1] (numeric) = 1.11410543881 0.159660559171
y2[1] (closed_form) = 1.11410543881 0.159660559171
absolute error = 1e-31
relative error = 8.885e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.1975
Order of pole (three term test) = 31.99 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.1975
Order of pole (three term test) = 33.01 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=712.5MB, alloc=40.3MB, time=9.18
x[1] = 0.1159 0.166
h = 0.0001 0.005
y1[1] (numeric) = 2.0070081304 -0.0192846397327
y1[1] (closed_form) = 2.0070081304 -0.0192846397327
absolute error = 6e-33
relative error = 2.989e-31 %
Correct digits = 33
h = 0.0001 0.005
y2[1] (numeric) = 1.11723765674 0.165644636231
y2[1] (closed_form) = 1.11723765674 0.165644636231
absolute error = 1e-31
relative error = 8.854e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2044
Order of pole (three term test) = 31.99 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2044
Order of pole (three term test) = 33.01 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.116 0.171
h = 0.0001 0.003
y1[1] (numeric) = 2.00783720606 -0.0198881395948
y1[1] (closed_form) = 2.00783720606 -0.0198881395948
absolute error = 6e-33
relative error = 2.988e-31 %
Correct digits = 33
h = 0.0001 0.003
y2[1] (numeric) = 1.11743633012 0.170679780464
y2[1] (closed_form) = 1.11743633012 0.170679780464
absolute error = 1.005e-31
relative error = 8.891e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2088
Order of pole (three term test) = 31.98 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2088
Order of pole (three term test) = 33.02 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=759.4MB, alloc=40.3MB, time=9.78
x[1] = 0.1161 0.174
h = 0.001 0.001
y1[1] (numeric) = 2.00834202675 -0.0202579089155
y1[1] (closed_form) = 2.00834202675 -0.0202579089155
absolute error = 6e-33
relative error = 2.987e-31 %
Correct digits = 33
h = 0.001 0.001
y2[1] (numeric) = 1.11759735788 0.173702039755
y2[1] (closed_form) = 1.11759735788 0.173702039755
absolute error = 1.005e-31
relative error = 8.886e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2116
Order of pole (three term test) = 31.98 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2116
Order of pole (three term test) = 33.02 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=806.7MB, alloc=40.3MB, time=10.38
x[1] = 0.1171 0.175
h = 0.001 0.003
y1[1] (numeric) = 2.00839811108 -0.0205502166739
y1[1] (closed_form) = 2.00839811108 -0.0205502166739
absolute error = 1.002e-31
relative error = 4.988e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.11862613185 0.174690005932
y2[1] (closed_form) = 1.11862613185 0.174690005932
absolute error = 1.005e-31
relative error = 8.877e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.213
Order of pole (three term test) = 31.98 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.213
Order of pole (three term test) = 33.02 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=853.9MB, alloc=40.3MB, time=10.99
x[1] = 0.1181 0.178
h = 0.0001 0.004
y1[1] (numeric) = 2.00880752691 -0.0210838935875
y1[1] (closed_form) = 2.00880752691 -0.0210838935875
absolute error = 7e-33
relative error = 3.484e-31 %
Correct digits = 32
h = 0.0001 0.004
y2[1] (numeric) = 1.11969718362 0.177694995866
y2[1] (closed_form) = 1.11969718362 0.177694995866
absolute error = 1.005e-31
relative error = 8.865e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2162
Order of pole (three term test) = 31.98 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2162
Order of pole (three term test) = 33.02 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=900.9MB, alloc=40.3MB, time=11.59
x[1] = 0.1182 0.182
h = 0.003 0.006
y1[1] (numeric) = 2.00951439597 -0.0215810253281
y1[1] (closed_form) = 2.00951439597 -0.0215810253281
absolute error = 8e-33
relative error = 3.981e-31 %
Correct digits = 32
h = 0.003 0.006
y2[1] (numeric) = 1.11988342903 0.181729501103
y2[1] (closed_form) = 1.11988342903 0.181729501103
absolute error = 2.002e-31
relative error = 1.765e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2198
Order of pole (three term test) = 31.98 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2198
Order of pole (three term test) = 33.02 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1212 0.188
h = 0.0001 0.005
y1[1] (numeric) = 2.01025835835 -0.0228639871644
y1[1] (closed_form) = 2.01025835835 -0.0228639871644
absolute error = 1.003e-31
relative error = 4.990e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.12304639811 0.187722147852
y2[1] (closed_form) = 1.12304639811 0.187722147852
absolute error = 1.005e-31
relative error = 8.826e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2268
Order of pole (three term test) = 31.98 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2268
Order of pole (three term test) = 33.02 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=947.9MB, alloc=44.3MB, time=12.20
x[1] = 0.1213 0.193
h = 0.0001 0.003
y1[1] (numeric) = 2.01119727997 -0.0234987849821
y1[1] (closed_form) = 2.01119727997 -0.0234987849821
absolute error = 1.004e-31
relative error = 4.992e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.12326337695 0.192773458308
y2[1] (closed_form) = 1.12326337695 0.192773458308
absolute error = 1.005e-31
relative error = 8.818e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2314
Order of pole (three term test) = 31.98 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2314
Order of pole (three term test) = 33.02 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=994.9MB, alloc=44.3MB, time=12.80
x[1] = 0.1214 0.196
h = 0.001 0.001
y1[1] (numeric) = 2.01176781311 -0.0238882620851
y1[1] (closed_form) = 2.01176781311 -0.0238882620851
absolute error = 9e-33
relative error = 4.473e-31 %
Correct digits = 32
h = 0.001 0.001
y2[1] (numeric) = 1.12343560549 0.195805534333
y2[1] (closed_form) = 1.12343560549 0.195805534333
absolute error = 2.002e-31
relative error = 1.756e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2343
Order of pole (three term test) = 31.98 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2343
Order of pole (three term test) = 33.02 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1042.1MB, alloc=44.3MB, time=13.40
x[1] = 0.1224 0.197
h = 0.0001 0.004
y1[1] (numeric) = 2.01184015904 -0.0242085150168
y1[1] (closed_form) = 2.01184015904 -0.0242085150168
absolute error = 9e-33
relative error = 4.473e-31 %
Correct digits = 32
h = 0.0001 0.004
y2[1] (numeric) = 1.1244714577 0.196793290103
y2[1] (closed_form) = 1.1244714577 0.196793290103
absolute error = 2.002e-31
relative error = 1.754e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2357
Order of pole (three term test) = 31.98 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2357
Order of pole (three term test) = 33.02 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1089.2MB, alloc=44.3MB, time=14.00
x[1] = 0.1225 0.201
h = 0.003 0.006
y1[1] (numeric) = 2.01262296704 -0.0247266799437
y1[1] (closed_form) = 2.01262296704 -0.0247266799437
absolute error = 1.0e-32
relative error = 4.968e-31 %
Correct digits = 32
h = 0.003 0.006
y2[1] (numeric) = 1.12467055071 0.200839764217
y2[1] (closed_form) = 1.12467055071 0.200839764217
absolute error = 2.002e-31
relative error = 1.753e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2394
Order of pole (three term test) = 31.98 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2394
Order of pole (three term test) = 33.02 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1255 0.207
h = 0.0001 0.005
y1[1] (numeric) = 2.01346721491 -0.0260957947093
y1[1] (closed_form) = 2.01346721491 -0.0260957947093
absolute error = 1.1e-32
relative error = 5.463e-31 %
Correct digits = 32
h = 0.0001 0.005
y2[1] (numeric) = 1.12786212822 0.206841797121
y2[1] (closed_form) = 1.12786212822 0.206841797121
absolute error = 2.002e-31
relative error = 1.746e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2465
Order of pole (three term test) = 31.97 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2465
Order of pole (three term test) = 33.03 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1136.1MB, alloc=44.3MB, time=14.60
x[1] = 0.1256 0.212
h = 0.0001 0.003
y1[1] (numeric) = 2.01450129208 -0.0267566252526
y1[1] (closed_form) = 2.01450129208 -0.0267566252526
absolute error = 1.2e-32
relative error = 5.956e-31 %
Correct digits = 32
h = 0.0001 0.003
y2[1] (numeric) = 1.12809565679 0.211909065234
y2[1] (closed_form) = 1.12809565679 0.211909065234
absolute error = 2.002e-31
relative error = 1.745e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2513
Order of pole (three term test) = 31.97 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2513
Order of pole (three term test) = 33.03 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1183.3MB, alloc=44.3MB, time=15.20
x[1] = 0.1257 0.215
h = 0.001 0.001
y1[1] (numeric) = 2.01512876276 -0.0271625284212
y1[1] (closed_form) = 2.01512876276 -0.0271625284212
absolute error = 1.3e-32
relative error = 6.451e-31 %
Correct digits = 32
h = 0.001 0.001
y2[1] (numeric) = 1.12827801673 0.214950812089
y2[1] (closed_form) = 1.12827801673 0.214950812089
absolute error = 2.002e-31
relative error = 1.743e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2542
Order of pole (three term test) = 31.97 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2542
Order of pole (three term test) = 33.03 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1230.6MB, alloc=44.3MB, time=15.80
x[1] = 0.1267 0.216
h = 0.001 0.003
y1[1] (numeric) = 2.01521540828 -0.0275067724077
y1[1] (closed_form) = 2.01521540828 -0.0275067724077
absolute error = 1.010e-31
relative error = 5.010e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.1293205233 0.215938649698
y2[1] (closed_form) = 1.1293205233 0.215938649698
absolute error = 2e-31
relative error = 1.739e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2556
Order of pole (three term test) = 31.97 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2556
Order of pole (three term test) = 33.03 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1277.7MB, alloc=44.3MB, time=16.41
x[1] = 0.1277 0.219
h = 0.0001 0.004
y1[1] (numeric) = 2.01573788214 -0.0281138296284
y1[1] (closed_form) = 2.01573788214 -0.0281138296284
absolute error = 1.010e-31
relative error = 5.009e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.13041942861 0.218957267869
y2[1] (closed_form) = 1.13041942861 0.218957267869
absolute error = 2e-31
relative error = 1.737e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.259
Order of pole (three term test) = 31.97 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.259
Order of pole (three term test) = 33.03 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1278 0.223
h = 0.003 0.006
y1[1] (numeric) = 2.01660878108 -0.0286580356999
y1[1] (closed_form) = 2.01660878108 -0.0286580356999
absolute error = 1.011e-31
relative error = 5.014e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.13063458912 0.223019117204
y2[1] (closed_form) = 1.13063458912 0.223019117204
absolute error = 2e-31
relative error = 1.735e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2629
Order of pole (three term test) = 31.97 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2629
Order of pole (three term test) = 33.03 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1324.6MB, alloc=44.3MB, time=17.01
x[1] = 0.1308 0.229
h = 0.0001 0.005
y1[1] (numeric) = 2.01756819591 -0.0301295987246
y1[1] (closed_form) = 2.01756819591 -0.0301295987246
absolute error = 1.013e-31
relative error = 5.019e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.13386219218 0.229033462834
y2[1] (closed_form) = 1.13386219218 0.229033462834
absolute error = 1e-31
relative error = 8.645e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2701
Order of pole (three term test) = 31.97 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2701
Order of pole (three term test) = 33.03 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1371.7MB, alloc=44.3MB, time=17.61
x[1] = 0.1309 0.234
h = 0.0001 0.003
y1[1] (numeric) = 2.01871268108 -0.0308227013598
y1[1] (closed_form) = 2.01871268108 -0.0308227013598
absolute error = 1.013e-31
relative error = 5.016e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.13411638602 0.234121106838
y2[1] (closed_form) = 1.13411638602 0.234121106838
absolute error = 2e-31
relative error = 1.727e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.275
Order of pole (three term test) = 31.96 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.275
Order of pole (three term test) = 33.04 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1418.9MB, alloc=44.3MB, time=18.22
x[1] = 0.131 0.237
h = 0.001 0.001
y1[1] (numeric) = 2.01940620362 -0.0312489074978
y1[1] (closed_form) = 2.01940620362 -0.0312489074978
absolute error = 1.6e-32
relative error = 7.922e-31 %
Correct digits = 32
h = 0.001 0.001
y2[1] (numeric) = 1.13431139908 0.237175179306
y2[1] (closed_form) = 1.13431139908 0.237175179306
absolute error = 2e-31
relative error = 1.726e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.278
Order of pole (three term test) = 31.96 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.278
Order of pole (three term test) = 33.04 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1466.3MB, alloc=44.3MB, time=18.83
x[1] = 0.132 0.238
h = 0.001 0.003
y1[1] (numeric) = 2.01950903603 -0.0316214135167
y1[1] (closed_form) = 2.01950903603 -0.0316214135167
absolute error = 1.014e-31
relative error = 5.022e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.1353622917 0.238163201941
y2[1] (closed_form) = 1.1353622917 0.238163201941
absolute error = 2e-31
relative error = 1.724e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2794
Order of pole (three term test) = 31.96 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2794
Order of pole (three term test) = 33.04 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.133 0.241
h = 0.0001 0.004
y1[1] (numeric) = 2.02009214664 -0.0322688500487
y1[1] (closed_form) = 2.02009214664 -0.0322688500487
absolute error = 1.8e-32
relative error = 8.909e-31 %
Correct digits = 32
h = 0.0001 0.004
y2[1] (numeric) = 1.13647792542 0.241190657123
y2[1] (closed_form) = 1.13647792542 0.241190657123
absolute error = 2e-31
relative error = 1.721e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2828
Order of pole (three term test) = 31.96 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2828
Order of pole (three term test) = 33.04 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1513.1MB, alloc=44.3MB, time=19.42
x[1] = 0.1331 0.245
h = 0.003 0.006
y1[1] (numeric) = 2.02105140668 -0.0328395484898
y1[1] (closed_form) = 2.02105140668 -0.0328395484898
absolute error = 1.016e-31
relative error = 5.027e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.13671019882 0.245269683389
y2[1] (closed_form) = 1.13671019882 0.245269683389
absolute error = 2e-31
relative error = 1.720e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2869
Order of pole (three term test) = 31.96 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2869
Order of pole (three term test) = 33.04 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1560.1MB, alloc=44.3MB, time=20.02
x[1] = 0.1361 0.251
h = 0.0001 0.005
y1[1] (numeric) = 2.02212608268 -0.0344144544453
y1[1] (closed_form) = 2.02212608268 -0.0344144544453
absolute error = 1.9e-32
relative error = 9.395e-31 %
Correct digits = 32
h = 0.0001 0.005
y2[1] (numeric) = 1.13997670163 0.251298331088
y2[1] (closed_form) = 1.13997670163 0.251298331088
absolute error = 3e-31
relative error = 2.570e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2942
Order of pole (three term test) = 31.96 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2942
Order of pole (three term test) = 33.04 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1607.2MB, alloc=44.3MB, time=20.62
x[1] = 0.1362 0.256
h = 0.0001 0.003
y1[1] (numeric) = 2.023381336 -0.035140412088
y1[1] (closed_form) = 2.023381336 -0.035140412088
absolute error = 1.022e-31
relative error = 5.049e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.14025286316 0.256408611272
y2[1] (closed_form) = 1.14025286316 0.256408611272
absolute error = 2e-31
relative error = 1.711e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.2993
Order of pole (three term test) = 31.95 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.2993
Order of pole (three term test) = 33.05 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1654.6MB, alloc=44.3MB, time=21.23
x[1] = 0.1363 0.259
h = 0.001 0.001
y1[1] (numeric) = 2.02414112719 -0.0355872772541
y1[1] (closed_form) = 2.02414112719 -0.0355872772541
absolute error = 2.1e-32
relative error = 1.037e-30 %
Correct digits = 32
h = 0.001 0.001
y2[1] (numeric) = 1.14046133051 0.259476356295
y2[1] (closed_form) = 1.14046133051 0.259476356295
absolute error = 2e-31
relative error = 1.710e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3024
Order of pole (three term test) = 31.95 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3024
Order of pole (three term test) = 33.05 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1373 0.26
h = 0.001 0.003
y1[1] (numeric) = 2.0242601065 -0.0359882391217
y1[1] (closed_form) = 2.0242601065 -0.0359882391217
absolute error = 2.1e-32
relative error = 1.037e-30 %
Correct digits = 32
h = 0.001 0.003
y2[1] (numeric) = 1.14152131872 0.26046476933
y2[1] (closed_form) = 1.14152131872 0.26046476933
absolute error = 2e-31
relative error = 1.708e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3038
Order of pole (three term test) = 31.95 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3038
Order of pole (three term test) = 33.05 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1701.5MB, alloc=44.3MB, time=21.82
x[1] = 0.1383 0.263
h = 0.0001 0.004
y1[1] (numeric) = 2.02490396873 -0.0366764861378
y1[1] (closed_form) = 2.02490396873 -0.0366764861378
absolute error = 2.1e-32
relative error = 1.037e-30 %
Correct digits = 32
h = 0.0001 0.004
y2[1] (numeric) = 1.14265489557 0.263502181622
y2[1] (closed_form) = 1.14265489557 0.263502181622
absolute error = 2.002e-31
relative error = 1.708e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3073
Order of pole (three term test) = 31.95 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3073
Order of pole (three term test) = 33.05 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1748.5MB, alloc=44.3MB, time=22.42
x[1] = 0.1384 0.267
h = 0.003 0.006
y1[1] (numeric) = 2.02595189411 -0.0372741608594
y1[1] (closed_form) = 2.02595189411 -0.0372741608594
absolute error = 1.024e-31
relative error = 5.053e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.14290533905 0.267600190372
y2[1] (closed_form) = 1.14290533905 0.267600190372
absolute error = 2.002e-31
relative error = 1.706e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3114
Order of pole (three term test) = 31.95 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3114
Order of pole (three term test) = 33.05 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1795.6MB, alloc=44.3MB, time=23.02
x[1] = 0.1414 0.273
h = 0.0001 0.005
y1[1] (numeric) = 2.02714195396 -0.0389533784147
y1[1] (closed_form) = 2.02714195396 -0.0389533784147
absolute error = 2.3e-32
relative error = 1.134e-30 %
Correct digits = 32
h = 0.0001 0.005
y2[1] (numeric) = 1.14621363686 0.273645126931
y2[1] (closed_form) = 1.14621363686 0.273645126931
absolute error = 2.002e-31
relative error = 1.699e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3189
Order of pole (three term test) = 31.95 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3189
Order of pole (three term test) = 33.05 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1842.8MB, alloc=44.3MB, time=23.63
x[1] = 0.1415 0.278
h = 0.0001 0.003
y1[1] (numeric) = 2.02850837843 -0.0397128147928
y1[1] (closed_form) = 2.02850837843 -0.0397128147928
absolute error = 2.4e-32
relative error = 1.183e-30 %
Correct digits = 32
h = 0.0001 0.003
y2[1] (numeric) = 1.14651308381 0.278780308783
y2[1] (closed_form) = 1.14651308381 0.278780308783
absolute error = 2.002e-31
relative error = 1.697e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3242
Order of pole (three term test) = 31.94 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3242
Order of pole (three term test) = 33.06 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1416 0.281
h = 0.001 0.001
y1[1] (numeric) = 2.02933468047 -0.0401807199198
y1[1] (closed_form) = 2.02933468047 -0.0401807199198
absolute error = 2.4e-32
relative error = 1.182e-30 %
Correct digits = 32
h = 0.001 0.001
y2[1] (numeric) = 1.14673581594 0.281863076396
y2[1] (closed_form) = 1.14673581594 0.281863076396
absolute error = 2.002e-31
relative error = 1.696e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3273
Order of pole (three term test) = 31.94 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3273
Order of pole (three term test) = 33.06 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1889.8MB, alloc=44.3MB, time=24.23
x[1] = 0.1426 0.282
h = 0.001 0.003
y1[1] (numeric) = 2.0294697674 -0.0406103481919
y1[1] (closed_form) = 2.0294697674 -0.0406103481919
absolute error = 2.5e-32
relative error = 1.232e-30 %
Correct digits = 32
h = 0.001 0.003
y2[1] (numeric) = 1.14780561354 0.282852083264
y2[1] (closed_form) = 1.14780561354 0.282852083264
absolute error = 2.002e-31
relative error = 1.694e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3288
Order of pole (three term test) = 31.94 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3288
Order of pole (three term test) = 33.06 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1936.8MB, alloc=44.3MB, time=24.83
x[1] = 0.1436 0.285
h = 0.0001 0.004
y1[1] (numeric) = 2.0301745143 -0.0413398696397
y1[1] (closed_form) = 2.0301745143 -0.0413398696397
absolute error = 2.5e-32
relative error = 1.231e-30 %
Correct digits = 32
h = 0.0001 0.004
y2[1] (numeric) = 1.14895835871 0.285900573122
y2[1] (closed_form) = 1.14895835871 0.285900573122
absolute error = 2.002e-31
relative error = 1.691e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3324
Order of pole (three term test) = 31.94 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3324
Order of pole (three term test) = 33.06 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=1984.0MB, alloc=44.3MB, time=25.44
x[1] = 0.1437 0.289
h = 0.003 0.006
y1[1] (numeric) = 2.0313114434 -0.04196503753
y1[1] (closed_form) = 2.0313114434 -0.04196503753
absolute error = 2.6e-32
relative error = 1.280e-30 %
Correct digits = 32
h = 0.003 0.006
y2[1] (numeric) = 1.14922804219 0.290019374322
y2[1] (closed_form) = 1.14922804219 0.290019374322
absolute error = 2.010e-31
relative error = 1.696e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3367
Order of pole (three term test) = 31.94 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3367
Order of pole (three term test) = 33.06 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1467 0.295
h = 0.0001 0.005
y1[1] (numeric) = 2.03261703805 -0.0437496098217
y1[1] (closed_form) = 2.03261703805 -0.0437496098217
absolute error = 2.7e-32
relative error = 1.328e-30 %
Correct digits = 32
h = 0.0001 0.005
y2[1] (numeric) = 1.15258105312 0.296082584212
y2[1] (closed_form) = 1.15258105312 0.296082584212
absolute error = 2.010e-31
relative error = 1.689e-29 %
Correct digits = 31
memory used=2031.0MB, alloc=44.3MB, time=26.03
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3443
Order of pole (three term test) = 31.94 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3443
Order of pole (three term test) = 33.06 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1468 0.3
h = 0.0001 0.003
y1[1] (numeric) = 2.03409507953 -0.0445431898539
y1[1] (closed_form) = 2.03409507953 -0.0445431898539
absolute error = 2.8e-32
relative error = 1.376e-30 %
Correct digits = 32
h = 0.0001 0.003
y2[1] (numeric) = 1.15290511962 0.301244939142
y2[1] (closed_form) = 1.15290511962 0.301244939142
absolute error = 2.010e-31
relative error = 1.687e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3497
Order of pole (three term test) = 31.93 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3497
Order of pole (three term test) = 33.07 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2078.1MB, alloc=44.3MB, time=26.64
x[1] = 0.1469 0.303
h = 0.001 0.001
y1[1] (numeric) = 2.03498816002 -0.0450325409788
y1[1] (closed_form) = 2.03498816002 -0.0450325409788
absolute error = 1.038e-31
relative error = 5.102e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.15314293705 0.304344082905
y2[1] (closed_form) = 1.15314293705 0.304344082905
absolute error = 2.010e-31
relative error = 1.685e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.353
Order of pole (three term test) = 31.93 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.353
Order of pole (three term test) = 33.07 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2125.4MB, alloc=44.3MB, time=27.24
x[1] = 0.1479 0.304
h = 0.0001 0.004
y1[1] (numeric) = 2.03513931598 -0.0454910630373
y1[1] (closed_form) = 2.03513931598 -0.0454910630373
absolute error = 1.041e-31
relative error = 5.115e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.15422326242 0.305333885021
y2[1] (closed_form) = 1.15422326242 0.305333885021
absolute error = 2.022e-31
relative error = 1.694e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3544
Order of pole (three term test) = 31.93 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3544
Order of pole (three term test) = 33.07 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2172.5MB, alloc=44.3MB, time=27.84
x[1] = 0.148 0.308
h = 0.003 0.006
y1[1] (numeric) = 2.03635349007 -0.04613926912
y1[1] (closed_form) = 2.03635349007 -0.04613926912
absolute error = 3.0e-32
relative error = 1.473e-30 %
Correct digits = 32
h = 0.003 0.006
y2[1] (numeric) = 1.15451009707 0.309472283621
y2[1] (closed_form) = 1.15451009707 0.309472283621
absolute error = 2.022e-31
relative error = 1.692e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3588
Order of pole (three term test) = 31.93 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3588
Order of pole (three term test) = 33.07 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.151 0.314
h = 0.0001 0.005
y1[1] (numeric) = 2.03775994886 -0.0480140405886
y1[1] (closed_form) = 2.03775994886 -0.0480140405886
absolute error = 1.047e-31
relative error = 5.136e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.15790370128 0.315553390472
y2[1] (closed_form) = 1.15790370128 0.315553390472
absolute error = 2.022e-31
relative error = 1.685e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3666
Order of pole (three term test) = 31.93 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3666
Order of pole (three term test) = 33.07 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2219.4MB, alloc=44.3MB, time=28.44
x[1] = 0.1511 0.319
h = 0.0001 0.003
y1[1] (numeric) = 2.03933487464 -0.0488362369329
y1[1] (closed_form) = 2.03933487464 -0.0488362369329
absolute error = 1.050e-31
relative error = 5.147e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.15824968056 0.320741274242
y2[1] (closed_form) = 1.15824968056 0.320741274242
absolute error = 3.015e-31
relative error = 2.509e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3721
Order of pole (three term test) = 31.92 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3721
Order of pole (three term test) = 33.08 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2266.6MB, alloc=44.3MB, time=29.04
x[1] = 0.1512 0.322
h = 0.001 0.001
y1[1] (numeric) = 2.04028593203 -0.049343592276
y1[1] (closed_form) = 2.04028593203 -0.049343592276
absolute error = 1.053e-31
relative error = 5.160e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.158500931 0.32385579414
y2[1] (closed_form) = 1.158500931 0.32385579414
absolute error = 2.022e-31
relative error = 1.681e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3755
Order of pole (three term test) = 31.92 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3755
Order of pole (three term test) = 33.08 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2313.7MB, alloc=44.3MB, time=29.64
x[1] = 0.1522 0.323
h = 0.001 0.003
y1[1] (numeric) = 2.04045123738 -0.0498269893422
y1[1] (closed_form) = 2.04045123738 -0.0498269893422
absolute error = 1.053e-31
relative error = 5.159e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.15959088471 0.324846577615
y2[1] (closed_form) = 1.15959088471 0.324846577615
absolute error = 2.010e-31
relative error = 1.669e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.377
Order of pole (three term test) = 31.92 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.377
Order of pole (three term test) = 33.08 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2360.9MB, alloc=44.3MB, time=30.25
x[1] = 0.1532 0.326
h = 0.0001 0.004
y1[1] (numeric) = 2.04127019884 -0.0506339311263
y1[1] (closed_form) = 2.04127019884 -0.0506339311263
absolute error = 1.056e-31
relative error = 5.173e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.16078243448 0.327918927857
y2[1] (closed_form) = 1.16078243448 0.327918927857
absolute error = 2.010e-31
relative error = 1.666e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3807
Order of pole (three term test) = 31.92 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3807
Order of pole (three term test) = 33.08 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1533 0.33
h = 0.003 0.006
y1[1] (numeric) = 2.04257410438 -0.0513106760591
y1[1] (closed_form) = 2.04257410438 -0.0513106760591
absolute error = 1.059e-31
relative error = 5.185e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.16109051522 0.332081513707
y2[1] (closed_form) = 1.16109051522 0.332081513707
absolute error = 1.020e-31
relative error = 8.445e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3853
Order of pole (three term test) = 31.92 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3853
Order of pole (three term test) = 33.08 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2407.8MB, alloc=44.3MB, time=30.85
x[1] = 0.1563 0.336
h = 0.0001 0.005
y1[1] (numeric) = 2.04409646806 -0.0532929406906
y1[1] (closed_form) = 2.04409646806 -0.0532929406906
absolute error = 1.063e-31
relative error = 5.198e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.16453430587 0.338184616598
y2[1] (closed_form) = 1.16453430587 0.338184616598
absolute error = 1.020e-31
relative error = 8.410e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3932
Order of pole (three term test) = 31.91 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3932
Order of pole (three term test) = 33.09 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2454.8MB, alloc=44.3MB, time=31.45
x[1] = 0.1564 0.341
h = 0.0001 0.003
y1[1] (numeric) = 2.04578396391 -0.0541506224751
y1[1] (closed_form) = 2.04578396391 -0.0541506224751
absolute error = 1.063e-31
relative error = 5.193e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.16490740759 0.343403934662
y2[1] (closed_form) = 1.16490740759 0.343403934662
absolute error = 1.020e-31
relative error = 8.397e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.3989
Order of pole (three term test) = 31.91 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.3989
Order of pole (three term test) = 33.09 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2502.1MB, alloc=44.3MB, time=32.05
x[1] = 0.1565 0.344
h = 0.001 0.001
y1[1] (numeric) = 2.046802371 -0.0546802431283
y1[1] (closed_form) = 2.046802371 -0.0546802431283
absolute error = 1.063e-31
relative error = 5.191e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.16517528284 0.346537370287
y2[1] (closed_form) = 1.16517528284 0.346537370287
absolute error = 1.020e-31
relative error = 8.389e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4024
Order of pole (three term test) = 31.91 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4024
Order of pole (three term test) = 33.09 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2549.3MB, alloc=44.3MB, time=32.66
x[1] = 0.1575 0.345
h = 0.001 0.003
y1[1] (numeric) = 2.04698367824 -0.0551930026442
y1[1] (closed_form) = 2.04698367824 -0.0551930026442
absolute error = 3.6e-32
relative error = 1.758e-30 %
Correct digits = 32
h = 0.001 0.003
y2[1] (numeric) = 1.16627711233 0.347529326872
y2[1] (closed_form) = 1.16627711233 0.347529326872
absolute error = 2.002e-31
relative error = 1.645e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4039
Order of pole (three term test) = 31.91 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4039
Order of pole (three term test) = 33.09 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1585 0.348
h = 0.0001 0.004
y1[1] (numeric) = 2.04786401178 -0.0560427270402
y1[1] (closed_form) = 2.04786401178 -0.0560427270402
absolute error = 1.066e-31
relative error = 5.205e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.16749138741 0.350615979092
y2[1] (closed_form) = 1.16749138741 0.350615979092
absolute error = 1.005e-31
relative error = 8.244e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4077
Order of pole (three term test) = 31.91 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4077
Order of pole (three term test) = 33.1 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2596.1MB, alloc=44.3MB, time=33.25
x[1] = 0.1586 0.352
h = 0.003 0.006
y1[1] (numeric) = 2.04925808543 -0.0567486234603
y1[1] (closed_form) = 2.04925808543 -0.0567486234603
absolute error = 1.066e-31
relative error = 5.201e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.1678218255 0.35480457816
y2[1] (closed_form) = 1.1678218255 0.35480457816
absolute error = 1.005e-31
relative error = 8.234e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4124
Order of pole (three term test) = 31.9 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4124
Order of pole (three term test) = 33.1 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2643.1MB, alloc=44.3MB, time=33.85
x[1] = 0.1616 0.358
h = 0.0001 0.005
y1[1] (numeric) = 2.05089658578 -0.0588396400566
y1[1] (closed_form) = 2.05089658578 -0.0588396400566
absolute error = 1.066e-31
relative error = 5.197e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.17131879605 0.360931656483
y2[1] (closed_form) = 1.17131879605 0.360931656483
absolute error = 1e-32
relative error = 8.159e-31 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4205
Order of pole (three term test) = 31.9 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4205
Order of pole (three term test) = 33.1 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2690.1MB, alloc=44.3MB, time=34.46
x[1] = 0.1617 0.363
h = 0.0001 0.003
y1[1] (numeric) = 2.05269722104 -0.0597335918718
y1[1] (closed_form) = 2.05269722104 -0.0597335918718
absolute error = 1.066e-31
relative error = 5.192e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.17172040754 0.366184701432
y2[1] (closed_form) = 1.17172040754 0.366184701432
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4264
Order of pole (three term test) = 31.9 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4264
Order of pole (three term test) = 33.1 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2737.4MB, alloc=44.3MB, time=35.06
x[1] = 0.1618 0.366
h = 0.001 0.001
y1[1] (numeric) = 2.05378331863 -0.0602859568118
y1[1] (closed_form) = 2.05378331863 -0.0602859568118
absolute error = 1.066e-31
relative error = 5.189e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.17200576052 0.369338418916
y2[1] (closed_form) = 1.17200576052 0.369338418916
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.43
Order of pole (three term test) = 31.89 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.43
Order of pole (three term test) = 33.11 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1628 0.367
h = 0.001 0.003
y1[1] (numeric) = 2.05398059082 -0.0608283548403
y1[1] (closed_form) = 2.05398059082 -0.0608283548403
absolute error = 3.7e-32
relative error = 1.801e-30 %
Correct digits = 32
h = 0.001 0.003
y2[1] (numeric) = 1.17312019947 0.370331743901
y2[1] (closed_form) = 1.17312019947 0.370331743901
absolute error = 1e-32
relative error = 8.129e-31 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4316
Order of pole (three term test) = 31.89 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4316
Order of pole (three term test) = 33.11 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2784.4MB, alloc=44.3MB, time=35.66
x[1] = 0.1638 0.37
h = 0.0001 0.004
y1[1] (numeric) = 2.05492249965 -0.0617214545662
y1[1] (closed_form) = 2.05492249965 -0.0617214545662
absolute error = 3.7e-32
relative error = 1.800e-30 %
Correct digits = 32
h = 0.0001 0.004
y2[1] (numeric) = 1.17435847335 0.373433822183
y2[1] (closed_form) = 1.17435847335 0.373433822183
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4355
Order of pole (three term test) = 31.89 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4355
Order of pole (three term test) = 33.11 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2831.4MB, alloc=44.3MB, time=36.26
x[1] = 0.1639 0.374
h = 0.003 0.006
y1[1] (numeric) = 2.05640721236 -0.0624571494307
y1[1] (closed_form) = 2.05640721236 -0.0624571494307
absolute error = 3.7e-32
relative error = 1.798e-30 %
Correct digits = 32
h = 0.003 0.006
y2[1] (numeric) = 1.17471239629 0.377650267082
y2[1] (closed_form) = 1.17471239629 0.377650267082
absolute error = 1e-31
relative error = 8.104e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4403
Order of pole (three term test) = 31.89 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4403
Order of pole (three term test) = 33.11 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2878.6MB, alloc=44.3MB, time=36.87
x[1] = 0.1669 0.38
h = 0.0001 0.005
y1[1] (numeric) = 2.05816210876 -0.0646582534612
y1[1] (closed_form) = 2.05816210876 -0.0646582534612
absolute error = 3.8e-32
relative error = 1.845e-30 %
Correct digits = 32
h = 0.0001 0.005
y2[1] (numeric) = 1.17826557003 0.383803298756
y2[1] (closed_form) = 1.17826557003 0.383803298756
absolute error = 1e-31
relative error = 8.070e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4486
Order of pole (three term test) = 31.88 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4486
Order of pole (three term test) = 33.12 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2925.6MB, alloc=44.3MB, time=37.47
x[1] = 0.167 0.385
h = 0.0001 0.003
y1[1] (numeric) = 2.0600764959 -0.0655893028202
y1[1] (closed_form) = 2.0600764959 -0.0655893028202
absolute error = 3.8e-32
relative error = 1.844e-30 %
Correct digits = 32
h = 0.0001 0.003
y2[1] (numeric) = 1.17869709951 0.389092371911
y2[1] (closed_form) = 1.17869709951 0.389092371911
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4548
Order of pole (three term test) = 31.88 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4548
Order of pole (three term test) = 33.12 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1671 0.388
h = 0.001 0.001
y1[1] (numeric) = 2.06123065034 -0.0661649171799
y1[1] (closed_form) = 2.06123065034 -0.0661649171799
absolute error = 3.8e-32
relative error = 1.843e-30 %
Correct digits = 32
h = 0.001 0.001
y2[1] (numeric) = 1.17900079581 0.392267742556
y2[1] (closed_form) = 1.17900079581 0.392267742556
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4585
Order of pole (three term test) = 31.88 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4585
Order of pole (three term test) = 33.12 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=2972.9MB, alloc=44.3MB, time=38.07
x[1] = 0.1681 0.389
h = 0.001 0.003
y1[1] (numeric) = 2.06144385093 -0.06673724702
y1[1] (closed_form) = 2.06144385093 -0.06673724702
absolute error = 3.8e-32
relative error = 1.842e-30 %
Correct digits = 32
h = 0.001 0.003
y2[1] (numeric) = 1.18012858398 0.393262628912
y2[1] (closed_form) = 1.18012858398 0.393262628912
absolute error = 1e-31
relative error = 8.039e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.46
Order of pole (three term test) = 31.88 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.46
Order of pole (three term test) = 33.12 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3020.1MB, alloc=44.3MB, time=38.68
x[1] = 0.1691 0.392
h = 0.0001 0.004
y1[1] (numeric) = 2.06244755619 -0.0676743489303
y1[1] (closed_form) = 2.06244755619 -0.0676743489303
absolute error = 3.8e-32
relative error = 1.841e-30 %
Correct digits = 32
h = 0.0001 0.004
y2[1] (numeric) = 1.18139214467 0.396381258778
y2[1] (closed_form) = 1.18139214467 0.396381258778
absolute error = 1.005e-31
relative error = 8.065e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4641
Order of pole (three term test) = 31.88 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4641
Order of pole (three term test) = 33.12 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3067.1MB, alloc=44.3MB, time=39.27
x[1] = 0.1692 0.396
h = 0.003 0.006
y1[1] (numeric) = 2.0640234133 -0.0684405239204
y1[1] (closed_form) = 2.0640234133 -0.0684405239204
absolute error = 1.073e-31
relative error = 5.197e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.18177069718 0.400627389341
y2[1] (closed_form) = 1.18177069718 0.400627389341
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4691
Order of pole (three term test) = 31.87 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4691
Order of pole (three term test) = 33.13 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3114.2MB, alloc=44.3MB, time=39.88
x[1] = 0.1722 0.402
h = 0.0001 0.005
y1[1] (numeric) = 2.06589499251 -0.0707531281916
y1[1] (closed_form) = 2.06589499251 -0.0707531281916
absolute error = 3.8e-32
relative error = 1.838e-30 %
Correct digits = 32
h = 0.0001 0.005
y2[1] (numeric) = 1.18538312907 0.40680835101
y2[1] (closed_form) = 1.18538312907 0.40680835101
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4776
Order of pole (three term test) = 31.87 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4776
Order of pole (three term test) = 33.13 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1723 0.407
h = 0.0001 0.003
y1[1] (numeric) = 2.06792378719 -0.0717221460499
y1[1] (closed_form) = 2.06792378719 -0.0717221460499
absolute error = 3.8e-32
relative error = 1.836e-30 %
Correct digits = 32
h = 0.0001 0.003
y2[1] (numeric) = 1.18584600679 0.41213576314
y2[1] (closed_form) = 1.18584600679 0.41213576314
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4839
Order of pole (three term test) = 31.87 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4839
Order of pole (three term test) = 33.14 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3161.1MB, alloc=44.3MB, time=40.47
x[1] = 0.1724 0.41
h = 0.001 0.001
y1[1] (numeric) = 2.06914639045 -0.0723215414344
y1[1] (closed_form) = 2.06914639045 -0.0723215414344
absolute error = 3.9e-32
relative error = 1.884e-30 %
Correct digits = 32
h = 0.001 0.001
y2[1] (numeric) = 1.18616892543 0.415334163842
y2[1] (closed_form) = 1.18616892543 0.415334163842
absolute error = 1e-32
relative error = 7.957e-31 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4877
Order of pole (three term test) = 31.86 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4877
Order of pole (three term test) = 33.14 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3208.3MB, alloc=44.3MB, time=41.08
x[1] = 0.1734 0.411
h = 0.0001 0.004
y1[1] (numeric) = 2.06937548317 -0.0729241137464
y1[1] (closed_form) = 2.06937548317 -0.0729241137464
absolute error = 3.8e-32
relative error = 1.835e-30 %
Correct digits = 32
h = 0.0001 0.004
y2[1] (numeric) = 1.18731080903 0.416330802141
y2[1] (closed_form) = 1.18731080903 0.416330802141
absolute error = 0
relative error = 0 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4893
Order of pole (three term test) = 31.86 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4893
Order of pole (three term test) = 33.14 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3255.4MB, alloc=44.3MB, time=41.68
x[1] = 0.1735 0.415
h = 0.003 0.006
y1[1] (numeric) = 2.07103060008 -0.0737160031704
y1[1] (closed_form) = 2.07103060008 -0.0737160031704
absolute error = 3.8e-32
relative error = 1.834e-30 %
Correct digits = 32
h = 0.003 0.006
y2[1] (numeric) = 1.18771110875 0.420604276634
y2[1] (closed_form) = 1.18771110875 0.420604276634
absolute error = 1e-32
relative error = 7.937e-31 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.4945
Order of pole (three term test) = 31.86 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.4945
Order of pole (three term test) = 33.14 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1765 0.421
h = 0.0001 0.005
y1[1] (numeric) = 2.0730042189 -0.076124378964
y1[1] (closed_form) = 2.0730042189 -0.076124378964
absolute error = 3.8e-32
relative error = 1.832e-30 %
Correct digits = 32
h = 0.0001 0.005
y2[1] (numeric) = 1.19137665525 0.426811617548
y2[1] (closed_form) = 1.19137665525 0.426811617548
absolute error = 1.005e-31
relative error = 7.941e-30 %
Correct digits = 31
memory used=3302.4MB, alloc=44.3MB, time=42.27
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5032
Order of pole (three term test) = 31.85 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5032
Order of pole (three term test) = 33.15 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1766 0.426
h = 0.0001 0.003
y1[1] (numeric) = 2.07513251711 -0.0771254355981
y1[1] (closed_form) = 2.07513251711 -0.0771254355981
absolute error = 3.8e-32
relative error = 1.830e-30 %
Correct digits = 32
h = 0.0001 0.003
y2[1] (numeric) = 1.19186718516 0.43217428577
y2[1] (closed_form) = 1.19186718516 0.43217428577
absolute error = 1.020e-31
relative error = 8.044e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5097
Order of pole (three term test) = 31.85 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5097
Order of pole (three term test) = 33.15 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3349.5MB, alloc=44.3MB, time=42.87
x[1] = 0.1767 0.429
h = 0.001 0.001
y1[1] (numeric) = 2.07641466469 -0.0777449248564
y1[1] (closed_form) = 2.07641466469 -0.0777449248564
absolute error = 1.073e-31
relative error = 5.166e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.19220706764 0.43539386063
y2[1] (closed_form) = 1.19220706764 0.43539386063
absolute error = 1.020e-31
relative error = 8.035e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5136
Order of pole (three term test) = 31.85 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5136
Order of pole (three term test) = 33.15 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3396.7MB, alloc=44.3MB, time=43.48
x[1] = 0.1777 0.43
h = 0.001 0.003
y1[1] (numeric) = 2.07665777353 -0.0783736022804
y1[1] (closed_form) = 2.07665777353 -0.0783736022804
absolute error = 3.9e-32
relative error = 1.877e-30 %
Correct digits = 32
h = 0.001 0.003
y2[1] (numeric) = 1.19336166296 0.436392337778
y2[1] (closed_form) = 1.19336166296 0.436392337778
absolute error = 1.020e-31
relative error = 8.026e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5153
Order of pole (three term test) = 31.85 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5153
Order of pole (three term test) = 33.15 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3443.9MB, alloc=44.3MB, time=44.08
x[1] = 0.1787 0.433
h = 0.0001 0.004
y1[1] (numeric) = 2.07777766086 -0.0793936255503
y1[1] (closed_form) = 2.07777766086 -0.0793936255503
absolute error = 3.9e-32
relative error = 1.876e-30 %
Correct digits = 32
h = 0.0001 0.004
y2[1] (numeric) = 1.19467552906 0.439545105871
y2[1] (closed_form) = 1.19467552906 0.439545105871
absolute error = 1e-32
relative error = 7.856e-31 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5195
Order of pole (three term test) = 31.85 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5195
Order of pole (three term test) = 33.16 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1788 0.437
h = 0.003 0.006
y1[1] (numeric) = 2.07952496334 -0.0802173504665
y1[1] (closed_form) = 2.07952496334 -0.0802173504665
absolute error = 1.070e-31
relative error = 5.140e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.19510261529 0.44385172486
y2[1] (closed_form) = 1.19510261529 0.44385172486
absolute error = 1e-32
relative error = 7.844e-31 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5248
Order of pole (three term test) = 31.84 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5248
Order of pole (three term test) = 33.16 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3490.9MB, alloc=44.3MB, time=44.67
x[1] = 0.1818 0.443
h = 0.0001 0.005
y1[1] (numeric) = 2.08161588983 -0.0827400595285
y1[1] (closed_form) = 2.08161588983 -0.0827400595285
absolute error = 1.073e-31
relative error = 5.152e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.19883317169 0.450090708459
y2[1] (closed_form) = 1.19883317169 0.450090708459
absolute error = 2e-32
relative error = 1.562e-30 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5338
Order of pole (three term test) = 31.84 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5338
Order of pole (three term test) = 33.16 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3537.9MB, alloc=44.3MB, time=45.27
x[1] = 0.1819 0.448
h = 0.0001 0.003
y1[1] (numeric) = 2.08385994262 -0.0837808138071
y1[1] (closed_form) = 2.08385994262 -0.0837808138071
absolute error = 1.070e-31
relative error = 5.129e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.19935774612 0.455496060783
y2[1] (closed_form) = 1.19935774612 0.455496060783
absolute error = 2e-32
relative error = 1.559e-30 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5405
Order of pole (three term test) = 31.83 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5405
Order of pole (three term test) = 33.17 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3585.1MB, alloc=44.3MB, time=45.88
x[1] = 0.182 0.451
h = 0.001 0.001
y1[1] (numeric) = 2.0852113438 -0.0844251395041
y1[1] (closed_form) = 2.0852113438 -0.0844251395041
absolute error = 1.070e-31
relative error = 5.126e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.19971850818 0.458741255002
y2[1] (closed_form) = 1.19971850818 0.458741255002
absolute error = 2e-32
relative error = 1.557e-30 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5446
Order of pole (three term test) = 31.83 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5446
Order of pole (three term test) = 33.17 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3632.4MB, alloc=44.3MB, time=46.48
x[1] = 0.183 0.452
h = 0.001 0.003
y1[1] (numeric) = 2.0854702819 -0.085084684565
y1[1] (closed_form) = 2.0854702819 -0.085084684565
absolute error = 1.070e-31
relative error = 5.125e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.20088860374 0.459741841098
y2[1] (closed_form) = 1.20088860374 0.459741841098
absolute error = 2e-32
relative error = 1.555e-30 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5463
Order of pole (three term test) = 31.83 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5463
Order of pole (three term test) = 33.17 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.184 0.455
h = 0.0001 0.004
y1[1] (numeric) = 2.08665270596 -0.0861506915662
y1[1] (closed_form) = 2.08665270596 -0.0861506915662
absolute error = 1.070e-31
relative error = 5.122e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.20223151582 0.462914406448
y2[1] (closed_form) = 1.20223151582 0.462914406448
absolute error = 2e-32
relative error = 1.552e-30 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5507
Order of pole (three term test) = 31.83 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5507
Order of pole (three term test) = 33.17 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3679.2MB, alloc=44.3MB, time=47.08
x[1] = 0.1841 0.459
h = 0.003 0.006
y1[1] (numeric) = 2.08849279854 -0.0870070350314
y1[1] (closed_form) = 2.08849279854 -0.0870070350314
absolute error = 1.066e-31
relative error = 5.101e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.20268658765 0.467256033816
y2[1] (closed_form) = 1.20268658765 0.467256033816
absolute error = 2e-32
relative error = 1.550e-30 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5562
Order of pole (three term test) = 31.82 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5562
Order of pole (three term test) = 33.18 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3726.3MB, alloc=44.3MB, time=47.68
x[1] = 0.1871 0.465
h = 0.0001 0.005
y1[1] (numeric) = 2.09070139764 -0.0896457151636
y1[1] (closed_form) = 2.09070139764 -0.0896457151636
absolute error = 1.066e-31
relative error = 5.095e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.20648530983 0.473528634562
y2[1] (closed_form) = 1.20648530983 0.473528634562
absolute error = 3e-32
relative error = 2.315e-30 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5653
Order of pole (three term test) = 31.82 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5653
Order of pole (three term test) = 33.18 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3773.4MB, alloc=44.3MB, time=48.29
x[1] = 0.1872 0.47
h = 0.0001 0.003
y1[1] (numeric) = 2.0930619854 -0.0907271649432
y1[1] (closed_form) = 2.0930619854 -0.0907271649432
absolute error = 1.066e-31
relative error = 5.089e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.20704542858 0.478979013072
y2[1] (closed_form) = 1.20704542858 0.478979013072
absolute error = 1.044e-31
relative error = 8.040e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5723
Order of pole (three term test) = 31.81 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5723
Order of pole (three term test) = 33.19 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3820.7MB, alloc=44.3MB, time=48.90
x[1] = 0.1873 0.473
h = 0.001 0.001
y1[1] (numeric) = 2.09448310605 -0.0913969360123
y1[1] (closed_form) = 2.09448310605 -0.0913969360123
absolute error = 1.070e-31
relative error = 5.103e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.20742799154 0.482251222072
y2[1] (closed_form) = 1.20742799154 0.482251222072
absolute error = 3e-32
relative error = 2.307e-30 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5766
Order of pole (three term test) = 31.81 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5766
Order of pole (three term test) = 33.19 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1883 0.474
h = 0.001 0.003
y1[1] (numeric) = 2.09475783765 -0.0920877098006
y1[1] (closed_form) = 2.09475783765 -0.0920877098006
absolute error = 1.070e-31
relative error = 5.102e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.20861435416 0.483254100418
y2[1] (closed_form) = 1.20861435416 0.483254100418
absolute error = 1.044e-31
relative error = 8.021e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5783
Order of pole (three term test) = 31.81 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5783
Order of pole (three term test) = 33.19 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3867.7MB, alloc=44.3MB, time=49.50
x[1] = 0.1893 0.477
h = 0.0001 0.004
y1[1] (numeric) = 2.09600308892 -0.0932004623123
y1[1] (closed_form) = 2.09600308892 -0.0932004623123
absolute error = 3.8e-32
relative error = 1.811e-30 %
Correct digits = 32
h = 0.0001 0.004
y2[1] (numeric) = 1.20998766437 0.48644759628
y2[1] (closed_form) = 1.20998766437 0.48644759628
absolute error = 1.077e-31
relative error = 8.259e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5828
Order of pole (three term test) = 31.81 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5828
Order of pole (three term test) = 33.19 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3914.7MB, alloc=44.3MB, time=50.10
x[1] = 0.1894 0.481
h = 0.003 0.006
y1[1] (numeric) = 2.09793661082 -0.0940902438952
y1[1] (closed_form) = 2.09793661082 -0.0940902438952
absolute error = 3.8e-32
relative error = 1.809e-30 %
Correct digits = 32
h = 0.003 0.006
y2[1] (numeric) = 1.21047194183 0.490826105342
y2[1] (closed_form) = 1.21047194183 0.490826105342
absolute error = 1.077e-31
relative error = 8.246e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.5885
Order of pole (three term test) = 31.8 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.5885
Order of pole (three term test) = 33.2 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=3961.7MB, alloc=44.3MB, time=50.70
x[1] = 0.1924 0.487
h = 0.0001 0.005
y1[1] (numeric) = 2.10026327411 -0.0968466132164
y1[1] (closed_form) = 2.10026327411 -0.0968466132164
absolute error = 1.073e-31
relative error = 5.105e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.2143420246 0.497134297128
y2[1] (closed_form) = 1.2143420246 0.497134297128
absolute error = 1.077e-31
relative error = 8.208e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.598
Order of pole (three term test) = 31.8 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.598
Order of pole (three term test) = 33.2 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4008.8MB, alloc=44.3MB, time=51.30
x[1] = 0.1925 0.492
h = 0.0001 0.003
y1[1] (numeric) = 2.10274122087 -0.0979698020854
y1[1] (closed_form) = 2.10274122087 -0.0979698020854
absolute error = 1.073e-31
relative error = 5.099e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.21493921416 0.502632056145
y2[1] (closed_form) = 1.21493921416 0.502632056145
absolute error = 4e-32
relative error = 3.042e-30 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.6052
Order of pole (three term test) = 31.79 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.6052
Order of pole (three term test) = 33.21 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1926 0.495
h = 0.001 0.001
y1[1] (numeric) = 2.10423255271 -0.0986656553211
y1[1] (closed_form) = 2.10423255271 -0.0986656553211
absolute error = 1.077e-31
relative error = 5.113e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.21534451557 0.50593268258
y2[1] (closed_form) = 1.21534451557 0.50593268258
absolute error = 3e-32
relative error = 2.279e-30 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.6096
Order of pole (three term test) = 31.79 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.6096
Order of pole (three term test) = 33.21 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4055.9MB, alloc=44.3MB, time=51.90
x[1] = 0.1936 0.496
h = 0.001 0.003
y1[1] (numeric) = 2.10452304197 -0.0993880368486
y1[1] (closed_form) = 2.10452304197 -0.0993880368486
absolute error = 1.077e-31
relative error = 5.112e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.21654792004 0.506938033732
y2[1] (closed_form) = 1.21654792004 0.506938033732
absolute error = 4e-32
relative error = 3.035e-30 %
Correct digits = 32
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.6113
Order of pole (three term test) = 31.79 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.6113
Order of pole (three term test) = 33.21 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4103.1MB, alloc=44.3MB, time=52.51
x[1] = 0.1946 0.499
h = 0.0001 0.004
y1[1] (numeric) = 2.10583142866 -0.100548332615
y1[1] (closed_form) = 2.10583142866 -0.100548332615
absolute error = 4e-32
relative error = 1.897e-30 %
Correct digits = 32
h = 0.0001 0.004
y2[1] (numeric) = 1.21795299929 0.510153595812
y2[1] (closed_form) = 1.21795299929 0.510153595812
absolute error = 1.077e-31
relative error = 8.156e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.616
Order of pole (three term test) = 31.79 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.616
Order of pole (three term test) = 33.21 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4150.2MB, alloc=44.3MB, time=53.11
x[1] = 0.1947 0.503
h = 0.003 0.006
y1[1] (numeric) = 2.10785905392 -0.101472408919
y1[1] (closed_form) = 2.10785905392 -0.101472408919
absolute error = 1.044e-31
relative error = 4.947e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.21846772431 0.514570869889
y2[1] (closed_form) = 1.21846772431 0.514570869889
absolute error = 1.077e-31
relative error = 8.143e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.6219
Order of pole (three term test) = 31.78 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.6219
Order of pole (three term test) = 33.22 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4197.3MB, alloc=44.3MB, time=53.71
x[1] = 0.1977 0.509
h = 0.0001 0.005
y1[1] (numeric) = 2.11030419934 -0.10434826674
y1[1] (closed_form) = 2.11030419934 -0.10434826674
absolute error = 3e-32
relative error = 1.420e-30 %
Correct digits = 32
h = 0.0001 0.005
y2[1] (numeric) = 1.22241240331 0.520916626191
y2[1] (closed_form) = 1.22241240331 0.520916626191
absolute error = 1.077e-31
relative error = 8.105e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.6317
Order of pole (three term test) = 31.78 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.6317
Order of pole (three term test) = 33.22 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.1978 0.514
h = 0.0001 0.003
y1[1] (numeric) = 2.1129003729 -0.105514284687
y1[1] (closed_form) = 2.1129003729 -0.105514284687
absolute error = 1.044e-31
relative error = 4.935e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.22304821813 0.526464132994
y2[1] (closed_form) = 1.22304821813 0.526464132994
absolute error = 1.077e-31
relative error = 8.089e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.6392
Order of pole (three term test) = 31.77 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.6392
Order of pole (three term test) = 33.23 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4244.1MB, alloc=44.3MB, time=54.31
x[1] = 0.1979 0.517
h = 0.001 0.001
y1[1] (numeric) = 2.11446243357 -0.106236885149
y1[1] (closed_form) = 2.11446243357 -0.106236885149
absolute error = 1.044e-31
relative error = 4.931e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.22347721254 0.529794587172
y2[1] (closed_form) = 1.22347721254 0.529794587172
absolute error = 1.077e-31
relative error = 8.078e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.6437
Order of pole (three term test) = 31.77 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.6437
Order of pole (three term test) = 33.23 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4291.4MB, alloc=44.3MB, time=54.92
x[1] = 0.1989 0.518
h = 0.0001 0.004
y1[1] (numeric) = 2.11476864446 -0.106991271513
y1[1] (closed_form) = 2.11476864446 -0.106991271513
absolute error = 1.044e-31
relative error = 4.931e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.22469844199 0.530802588836
y2[1] (closed_form) = 1.22469844199 0.530802588836
absolute error = 1.077e-31
relative error = 8.069e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.6455
Order of pole (three term test) = 31.77 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.6455
Order of pole (three term test) = 33.23 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4338.4MB, alloc=44.3MB, time=55.52
x[1] = 0.199 0.522
h = 0.003 0.006
y1[1] (numeric) = 2.11687826023 -0.107944449662
y1[1] (closed_form) = 2.11687826023 -0.107944449662
absolute error = 1.044e-31
relative error = 4.926e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.22523989476 0.535255129962
y2[1] (closed_form) = 1.22523989476 0.535255129962
absolute error = 2.040e-31
relative error = 1.525e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.6516
Order of pole (three term test) = 31.77 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.6516
Order of pole (three term test) = 33.24 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4385.5MB, alloc=44.3MB, time=56.12
x[1] = 0.202 0.528
h = 0.0001 0.005
y1[1] (numeric) = 2.11942719981 -0.110923244089
y1[1] (closed_form) = 2.11942719981 -0.110923244089
absolute error = 1.044e-31
relative error = 4.919e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.22925092786 0.541635742479
y2[1] (closed_form) = 1.22925092786 0.541635742479
absolute error = 2.040e-31
relative error = 1.518e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.6616
Order of pole (three term test) = 31.76 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.6616
Order of pole (three term test) = 33.24 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2021 0.533
h = 0.0001 0.003
y1[1] (numeric) = 2.12212639623 -0.112125613455
y1[1] (closed_form) = 2.12212639623 -0.112125613455
absolute error = 1.077e-31
relative error = 5.068e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.22992062582 0.547228462435
y2[1] (closed_form) = 1.22992062582 0.547228462435
absolute error = 1.077e-31
relative error = 8.001e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.6694
Order of pole (three term test) = 31.75 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.6694
Order of pole (three term test) = 33.25 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4432.3MB, alloc=44.3MB, time=56.71
x[1] = 0.2022 0.536
h = 0.001 0.001
y1[1] (numeric) = 2.12375010223 -0.112870940099
y1[1] (closed_form) = 2.12375010223 -0.112870940099
absolute error = 1.077e-31
relative error = 5.064e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.23037041397 0.550586024862
y2[1] (closed_form) = 1.23037041397 0.550586024862
absolute error = 1.077e-31
relative error = 7.990e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.6741
Order of pole (three term test) = 31.75 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.6741
Order of pole (three term test) = 33.25 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4479.6MB, alloc=44.3MB, time=57.32
x[1] = 0.2032 0.537
h = 0.001 0.003
y1[1] (numeric) = 2.12407020471 -0.113653020395
y1[1] (closed_form) = 2.12407020471 -0.113653020395
absolute error = 1.077e-31
relative error = 5.063e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.23160758594 0.551596673241
y2[1] (closed_form) = 1.23160758594 0.551596673241
absolute error = 2.040e-31
relative error = 1.511e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.6759
Order of pole (three term test) = 31.75 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.6759
Order of pole (three term test) = 33.25 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4526.7MB, alloc=44.3MB, time=57.92
x[1] = 0.2042 0.54
h = 0.0001 0.004
y1[1] (numeric) = 2.12549754312 -0.114903269739
y1[1] (closed_form) = 2.12549754312 -0.114903269739
absolute error = 1.077e-31
relative error = 5.060e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.23307520164 0.554856745278
y2[1] (closed_form) = 1.23307520164 0.554856745278
absolute error = 2.040e-31
relative error = 1.508e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.6809
Order of pole (three term test) = 31.75 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.6809
Order of pole (three term test) = 33.25 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2043 0.544
h = 0.003 0.006
y1[1] (numeric) = 2.1277026207 -0.115892427998
y1[1] (closed_form) = 2.1277026207 -0.115892427998
absolute error = 1.077e-31
relative error = 5.054e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.23364945198 0.55935159987
y2[1] (closed_form) = 1.23364945198 0.55935159987
absolute error = 2.062e-31
relative error = 1.522e-29 %
Correct digits = 31
memory used=4573.9MB, alloc=44.3MB, time=58.52
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.6872
Order of pole (three term test) = 31.74 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.6872
Order of pole (three term test) = 33.26 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2073 0.55
h = 0.0001 0.005
y1[1] (numeric) = 2.1303709133 -0.118994272584
y1[1] (closed_form) = 2.1303709133 -0.118994272584
absolute error = 1.077e-31
relative error = 5.048e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.23774119391 0.565773488247
y2[1] (closed_form) = 1.23774119391 0.565773488247
absolute error = 2.040e-31
relative error = 1.499e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.6975
Order of pole (three term test) = 31.74 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.6975
Order of pole (three term test) = 33.26 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4620.8MB, alloc=44.3MB, time=59.12
x[1] = 0.2074 0.555
h = 0.0001 0.003
y1[1] (numeric) = 2.13319008261 -0.120241613581
y1[1] (closed_form) = 2.13319008261 -0.120241613581
absolute error = 1.118e-31
relative error = 5.233e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.23845245972 0.571420417242
y2[1] (closed_form) = 1.23845245972 0.571420417242
absolute error = 3.027e-31
relative error = 2.219e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.7056
Order of pole (three term test) = 31.73 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.7056
Order of pole (three term test) = 33.27 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4668.1MB, alloc=44.3MB, time=59.72
x[1] = 0.2075 0.558
h = 0.001 0.001
y1[1] (numeric) = 2.13488555869 -0.121014994772
y1[1] (closed_form) = 2.13488555869 -0.121014994772
absolute error = 1.077e-31
relative error = 5.037e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.23892774789 0.574810465358
y2[1] (closed_form) = 1.23892774789 0.574810465358
absolute error = 3.041e-31
relative error = 2.227e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.7105
Order of pole (three term test) = 31.73 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.7105
Order of pole (three term test) = 33.27 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4715.3MB, alloc=44.3MB, time=60.33
x[1] = 0.2085 0.559
h = 0.001 0.003
y1[1] (numeric) = 2.13522132013 -0.121829867983
y1[1] (closed_form) = 2.13522132013 -0.121829867983
absolute error = 1.118e-31
relative error = 5.228e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.24018422359 0.575824096575
y2[1] (closed_form) = 1.24018422359 0.575824096575
absolute error = 3.041e-31
relative error = 2.224e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.7123
Order of pole (three term test) = 31.73 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.7123
Order of pole (three term test) = 33.28 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2095 0.562
h = 0.0001 0.004
y1[1] (numeric) = 2.13671278427 -0.123130140954
y1[1] (closed_form) = 2.13671278427 -0.123130140954
absolute error = 1.077e-31
relative error = 5.032e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.24168762801 0.579109516289
y2[1] (closed_form) = 1.24168762801 0.579109516289
absolute error = 3.041e-31
relative error = 2.220e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.7175
Order of pole (three term test) = 31.72 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.7175
Order of pole (three term test) = 33.28 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4762.2MB, alloc=44.3MB, time=60.93
x[1] = 0.2096 0.566
h = 0.003 0.006
y1[1] (numeric) = 2.13901409833 -0.124156244567
y1[1] (closed_form) = 2.13901409833 -0.124156244567
absolute error = 1.077e-31
relative error = 5.027e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.24229598602 0.583648599727
y2[1] (closed_form) = 1.24229598602 0.583648599727
absolute error = 3.027e-31
relative error = 2.205e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.7241
Order of pole (three term test) = 31.72 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.7241
Order of pole (three term test) = 33.28 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4809.3MB, alloc=44.3MB, time=61.53
x[1] = 0.2126 0.572
h = 0.0001 0.005
y1[1] (numeric) = 2.14180223707 -0.127383175806
y1[1] (closed_form) = 2.14180223707 -0.127383175806
absolute error = 4e-32
relative error = 1.864e-30 %
Correct digits = 32
h = 0.0001 0.005
y2[1] (numeric) = 1.24647179999 0.590113737583
y2[1] (closed_form) = 1.24647179999 0.590113737583
absolute error = 3.027e-31
relative error = 2.195e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.7347
Order of pole (three term test) = 31.71 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.7347
Order of pole (three term test) = 33.29 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4856.4MB, alloc=44.3MB, time=62.13
x[1] = 0.2127 0.577
h = 0.0001 0.003
y1[1] (numeric) = 2.1447423737 -0.128676714606
y1[1] (closed_form) = 2.1447423737 -0.128676714606
absolute error = 1.077e-31
relative error = 5.013e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.2472262749 0.595817284301
y2[1] (closed_form) = 1.2472262749 0.595817284301
absolute error = 3.027e-31
relative error = 2.190e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.7431
Order of pole (three term test) = 31.71 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.7431
Order of pole (three term test) = 33.3 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4903.7MB, alloc=44.3MB, time=62.74
x[1] = 0.2128 0.58
h = 0.001 0.001
y1[1] (numeric) = 2.14651021251 -0.129478898361
y1[1] (closed_form) = 2.14651021251 -0.129478898361
absolute error = 1.077e-31
relative error = 5.008e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.2477280704 0.59924125286
y2[1] (closed_form) = 1.2477280704 0.59924125286
absolute error = 3.041e-31
relative error = 2.197e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.7482
Order of pole (three term test) = 31.7 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.7482
Order of pole (three term test) = 33.3 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2138 0.581
h = 0.001 0.003
y1[1] (numeric) = 2.14686159593 -0.130327014312
y1[1] (closed_form) = 2.14686159593 -0.130327014312
absolute error = 1.077e-31
relative error = 5.008e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.24900465909 0.60025803602
y2[1] (closed_form) = 1.24900465909 0.60025803602
absolute error = 3.041e-31
relative error = 2.195e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.7501
Order of pole (three term test) = 31.7 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.7501
Order of pole (three term test) = 33.3 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4950.8MB, alloc=44.3MB, time=63.35
x[1] = 0.2148 0.584
h = 0.0001 0.004
y1[1] (numeric) = 2.14841756257 -0.131678251571
y1[1] (closed_form) = 2.14841756257 -0.131678251571
absolute error = 1.077e-31
relative error = 5.004e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.25054530389 0.603569950688
y2[1] (closed_form) = 1.25054530389 0.603569950688
absolute error = 3.041e-31
relative error = 2.190e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.7554
Order of pole (three term test) = 31.7 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.7554
Order of pole (three term test) = 33.3 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=4997.8MB, alloc=44.3MB, time=63.95
x[1] = 0.2149 0.588
h = 0.003 0.006
y1[1] (numeric) = 2.150815923 -0.132742305069
y1[1] (closed_form) = 2.150815923 -0.132742305069
absolute error = 1.077e-31
relative error = 4.998e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.25118910551 0.608155190564
y2[1] (closed_form) = 1.25118910551 0.608155190564
absolute error = 3.041e-31
relative error = 2.186e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.7622
Order of pole (three term test) = 31.69 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.7622
Order of pole (three term test) = 33.31 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5044.9MB, alloc=44.3MB, time=64.55
x[1] = 0.2179 0.594
h = 0.0001 0.005
y1[1] (numeric) = 2.15372442649 -0.136096444436
y1[1] (closed_form) = 2.15372442649 -0.136096444436
absolute error = 4e-32
relative error = 1.854e-30 %
Correct digits = 32
h = 0.0001 0.005
y2[1] (numeric) = 1.25545240316 0.61466555163
y2[1] (closed_form) = 1.25545240316 0.61466555163
absolute error = 3.041e-31
relative error = 2.176e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.7733
Order of pole (three term test) = 31.69 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.7733
Order of pole (three term test) = 33.31 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5092.1MB, alloc=44.3MB, time=65.16
x[1] = 0.218 0.599
h = 0.0001 0.003
y1[1] (numeric) = 2.15678656924 -0.137437456484
y1[1] (closed_form) = 2.15678656924 -0.137437456484
absolute error = 4e-32
relative error = 1.851e-30 %
Correct digits = 32
h = 0.0001 0.003
y2[1] (numeric) = 1.25625176132 0.62042814049
y2[1] (closed_form) = 1.25625176132 0.62042814049
absolute error = 3.041e-31
relative error = 2.171e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.782
Order of pole (three term test) = 31.68 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.782
Order of pole (three term test) = 33.32 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2181 0.602
h = 0.001 0.001
y1[1] (numeric) = 2.15862738968 -0.138269220829
y1[1] (closed_form) = 2.15862738968 -0.138269220829
absolute error = 4e-32
relative error = 1.849e-30 %
Correct digits = 32
h = 0.001 0.001
y2[1] (numeric) = 1.25678109146 0.623887473529
y2[1] (closed_form) = 1.25678109146 0.623887473529
absolute error = 3.041e-31
relative error = 2.168e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.7872
Order of pole (three term test) = 31.68 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.7872
Order of pole (three term test) = 33.32 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5139.2MB, alloc=44.3MB, time=65.76
x[1] = 0.2191 0.603
h = 0.001 0.003
y1[1] (numeric) = 2.1589943575 -0.139151048143
y1[1] (closed_form) = 2.1589943575 -0.139151048143
absolute error = 1.077e-31
relative error = 4.978e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.2580786123 0.624907574485
y2[1] (closed_form) = 1.2580786123 0.624907574485
absolute error = 2.062e-31
relative error = 1.468e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.7892
Order of pole (three term test) = 31.68 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.7892
Order of pole (three term test) = 33.33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5186.3MB, alloc=44.3MB, time=66.36
x[1] = 0.2201 0.606
h = 0.0001 0.004
y1[1] (numeric) = 2.16061522089 -0.140554228629
y1[1] (closed_form) = 2.16061522089 -0.140554228629
absolute error = 1.077e-31
relative error = 4.974e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.25965797228 0.628247134777
y2[1] (closed_form) = 1.25965797228 0.628247134777
absolute error = 2.088e-31
relative error = 1.483e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.7947
Order of pole (three term test) = 31.67 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.7947
Order of pole (three term test) = 33.33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5233.3MB, alloc=44.3MB, time=66.96
x[1] = 0.2202 0.61
h = 0.003 0.006
y1[1] (numeric) = 2.16311147303 -0.141657276478
y1[1] (closed_form) = 2.16311147303 -0.141657276478
absolute error = 1.077e-31
relative error = 4.968e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.26033858041 0.632880471461
y2[1] (closed_form) = 1.26033858041 0.632880471461
absolute error = 2.088e-31
relative error = 1.481e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.8018
Order of pole (three term test) = 31.67 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.8018
Order of pole (three term test) = 33.33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5280.4MB, alloc=44.3MB, time=67.57
x[1] = 0.2232 0.616
h = 0.0001 0.005
y1[1] (numeric) = 2.16614088506 -0.145140831516
y1[1] (closed_form) = 2.16614088506 -0.145140831516
absolute error = 1.118e-31
relative error = 5.150e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.2646928238 0.639438029682
y2[1] (closed_form) = 1.2646928238 0.639438029682
absolute error = 3.059e-31
relative error = 2.159e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.8133
Order of pole (three term test) = 31.66 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.8133
Order of pole (three term test) = 33.34 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2233 0.621
h = 0.0001 0.003
y1[1] (numeric) = 2.16932611729 -0.146530642357
y1[1] (closed_form) = 2.16932611729 -0.146530642357
absolute error = 1.118e-31
relative error = 5.142e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.26553877359 0.645262101556
y2[1] (closed_form) = 1.26553877359 0.645262101556
absolute error = 2.088e-31
relative error = 1.470e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.8223
Order of pole (three term test) = 31.66 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.8223
Order of pole (three term test) = 33.35 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5327.3MB, alloc=44.3MB, time=68.16
x[1] = 0.2234 0.624
h = 0.001 0.001
y1[1] (numeric) = 2.17124056466 -0.147392795823
y1[1] (closed_form) = 2.17124056466 -0.147392795823
absolute error = 1.118e-31
relative error = 5.137e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.26609668649 0.648758252816
y2[1] (closed_form) = 1.26609668649 0.648758252816
absolute error = 2.088e-31
relative error = 1.468e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.8278
Order of pole (three term test) = 31.65 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.8278
Order of pole (three term test) = 33.35 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5374.6MB, alloc=44.3MB, time=68.77
x[1] = 0.2244 0.625
h = 0.0001 0.004
y1[1] (numeric) = 2.17162307852 -0.14830882213
y1[1] (closed_form) = 2.17162307852 -0.14830882213
absolute error = 2.062e-31
relative error = 9.471e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.26741596895 0.649781834048
y2[1] (closed_form) = 1.26741596895 0.649781834048
absolute error = 3.041e-31
relative error = 2.135e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.8298
Order of pole (three term test) = 31.65 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.8298
Order of pole (three term test) = 33.35 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5421.8MB, alloc=44.3MB, time=69.37
x[1] = 0.2245 0.629
h = 0.003 0.006
y1[1] (numeric) = 2.17420477878 -0.149445121938
y1[1] (closed_form) = 2.17420477878 -0.149445121938
absolute error = 1.077e-31
relative error = 4.942e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.26812876697 0.654458595881
y2[1] (closed_form) = 1.26812876697 0.654458595881
absolute error = 3.041e-31
relative error = 2.131e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.8372
Order of pole (three term test) = 31.65 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.8372
Order of pole (three term test) = 33.36 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5468.9MB, alloc=44.3MB, time=69.97
x[1] = 0.2275 0.635
h = 0.0001 0.005
y1[1] (numeric) = 2.17734029839 -0.153040458423
y1[1] (closed_form) = 2.17734029839 -0.153040458423
absolute error = 1.118e-31
relative error = 5.122e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.27256351154 0.661059501194
y2[1] (closed_form) = 1.27256351154 0.661059501194
absolute error = 3.059e-31
relative error = 2.133e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.8489
Order of pole (three term test) = 31.64 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.8489
Order of pole (three term test) = 33.36 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2276 0.64
h = 0.0001 0.003
y1[1] (numeric) = 2.18063298733 -0.154471889345
y1[1] (closed_form) = 2.18063298733 -0.154471889345
absolute error = 1.118e-31
relative error = 5.114e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.27345018874 0.666939046621
y2[1] (closed_form) = 1.27345018874 0.666939046621
absolute error = 2.088e-31
relative error = 1.453e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.8583
Order of pole (three term test) = 31.63 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.8583
Order of pole (three term test) = 33.37 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5515.7MB, alloc=44.3MB, time=70.57
x[1] = 0.2277 0.643
h = 0.001 0.001
y1[1] (numeric) = 2.18261172293 -0.155359983885
y1[1] (closed_form) = 2.18261172293 -0.155359983885
absolute error = 2.062e-31
relative error = 9.422e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.27403309817 0.670468419478
y2[1] (closed_form) = 1.27403309817 0.670468419478
absolute error = 2.088e-31
relative error = 1.450e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.8639
Order of pole (three term test) = 31.63 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.8639
Order of pole (three term test) = 33.38 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5562.9MB, alloc=44.3MB, time=71.17
x[1] = 0.2287 0.644
h = 0.001 0.003
y1[1] (numeric) = 2.18300800258 -0.156305668146
y1[1] (closed_form) = 2.18300800258 -0.156305668146
absolute error = 2.062e-31
relative error = 9.420e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.27537174069 0.671495396738
y2[1] (closed_form) = 1.27537174069 0.671495396738
absolute error = 2.088e-31
relative error = 1.449e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.866
Order of pole (three term test) = 31.63 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.866
Order of pole (three term test) = 33.38 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5610.2MB, alloc=44.3MB, time=71.78
x[1] = 0.2297 0.647
h = 0.0001 0.004
y1[1] (numeric) = 2.18475138096 -0.157807456753
y1[1] (closed_form) = 2.18475138096 -0.157807456753
absolute error = 2.062e-31
relative error = 9.412e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.27702678727 0.674889977815
y2[1] (closed_form) = 1.27702678727 0.674889977815
absolute error = 2.088e-31
relative error = 1.446e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.872
Order of pole (three term test) = 31.62 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.872
Order of pole (three term test) = 33.38 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5657.3MB, alloc=44.3MB, time=72.38
x[1] = 0.2298 0.651
h = 0.003 0.006
y1[1] (numeric) = 2.18743265414 -0.158984791963
y1[1] (closed_form) = 2.18743265414 -0.158984791963
absolute error = 2.062e-31
relative error = 9.400e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.27777897965 0.679618500022
y2[1] (closed_form) = 1.27777897965 0.679618500022
absolute error = 2.088e-31
relative error = 1.443e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.8796
Order of pole (three term test) = 31.62 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.8796
Order of pole (three term test) = 33.39 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2328 0.657
h = 0.0001 0.005
y1[1] (numeric) = 2.19069018914 -0.162713877657
y1[1] (closed_form) = 2.19069018914 -0.162713877657
absolute error = 2.062e-31
relative error = 9.385e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.28231122977 0.686270319178
y2[1] (closed_form) = 1.28231122977 0.686270319178
absolute error = 2.119e-31
relative error = 1.457e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.8918
Order of pole (three term test) = 31.61 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.8918
Order of pole (three term test) = 33.39 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5704.2MB, alloc=44.3MB, time=72.97
x[1] = 0.2329 0.662
h = 0.0001 0.003
y1[1] (numeric) = 2.19410811989 -0.164196696031
y1[1] (closed_form) = 2.19410811989 -0.164196696031
absolute error = 2.062e-31
relative error = 9.370e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.28324774368 0.692215957118
y2[1] (closed_form) = 1.28324774368 0.692215957118
absolute error = 1.221e-31
relative error = 8.372e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.9015
Order of pole (three term test) = 31.6 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.9015
Order of pole (three term test) = 33.4 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5751.5MB, alloc=44.3MB, time=73.58
x[1] = 0.233 0.665
h = 0.001 0.001
y1[1] (numeric) = 2.19616176422 -0.165116758738
y1[1] (closed_form) = 2.19616176422 -0.165116758738
absolute error = 2.088e-31
relative error = 9.481e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.28386122671 0.695784893628
y2[1] (closed_form) = 1.28386122671 0.695784893628
absolute error = 2.119e-31
relative error = 1.451e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.9074
Order of pole (three term test) = 31.6 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.9074
Order of pole (three term test) = 33.41 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5798.8MB, alloc=44.3MB, time=74.18
x[1] = 0.234 0.666
h = 0.001 0.003
y1[1] (numeric) = 2.19657352245 -0.166097601157
y1[1] (closed_form) = 2.19657352245 -0.166097601157
absolute error = 2.088e-31
relative error = 9.479e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.28522320137 0.696815654319
y2[1] (closed_form) = 1.28522320137 0.696815654319
absolute error = 2.119e-31
relative error = 1.449e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.9096
Order of pole (three term test) = 31.6 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.9096
Order of pole (three term test) = 33.41 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.235 0.669
h = 0.0001 0.004
y1[1] (numeric) = 2.19838303506 -0.167654344407
y1[1] (closed_form) = 2.19838303506 -0.167654344407
absolute error = 3.059e-31
relative error = 1.388e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.28692130472 0.700241211747
y2[1] (closed_form) = 1.28692130472 0.700241211747
absolute error = 1.221e-31
relative error = 8.332e-30 %
Correct digits = 31
memory used=5845.8MB, alloc=44.3MB, time=74.78
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.9157
Order of pole (three term test) = 31.59 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.9157
Order of pole (three term test) = 33.41 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2351 0.673
h = 0.003 0.006
y1[1] (numeric) = 2.20116482903 -0.168873877114
y1[1] (closed_form) = 2.20116482903 -0.168873877114
absolute error = 2.088e-31
relative error = 9.458e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.28771433718 0.705023474745
y2[1] (closed_form) = 1.28771433718 0.705023474745
absolute error = 2.119e-31
relative error = 1.443e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.9236
Order of pole (three term test) = 31.59 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.9236
Order of pole (three term test) = 33.42 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5892.7MB, alloc=44.3MB, time=75.38
x[1] = 0.2381 0.679
h = 0.0001 0.005
y1[1] (numeric) = 2.20454499492 -0.172739171907
y1[1] (closed_form) = 2.20454499492 -0.172739171907
absolute error = 2.119e-31
relative error = 9.582e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.29234771052 0.711728183458
y2[1] (closed_form) = 1.29234771052 0.711728183458
absolute error = 1.221e-31
relative error = 8.274e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.9363
Order of pole (three term test) = 31.58 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.9363
Order of pole (three term test) = 33.42 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5939.7MB, alloc=44.3MB, time=75.98
x[1] = 0.2382 0.684
h = 0.0001 0.003
y1[1] (numeric) = 2.20808937996 -0.174274850906
y1[1] (closed_form) = 2.20808937996 -0.174274850906
absolute error = 2.119e-31
relative error = 9.567e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.29333587474 0.717742406252
y2[1] (closed_form) = 1.29333587474 0.717742406252
absolute error = 1.281e-31
relative error = 8.658e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.9464
Order of pole (three term test) = 31.57 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.9464
Order of pole (three term test) = 33.43 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=5987.1MB, alloc=44.3MB, time=76.59
x[1] = 0.2383 0.687
h = 0.001 0.001
y1[1] (numeric) = 2.21021865477 -0.175227780203
y1[1] (closed_form) = 2.21021865477 -0.175227780203
absolute error = 2.088e-31
relative error = 9.418e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.29398104342 0.7213523905
y2[1] (closed_form) = 1.29398104342 0.7213523905
absolute error = 7e-32
relative error = 4.725e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.9525
Order of pole (three term test) = 31.57 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.9525
Order of pole (three term test) = 33.44 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2393 0.688
h = 0.001 0.003
y1[1] (numeric) = 2.21064585055 -0.176244323998
y1[1] (closed_form) = 2.21064585055 -0.176244323998
absolute error = 3.059e-31
relative error = 1.380e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.29536721156 0.722387086932
y2[1] (closed_form) = 1.29536721156 0.722387086932
absolute error = 8e-32
relative error = 5.394e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.9548
Order of pole (three term test) = 31.57 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.9548
Order of pole (three term test) = 33.44 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6034.1MB, alloc=44.3MB, time=77.19
x[1] = 0.2403 0.691
h = 0.0001 0.004
y1[1] (numeric) = 2.21252195933 -0.177857153656
y1[1] (closed_form) = 2.21252195933 -0.177857153656
absolute error = 3.059e-31
relative error = 1.378e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.29710994479 0.725844786474
y2[1] (closed_form) = 1.29710994479 0.725844786474
absolute error = 8e-32
relative error = 5.382e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.9612
Order of pole (three term test) = 31.56 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.9612
Order of pole (three term test) = 33.44 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6081.2MB, alloc=44.3MB, time=77.79
x[1] = 0.2404 0.695
h = 0.003 0.006
y1[1] (numeric) = 2.21540525796 -0.179120088638
y1[1] (closed_form) = 2.21540525796 -0.179120088638
absolute error = 3.059e-31
relative error = 1.376e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.2979452942 0.730682785655
y2[1] (closed_form) = 1.2979452942 0.730682785655
absolute error = 8e-32
relative error = 5.371e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.9694
Order of pole (three term test) = 31.56 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.9694
Order of pole (three term test) = 33.45 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6128.1MB, alloc=44.3MB, time=78.39
x[1] = 0.2434 0.701
h = 0.0001 0.005
y1[1] (numeric) = 2.21890869438 -0.18312414312
y1[1] (closed_form) = 2.21890869438 -0.18312414312
absolute error = 3.059e-31
relative error = 1.374e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.30268346688 0.73744236017
y2[1] (closed_form) = 1.30268346688 0.73744236017
absolute error = 9e-32
relative error = 6.012e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.9825
Order of pole (three term test) = 31.55 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.9825
Order of pole (three term test) = 33.46 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6175.2MB, alloc=44.3MB, time=78.99
x[1] = 0.2435 0.706
h = 0.0001 0.003
y1[1] (numeric) = 2.22258079154 -0.184714209508
y1[1] (closed_form) = 2.22258079154 -0.184714209508
absolute error = 3.059e-31
relative error = 1.372e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.30372513456 0.743527679381
y2[1] (closed_form) = 1.30372513456 0.743527679381
absolute error = 8e-32
relative error = 5.330e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.9931
Order of pole (three term test) = 31.54 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.9931
Order of pole (three term test) = 33.46 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2436 0.709
h = 0.001 0.001
y1[1] (numeric) = 2.22478644535 -0.185700936442
y1[1] (closed_form) = 2.22478644535 -0.185700936442
absolute error = 3.059e-31
relative error = 1.370e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.30440312495 0.747180206777
y2[1] (closed_form) = 1.30440312495 0.747180206777
absolute error = 9e-32
relative error = 5.987e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 0.9995
Order of pole (three term test) = 31.54 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 0.9995
Order of pole (three term test) = 33.47 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6222.3MB, alloc=44.3MB, time=79.59
x[1] = 0.2446 0.71
h = 0.001 0.003
y1[1] (numeric) = 2.22522903638 -0.186753744708
y1[1] (closed_form) = 2.22522903638 -0.186753744708
absolute error = 3.059e-31
relative error = 1.370e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.30581435986 0.748218987413
y2[1] (closed_form) = 1.30581435986 0.748218987413
absolute error = 9e-32
relative error = 5.980e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.002
Order of pole (three term test) = 31.54 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.002
Order of pole (three term test) = 33.47 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6269.4MB, alloc=44.3MB, time=80.19
x[1] = 0.2456 0.713
h = 0.0001 0.004
y1[1] (numeric) = 2.22717222056 -0.188423833642
y1[1] (closed_form) = 2.22717222056 -0.188423833642
absolute error = 3.059e-31
relative error = 1.369e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.30760332392 0.751709999076
y2[1] (closed_form) = 1.30760332392 0.751709999076
absolute error = 9e-32
relative error = 5.967e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.008
Order of pole (three term test) = 31.53 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.008
Order of pole (three term test) = 33.47 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6316.6MB, alloc=44.3MB, time=80.80
x[1] = 0.2457 0.717
h = 0.003 0.006
y1[1] (numeric) = 2.23015804386 -0.189731419135
y1[1] (closed_form) = 2.23015804386 -0.189731419135
absolute error = 3.059e-31
relative error = 1.367e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.30848249944 0.756605745377
y2[1] (closed_form) = 1.30848249944 0.756605745377
absolute error = 9e-32
relative error = 5.954e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.017
Order of pole (three term test) = 31.53 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.017
Order of pole (three term test) = 33.48 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6363.7MB, alloc=44.3MB, time=81.40
x[1] = 0.2487 0.723
h = 0.0001 0.005
y1[1] (numeric) = 2.2337854143 -0.19387687591
y1[1] (closed_form) = 2.2337854143 -0.19387687591
absolute error = 2.088e-31
relative error = 9.313e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.31332920816 0.763422162512
y2[1] (closed_form) = 1.31332920816 0.763422162512
absolute error = 1.345e-31
relative error = 8.856e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.031
Order of pole (three term test) = 31.52 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.031
Order of pole (three term test) = 33.49 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2488 0.728
h = 0.0001 0.003
y1[1] (numeric) = 2.23758652693 -0.195522911033
y1[1] (closed_form) = 2.23758652693 -0.195522911033
absolute error = 2.062e-31
relative error = 9.178e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.31442627342 0.769581109641
y2[1] (closed_form) = 1.31442627342 0.769581109641
absolute error = 1.345e-31
relative error = 8.833e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.042
Order of pole (three term test) = 31.51 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.042
Order of pole (three term test) = 33.5 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6410.6MB, alloc=44.3MB, time=81.99
x[1] = 0.2489 0.731
h = 0.001 0.001
y1[1] (numeric) = 2.23986933524 -0.196544399873
y1[1] (closed_form) = 2.23986933524 -0.196544399873
absolute error = 2.062e-31
relative error = 9.169e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.31513824646 0.773277687335
y2[1] (closed_form) = 1.31513824646 0.773277687335
absolute error = 1.345e-31
relative error = 8.818e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.048
Order of pole (three term test) = 31.51 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.048
Order of pole (three term test) = 33.5 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6457.9MB, alloc=44.3MB, time=82.61
x[1] = 0.2499 0.732
h = 0.0001 0.004
y1[1] (numeric) = 2.24032727777 -0.197634055829
y1[1] (closed_form) = 2.24032727777 -0.197634055829
absolute error = 3.041e-31
relative error = 1.352e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.31657543382 0.774320696654
y2[1] (closed_form) = 1.31657543382 0.774320696654
absolute error = 1.345e-31
relative error = 8.808e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.051
Order of pole (three term test) = 31.5 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.051
Order of pole (three term test) = 33.5 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6505.0MB, alloc=44.3MB, time=83.22
x[1] = 0.25 0.736
h = 0.003 0.006
y1[1] (numeric) = 2.24340274838 -0.198979869842
y1[1] (closed_form) = 2.24340274838 -0.198979869842
absolute error = 3.041e-31
relative error = 1.350e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.31749284662 0.779268319478
y2[1] (closed_form) = 1.31749284662 0.779268319478
absolute error = 1.345e-31
relative error = 8.789e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.06
Order of pole (three term test) = 31.5 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.06
Order of pole (three term test) = 33.51 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6552.2MB, alloc=44.3MB, time=83.82
x[1] = 0.253 0.742
h = 0.0001 0.005
y1[1] (numeric) = 2.24713907531 -0.203247740885
y1[1] (closed_form) = 2.24713907531 -0.203247740885
absolute error = 3.041e-31
relative error = 1.348e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.32243531047 0.786136602907
y2[1] (closed_form) = 1.32243531047 0.786136602907
absolute error = 1.281e-31
relative error = 8.324e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.074
Order of pole (three term test) = 31.49 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.074
Order of pole (three term test) = 33.52 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2531 0.747
h = 0.0001 0.003
y1[1] (numeric) = 2.25105301216 -0.204941701948
y1[1] (closed_form) = 2.25105301216 -0.204941701948
absolute error = 2.062e-31
relative error = 9.120e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.32358069077 0.792361660785
y2[1] (closed_form) = 1.32358069077 0.792361660785
absolute error = 1.281e-31
relative error = 8.302e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.085
Order of pole (three term test) = 31.48 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.085
Order of pole (three term test) = 33.53 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6599.2MB, alloc=44.3MB, time=84.42
x[1] = 0.2532 0.75
h = 0.001 0.001
y1[1] (numeric) = 2.25340330449 -0.205992978524
y1[1] (closed_form) = 2.25340330449 -0.205992978524
absolute error = 2.062e-31
relative error = 9.111e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.32432231487 0.796097795764
y2[1] (closed_form) = 1.32432231487 0.796097795764
absolute error = 2.193e-31
relative error = 1.419e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.092
Order of pole (three term test) = 31.48 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.092
Order of pole (three term test) = 33.53 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6646.4MB, alloc=44.3MB, time=85.03
x[1] = 0.2542 0.751
h = 0.001 0.003
y1[1] (numeric) = 2.2538748736 -0.207114652195
y1[1] (closed_form) = 2.2538748736 -0.207114652195
absolute error = 3.041e-31
relative error = 1.344e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.3257825076 0.797144881281
y2[1] (closed_form) = 1.3257825076 0.797144881281
absolute error = 2.154e-31
relative error = 1.392e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.094
Order of pole (three term test) = 31.47 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.094
Order of pole (three term test) = 33.53 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6693.7MB, alloc=44.3MB, time=85.64
x[1] = 0.2552 0.754
h = 0.0001 0.004
y1[1] (numeric) = 2.25594492087 -0.208893739119
y1[1] (closed_form) = 2.25594492087 -0.208893739119
absolute error = 2.062e-31
relative error = 9.099e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.32766142705 0.800701605346
y2[1] (closed_form) = 1.32766142705 0.800701605346
absolute error = 2.154e-31
relative error = 1.389e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.102
Order of pole (three term test) = 31.47 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.102
Order of pole (three term test) = 33.54 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6740.7MB, alloc=44.3MB, time=86.24
x[1] = 0.2553 0.758
h = 0.0001 0.004
y1[1] (numeric) = 2.25912492715 -0.210286631604
y1[1] (closed_form) = 2.25912492715 -0.210286631604
absolute error = 2.062e-31
relative error = 9.086e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.32862553967 0.805710779413
y2[1] (closed_form) = 1.32862553967 0.805710779413
absolute error = 1.281e-31
relative error = 8.242e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.111
Order of pole (three term test) = 31.46 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.111
Order of pole (three term test) = 33.55 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2554 0.762
h = 0.003 0.006
y1[1] (numeric) = 2.26232489863 -0.211683893879
y1[1] (closed_form) = 2.26232489863 -0.211683893879
absolute error = 2.062e-31
relative error = 9.073e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.32959555158 0.810732573911
y2[1] (closed_form) = 1.32959555158 0.810732573911
absolute error = 2.154e-31
relative error = 1.383e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.12
Order of pole (three term test) = 31.46 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.12
Order of pole (three term test) = 33.55 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6787.6MB, alloc=44.3MB, time=86.83
x[1] = 0.2584 0.768
h = 0.0001 0.005
y1[1] (numeric) = 2.26621372943 -0.216119287686
y1[1] (closed_form) = 2.26621372943 -0.216119287686
absolute error = 2.088e-31
relative error = 9.172e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.33467173681 0.817676484628
y2[1] (closed_form) = 1.33467173681 0.817676484628
absolute error = 2.154e-31
relative error = 1.376e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.135
Order of pole (three term test) = 31.45 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.135
Order of pole (three term test) = 33.56 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6834.6MB, alloc=44.3MB, time=87.43
x[1] = 0.2585 0.773
h = 0.0001 0.003
y1[1] (numeric) = 2.27028437459 -0.21787775553
y1[1] (closed_form) = 2.27028437459 -0.21787775553
absolute error = 2.088e-31
relative error = 9.155e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.33588355128 0.823996016976
y2[1] (closed_form) = 1.33588355128 0.823996016976
absolute error = 1.345e-31
relative error = 8.572e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.147
Order of pole (three term test) = 31.44 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.147
Order of pole (three term test) = 33.57 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6881.9MB, alloc=44.3MB, time=88.04
x[1] = 0.2586 0.776
h = 0.001 0.001
y1[1] (numeric) = 2.2727284224 -0.21896916811
y1[1] (closed_form) = 2.2727284224 -0.21896916811
absolute error = 2.088e-31
relative error = 9.145e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.33666597153 0.827788691023
y2[1] (closed_form) = 1.33666597153 0.827788691023
absolute error = 1.281e-31
relative error = 8.145e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.154
Order of pole (three term test) = 31.43 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.154
Order of pole (three term test) = 33.58 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6929.0MB, alloc=44.3MB, time=88.65
x[1] = 0.2596 0.777
h = 0.001 0.003
y1[1] (numeric) = 2.27321932576 -0.220134895664
y1[1] (closed_form) = 2.27321932576 -0.220134895664
absolute error = 2.088e-31
relative error = 9.143e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.33815849726 0.828842113114
y2[1] (closed_form) = 1.33815849726 0.828842113114
absolute error = 2.154e-31
relative error = 1.368e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.157
Order of pole (three term test) = 31.43 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.157
Order of pole (three term test) = 33.58 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2606 0.78
h = 0.0001 0.004
y1[1] (numeric) = 2.2753721271 -0.221982918078
y1[1] (closed_form) = 2.2753721271 -0.221982918078
absolute error = 2.088e-31
relative error = 9.133e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.34009596661 0.832443939954
y2[1] (closed_form) = 1.34009596661 0.832443939954
absolute error = 2.154e-31
relative error = 1.365e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.164
Order of pole (three term test) = 31.43 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.164
Order of pole (three term test) = 33.58 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=6976.0MB, alloc=44.3MB, time=89.24
x[1] = 0.2607 0.784
h = 0.003 0.006
y1[1] (numeric) = 2.27867800967 -0.223428835531
y1[1] (closed_form) = 2.27867800967 -0.223428835531
absolute error = 2.088e-31
relative error = 9.120e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.34111449093 0.837529762931
y2[1] (closed_form) = 1.34111449093 0.837529762931
absolute error = 1.281e-31
relative error = 8.099e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.174
Order of pole (three term test) = 31.42 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.174
Order of pole (three term test) = 33.59 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7023.1MB, alloc=44.3MB, time=89.84
x[1] = 0.2637 0.79
h = 0.0001 0.005
y1[1] (numeric) = 2.28269307582 -0.228014188885
y1[1] (closed_form) = 2.28269307582 -0.228014188885
absolute error = 1.221e-31
relative error = 5.321e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.34631084392 0.844536711474
y2[1] (closed_form) = 1.34631084392 0.844536711474
absolute error = 1.281e-31
relative error = 8.058e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.189
Order of pole (three term test) = 31.41 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.189
Order of pole (three term test) = 33.6 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7070.2MB, alloc=44.3MB, time=90.44
x[1] = 0.2638 0.795
h = 0.0001 0.003
y1[1] (numeric) = 2.2868970587 -0.22983369543
y1[1] (closed_form) = 2.2868970587 -0.22983369543
absolute error = 1.221e-31
relative error = 5.311e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.34758393995 0.850937781192
y2[1] (closed_form) = 1.34758393995 0.850937781192
absolute error = 1.281e-31
relative error = 8.035e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.202
Order of pole (three term test) = 31.4 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.202
Order of pole (three term test) = 33.61 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2639 0.798
h = 0.001 0.001
y1[1] (numeric) = 2.28942083297 -0.230962962143
y1[1] (closed_form) = 2.28942083297 -0.230962962143
absolute error = 1.221e-31
relative error = 5.305e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.34840395003 0.85477921536
y2[1] (closed_form) = 1.34840395003 0.85477921536
absolute error = 1.281e-31
relative error = 8.021e-30 %
Correct digits = 31
memory used=7117.5MB, alloc=44.3MB, time=91.05
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.209
Order of pole (three term test) = 31.4 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.209
Order of pole (three term test) = 33.61 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2649 0.799
h = 0.001 0.003
y1[1] (numeric) = 2.28992697687 -0.232167434898
y1[1] (closed_form) = 2.28992697687 -0.232167434898
absolute error = 2.119e-31
relative error = 9.206e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.34992518895 0.85583732432
y2[1] (closed_form) = 1.34992518895 0.85583732432
absolute error = 8e-32
relative error = 5.005e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.212
Order of pole (three term test) = 31.4 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.212
Order of pole (three term test) = 33.62 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7164.6MB, alloc=44.3MB, time=91.66
x[1] = 0.2659 0.802
h = 0.0001 0.004
y1[1] (numeric) = 2.29214902791 -0.234077851003
y1[1] (closed_form) = 2.29214902791 -0.234077851003
absolute error = 2.119e-31
relative error = 9.197e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.35191559174 0.859477314253
y2[1] (closed_form) = 1.35191559174 0.859477314253
absolute error = 8e-32
relative error = 4.994e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.22
Order of pole (three term test) = 31.39 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.22
Order of pole (three term test) = 33.62 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7211.8MB, alloc=44.3MB, time=92.26
x[1] = 0.266 0.806
h = 0.003 0.006
y1[1] (numeric) = 2.29556199159 -0.235573853852
y1[1] (closed_form) = 2.29556199159 -0.235573853852
absolute error = 2.119e-31
relative error = 9.182e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.35298427893 0.864629246913
y2[1] (closed_form) = 1.35298427893 0.864629246913
absolute error = 1.281e-31
relative error = 7.976e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.23
Order of pole (three term test) = 31.38 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.23
Order of pole (three term test) = 33.63 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7258.9MB, alloc=44.3MB, time=92.86
x[1] = 0.269 0.812
h = 0.0001 0.005
y1[1] (numeric) = 2.29970405426 -0.240312193705
y1[1] (closed_form) = 2.29970405426 -0.240312193705
absolute error = 2.119e-31
relative error = 9.164e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.35830480296 0.871701216028
y2[1] (closed_form) = 1.35830480296 0.871701216028
absolute error = 1.345e-31
relative error = 8.336e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.246
Order of pole (three term test) = 31.37 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.246
Order of pole (three term test) = 33.64 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2691 0.817
h = 0.0001 0.003
y1[1] (numeric) = 2.30404286723 -0.242194548948
y1[1] (closed_form) = 2.30404286723 -0.242194548948
absolute error = 2.088e-31
relative error = 9.013e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.35964125383 0.878186444601
y2[1] (closed_form) = 1.35964125383 0.878186444601
absolute error = 1.281e-31
relative error = 7.912e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.259
Order of pole (three term test) = 31.36 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.259
Order of pole (three term test) = 33.65 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7305.9MB, alloc=44.3MB, time=93.46
x[1] = 0.2692 0.82
h = 0.001 0.001
y1[1] (numeric) = 2.30664725523 -0.243362773241
y1[1] (closed_form) = 2.30664725523 -0.243362773241
absolute error = 1.166e-31
relative error = 5.028e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.36050012349 0.882078199046
y2[1] (closed_form) = 1.36050012349 0.882078199046
absolute error = 9e-32
relative error = 5.551e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.267
Order of pole (three term test) = 31.36 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.267
Order of pole (three term test) = 33.65 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7353.2MB, alloc=44.3MB, time=94.06
x[1] = 0.2702 0.821
h = 0.001 0.003
y1[1] (numeric) = 2.30716858953 -0.244606658384
y1[1] (closed_form) = 2.30716858953 -0.244606658384
absolute error = 1.221e-31
relative error = 5.261e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.36205101595 0.883141122511
y2[1] (closed_form) = 1.36205101595 0.883141122511
absolute error = 9e-32
relative error = 5.544e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.269
Order of pole (three term test) = 31.36 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.269
Order of pole (three term test) = 33.65 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7400.4MB, alloc=44.3MB, time=94.67
x[1] = 0.2712 0.824
h = 0.0001 0.004
y1[1] (numeric) = 2.30946045781 -0.246580857406
y1[1] (closed_form) = 2.30946045781 -0.246580857406
absolute error = 1.221e-31
relative error = 5.256e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.36409610854 0.886820470894
y2[1] (closed_form) = 1.36409610854 0.886820470894
absolute error = 9e-32
relative error = 5.532e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.277
Order of pole (three term test) = 31.35 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.277
Order of pole (three term test) = 33.66 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7447.5MB, alloc=44.3MB, time=95.27
x[1] = 0.2713 0.828
h = 0.003 0.006
y1[1] (numeric) = 2.31298170976 -0.248128423675
y1[1] (closed_form) = 2.31298170976 -0.248128423675
absolute error = 1.221e-31
relative error = 5.247e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.36521664737 0.892040612884
y2[1] (closed_form) = 1.36521664737 0.892040612884
absolute error = 1.345e-31
relative error = 8.250e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.288
Order of pole (three term test) = 31.34 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.288
Order of pole (three term test) = 33.67 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2743 0.834
h = 0.0001 0.005
y1[1] (numeric) = 2.31725155233 -0.253022876346
y1[1] (closed_form) = 2.31725155233 -0.253022876346
absolute error = 1.166e-31
relative error = 5.003e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.37066541749 0.899179586003
y2[1] (closed_form) = 1.37066541749 0.899179586003
absolute error = 9e-32
relative error = 5.490e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.305
Order of pole (three term test) = 31.34 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.305
Order of pole (three term test) = 33.68 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7494.3MB, alloc=44.3MB, time=95.86
x[1] = 0.2744 0.839
h = 0.0001 0.003
y1[1] (numeric) = 2.32172673455 -0.254969950384
y1[1] (closed_form) = 2.32172673455 -0.254969950384
absolute error = 1.166e-31
relative error = 4.993e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.372067345 0.90575161851
y2[1] (closed_form) = 1.372067345 0.90575161851
absolute error = 9e-32
relative error = 5.474e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.318
Order of pole (three term test) = 31.33 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.318
Order of pole (three term test) = 33.69 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7541.5MB, alloc=44.3MB, time=96.47
x[1] = 0.2745 0.842
h = 0.001 0.001
y1[1] (numeric) = 2.32441265124 -0.256178272267
y1[1] (closed_form) = 2.32441265124 -0.256178272267
absolute error = 2.088e-31
relative error = 8.929e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.37296637343 0.909695267268
y2[1] (closed_form) = 1.37296637343 0.909695267268
absolute error = 9e-32
relative error = 5.465e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.326
Order of pole (three term test) = 31.32 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.326
Order of pole (three term test) = 33.7 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7588.8MB, alloc=44.3MB, time=97.07
x[1] = 0.2755 0.843
h = 0.001 0.003
y1[1] (numeric) = 2.32494912353 -0.257462258499
y1[1] (closed_form) = 2.32494912353 -0.257462258499
absolute error = 2.088e-31
relative error = 8.927e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.37454787441 0.910763128154
y2[1] (closed_form) = 1.37454787441 0.910763128154
absolute error = 9e-32
relative error = 5.458e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.329
Order of pole (three term test) = 31.32 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.329
Order of pole (three term test) = 33.7 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7635.9MB, alloc=44.3MB, time=97.68
x[1] = 0.2765 0.846
h = 0.0001 0.004
y1[1] (numeric) = 2.32731139356 -0.259501675023
y1[1] (closed_form) = 2.32731139356 -0.259501675023
absolute error = 1.166e-31
relative error = 4.980e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.37664944731 0.914483035533
y2[1] (closed_form) = 1.37664944731 0.914483035533
absolute error = 1.0e-31
relative error = 6.051e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.338
Order of pole (three term test) = 31.31 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.338
Order of pole (three term test) = 33.7 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2766 0.85
h = 0.003 0.006
y1[1] (numeric) = 2.33094217826 -0.261102331502
y1[1] (closed_form) = 2.33094217826 -0.261102331502
absolute error = 1.118e-31
relative error = 4.767e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.37782356608 0.919773505505
y2[1] (closed_form) = 1.37782356608 0.919773505505
absolute error = 1.0e-31
relative error = 6.036e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.349
Order of pole (three term test) = 31.3 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.349
Order of pole (three term test) = 33.71 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7682.9MB, alloc=44.3MB, time=98.27
x[1] = 0.2796 0.856
h = 0.0001 0.005
y1[1] (numeric) = 2.33534060599 -0.266156124286
y1[1] (closed_form) = 2.33534060599 -0.266156124286
absolute error = 1.118e-31
relative error = 4.757e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.38340473144 0.9269814667
y2[1] (closed_form) = 1.38340473144 0.9269814667
absolute error = 9e-32
relative error = 5.405e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.366
Order of pole (three term test) = 31.3 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.366
Order of pole (three term test) = 33.72 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7730.0MB, alloc=44.3MB, time=98.87
x[1] = 0.2797 0.861
h = 0.0001 0.003
y1[1] (numeric) = 2.3399537437 -0.268169848527
y1[1] (closed_form) = 2.3399537437 -0.268169848527
absolute error = 1.166e-31
relative error = 4.951e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.38487430748 0.933642972525
y2[1] (closed_form) = 1.38487430748 0.933642972525
absolute error = 1.345e-31
relative error = 8.055e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.38
Order of pole (three term test) = 31.28 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.38
Order of pole (three term test) = 33.73 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7777.3MB, alloc=44.3MB, time=99.48
x[1] = 0.2798 0.864
h = 0.001 0.001
y1[1] (numeric) = 2.34272213184 -0.269419445304
y1[1] (closed_form) = 2.34272213184 -0.269419445304
absolute error = 1.166e-31
relative error = 4.945e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.38581482431 0.937640103926
y2[1] (closed_form) = 1.38581482431 0.937640103926
absolute error = 1.345e-31
relative error = 8.041e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.389
Order of pole (three term test) = 31.28 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.389
Order of pole (three term test) = 33.74 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7824.6MB, alloc=44.3MB, time=100.08
x[1] = 0.2808 0.865
h = 0.0001 0.004
y1[1] (numeric) = 2.34327368726 -0.270744243139
y1[1] (closed_form) = 2.34327368726 -0.270744243139
absolute error = 1.118e-31
relative error = 4.740e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.38742790388 0.938713020261
y2[1] (closed_form) = 1.38742790388 0.938713020261
absolute error = 1.414e-31
relative error = 8.442e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.392
Order of pole (three term test) = 31.28 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.392
Order of pole (three term test) = 33.74 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2809 0.869
h = 0.003 0.006
y1[1] (numeric) = 2.34700043743 -0.272390532846
y1[1] (closed_form) = 2.34700043743 -0.272390532846
absolute error = 1.118e-31
relative error = 4.732e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.38864868516 0.944066404719
y2[1] (closed_form) = 1.38864868516 0.944066404719
absolute error = 1.345e-31
relative error = 8.012e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.403
Order of pole (three term test) = 31.27 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.403
Order of pole (three term test) = 33.75 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7871.4MB, alloc=44.3MB, time=100.68
x[1] = 0.2839 0.875
h = 0.0001 0.005
y1[1] (numeric) = 2.35151216048 -0.277582597783
y1[1] (closed_form) = 2.35151216048 -0.277582597783
absolute error = 2.040e-31
relative error = 8.614e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.39434633881 0.951336983551
y2[1] (closed_form) = 1.39434633881 0.951336983551
absolute error = 1.345e-31
relative error = 7.970e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.421
Order of pole (three term test) = 31.26 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.421
Order of pole (three term test) = 33.76 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7918.5MB, alloc=44.3MB, time=101.28
x[1] = 0.284 0.88
h = 0.0001 0.003
y1[1] (numeric) = 2.35624617846 -0.279653616731
y1[1] (closed_form) = 2.35624617846 -0.279653616731
absolute error = 2.040e-31
relative error = 8.596e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.39587481352 0.958078503676
y2[1] (closed_form) = 1.39587481352 0.958078503676
absolute error = 1.345e-31
relative error = 7.946e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.436
Order of pole (three term test) = 31.25 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.436
Order of pole (three term test) = 33.77 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=7965.7MB, alloc=44.3MB, time=101.88
x[1] = 0.2841 0.883
h = 0.001 0.001
y1[1] (numeric) = 2.35908684304 -0.280938715146
y1[1] (closed_form) = 2.35908684304 -0.280938715146
absolute error = 2.040e-31
relative error = 8.585e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.39685146774 0.96212347061
y2[1] (closed_form) = 1.39685146774 0.96212347061
absolute error = 1.345e-31
relative error = 7.932e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.444
Order of pole (three term test) = 31.24 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.444
Order of pole (three term test) = 33.78 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8013.0MB, alloc=44.3MB, time=102.48
x[1] = 0.2851 0.884
h = 0.001 0.003
y1[1] (numeric) = 2.35965183365 -0.28229904936
y1[1] (closed_form) = 2.35965183365 -0.28229904936
absolute error = 2.040e-31
relative error = 8.582e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.39849245578 0.96320122134
y2[1] (closed_form) = 1.39849245578 0.96320122134
absolute error = 2.193e-31
relative error = 1.292e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.447
Order of pole (three term test) = 31.24 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.447
Order of pole (three term test) = 33.78 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2861 0.887
h = 0.0001 0.004
y1[1] (numeric) = 2.36214753773 -0.284462941475
y1[1] (closed_form) = 2.36214753773 -0.284462941475
absolute error = 1.077e-31
relative error = 4.527e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.40070349508 0.967000537974
y2[1] (closed_form) = 1.40070349508 0.967000537974
absolute error = 2.193e-31
relative error = 1.289e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.457
Order of pole (three term test) = 31.24 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.457
Order of pole (three term test) = 33.78 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8059.9MB, alloc=44.3MB, time=103.08
x[1] = 0.2862 0.891
h = 0.003 0.006
y1[1] (numeric) = 2.36598625611 -0.286165279694
y1[1] (closed_form) = 2.36598625611 -0.286165279694
absolute error = 2.040e-31
relative error = 8.558e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.40198115614 0.972428267003
y2[1] (closed_form) = 1.40198115614 0.972428267003
absolute error = 2.154e-31
relative error = 1.262e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.469
Order of pole (three term test) = 31.23 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.469
Order of pole (three term test) = 33.79 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8107.1MB, alloc=44.3MB, time=103.69
x[1] = 0.2892 0.897
h = 0.0001 0.005
y1[1] (numeric) = 2.37062816088 -0.291522954273
y1[1] (closed_form) = 2.37062816088 -0.291522954273
absolute error = 2.040e-31
relative error = 8.539e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.40781910731 0.979771578895
y2[1] (closed_form) = 1.40781910731 0.979771578895
absolute error = 2.193e-31
relative error = 1.279e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.487
Order of pole (three term test) = 31.22 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.487
Order of pole (three term test) = 33.8 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8154.3MB, alloc=44.3MB, time=104.29
x[1] = 0.2893 0.902
h = 0.0001 0.003
y1[1] (numeric) = 2.37550323701 -0.293664364581
y1[1] (closed_form) = 2.37550323701 -0.293664364581
absolute error = 2.040e-31
relative error = 8.521e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.40941937827 0.986607633921
y2[1] (closed_form) = 1.40941937827 0.986607633921
absolute error = 1.345e-31
relative error = 7.820e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.502
Order of pole (three term test) = 31.2 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.502
Order of pole (three term test) = 33.82 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2894 0.905
h = 0.001 0.001
y1[1] (numeric) = 2.37842821701 -0.294993018434
y1[1] (closed_form) = 2.37842821701 -0.294993018434
absolute error = 2.040e-31
relative error = 8.510e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.41044005995 0.990709095211
y2[1] (closed_form) = 1.41044005995 0.990709095211
memory used=8201.6MB, alloc=44.3MB, time=104.90
absolute error = 1.345e-31
relative error = 7.805e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.512
Order of pole (three term test) = 31.2 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.512
Order of pole (three term test) = 33.82 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2904 0.906
h = 0.001 0.003
y1[1] (numeric) = 2.37900819058 -0.29639554621
y1[1] (closed_form) = 2.37900819058 -0.29639554621
absolute error = 3.027e-31
relative error = 1.262e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.41211447225 0.991792119412
y2[1] (closed_form) = 1.41211447225 0.991792119412
absolute error = 1.345e-31
relative error = 7.796e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.515
Order of pole (three term test) = 31.2 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.515
Order of pole (three term test) = 33.82 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8248.6MB, alloc=44.3MB, time=105.50
x[1] = 0.2914 0.909
h = 0.0001 0.004
y1[1] (numeric) = 2.38157608051 -0.298629009893
y1[1] (closed_form) = 2.38157608051 -0.298629009893
absolute error = 3.015e-31
relative error = 1.256e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.41438729779 0.995635482114
y2[1] (closed_form) = 1.41438729779 0.995635482114
absolute error = 1.345e-31
relative error = 7.778e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.524
Order of pole (three term test) = 31.19 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.524
Order of pole (three term test) = 33.83 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8295.7MB, alloc=44.3MB, time=106.09
x[1] = 0.2915 0.913
h = 0.003 0.006
y1[1] (numeric) = 2.38552812024 -0.300389068015
y1[1] (closed_form) = 2.38552812024 -0.300389068015
absolute error = 3.027e-31
relative error = 1.259e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.415723687 1.00113973237
y2[1] (closed_form) = 1.415723687 1.00113973237
absolute error = 1.414e-31
relative error = 8.156e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.537
Order of pole (three term test) = 31.18 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.537
Order of pole (three term test) = 33.84 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8342.9MB, alloc=44.3MB, time=106.70
x[1] = 0.2945 0.919
h = 0.0001 0.005
y1[1] (numeric) = 2.39030107357 -0.305915877496
y1[1] (closed_form) = 2.39030107357 -0.305915877496
absolute error = 3.027e-31
relative error = 1.256e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.42170630992 1.00855776379
y2[1] (closed_form) = 1.42170630992 1.00855776379
absolute error = 1e-31
relative error = 5.737e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.556
Order of pole (three term test) = 31.17 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.556
Order of pole (three term test) = 33.85 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2946 0.924
h = 0.0001 0.003
y1[1] (numeric) = 2.39531893111 -0.308129792437
y1[1] (closed_form) = 2.39531893111 -0.308129792437
absolute error = 4.020e-31
relative error = 1.665e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.42338070103 1.01549109722
y2[1] (closed_form) = 1.42338070103 1.01549109722
absolute error = 1.414e-31
relative error = 8.088e-30 %
Correct digits = 31
memory used=8390.0MB, alloc=44.3MB, time=107.30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.572
Order of pole (three term test) = 31.16 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.572
Order of pole (three term test) = 33.86 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2947 0.927
h = 0.001 0.001
y1[1] (numeric) = 2.39832925022 -0.309503289647
y1[1] (closed_form) = 2.39832925022 -0.309503289647
absolute error = 3.041e-31
relative error = 1.258e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.42444683205 1.01965068477
y2[1] (closed_form) = 1.42444683205 1.01965068477
absolute error = 1e-31
relative error = 5.708e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.582
Order of pole (three term test) = 31.15 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.582
Order of pole (three term test) = 33.87 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8437.3MB, alloc=44.3MB, time=107.90
x[1] = 0.2957 0.928
h = 0.001 0.003
y1[1] (numeric) = 2.39892414409 -0.310948785691
y1[1] (closed_form) = 2.39892414409 -0.310948785691
absolute error = 3.041e-31
relative error = 1.257e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.42615568461 1.02073908572
y2[1] (closed_form) = 1.42615568461 1.02073908572
absolute error = 1e-31
relative error = 5.702e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.585
Order of pole (three term test) = 31.15 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.585
Order of pole (three term test) = 33.87 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8484.5MB, alloc=44.3MB, time=108.51
x[1] = 0.2967 0.931
h = 0.0001 0.004
y1[1] (numeric) = 2.40156486972 -0.313253438106
y1[1] (closed_form) = 2.40156486972 -0.313253438106
absolute error = 3.041e-31
relative error = 1.256e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.42849222895 1.0246277167
y2[1] (closed_form) = 1.42849222895 1.0246277167
absolute error = 1e-31
relative error = 5.688e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.595
Order of pole (three term test) = 31.15 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.595
Order of pole (three term test) = 33.88 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8531.7MB, alloc=44.3MB, time=109.11
x[1] = 0.2968 0.935
h = 0.003 0.006
y1[1] (numeric) = 2.40563162216 -0.315072940267
y1[1] (closed_form) = 2.40563162216 -0.315072940267
absolute error = 3.041e-31
relative error = 1.254e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.42988923929 1.03021068602
y2[1] (closed_form) = 1.42988923929 1.03021068602
absolute error = 1e-31
relative error = 5.674e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.608
Order of pole (three term test) = 31.14 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.608
Order of pole (three term test) = 33.89 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.2998 0.941
h = 0.0001 0.005
y1[1] (numeric) = 2.41053651121 -0.320772517585
y1[1] (closed_form) = 2.41053651121 -0.320772517585
absolute error = 3.041e-31
relative error = 1.251e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.43602099159 1.03770542376
y2[1] (closed_form) = 1.43602099159 1.03770542376
absolute error = 1e-31
relative error = 5.644e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.628
Order of pole (three term test) = 31.13 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.628
Order of pole (three term test) = 33.9 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8578.6MB, alloc=44.3MB, time=109.70
x[1] = 0.2999 0.946
h = 0.0001 0.003
y1[1] (numeric) = 2.41569892158 -0.323061116788
y1[1] (closed_form) = 2.41569892158 -0.323061116788
absolute error = 3.041e-31
relative error = 1.248e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.43777188321 1.04473880616
y2[1] (closed_form) = 1.43777188321 1.04473880616
absolute error = 1e-31
relative error = 5.627e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.645
Order of pole (three term test) = 31.11 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.645
Order of pole (three term test) = 33.91 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8625.8MB, alloc=44.3MB, time=110.31
x[1] = 0.3 0.949
h = 0.001 0.001
y1[1] (numeric) = 2.41879563195 -0.324480785622
y1[1] (closed_form) = 2.41879563195 -0.324480785622
absolute error = 2.062e-31
relative error = 8.447e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.43888491975 1.04895816779
y2[1] (closed_form) = 1.43888491975 1.04895816779
absolute error = 1e-31
relative error = 5.616e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.655
Order of pole (three term test) = 31.11 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.655
Order of pole (three term test) = 33.92 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8673.2MB, alloc=44.3MB, time=110.92
x[1] = 0.301 0.95
h = 0.001 0.003
y1[1] (numeric) = 2.41940538022 -0.325970047709
y1[1] (closed_form) = 2.41940538022 -0.325970047709
absolute error = 2.062e-31
relative error = 8.445e-30 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.44062924549 1.05005204317
y2[1] (closed_form) = 1.44062924549 1.05005204317
absolute error = 1.414e-31
relative error = 7.933e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.658
Order of pole (three term test) = 31.11 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.658
Order of pole (three term test) = 33.92 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8720.4MB, alloc=44.3MB, time=111.53
x[1] = 0.302 0.953
h = 0.0001 0.004
y1[1] (numeric) = 2.42211960806 -0.328347555463
y1[1] (closed_form) = 2.42211960806 -0.328347555463
absolute error = 2.062e-31
relative error = 8.434e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.44303148082 1.05398717043
y2[1] (closed_form) = 1.44303148082 1.05398717043
absolute error = 1.414e-31
relative error = 7.914e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.669
Order of pole (three term test) = 31.1 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.669
Order of pole (three term test) = 33.93 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3021 0.957
h = 0.003 0.006
y1[1] (numeric) = 2.42630250298 -0.330228279655
y1[1] (closed_form) = 2.42630250298 -0.330228279655
absolute error = 1.118e-31
relative error = 4.566e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.44449105127 1.05965107841
y2[1] (closed_form) = 1.44449105127 1.05965107841
absolute error = 1e-31
relative error = 5.582e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.682
Order of pole (three term test) = 31.09 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.682
Order of pole (three term test) = 33.94 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8767.4MB, alloc=44.3MB, time=112.12
x[1] = 0.3051 0.963
h = 0.0001 0.005
y1[1] (numeric) = 2.43134023474 -0.336104367285
y1[1] (closed_form) = 2.43134023474 -0.336104367285
absolute error = 1.118e-31
relative error = 4.555e-30 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.45077647646 1.06722450947
y2[1] (closed_form) = 1.45077647646 1.06722450947
absolute error = 1.414e-31
relative error = 7.852e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.703
Order of pole (three term test) = 31.08 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.703
Order of pole (three term test) = 33.95 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8814.4MB, alloc=44.3MB, time=112.72
x[1] = 0.3052 0.968
h = 0.0001 0.003
y1[1] (numeric) = 2.43664901787 -0.338469898138
y1[1] (closed_form) = 2.43664901787 -0.338469898138
absolute error = 1.118e-31
relative error = 4.545e-30 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.45260630718 1.07436073918
y2[1] (closed_form) = 1.45260630718 1.07436073918
absolute error = 1.414e-31
relative error = 7.827e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.721
Order of pole (three term test) = 31.07 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.721
Order of pole (three term test) = 33.96 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8861.6MB, alloc=44.3MB, time=113.33
x[1] = 0.3053 0.971
h = 0.001 0.001
y1[1] (numeric) = 2.43983320027 -0.339937108066
y1[1] (closed_form) = 2.43983320027 -0.339937108066
absolute error = 2.062e-31
relative error = 8.369e-30 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.45376774071 1.07864153901
y2[1] (closed_form) = 1.45376774071 1.07864153901
absolute error = 1.414e-31
relative error = 7.812e-30 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.731
Order of pole (three term test) = 31.06 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.731
Order of pole (three term test) = 33.97 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8908.9MB, alloc=44.3MB, time=113.94
x[1] = 0.3063 0.972
h = 0.0001 0.004
y1[1] (numeric) = 2.44045773362 -0.341470957387
y1[1] (closed_form) = 2.44045773362 -0.341470957387
absolute error = 2.062e-31
relative error = 8.366e-30 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.45554859003 1.07974098074
y2[1] (closed_form) = 1.45554859003 1.07974098074
absolute error = 2.236e-31
relative error = 1.234e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.735
Order of pole (three term test) = 31.06 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.735
Order of pole (three term test) = 33.97 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3064 0.976
h = 0.003 0.006
y1[1] (numeric) = 2.4447425337 -0.343404437807
y1[1] (closed_form) = 2.4447425337 -0.343404437807
absolute error = 2.062e-31
relative error = 8.351e-30 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.45706259844 1.08547712996
y2[1] (closed_form) = 1.45706259844 1.08547712996
absolute error = 2.236e-31
relative error = 1.231e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.749
Order of pole (three term test) = 31.05 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.749
Order of pole (three term test) = 33.98 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=8955.8MB, alloc=44.3MB, time=114.53
x[1] = 0.3094 0.982
h = 0.0001 0.005
y1[1] (numeric) = 2.44989751851 -0.349433944067
y1[1] (closed_form) = 2.44989751851 -0.349433944067
absolute error = 3.041e-31
relative error = 1.229e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.46348303628 1.09312179461
y2[1] (closed_form) = 1.46348303628 1.09312179461
absolute error = 2.236e-31
relative error = 1.224e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.771
Order of pole (three term test) = 31.04 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.771
Order of pole (three term test) = 34 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9003.1MB, alloc=44.3MB, time=115.14
x[1] = 0.3095 0.987
h = 0.0001 0.003
y1[1] (numeric) = 2.45533474314 -0.351865773576
y1[1] (closed_form) = 2.45533474314 -0.351865773576
absolute error = 3.041e-31
relative error = 1.226e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.46538154263 1.10034979538
y2[1] (closed_form) = 1.46538154263 1.10034979538
absolute error = 2.236e-31
relative error = 1.220e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.789
Order of pole (three term test) = 31.02 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.789
Order of pole (three term test) = 34.01 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9050.3MB, alloc=44.3MB, time=115.75
x[1] = 0.3096 0.99
h = 0.001 0.001
y1[1] (numeric) = 2.45859569527 -0.353373974005
y1[1] (closed_form) = 2.45859569527 -0.353373974005
absolute error = 3.027e-31
relative error = 1.218e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.46658509766 1.10468542586
y2[1] (closed_form) = 1.46658509766 1.10468542586
absolute error = 2.236e-31
relative error = 1.218e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.8
Order of pole (three term test) = 31.01 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.8
Order of pole (three term test) = 34.02 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9097.7MB, alloc=44.3MB, time=116.36
x[1] = 0.3106 0.991
h = 0.001 0.003
y1[1] (numeric) = 2.4592334417 -0.354946703337
y1[1] (closed_form) = 2.4592334417 -0.354946703337
absolute error = 3.027e-31
relative error = 1.218e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.46839817238 1.10579018039
y2[1] (closed_form) = 1.46839817238 1.10579018039
absolute error = 2e-31
relative error = 1.088e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.803
Order of pole (three term test) = 31.01 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.803
Order of pole (three term test) = 34.02 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3116 0.994
h = 0.0001 0.004
y1[1] (numeric) = 2.46208718745 -0.357463491725
y1[1] (closed_form) = 2.46208718745 -0.357463491725
absolute error = 3.027e-31
relative error = 1.217e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.47092744429 1.10981595482
y2[1] (closed_form) = 1.47092744429 1.10981595482
absolute error = 2.236e-31
relative error = 1.214e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.815
Order of pole (three term test) = 31.01 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.815
Order of pole (three term test) = 34.03 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9144.6MB, alloc=44.3MB, time=116.95
x[1] = 0.3117 0.998
h = 0.003 0.006
y1[1] (numeric) = 2.46649091638 -0.35946163176
y1[1] (closed_form) = 2.46649091638 -0.35946163176
absolute error = 3.027e-31
relative error = 1.214e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.47250772094 1.11563725712
y2[1] (closed_form) = 1.47250772094 1.11563725712
absolute error = 2e-31
relative error = 1.083e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.829
Order of pole (three term test) = 31 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.829
Order of pole (three term test) = 34.04 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9191.8MB, alloc=44.3MB, time=117.56
x[1] = 0.3147 1.004
h = 0.0001 0.005
y1[1] (numeric) = 2.47178053067 -0.365674899012
y1[1] (closed_form) = 2.47178053067 -0.365674899012
absolute error = 3.027e-31
relative error = 1.211e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.47909049971 1.12336436903
y2[1] (closed_form) = 1.47909049971 1.12336436903
absolute error = 3.162e-31
relative error = 1.703e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.852
Order of pole (three term test) = 30.99 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.852
Order of pole (three term test) = 34.05 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9239.0MB, alloc=44.3MB, time=118.16
x[1] = 0.3148 1.009
h = 0.0001 0.003
y1[1] (numeric) = 2.47736767334 -0.368188004331
y1[1] (closed_form) = 2.47736767334 -0.368188004331
absolute error = 4.020e-31
relative error = 1.605e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.48107260964 1.13070053128
y2[1] (closed_form) = 1.48107260964 1.13070053128
absolute error = 3.162e-31
relative error = 1.697e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.871
Order of pole (three term test) = 30.97 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.871
Order of pole (three term test) = 34.06 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3149 1.012
h = 0.001 0.001
y1[1] (numeric) = 2.48071820284 -0.369746393097
y1[1] (closed_form) = 2.48071820284 -0.369746393097
absolute error = 4.020e-31
relative error = 1.603e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.48232741437 1.13510076014
y2[1] (closed_form) = 1.48232741437 1.13510076014
absolute error = 3.162e-31
relative error = 1.694e-29 %
Correct digits = 31
memory used=9286.4MB, alloc=44.3MB, time=118.77
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.882
Order of pole (three term test) = 30.96 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.882
Order of pole (three term test) = 34.07 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3159 1.013
h = 0.001 0.003
y1[1] (numeric) = 2.4813706059 -0.371365302207
y1[1] (closed_form) = 2.4813706059 -0.371365302207
absolute error = 4.020e-31
relative error = 1.602e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.48417901444 1.13621124901
y2[1] (closed_form) = 1.48417901444 1.13621124901
absolute error = 3.162e-31
relative error = 1.692e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.886
Order of pole (three term test) = 30.96 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.886
Order of pole (three term test) = 34.07 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9333.4MB, alloc=44.3MB, time=119.37
x[1] = 0.3169 1.016
h = 0.0001 0.004
y1[1] (numeric) = 2.48429987333 -0.373959986455
y1[1] (closed_form) = 2.48429987333 -0.373959986455
absolute error = 4.020e-31
relative error = 1.600e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.48677983384 1.14028709067
y2[1] (closed_form) = 1.48677983384 1.14028709067
absolute error = 3.606e-31
relative error = 1.924e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.898
Order of pole (three term test) = 30.96 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.898
Order of pole (three term test) = 34.08 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9380.5MB, alloc=44.3MB, time=119.97
x[1] = 0.317 1.02
h = 0.003 0.006
y1[1] (numeric) = 2.48882407287 -0.37602472413
y1[1] (closed_form) = 2.48882407287 -0.37602472413
absolute error = 4.020e-31
relative error = 1.597e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.48842845687 1.14619583156
y2[1] (closed_form) = 1.48842845687 1.14619583156
absolute error = 3.606e-31
relative error = 1.919e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.913
Order of pole (three term test) = 30.95 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.913
Order of pole (three term test) = 34.09 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9427.7MB, alloc=44.3MB, time=120.58
x[1] = 0.32 1.026
h = 0.0001 0.005
y1[1] (numeric) = 2.49424927924 -0.382425818777
y1[1] (closed_form) = 2.49424927924 -0.382425818777
absolute error = 4.011e-31
relative error = 1.590e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.4951783799 1.15400737847
y2[1] (closed_form) = 1.4951783799 1.15400737847
absolute error = 4.472e-31
relative error = 2.368e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.937
Order of pole (three term test) = 30.93 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.937
Order of pole (three term test) = 34.11 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3201 1.031
h = 0.0001 0.003
y1[1] (numeric) = 2.49998830116 -0.385022648709
y1[1] (closed_form) = 2.49998830116 -0.385022648709
absolute error = 3.015e-31
relative error = 1.192e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.49724670802 1.16145458467
y2[1] (closed_form) = 1.49724670802 1.16145458467
absolute error = 4.472e-31
relative error = 2.360e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.957
Order of pole (three term test) = 30.92 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.957
Order of pole (three term test) = 34.12 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9474.7MB, alloc=44.3MB, time=121.17
x[1] = 0.3202 1.034
h = 0.001 0.001
y1[1] (numeric) = 2.50342957217 -0.386632717719
y1[1] (closed_form) = 2.50342957217 -0.386632717719
absolute error = 4.011e-31
relative error = 1.584e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.49855436076 1.16592112543
y2[1] (closed_form) = 1.49855436076 1.16592112543
absolute error = 4.472e-31
relative error = 2.355e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.968
Order of pole (three term test) = 30.91 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.968
Order of pole (three term test) = 34.13 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9522.1MB, alloc=44.3MB, time=121.78
x[1] = 0.3212 1.035
h = 0.001 0.003
y1[1] (numeric) = 2.50409655175 -0.388298696857
y1[1] (closed_form) = 2.50409655175 -0.388298696857
absolute error = 3.027e-31
relative error = 1.194e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.50044558935 1.1670374231
y2[1] (closed_form) = 1.50044558935 1.1670374231
absolute error = 4.472e-31
relative error = 2.353e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.973
Order of pole (three term test) = 30.91 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.973
Order of pole (three term test) = 34.13 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9569.3MB, alloc=44.3MB, time=122.38
x[1] = 0.3222 1.038
h = 0.0001 0.004
y1[1] (numeric) = 2.50710207125 -0.390973143098
y1[1] (closed_form) = 2.50710207125 -0.390973143098
absolute error = 4.011e-31
relative error = 1.581e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.50312009257 1.1711645837
y2[1] (closed_form) = 1.50312009257 1.1711645837
absolute error = 4.472e-31
relative error = 2.347e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 1.985
Order of pole (three term test) = 30.9 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 1.985
Order of pole (three term test) = 34.14 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9616.5MB, alloc=44.3MB, time=122.99
x[1] = 0.3223 1.042
h = 0.003 0.006
y1[1] (numeric) = 2.51174832255 -0.393106474897
y1[1] (closed_form) = 2.51174832255 -0.393106474897
absolute error = 3.015e-31
relative error = 1.186e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.50483919164 1.17716307263
y2[1] (closed_form) = 1.50483919164 1.17716307263
absolute error = 5.385e-31
relative error = 2.819e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.001
Order of pole (three term test) = 30.89 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.001
Order of pole (three term test) = 34.15 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3253 1.048
h = 0.0001 0.005
y1[1] (numeric) = 2.51731010164 -0.399699580598
y1[1] (closed_form) = 2.51731010164 -0.399699580598
absolute error = 4.011e-31
relative error = 1.574e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.51176115817 1.18506104181
y2[1] (closed_form) = 1.51176115817 1.18506104181
absolute error = 5.385e-31
relative error = 2.803e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.025
Order of pole (three term test) = 30.88 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.025
Order of pole (three term test) = 34.16 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9663.3MB, alloc=44.3MB, time=123.58
x[1] = 0.3254 1.053
h = 0.0001 0.003
y1[1] (numeric) = 2.52320301373 -0.402382657538
y1[1] (closed_form) = 2.52320301373 -0.402382657538
absolute error = 4.011e-31
relative error = 1.570e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.5139183843 1.19262220492
y2[1] (closed_form) = 1.5139183843 1.19262220492
absolute error = 5.385e-31
relative error = 2.794e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.046
Order of pole (three term test) = 30.87 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.046
Order of pole (three term test) = 34.18 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9710.6MB, alloc=44.3MB, time=124.18
x[1] = 0.3255 1.056
h = 0.001 0.001
y1[1] (numeric) = 2.52673621971 -0.404045943426
y1[1] (closed_form) = 2.52673621971 -0.404045943426
absolute error = 4.011e-31
relative error = 1.568e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.51528052292 1.19715678901
y2[1] (closed_form) = 1.51528052292 1.19715678901
absolute error = 5.385e-31
relative error = 2.789e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.058
Order of pole (three term test) = 30.86 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.058
Order of pole (three term test) = 34.19 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9758.0MB, alloc=44.3MB, time=124.80
x[1] = 0.3265 1.057
h = 0.001 0.003
y1[1] (numeric) = 2.52741769136 -0.405759907701
y1[1] (closed_form) = 2.52741769136 -0.405759907701
absolute error = 4.005e-31
relative error = 1.565e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.51721250261 1.19827896336
y2[1] (closed_form) = 1.51721250261 1.19827896336
absolute error = 5.831e-31
relative error = 3.016e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.063
Order of pole (three term test) = 30.86 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.063
Order of pole (three term test) = 34.19 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9805.2MB, alloc=44.3MB, time=125.40
x[1] = 0.3275 1.06
h = 0.0001 0.004
y1[1] (numeric) = 2.53050020949 -0.408516036216
y1[1] (closed_form) = 2.53050020949 -0.408516036216
absolute error = 5.004e-31
relative error = 1.952e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.51996287155 1.20245870083
y2[1] (closed_form) = 1.51996287155 1.20245870083
absolute error = 4.472e-31
relative error = 2.307e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.075
Order of pole (three term test) = 30.85 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.075
Order of pole (three term test) = 34.2 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3276 1.064
h = 0.003 0.006
y1[1] (numeric) = 2.53527013335 -0.410720018362
y1[1] (closed_form) = 2.53527013335 -0.410720018362
absolute error = 4.005e-31
relative error = 1.559e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.52175462939 1.20854927172
y2[1] (closed_form) = 1.52175462939 1.20854927172
absolute error = 5.385e-31
relative error = 2.771e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.092
Order of pole (three term test) = 30.84 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.092
Order of pole (three term test) = 34.21 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9852.1MB, alloc=44.3MB, time=126.00
x[1] = 0.3306 1.07
h = 0.0001 0.005
y1[1] (numeric) = 2.54096948326 -0.417509438169
y1[1] (closed_form) = 2.54096948326 -0.417509438169
absolute error = 4.001e-31
relative error = 1.554e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.52885363725 1.21653564971
y2[1] (closed_form) = 1.52885363725 1.21653564971
absolute error = 4.472e-31
relative error = 2.289e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.118
Order of pole (three term test) = 30.83 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.118
Order of pole (three term test) = 34.22 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9899.4MB, alloc=44.3MB, time=126.60
x[1] = 0.3307 1.075
h = 0.0001 0.003
y1[1] (numeric) = 2.5470183465 -0.420281359725
y1[1] (closed_form) = 2.5470183465 -0.420281359725
absolute error = 4.001e-31
relative error = 1.550e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.53110250831 1.22421371394
y2[1] (closed_form) = 1.53110250831 1.22421371394
absolute error = 4.472e-31
relative error = 2.281e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.139
Order of pole (three term test) = 30.81 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.139
Order of pole (three term test) = 34.24 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9946.7MB, alloc=44.3MB, time=127.20
x[1] = 0.3308 1.078
h = 0.001 0.001
y1[1] (numeric) = 2.55064471041 -0.421999444826
y1[1] (closed_form) = 2.55064471041 -0.421999444826
absolute error = 4e-31
relative error = 1.547e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.53252081138 1.22881809111
y2[1] (closed_form) = 1.53252081138 1.22881809111
absolute error = 4.472e-31
relative error = 2.277e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.152
Order of pole (three term test) = 30.8 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.152
Order of pole (three term test) = 34.25 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=9993.9MB, alloc=44.3MB, time=127.81
x[1] = 0.3318 1.079
h = 0.0001 0.004
y1[1] (numeric) = 2.5513405851 -0.423762334605
y1[1] (closed_form) = 2.5513405851 -0.423762334605
absolute error = 4e-31
relative error = 1.547e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.53449468473 1.2299462032
y2[1] (closed_form) = 1.53449468473 1.2299462032
absolute error = 4.472e-31
relative error = 2.274e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.157
Order of pole (three term test) = 30.8 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.157
Order of pole (three term test) = 34.25 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3319 1.083
h = 0.003 0.006
y1[1] (numeric) = 2.55621916659 -0.426027323161
y1[1] (closed_form) = 2.55621916659 -0.426027323161
absolute error = 5e-31
relative error = 1.929e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.53634963915 1.23611882512
y2[1] (closed_form) = 1.53634963915 1.23611882512
absolute error = 4.472e-31
relative error = 2.268e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.174
Order of pole (three term test) = 30.79 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.174
Order of pole (three term test) = 34.27 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10040.8MB, alloc=44.3MB, time=128.40
x[1] = 0.3349 1.089
h = 0.0001 0.005
y1[1] (numeric) = 2.5620401556 -0.432987606916
y1[1] (closed_form) = 2.5620401556 -0.432987606916
absolute error = 5e-31
relative error = 1.924e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.5436040324 1.2441850843
y2[1] (closed_form) = 1.5436040324 1.2441850843
absolute error = 4.123e-31
relative error = 2.080e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.201
Order of pole (three term test) = 30.78 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.201
Order of pole (three term test) = 34.28 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10087.8MB, alloc=44.3MB, time=129.00
x[1] = 0.335 1.094
h = 0.0001 0.003
y1[1] (numeric) = 2.56822604706 -0.435836249668
y1[1] (closed_form) = 2.56822604706 -0.435836249668
absolute error = 5e-31
relative error = 1.919e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.54593259985 1.2519672926
y2[1] (closed_form) = 1.54593259985 1.2519672926
absolute error = 3.162e-31
relative error = 1.590e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.223
Order of pole (three term test) = 30.76 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.223
Order of pole (three term test) = 34.3 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10135.3MB, alloc=44.3MB, time=129.61
x[1] = 0.3351 1.097
h = 0.001 0.001
y1[1] (numeric) = 2.57193427948 -0.437601676763
y1[1] (closed_form) = 2.57193427948 -0.437601676763
absolute error = 5e-31
relative error = 1.917e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.54739976343 1.25663385777
y2[1] (closed_form) = 1.54739976343 1.25663385777
absolute error = 3.162e-31
relative error = 1.586e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.237
Order of pole (three term test) = 30.75 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.237
Order of pole (three term test) = 34.31 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10182.6MB, alloc=44.3MB, time=130.22
x[1] = 0.3361 1.098
h = 0.001 0.003
y1[1] (numeric) = 2.57264307537 -0.439407282554
y1[1] (closed_form) = 2.57264307537 -0.439407282554
absolute error = 5.001e-31
relative error = 1.916e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.5494105564 1.25776764231
y2[1] (closed_form) = 1.5494105564 1.25776764231
absolute error = 4.123e-31
relative error = 2.066e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.241
Order of pole (three term test) = 30.75 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.241
Order of pole (three term test) = 34.31 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3371 1.101
h = 0.0001 0.004
y1[1] (numeric) = 2.57587194149 -0.44231976453
y1[1] (closed_form) = 2.57587194149 -0.44231976453
absolute error = 5e-31
relative error = 1.913e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.5523074004 1.2620495499
y2[1] (closed_form) = 1.5523074004 1.2620495499
absolute error = 4.123e-31
relative error = 2.061e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.255
Order of pole (three term test) = 30.74 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.255
Order of pole (three term test) = 34.32 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10229.4MB, alloc=44.3MB, time=130.82
x[1] = 0.3372 1.105
h = 0.003 0.006
y1[1] (numeric) = 2.58087734412 -0.444659372678
y1[1] (closed_form) = 2.58087734412 -0.444659372678
absolute error = 5e-31
relative error = 1.909e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.55423919315 1.26831869129
y2[1] (closed_form) = 1.55423919315 1.26831869129
absolute error = 4.123e-31
relative error = 2.055e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.273
Order of pole (three term test) = 30.73 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.273
Order of pole (three term test) = 34.33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10276.6MB, alloc=44.3MB, time=131.42
x[1] = 0.3402 1.111
h = 0.0001 0.005
y1[1] (numeric) = 2.58683786057 -0.451824290492
y1[1] (closed_form) = 2.58683786057 -0.451824290492
absolute error = 5e-31
relative error = 1.904e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.56168017573 1.27647711538
y2[1] (closed_form) = 1.56168017573 1.27647711538
absolute error = 5.099e-31
relative error = 2.528e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.301
Order of pole (three term test) = 30.72 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.301
Order of pole (three term test) = 34.34 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10323.9MB, alloc=44.3MB, time=132.03
x[1] = 0.3403 1.116
h = 0.0001 0.003
y1[1] (numeric) = 2.59318370566 -0.454766791343
y1[1] (closed_form) = 2.59318370566 -0.454766791343
absolute error = 5e-31
relative error = 1.899e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.5641056488 1.28438182348
y2[1] (closed_form) = 1.5641056488 1.28438182348
absolute error = 5.099e-31
relative error = 2.519e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.324
Order of pole (three term test) = 30.7 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.324
Order of pole (three term test) = 34.36 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3404 1.119
h = 0.001 0.001
y1[1] (numeric) = 2.59698747101 -0.456590071714
y1[1] (closed_form) = 2.59698747101 -0.456590071714
absolute error = 6e-31
relative error = 2.275e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.56563219128 1.28912150893
y2[1] (closed_form) = 1.56563219128 1.28912150893
absolute error = 4.123e-31
relative error = 2.033e-29 %
Correct digits = 31
memory used=10371.3MB, alloc=44.3MB, time=132.64
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.338
Order of pole (three term test) = 30.69 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.338
Order of pole (three term test) = 34.37 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3414 1.12
h = 0.001 0.003
y1[1] (numeric) = 2.59771050312 -0.458446422643
y1[1] (closed_form) = 2.59771050312 -0.458446422643
absolute error = 6e-31
relative error = 2.275e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.56768705832 1.29026134001
y2[1] (closed_form) = 1.56768705832 1.29026134001
absolute error = 5.385e-31
relative error = 2.652e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.343
Order of pole (three term test) = 30.69 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.343
Order of pole (three term test) = 34.37 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10418.3MB, alloc=44.3MB, time=133.24
x[1] = 0.3424 1.123
h = 0.0001 0.004
y1[1] (numeric) = 2.60101861699 -0.461446379376
y1[1] (closed_form) = 2.60101861699 -0.461446379376
absolute error = 6e-31
relative error = 2.271e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.57066625793 1.29459948589
y2[1] (closed_form) = 1.57066625793 1.29459948589
absolute error = 5.099e-31
relative error = 2.505e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.357
Order of pole (three term test) = 30.69 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.357
Order of pole (three term test) = 34.38 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10465.6MB, alloc=44.3MB, time=133.84
x[1] = 0.3425 1.127
h = 0.003 0.006
y1[1] (numeric) = 2.60615257722 -0.463862841145
y1[1] (closed_form) = 2.60615257722 -0.463862841145
absolute error = 6.001e-31
relative error = 2.267e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.57267723182 1.30096755446
y2[1] (closed_form) = 1.57267723182 1.30096755446
absolute error = 5.099e-31
relative error = 2.498e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.376
Order of pole (three term test) = 30.67 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.376
Order of pole (three term test) = 34.4 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10512.7MB, alloc=44.3MB, time=134.44
x[1] = 0.3455 1.133
h = 0.0001 0.005
y1[1] (numeric) = 2.61225366766 -0.471237049766
y1[1] (closed_form) = 2.61225366766 -0.471237049766
absolute error = 6.001e-31
relative error = 2.261e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.58031009893 1.30922012769
y2[1] (closed_form) = 1.58031009893 1.30922012769
absolute error = 5.099e-31
relative error = 2.485e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.405
Order of pole (three term test) = 30.66 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.405
Order of pole (three term test) = 34.41 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3456 1.138
h = 0.0001 0.003
y1[1] (numeric) = 2.61876167334 -0.474276230234
y1[1] (closed_form) = 2.61876167334 -0.474276230234
absolute error = 7.003e-31
relative error = 2.631e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.58283542697 1.31725037387
y2[1] (closed_form) = 1.58283542697 1.31725037387
absolute error = 5.099e-31
relative error = 2.476e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.43
Order of pole (three term test) = 30.64 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.43
Order of pole (three term test) = 34.43 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10559.7MB, alloc=44.3MB, time=135.04
x[1] = 0.3457 1.141
h = 0.001 0.001
y1[1] (numeric) = 2.62266228062 -0.476159082261
y1[1] (closed_form) = 2.62266228062 -0.476159082261
absolute error = 6.003e-31
relative error = 2.252e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.58442314971 1.3220649845
y2[1] (closed_form) = 1.58442314971 1.3220649845
absolute error = 5.099e-31
relative error = 2.471e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.444
Order of pole (three term test) = 30.63 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.444
Order of pole (three term test) = 34.44 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10607.0MB, alloc=44.3MB, time=135.65
x[1] = 0.3467 1.142
h = 0.001 0.003
y1[1] (numeric) = 2.62339944566 -0.478067193304
y1[1] (closed_form) = 2.62339944566 -0.478067193304
absolute error = 7.006e-31
relative error = 2.627e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.58652329352 1.32321090258
y2[1] (closed_form) = 1.58652329352 1.32321090258
absolute error = 5.099e-31
relative error = 2.468e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.449
Order of pole (three term test) = 30.63 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.449
Order of pole (three term test) = 34.44 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10654.2MB, alloc=44.3MB, time=136.25
x[1] = 0.3477 1.145
h = 0.0001 0.004
y1[1] (numeric) = 2.6267876159 -0.481156764054
y1[1] (closed_form) = 2.6267876159 -0.481156764054
absolute error = 6.007e-31
relative error = 2.250e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.58958721874 1.32760656979
y2[1] (closed_form) = 1.58958721874 1.32760656979
absolute error = 5e-31
relative error = 2.414e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.464
Order of pole (three term test) = 30.63 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.464
Order of pole (three term test) = 34.45 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10701.4MB, alloc=44.3MB, time=136.86
x[1] = 0.3478 1.149
h = 0.003 0.006
y1[1] (numeric) = 2.63205191084 -0.483652378496
y1[1] (closed_form) = 2.63205191084 -0.483652378496
absolute error = 6.007e-31
relative error = 2.245e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.59167977579 1.33407599991
y2[1] (closed_form) = 1.59167977579 1.33407599991
absolute error = 5.099e-31
relative error = 2.455e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.484
Order of pole (three term test) = 30.61 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.484
Order of pole (three term test) = 34.47 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3508 1.155
h = 0.0001 0.005
y1[1] (numeric) = 2.63829463711 -0.491240662874
y1[1] (closed_form) = 2.63829463711 -0.491240662874
absolute error = 5.004e-31
relative error = 1.865e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.59950993207 1.3424247047
y2[1] (closed_form) = 1.59950993207 1.3424247047
absolute error = 5e-31
relative error = 2.394e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.515
Order of pole (three term test) = 30.6 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.515
Order of pole (three term test) = 34.48 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10748.4MB, alloc=44.3MB, time=137.45
x[1] = 0.3509 1.16
h = 0.0001 0.003
y1[1] (numeric) = 2.64496706174 -0.494379426373
y1[1] (closed_form) = 2.64496706174 -0.494379426373
absolute error = 5.004e-31
relative error = 1.860e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.60213813922 1.35058356117
y2[1] (closed_form) = 1.60213813922 1.35058356117
absolute error = 5e-31
relative error = 2.386e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.54
Order of pole (three term test) = 30.58 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.54
Order of pole (three term test) = 34.5 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10795.7MB, alloc=44.3MB, time=138.06
x[1] = 0.351 1.163
h = 0.001 0.001
y1[1] (numeric) = 2.64896585022 -0.496323618183
y1[1] (closed_form) = 2.64896585022 -0.496323618183
absolute error = 5.004e-31
relative error = 1.857e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.60378888895 1.3554749218
y2[1] (closed_form) = 1.60378888895 1.3554749218
absolute error = 5e-31
relative error = 2.381e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.555
Order of pole (three term test) = 30.57 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.555
Order of pole (three term test) = 34.51 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10843.1MB, alloc=44.3MB, time=138.66
x[1] = 0.352 1.164
h = 0.001 0.003
y1[1] (numeric) = 2.64971703927 -0.49828453121
y1[1] (closed_form) = 2.64971703927 -0.49828453121
absolute error = 5.009e-31
relative error = 1.858e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.60593553428 1.35662695953
y2[1] (closed_form) = 1.60593553428 1.35662695953
absolute error = 5e-31
relative error = 2.378e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.561
Order of pole (three term test) = 30.57 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.561
Order of pole (three term test) = 34.51 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10890.4MB, alloc=44.3MB, time=139.27
x[1] = 0.353 1.167
h = 0.0001 0.004
y1[1] (numeric) = 2.65318609007 -0.501465914766
y1[1] (closed_form) = 2.65318609007 -0.501465914766
absolute error = 5.009e-31
relative error = 1.855e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.60908660719 1.36108143761
y2[1] (closed_form) = 1.60908660719 1.36108143761
absolute error = 5e-31
relative error = 2.372e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.576
Order of pole (three term test) = 30.56 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.576
Order of pole (three term test) = 34.52 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3531 1.171
h = 0.003 0.006
y1[1] (numeric) = 2.65858253782 -0.504043047413
y1[1] (closed_form) = 2.65858253782 -0.504043047413
absolute error = 5.009e-31
relative error = 1.851e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.6112632102 1.3676546908
y2[1] (closed_form) = 1.6112632102 1.3676546908
absolute error = 6e-31
relative error = 2.839e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.597
Order of pole (three term test) = 30.55 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.597
Order of pole (three term test) = 34.54 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10937.4MB, alloc=44.3MB, time=139.87
x[1] = 0.3561 1.177
h = 0.0001 0.005
y1[1] (numeric) = 2.6649679764 -0.511850323136
y1[1] (closed_form) = 2.6649679764 -0.511850323136
absolute error = 6.007e-31
relative error = 2.214e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.61929617267 1.37610150738
y2[1] (closed_form) = 1.61929617267 1.37610150738
absolute error = 6e-31
relative error = 2.823e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.629
Order of pole (three term test) = 30.54 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.629
Order of pole (three term test) = 34.55 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=10984.6MB, alloc=44.3MB, time=140.47
x[1] = 0.3562 1.182
h = 0.0001 0.003
y1[1] (numeric) = 2.67180713007 -0.515091656827
y1[1] (closed_form) = 2.67180713007 -0.515091656827
absolute error = 6.003e-31
relative error = 2.206e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.62203035999 1.38439208101
y2[1] (closed_form) = 1.62203035999 1.38439208101
absolute error = 6.083e-31
relative error = 2.852e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.655
Order of pole (three term test) = 30.52 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.655
Order of pole (three term test) = 34.57 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11031.9MB, alloc=44.3MB, time=141.08
x[1] = 0.3563 1.185
h = 0.001 0.001
y1[1] (numeric) = 2.67590546946 -0.51709900741
y1[1] (closed_form) = 2.67590546946 -0.51709900741
absolute error = 5.004e-31
relative error = 1.836e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.62374603009 1.38936203674
y2[1] (closed_form) = 1.62374603009 1.38936203674
absolute error = 6.083e-31
relative error = 2.846e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.671
Order of pole (three term test) = 30.51 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.671
Order of pole (three term test) = 34.58 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11079.1MB, alloc=44.3MB, time=141.68
x[1] = 0.3573 1.186
h = 0.0001 0.004
y1[1] (numeric) = 2.67667056769 -0.519113791637
y1[1] (closed_form) = 2.67667056769 -0.519113791637
absolute error = 5.004e-31
relative error = 1.835e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.62594042431 1.39052021872
y2[1] (closed_form) = 1.62594042431 1.39052021872
absolute error = 6.083e-31
relative error = 2.843e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.677
Order of pole (three term test) = 30.51 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.677
Order of pole (three term test) = 34.59 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3574 1.19
h = 0.003 0.006
y1[1] (numeric) = 2.68218326618 -0.521761434123
y1[1] (closed_form) = 2.68218326618 -0.521761434123
absolute error = 5.004e-31
relative error = 1.831e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.62819011401 1.3971858739
y2[1] (closed_form) = 1.62819011401 1.3971858739
absolute error = 6.083e-31
relative error = 2.835e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.698
Order of pole (three term test) = 30.49 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.698
Order of pole (three term test) = 34.6 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11126.0MB, alloc=44.3MB, time=142.27
x[1] = 0.3604 1.196
h = 0.0001 0.005
y1[1] (numeric) = 2.68869511025 -0.529759530445
y1[1] (closed_form) = 2.68869511025 -0.529759530445
absolute error = 4.005e-31
relative error = 1.461e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.63640095039 1.40572123301
y2[1] (closed_form) = 1.63640095039 1.40572123301
absolute error = 6.083e-31
relative error = 2.820e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.731
Order of pole (three term test) = 30.48 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.731
Order of pole (three term test) = 34.62 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11173.2MB, alloc=44.3MB, time=142.88
x[1] = 0.3605 1.201
h = 0.0001 0.003
y1[1] (numeric) = 2.69568094018 -0.53308958603
y1[1] (closed_form) = 2.69568094018 -0.53308958603
absolute error = 4.005e-31
relative error = 1.457e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.6392272854 1.41412901341
y2[1] (closed_form) = 1.6392272854 1.41412901341
absolute error = 6.083e-31
relative error = 2.810e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.758
Order of pole (three term test) = 30.46 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.758
Order of pole (three term test) = 34.64 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11220.6MB, alloc=44.3MB, time=143.48
x[1] = 0.3606 1.204
h = 0.001 0.001
y1[1] (numeric) = 2.69986687271 -0.535151589235
y1[1] (closed_form) = 2.69986687271 -0.535151589235
absolute error = 4.011e-31
relative error = 1.457e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.64099942297 1.41916891938
y2[1] (closed_form) = 1.64099942297 1.41916891938
absolute error = 6.083e-31
relative error = 2.804e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.775
Order of pole (three term test) = 30.45 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.775
Order of pole (three term test) = 34.65 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3616 1.205
h = 0.001 0.003
y1[1] (numeric) = 2.70064450637 -0.537213457703
y1[1] (closed_form) = 2.70064450637 -0.537213457703
absolute error = 5.009e-31
relative error = 1.819e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.64323586099 1.42033299292
y2[1] (closed_form) = 1.64323586099 1.42033299292
absolute error = 6.083e-31
relative error = 2.801e-29 %
Correct digits = 31
memory used=11267.9MB, alloc=44.3MB, time=144.09
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.781
Order of pole (three term test) = 30.45 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.781
Order of pole (three term test) = 34.65 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3626 1.208
h = 0.0001 0.004
y1[1] (numeric) = 2.7042674619 -0.540570757159
y1[1] (closed_form) = 2.7042674619 -0.540570757159
absolute error = 5.009e-31
relative error = 1.816e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.6465549888 1.42490146738
y2[1] (closed_form) = 1.6465549888 1.42490146738
absolute error = 5.099e-31
relative error = 2.342e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.798
Order of pole (three term test) = 30.44 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.798
Order of pole (three term test) = 34.66 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11314.8MB, alloc=44.3MB, time=144.69
x[1] = 0.3627 1.212
h = 0.003 0.006
y1[1] (numeric) = 2.70991583633 -0.543304478862
y1[1] (closed_form) = 2.70991583633 -0.543304478862
absolute error = 4.020e-31
relative error = 1.454e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.64889344487 1.43167563134
y2[1] (closed_form) = 1.64889344487 1.43167563134
absolute error = 5.099e-31
relative error = 2.335e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.82
Order of pole (three term test) = 30.43 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.82
Order of pole (three term test) = 34.68 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11362.0MB, alloc=44.3MB, time=145.29
x[1] = 0.3657 1.218
h = 0.0001 0.005
y1[1] (numeric) = 2.71657249485 -0.551531056354
y1[1] (closed_form) = 2.71657249485 -0.551531056354
absolute error = 4.020e-31
relative error = 1.450e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.6573176391 1.44031284887
y2[1] (closed_form) = 1.6573176391 1.44031284887
absolute error = 5.099e-31
relative error = 2.322e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.855
Order of pole (three term test) = 30.42 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.855
Order of pole (three term test) = 34.69 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11409.2MB, alloc=44.3MB, time=145.90
x[1] = 0.3658 1.223
h = 0.0001 0.003
y1[1] (numeric) = 2.72372952933 -0.554969440997
y1[1] (closed_form) = 2.72372952933 -0.554969440997
absolute error = 4.020e-31
relative error = 1.446e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.66025589862 1.44885826136
y2[1] (closed_form) = 1.66025589862 1.44885826136
absolute error = 5.385e-31
relative error = 2.444e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.883
Order of pole (three term test) = 30.4 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.883
Order of pole (three term test) = 34.72 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3659 1.226
h = 0.001 0.001
y1[1] (numeric) = 2.7280176664 -0.557098109841
y1[1] (closed_form) = 2.7280176664 -0.557098109841
absolute error = 4.031e-31
relative error = 1.448e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.66209658567 1.45398027503
y2[1] (closed_form) = 1.66209658567 1.45398027503
absolute error = 5.385e-31
relative error = 2.439e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.901
Order of pole (three term test) = 30.39 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.901
Order of pole (three term test) = 34.73 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11456.5MB, alloc=44.3MB, time=146.50
x[1] = 0.3669 1.227
h = 0.001 0.003
y1[1] (numeric) = 2.72880899229 -0.559215914983
y1[1] (closed_form) = 2.72880899229 -0.559215914983
absolute error = 4.031e-31
relative error = 1.447e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.66438315582 1.45515053172
y2[1] (closed_form) = 1.66438315582 1.45515053172
absolute error = 5.099e-31
relative error = 2.306e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.907
Order of pole (three term test) = 30.39 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.907
Order of pole (three term test) = 34.73 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11503.8MB, alloc=44.3MB, time=147.10
x[1] = 0.3679 1.23
h = 0.0001 0.004
y1[1] (numeric) = 2.7325152998 -0.56267164658
y1[1] (closed_form) = 2.7325152998 -0.56267164658
absolute error = 4.031e-31
relative error = 1.445e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.66779664471 1.459781573
y2[1] (closed_form) = 1.66779664471 1.459781573
absolute error = 5.099e-31
relative error = 2.301e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.924
Order of pole (three term test) = 30.38 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.924
Order of pole (three term test) = 34.74 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11550.9MB, alloc=44.3MB, time=147.70
x[1] = 0.368 1.234
h = 0.003 0.006
y1[1] (numeric) = 2.73830128785 -0.565494011167
y1[1] (closed_form) = 2.73830128785 -0.565494011167
absolute error = 4.031e-31
relative error = 1.442e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.67022651316 1.46666678888
y2[1] (closed_form) = 1.67022651316 1.46666678888
absolute error = 5.385e-31
relative error = 2.423e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.948
Order of pole (three term test) = 30.36 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.948
Order of pole (three term test) = 34.76 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11598.2MB, alloc=44.3MB, time=148.31
x[1] = 0.371 1.24
h = 0.0001 0.005
y1[1] (numeric) = 2.74510387715 -0.573954372964
y1[1] (closed_form) = 2.74510387715 -0.573954372964
absolute error = 5.025e-31
relative error = 1.792e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.67886992039 1.47540783806
y2[1] (closed_form) = 1.67886992039 1.47540783806
absolute error = 4.472e-31
relative error = 2.001e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 2.984
Order of pole (three term test) = 30.35 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 2.984
Order of pole (three term test) = 34.77 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3711 1.245
h = 0.0001 0.003
y1[1] (numeric) = 2.75243457734 -0.577504323451
y1[1] (closed_form) = 2.75243457734 -0.577504323451
absolute error = 5.025e-31
relative error = 1.787e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.68192343697 1.48409409343
y2[1] (closed_form) = 1.68192343697 1.48409409343
absolute error = 4.472e-31
relative error = 1.994e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.014
Order of pole (three term test) = 30.33 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.014
Order of pole (three term test) = 34.8 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11645.2MB, alloc=44.3MB, time=148.90
x[1] = 0.3712 1.248
h = 0.001 0.001
y1[1] (numeric) = 2.75682637758 -0.579701628512
y1[1] (closed_form) = 2.75682637758 -0.579701628512
absolute error = 5.036e-31
relative error = 1.788e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.68383470725 1.48930012076
y2[1] (closed_form) = 1.68383470725 1.48930012076
absolute error = 4.472e-31
relative error = 1.989e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.032
Order of pole (three term test) = 30.32 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.032
Order of pole (three term test) = 34.81 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11692.5MB, alloc=44.3MB, time=149.51
x[1] = 0.3722 1.249
h = 0.001 0.003
y1[1] (numeric) = 2.75763126256 -0.581876520435
y1[1] (closed_form) = 2.75763126256 -0.581876520435
absolute error = 5.036e-31
relative error = 1.787e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.68617272495 1.49047656089
y2[1] (closed_form) = 1.68617272495 1.49047656089
absolute error = 4.472e-31
relative error = 1.987e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.038
Order of pole (three term test) = 30.32 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.038
Order of pole (three term test) = 34.81 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11739.7MB, alloc=44.3MB, time=150.12
x[1] = 0.3732 1.252
h = 0.0001 0.004
y1[1] (numeric) = 2.76142180591 -0.585433124095
y1[1] (closed_form) = 2.76142180591 -0.585433124095
absolute error = 5.036e-31
relative error = 1.784e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.68968321127 1.4951714843
y2[1] (closed_form) = 1.68968321127 1.4951714843
absolute error = 4.472e-31
relative error = 1.982e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.056
Order of pole (three term test) = 30.31 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.056
Order of pole (three term test) = 34.82 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11787.0MB, alloc=44.3MB, time=150.74
x[1] = 0.3733 1.256
h = 0.003 0.006
y1[1] (numeric) = 2.76734738731 -0.588346767742
y1[1] (closed_form) = 2.76734738731 -0.588346767742
absolute error = 5.025e-31
relative error = 1.776e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.69220720568 1.50217032453
y2[1] (closed_form) = 1.69220720568 1.50217032453
absolute error = 4.472e-31
relative error = 1.976e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.081
Order of pole (three term test) = 30.29 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.081
Order of pole (three term test) = 34.84 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3763 1.262
h = 0.0001 0.005
y1[1] (numeric) = 2.77429703575 -0.597046357601
y1[1] (closed_form) = 2.77429703575 -0.597046357601
absolute error = 6.030e-31
relative error = 2.125e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.7010758052 1.51101717482
y2[1] (closed_form) = 1.7010758052 1.51101717482
absolute error = 4.472e-31
relative error = 1.966e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.118
Order of pole (three term test) = 30.28 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.118
Order of pole (three term test) = 34.86 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11833.9MB, alloc=44.3MB, time=151.35
x[1] = 0.3764 1.267
h = 0.0001 0.003
y1[1] (numeric) = 2.78180391598 -0.600711202083
y1[1] (closed_form) = 2.78180391598 -0.600711202083
absolute error = 5.036e-31
relative error = 1.770e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.7042479968 1.51984752119
y2[1] (closed_form) = 1.7042479968 1.51984752119
absolute error = 4.472e-31
relative error = 1.958e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.15
Order of pole (three term test) = 30.26 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.15
Order of pole (three term test) = 34.88 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11881.1MB, alloc=44.3MB, time=151.96
x[1] = 0.3765 1.27
h = 0.001 0.001
y1[1] (numeric) = 2.78630086924 -0.602979169409
y1[1] (closed_form) = 2.78630086924 -0.602979169409
absolute error = 5.025e-31
relative error = 1.763e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.70623193585 1.52513948999
y2[1] (closed_form) = 1.70623193585 1.52513948999
absolute error = 3.162e-31
relative error = 1.382e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.169
Order of pole (three term test) = 30.25 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.169
Order of pole (three term test) = 34.89 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11928.5MB, alloc=44.3MB, time=152.58
x[1] = 0.3775 1.271
h = 0.001 0.003
y1[1] (numeric) = 2.78711917307 -0.605212327408
y1[1] (closed_form) = 2.78711917307 -0.605212327408
absolute error = 6.030e-31
relative error = 2.114e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.70862274142 1.52632210466
y2[1] (closed_form) = 1.70862274142 1.52632210466
absolute error = 4.123e-31
relative error = 1.800e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.175
Order of pole (three term test) = 30.25 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.175
Order of pole (three term test) = 34.89 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=11975.8MB, alloc=44.3MB, time=153.19
x[1] = 0.3785 1.274
h = 0.0001 0.004
y1[1] (numeric) = 2.79099485099 -0.608872308692
y1[1] (closed_form) = 2.79099485099 -0.608872308692
absolute error = 6.030e-31
relative error = 2.111e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.7122329206 1.53108223201
y2[1] (closed_form) = 1.7122329206 1.53108223201
absolute error = 3.162e-31
relative error = 1.377e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.194
Order of pole (three term test) = 30.24 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.194
Order of pole (three term test) = 34.91 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3786 1.278
h = 0.003 0.006
y1[1] (numeric) = 2.79706204783 -0.611879941745
y1[1] (closed_form) = 2.79706204783 -0.611879941745
absolute error = 6.030e-31
relative error = 2.106e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.71485382398 1.53819729889
y2[1] (closed_form) = 1.71485382398 1.53819729889
absolute error = 4.472e-31
relative error = 1.941e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.22
Order of pole (three term test) = 30.23 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.22
Order of pole (three term test) = 34.92 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12022.8MB, alloc=44.3MB, time=153.80
x[1] = 0.3816 1.284
h = 0.0001 0.005
y1[1] (numeric) = 2.80415989502 -0.620824346788
y1[1] (closed_form) = 2.80415989502 -0.620824346788
absolute error = 7.026e-31
relative error = 2.446e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.72395372242 1.54715191543
y2[1] (closed_form) = 1.72395372242 1.54715191543
absolute error = 4.123e-31
relative error = 1.780e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.259
Order of pole (three term test) = 30.21 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.259
Order of pole (three term test) = 34.94 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12069.8MB, alloc=44.3MB, time=154.57
x[1] = 0.3817 1.289
h = 0.0001 0.003
y1[1] (numeric) = 2.81184552312 -0.624607506889
y1[1] (closed_form) = 2.81184552312 -0.624607506889
absolute error = 7.026e-31
relative error = 2.439e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.72724809471 1.55612963896
y2[1] (closed_form) = 1.72724809471 1.55612963896
absolute error = 4.472e-31
relative error = 1.924e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.292
Order of pole (three term test) = 30.19 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.292
Order of pole (three term test) = 34.97 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12117.2MB, alloc=44.3MB, time=155.72
x[1] = 0.3818 1.292
h = 0.001 0.001
y1[1] (numeric) = 2.81644915075 -0.626948219266
y1[1] (closed_form) = 2.81644915075 -0.626948219266
absolute error = 7.026e-31
relative error = 2.435e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.72930684123 1.56150949926
y2[1] (closed_form) = 1.72930684123 1.56150949926
absolute error = 4.472e-31
relative error = 1.919e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.312
Order of pole (three term test) = 30.18 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.312
Order of pole (three term test) = 34.98 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12164.4MB, alloc=44.3MB, time=156.88
x[1] = 0.3828 1.293
h = 0.0001 0.004
y1[1] (numeric) = 2.8172807257 -0.629240852333
y1[1] (closed_form) = 2.8172807257 -0.629240852333
absolute error = 7.035e-31
relative error = 2.437e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.7317518005 1.56269827007
y2[1] (closed_form) = 1.7317518005 1.56269827007
absolute error = 4.472e-31
relative error = 1.917e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.318
Order of pole (three term test) = 30.18 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.318
Order of pole (three term test) = 34.98 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3829 1.297
h = 0.003 0.006
y1[1] (numeric) = 2.82347263713 -0.632329896104
y1[1] (closed_form) = 2.82347263713 -0.632329896104
absolute error = 7.035e-31
relative error = 2.431e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.73445697558 1.56991668882
y2[1] (closed_form) = 1.73445697558 1.56991668882
absolute error = 4.472e-31
relative error = 1.912e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.345
Order of pole (three term test) = 30.16 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.345
Order of pole (three term test) = 35 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12211.3MB, alloc=44.3MB, time=157.52
x[1] = 0.3859 1.303
h = 0.0001 0.005
y1[1] (numeric) = 2.83070197896 -0.641487831439
y1[1] (closed_form) = 2.83070197896 -0.641487831439
absolute error = 7.035e-31
relative error = 2.424e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.7437596426 1.57896849362
y2[1] (closed_form) = 1.7437596426 1.57896849362
absolute error = 4.472e-31
relative error = 1.901e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.386
Order of pole (three term test) = 30.15 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.386
Order of pole (three term test) = 35.02 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12258.3MB, alloc=44.3MB, time=158.14
x[1] = 0.386 1.308
h = 0.0001 0.003
y1[1] (numeric) = 2.83854503131 -0.645373474713
y1[1] (closed_form) = 2.83854503131 -0.645373474713
absolute error = 7.046e-31
relative error = 2.420e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.74716025038 1.58807724939
y2[1] (closed_form) = 1.74716025038 1.58807724939
absolute error = 4.472e-31
relative error = 1.894e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.42
Order of pole (three term test) = 30.13 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.42
Order of pole (three term test) = 35.04 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12305.7MB, alloc=44.3MB, time=158.78
x[1] = 0.3861 1.311
h = 0.001 0.001
y1[1] (numeric) = 2.84324262448 -0.647777219775
y1[1] (closed_form) = 2.84324262448 -0.647777219775
absolute error = 7.046e-31
relative error = 2.416e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.74928406394 1.59353526936
y2[1] (closed_form) = 1.74928406394 1.59353526936
absolute error = 4.472e-31
relative error = 1.890e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.44
Order of pole (three term test) = 30.12 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.44
Order of pole (three term test) = 35.06 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3871 1.312
h = 0.001 0.003
y1[1] (numeric) = 2.84408622712 -0.650121882632
y1[1] (closed_form) = 2.84408622712 -0.650121882632
absolute error = 7.046e-31
relative error = 2.415e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.75177667772 1.59472998465
y2[1] (closed_form) = 1.75177667772 1.59472998465
absolute error = 4.472e-31
relative error = 1.888e-29 %
Correct digits = 31
memory used=12353.0MB, alloc=44.3MB, time=159.42
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.447
Order of pole (three term test) = 30.12 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.447
Order of pole (three term test) = 35.06 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3881 1.315
h = 0.0001 0.004
y1[1] (numeric) = 2.8481240679 -0.65398008457
y1[1] (closed_form) = 2.8481240679 -0.65398008457
absolute error = 7.046e-31
relative error = 2.411e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.75557893084 1.59961624775
y2[1] (closed_form) = 1.75557893084 1.59961624775
absolute error = 4.243e-31
relative error = 1.786e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.468
Order of pole (three term test) = 30.11 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.468
Order of pole (three term test) = 35.07 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12400.1MB, alloc=44.3MB, time=160.05
x[1] = 0.3882 1.319
h = 0.003 0.006
y1[1] (numeric) = 2.85446150561 -0.657168339072
y1[1] (closed_form) = 2.85446150561 -0.657168339072
absolute error = 7.046e-31
relative error = 2.405e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.75838635273 1.60695585189
y2[1] (closed_form) = 1.75838635273 1.60695585189
absolute error = 3.606e-31
relative error = 1.514e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.496
Order of pole (three term test) = 30.09 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.496
Order of pole (three term test) = 35.09 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12447.2MB, alloc=44.3MB, time=160.68
x[1] = 0.3912 1.325
h = 0.0001 0.005
y1[1] (numeric) = 2.86184126469 -0.666581863328
y1[1] (closed_form) = 2.86184126469 -0.666581863328
absolute error = 7.058e-31
relative error = 2.402e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.76793200853 1.61611914291
y2[1] (closed_form) = 1.76793200853 1.61611914291
absolute error = 4.243e-31
relative error = 1.771e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.538
Order of pole (three term test) = 30.08 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.538
Order of pole (three term test) = 35.11 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12494.4MB, alloc=44.3MB, time=161.32
x[1] = 0.3913 1.33
h = 0.0001 0.003
y1[1] (numeric) = 2.86986803033 -0.670592413166
y1[1] (closed_form) = 2.86986803033 -0.670592413166
absolute error = 7.058e-31
relative error = 2.395e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.77146152156 1.62538153844
y2[1] (closed_form) = 1.77146152156 1.62538153844
absolute error = 4.243e-31
relative error = 1.765e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.574
Order of pole (three term test) = 30.06 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.574
Order of pole (three term test) = 35.14 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3914 1.333
h = 0.001 0.001
y1[1] (numeric) = 2.87467523962 -0.673072915352
y1[1] (closed_form) = 2.87467523962 -0.673072915352
absolute error = 7.071e-31
relative error = 2.395e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.77366424479 1.63093116603
y2[1] (closed_form) = 1.77366424479 1.63093116603
absolute error = 4.243e-31
relative error = 1.761e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.596
Order of pole (three term test) = 30.04 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.596
Order of pole (three term test) = 35.15 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12541.6MB, alloc=44.3MB, time=161.95
x[1] = 0.3924 1.334
h = 0.001 0.003
y1[1] (numeric) = 2.87553183267 -0.675479385724
y1[1] (closed_form) = 2.87553183267 -0.675479385724
absolute error = 7.071e-31
relative error = 2.394e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.77621362428 1.63213199384
y2[1] (closed_form) = 1.77621362428 1.63213199384
absolute error = 4.243e-31
relative error = 1.759e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.603
Order of pole (three term test) = 30.05 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.603
Order of pole (three term test) = 35.15 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12588.9MB, alloc=44.3MB, time=162.58
x[1] = 0.3934 1.337
h = 0.0001 0.004
y1[1] (numeric) = 2.87965749225 -0.679448496513
y1[1] (closed_form) = 2.87965749225 -0.679448496513
absolute error = 7.071e-31
relative error = 2.390e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.78012360568 1.63708731254
y2[1] (closed_form) = 1.78012360568 1.63708731254
absolute error = 4.243e-31
relative error = 1.754e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.625
Order of pole (three term test) = 30.04 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.625
Order of pole (three term test) = 35.16 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12636.2MB, alloc=44.3MB, time=163.22
x[1] = 0.3935 1.341
h = 0.003 0.006
y1[1] (numeric) = 2.88614260204 -0.682738893345
y1[1] (closed_form) = 2.88614260204 -0.682738893345
absolute error = 7.071e-31
relative error = 2.384e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.78303626608 1.64455079361
y2[1] (closed_form) = 1.78303626608 1.64455079361
absolute error = 4.243e-31
relative error = 1.749e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.654
Order of pole (three term test) = 30.02 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.654
Order of pole (three term test) = 35.19 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12683.3MB, alloc=44.3MB, time=163.85
x[1] = 0.3965 1.347
h = 0.0001 0.005
y1[1] (numeric) = 2.89367394757 -0.692414019454
y1[1] (closed_form) = 2.89367394757 -0.692414019454
absolute error = 7.071e-31
relative error = 2.377e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.79283139978 1.6538275224
y2[1] (closed_form) = 1.79283139978 1.6538275224
absolute error = 4.243e-31
relative error = 1.739e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.698
Order of pole (three term test) = 30.01 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.698
Order of pole (three term test) = 35.2 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.3966 1.352
h = 0.0001 0.003
y1[1] (numeric) = 2.90188715077 -0.696553176342
y1[1] (closed_form) = 2.90188715077 -0.696553176342
absolute error = 7.071e-31
relative error = 2.369e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.79649358741 1.66324695748
y2[1] (closed_form) = 1.79649358741 1.66324695748
absolute error = 4.243e-31
relative error = 1.733e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.735
Order of pole (three term test) = 29.99 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.735
Order of pole (three term test) = 35.23 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12730.2MB, alloc=44.3MB, time=164.48
x[1] = 0.3967 1.355
h = 0.001 0.001
y1[1] (numeric) = 2.9068055894 -0.699112687696
y1[1] (closed_form) = 2.9068055894 -0.699112687696
absolute error = 7.071e-31
relative error = 2.365e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.79877751885 1.66889020918
y2[1] (closed_form) = 1.79877751885 1.66889020918
absolute error = 4.243e-31
relative error = 1.729e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.758
Order of pole (three term test) = 29.97 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.758
Order of pole (three term test) = 35.25 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12777.8MB, alloc=44.3MB, time=165.12
x[1] = 0.3977 1.356
h = 0.001 0.003
y1[1] (numeric) = 2.90767500216 -0.701582262519
y1[1] (closed_form) = 2.90767500216 -0.701582262519
absolute error = 7.058e-31
relative error = 2.360e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.80138510642 1.67009710244
y2[1] (closed_form) = 1.80138510642 1.67009710244
absolute error = 4.243e-31
relative error = 1.727e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.765
Order of pole (three term test) = 29.97 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.765
Order of pole (three term test) = 35.25 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12825.0MB, alloc=44.3MB, time=165.83
x[1] = 0.3987 1.359
h = 0.0001 0.004
y1[1] (numeric) = 2.91188943585 -0.705665053945
y1[1] (closed_form) = 2.91188943585 -0.705665053945
absolute error = 7.071e-31
relative error = 2.360e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.80540575442 1.67512282409
y2[1] (closed_form) = 1.80540575442 1.67512282409
absolute error = 4.243e-31
relative error = 1.723e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.788
Order of pole (three term test) = 29.96 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.788
Order of pole (three term test) = 35.26 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12872.2MB, alloc=44.3MB, time=166.48
x[1] = 0.3988 1.363
h = 0.003 0.006
y1[1] (numeric) = 2.91852440707 -0.709060605717
y1[1] (closed_form) = 2.91852440707 -0.709060605717
absolute error = 7.071e-31
relative error = 2.354e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.8084267219 1.68271290559
y2[1] (closed_form) = 1.8084267219 1.68271290559
absolute error = 3.606e-31
relative error = 1.460e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.818
Order of pole (three term test) = 29.95 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.818
Order of pole (three term test) = 35.28 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4018 1.369
h = 0.0001 0.005
y1[1] (numeric) = 2.92620851635 -0.719003501232
y1[1] (closed_form) = 2.92620851635 -0.719003501232
absolute error = 7.071e-31
relative error = 2.347e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.81847796281 1.69210501722
y2[1] (closed_form) = 1.81847796281 1.69210501722
absolute error = 4.243e-31
relative error = 1.708e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.865
Order of pole (three term test) = 29.94 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.865
Order of pole (three term test) = 35.3 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12919.1MB, alloc=44.3MB, time=167.12
x[1] = 0.4019 1.374
h = 0.0001 0.003
y1[1] (numeric) = 2.93461093635 -0.723275067769
y1[1] (closed_form) = 2.93461093635 -0.723275067769
absolute error = 7.071e-31
relative error = 2.340e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.8222766915 1.70168493229
y2[1] (closed_form) = 1.8222766915 1.70168493229
absolute error = 3.606e-31
relative error = 1.446e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.903
Order of pole (three term test) = 29.91 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.903
Order of pole (three term test) = 35.33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=12966.3MB, alloc=44.3MB, time=167.76
x[1] = 0.402 1.377
h = 0.001 0.001
y1[1] (numeric) = 2.93964224984 -0.725915902298
y1[1] (closed_form) = 2.93964224984 -0.725915902298
absolute error = 8.075e-31
relative error = 2.667e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.82464418855 1.70742384834
y2[1] (closed_form) = 1.82464418855 1.70742384834
absolute error = 3.606e-31
relative error = 1.443e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.927
Order of pole (three term test) = 29.9 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.927
Order of pole (three term test) = 35.35 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13013.8MB, alloc=44.3MB, time=168.40
x[1] = 0.403 1.378
h = 0.001 0.003
y1[1] (numeric) = 2.94052430274 -0.728449910272
y1[1] (closed_form) = 2.94052430274 -0.728449910272
absolute error = 7.086e-31
relative error = 2.339e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.82731145453 1.70863674915
y2[1] (closed_form) = 1.82731145453 1.70863674915
absolute error = 3.606e-31
relative error = 1.441e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.935
Order of pole (three term test) = 29.9 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.935
Order of pole (three term test) = 35.35 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13061.0MB, alloc=44.3MB, time=169.02
x[1] = 0.404 1.381
h = 0.0001 0.004
y1[1] (numeric) = 2.94482847982 -0.732649226652
y1[1] (closed_form) = 2.94482847982 -0.732649226652
absolute error = 7.086e-31
relative error = 2.335e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.83144577433 1.71373422742
y2[1] (closed_form) = 1.83144577433 1.71373422742
absolute error = 3.606e-31
relative error = 1.438e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.959
Order of pole (three term test) = 29.89 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.959
Order of pole (three term test) = 35.36 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4041 1.385
h = 0.003 0.006
y1[1] (numeric) = 2.9516155456 -0.736153028866
y1[1] (closed_form) = 2.9516155456 -0.736153028866
absolute error = 7.102e-31
relative error = 2.335e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.83457819635 1.72145366529
y2[1] (closed_form) = 1.83457819635 1.72145366529
absolute error = 3.606e-31
relative error = 1.433e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 3.99
Order of pole (three term test) = 29.87 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 3.99
Order of pole (three term test) = 35.38 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13107.9MB, alloc=44.3MB, time=169.64
x[1] = 0.4071 1.391
h = 0.0001 0.005
y1[1] (numeric) = 2.95945360313 -0.74637001905
y1[1] (closed_form) = 2.95945360313 -0.74637001905
absolute error = 7.102e-31
relative error = 2.327e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.84489231748 1.73096309771
y2[1] (closed_form) = 1.84489231748 1.73096309771
absolute error = 3.606e-31
relative error = 1.425e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.039
Order of pole (three term test) = 29.86 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.039
Order of pole (three term test) = 35.4 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13155.2MB, alloc=44.3MB, time=170.28
x[1] = 0.4072 1.396
h = 0.0001 0.003
y1[1] (numeric) = 2.96804807459 -0.750777902335
y1[1] (closed_form) = 2.96804807459 -0.750777902335
absolute error = 7.102e-31
relative error = 2.320e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.84883155335 1.74070697454
y2[1] (closed_form) = 1.84883155335 1.74070697454
absolute error = 3.606e-31
relative error = 1.420e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.079
Order of pole (three term test) = 29.84 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.079
Order of pole (three term test) = 35.43 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13202.6MB, alloc=44.3MB, time=170.92
x[1] = 0.4073 1.399
h = 0.001 0.001
y1[1] (numeric) = 2.97319394093 -0.753502437447
y1[1] (closed_form) = 2.97319394093 -0.753502437447
absolute error = 7.102e-31
relative error = 2.316e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.85128503383 1.7465436193
y2[1] (closed_form) = 1.85128503383 1.7465436193
absolute error = 3.606e-31
relative error = 1.417e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.104
Order of pole (three term test) = 29.82 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.104
Order of pole (three term test) = 35.45 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4083 1.4
h = 0.003 0.006
y1[1] (numeric) = 2.97408844515 -0.756102239592
y1[1] (closed_form) = 2.97408844515 -0.756102239592
absolute error = 7.102e-31
relative error = 2.314e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.85401347716 1.74776245861
y2[1] (closed_form) = 1.85401347716 1.74776245861
absolute error = 3.606e-31
relative error = 1.415e-29 %
Correct digits = 31
memory used=13249.7MB, alloc=44.3MB, time=171.55
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.112
Order of pole (three term test) = 29.82 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.112
Order of pole (three term test) = 35.45 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4113 1.406
h = 0.0001 0.005
y1[1] (numeric) = 2.98202599317 -0.766515443146
y1[1] (closed_form) = 2.98202599317 -0.766515443146
absolute error = 6.139e-31
relative error = 1.994e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.86451544948 1.75734688534
y2[1] (closed_form) = 1.86451544948 1.75734688534
absolute error = 5.000e-31
relative error = 1.951e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.162
Order of pole (three term test) = 29.81 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.162
Order of pole (three term test) = 35.47 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13296.7MB, alloc=44.3MB, time=172.16
x[1] = 0.4114 1.411
h = 0.0001 0.003
y1[1] (numeric) = 2.99075069374 -0.771024343915
y1[1] (closed_form) = 2.99075069374 -0.771024343915
absolute error = 6.139e-31
relative error = 1.988e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.86855792855 1.76720192988
y2[1] (closed_form) = 1.86855792855 1.76720192988
absolute error = 5.000e-31
relative error = 1.944e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.204
Order of pole (three term test) = 29.79 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.204
Order of pole (three term test) = 35.5 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13344.1MB, alloc=44.3MB, time=172.77
x[1] = 0.4115 1.414
h = 0.001 0.001
y1[1] (numeric) = 2.9959741684 -0.773810805567
y1[1] (closed_form) = 2.9959741684 -0.773810805567
absolute error = 6.139e-31
relative error = 1.984e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.87107451533 1.77310477112
y2[1] (closed_form) = 1.87107451533 1.77310477112
absolute error = 4.243e-31
relative error = 1.646e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.229
Order of pole (three term test) = 29.78 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.229
Order of pole (three term test) = 35.52 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13391.5MB, alloc=44.3MB, time=173.39
x[1] = 0.4125 1.415
h = 0.001 0.003
y1[1] (numeric) = 2.99687542396 -0.776456981128
y1[1] (closed_form) = 2.99687542396 -0.776456981128
absolute error = 6.139e-31
relative error = 1.983e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.87384607382 1.77432606248
y2[1] (closed_form) = 1.87384607382 1.77432606248
absolute error = 4.243e-31
relative error = 1.644e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.238
Order of pole (three term test) = 29.78 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.238
Order of pole (three term test) = 35.52 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4135 1.418
h = 0.0001 0.004
y1[1] (numeric) = 3.00133021574 -0.780861952185
y1[1] (closed_form) = 3.00133021574 -0.780861952185
absolute error = 6.139e-31
relative error = 1.980e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.87818114954 1.77954471017
y2[1] (closed_form) = 1.87818114954 1.77954471017
absolute error = 4.243e-31
relative error = 1.640e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.263
Order of pole (three term test) = 29.77 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.263
Order of pole (three term test) = 35.53 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13438.6MB, alloc=44.3MB, time=174.00
x[1] = 0.4136 1.422
h = 0.003 0.006
y1[1] (numeric) = 3.00837628302 -0.784559685562
y1[1] (closed_form) = 3.00837628302 -0.784559685562
absolute error = 6.139e-31
relative error = 1.975e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.88151247317 1.78748584172
y2[1] (closed_form) = 1.88151247317 1.78748584172
absolute error = 4.243e-31
relative error = 1.635e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.297
Order of pole (three term test) = 29.75 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.297
Order of pole (three term test) = 35.56 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13485.8MB, alloc=44.3MB, time=174.61
x[1] = 0.4166 1.428
h = 0.0001 0.005
y1[1] (numeric) = 3.016469624 -0.795258056813
y1[1] (closed_form) = 3.016469624 -0.795258056813
absolute error = 6.139e-31
relative error = 1.968e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.8922891419 1.79719066332
y2[1] (closed_form) = 1.8922891419 1.79719066332
absolute error = 4.243e-31
relative error = 1.626e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.349
Order of pole (three term test) = 29.74 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.349
Order of pole (three term test) = 35.58 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13532.9MB, alloc=44.3MB, time=175.22
x[1] = 0.4167 1.433
h = 0.0001 0.003
y1[1] (numeric) = 3.02539118289 -0.799910187411
y1[1] (closed_form) = 3.02539118289 -0.799910187411
absolute error = 6.139e-31
relative error = 1.962e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.89647914599 1.8072155364
y2[1] (closed_form) = 1.89647914599 1.8072155364
absolute error = 5.000e-31
relative error = 1.909e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.393
Order of pole (three term test) = 29.71 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.393
Order of pole (three term test) = 35.61 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13580.3MB, alloc=44.3MB, time=175.83
x[1] = 0.4168 1.436
h = 0.001 0.001
y1[1] (numeric) = 3.03073205346 -0.802784554454
y1[1] (closed_form) = 3.03073205346 -0.802784554454
absolute error = 6.139e-31
relative error = 1.958e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.89908599201 1.81321958215
y2[1] (closed_form) = 1.89908599201 1.81321958215
absolute error = 5.000e-31
relative error = 1.904e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.419
Order of pole (three term test) = 29.7 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.419
Order of pole (three term test) = 35.63 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4178 1.437
h = 0.001 0.003
y1[1] (numeric) = 3.03164538336 -0.805498891064
y1[1] (closed_form) = 3.03164538336 -0.805498891064
absolute error = 7.139e-31
relative error = 2.276e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.90192132225 1.81444662962
y2[1] (closed_form) = 1.90192132225 1.81444662962
absolute error = 4.243e-31
relative error = 1.614e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.428
Order of pole (three term test) = 29.7 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.428
Order of pole (three term test) = 35.63 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13627.3MB, alloc=44.3MB, time=176.45
x[1] = 0.4188 1.44
h = 0.0001 0.004
y1[1] (numeric) = 3.03619251354 -0.81002842917
y1[1] (closed_form) = 3.03619251354 -0.81002842917
absolute error = 7.139e-31
relative error = 2.272e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.90637852656 1.8197406215
y2[1] (closed_form) = 1.90637852656 1.8197406215
absolute error = 4.243e-31
relative error = 1.610e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.455
Order of pole (three term test) = 29.69 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.455
Order of pole (three term test) = 35.64 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13674.5MB, alloc=44.3MB, time=177.07
x[1] = 0.4189 1.444
h = 0.003 0.006
y1[1] (numeric) = 3.04339681219 -0.813843219109
y1[1] (closed_form) = 3.04339681219 -0.813843219109
absolute error = 7.139e-31
relative error = 2.266e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.90983024418 1.82781859604
y2[1] (closed_form) = 1.90983024418 1.82781859604
absolute error = 5.000e-31
relative error = 1.891e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.491
Order of pole (three term test) = 29.67 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.491
Order of pole (three term test) = 35.67 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13721.6MB, alloc=44.3MB, time=177.69
x[1] = 0.4219 1.45
h = 0.0001 0.005
y1[1] (numeric) = 3.05164714102 -0.8248335232
y1[1] (closed_form) = 3.05164714102 -0.8248335232
absolute error = 7.159e-31
relative error = 2.265e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.92088878598 1.83764572385
y2[1] (closed_form) = 1.92088878598 1.83764572385
absolute error = 5.000e-31
relative error = 1.881e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.545
Order of pole (three term test) = 29.66 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.545
Order of pole (three term test) = 35.69 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13768.9MB, alloc=44.3MB, time=178.32
x[1] = 0.422 1.455
h = 0.0001 0.003
y1[1] (numeric) = 3.06076854081 -0.829633085305
y1[1] (closed_form) = 3.06076854081 -0.829633085305
absolute error = 7.159e-31
relative error = 2.257e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.92523056339 1.84784401885
y2[1] (closed_form) = 1.92523056339 1.84784401885
absolute error = 5.000e-31
relative error = 1.874e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.591
Order of pole (three term test) = 29.64 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.591
Order of pole (three term test) = 35.72 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4221 1.458
h = 0.001 0.001
y1[1] (numeric) = 3.06622857195 -0.832597913813
y1[1] (closed_form) = 3.06622857195 -0.832597913813
absolute error = 7.159e-31
relative error = 2.253e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.92793025742 1.85395139853
y2[1] (closed_form) = 1.92793025742 1.85395139853
absolute error = 5.000e-31
relative error = 1.869e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.618
Order of pole (three term test) = 29.62 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.618
Order of pole (three term test) = 35.74 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13816.1MB, alloc=44.3MB, time=178.93
x[1] = 0.4231 1.459
h = 0.001 0.003
y1[1] (numeric) = 3.06715375957 -0.835381862006
y1[1] (closed_form) = 3.06715375957 -0.835381862006
absolute error = 7.159e-31
relative error = 2.252e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.93083093826 1.85518410029
y2[1] (closed_form) = 1.93083093826 1.85518410029
absolute error = 5.000e-31
relative error = 1.867e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.628
Order of pole (three term test) = 29.63 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.628
Order of pole (three term test) = 35.74 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13863.5MB, alloc=44.3MB, time=179.56
x[1] = 0.4241 1.462
h = 0.0001 0.004
y1[1] (numeric) = 3.07179424493 -0.840039092751
y1[1] (closed_form) = 3.07179424493 -0.840039092751
absolute error = 7.159e-31
relative error = 2.248e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.93541353796 1.86055481053
y2[1] (closed_form) = 1.93541353796 1.86055481053
absolute error = 5.000e-31
relative error = 1.862e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.656
Order of pole (three term test) = 29.62 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.656
Order of pole (three term test) = 35.76 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13910.7MB, alloc=44.3MB, time=180.18
x[1] = 0.4242 1.466
h = 0.003 0.006
y1[1] (numeric) = 3.07915916988 -0.843974358672
y1[1] (closed_form) = 3.07915916988 -0.843974358672
absolute error = 7.159e-31
relative error = 2.242e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.93898910722 1.86877250597
y2[1] (closed_form) = 1.93898910722 1.86877250597
absolute error = 5.831e-31
relative error = 2.165e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.693
Order of pole (three term test) = 29.6 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.693
Order of pole (three term test) = 35.78 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=13957.8MB, alloc=44.3MB, time=180.80
x[1] = 0.4272 1.472
h = 0.0001 0.005
y1[1] (numeric) = 3.08756768493 -0.855263530456
y1[1] (closed_form) = 3.08756768493 -0.855263530456
absolute error = 7.159e-31
relative error = 2.234e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.95033685578 1.87872384136
y2[1] (closed_form) = 1.95033685578 1.87872384136
absolute error = 4.472e-31
relative error = 1.651e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.75
Order of pole (three term test) = 29.59 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.75
Order of pole (three term test) = 35.8 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4273 1.477
h = 0.0001 0.003
y1[1] (numeric) = 3.09689196493 -0.860214839571
y1[1] (closed_form) = 3.09689196493 -0.860214839571
absolute error = 6.185e-31
relative error = 1.924e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.95483476446 1.88909919533
y2[1] (closed_form) = 1.95483476446 1.88909919533
absolute error = 5.385e-31
relative error = 1.981e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.797
Order of pole (three term test) = 29.56 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.797
Order of pole (three term test) = 35.84 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14004.8MB, alloc=44.3MB, time=181.41
x[1] = 0.4274 1.48
h = 0.001 0.001
y1[1] (numeric) = 3.10247295456 -0.863272754653
y1[1] (closed_form) = 3.10247295456 -0.863272754653
absolute error = 6.185e-31
relative error = 1.920e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.95762996169 1.89531206382
y2[1] (closed_form) = 1.95762996169 1.89531206382
absolute error = 4.472e-31
relative error = 1.641e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.826
Order of pole (three term test) = 29.55 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.826
Order of pole (three term test) = 35.86 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14052.1MB, alloc=44.3MB, time=182.04
x[1] = 0.4284 1.481
h = 0.0001 0.004
y1[1] (numeric) = 3.10340977243 -0.866127799464
y1[1] (closed_form) = 3.10340977243 -0.866127799464
absolute error = 6.185e-31
relative error = 1.920e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.96059760312 1.8965503054
y2[1] (closed_form) = 1.96059760312 1.8965503054
absolute error = 4.472e-31
relative error = 1.639e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.836
Order of pole (three term test) = 29.55 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.836
Order of pole (three term test) = 35.86 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14099.3MB, alloc=44.3MB, time=182.66
x[1] = 0.4285 1.485
h = 0.003 0.006
y1[1] (numeric) = 3.11091640365 -0.870167622718
y1[1] (closed_form) = 3.11091640365 -0.870167622718
absolute error = 6.210e-31
relative error = 1.922e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.96428090481 1.90489213211
y2[1] (closed_form) = 1.96428090481 1.90489213211
absolute error = 5.000e-31
relative error = 1.827e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.875
Order of pole (three term test) = 29.53 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.875
Order of pole (three term test) = 35.89 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14146.5MB, alloc=44.3MB, time=183.27
x[1] = 0.4315 1.491
h = 0.0001 0.005
y1[1] (numeric) = 3.11946571737 -0.881717831422
y1[1] (closed_form) = 3.11946571737 -0.881717831422
absolute error = 6.210e-31
relative error = 1.916e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 1.97588207807 1.91495546245
y2[1] (closed_form) = 1.97588207807 1.91495546245
absolute error = 5.000e-31
relative error = 1.817e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.934
Order of pole (three term test) = 29.52 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.934
Order of pole (three term test) = 35.91 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4316 1.496
h = 0.0001 0.003
y1[1] (numeric) = 3.12896898703 -0.886800836883
y1[1] (closed_form) = 3.12896898703 -0.886800836883
absolute error = 6.210e-31
relative error = 1.909e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 1.98051578594 1.92548810173
y2[1] (closed_form) = 1.98051578594 1.92548810173
absolute error = 5.000e-31
relative error = 1.810e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 4.983
Order of pole (three term test) = 29.5 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 4.983
Order of pole (three term test) = 35.94 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14193.6MB, alloc=44.3MB, time=183.89
x[1] = 0.4317 1.499
h = 0.001 0.001
y1[1] (numeric) = 3.13465671163 -0.88993956318
y1[1] (closed_form) = 3.13465671163 -0.88993956318
absolute error = 6.210e-31
relative error = 1.906e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 1.98339407536 1.93179469868
y2[1] (closed_form) = 1.98339407536 1.93179469868
absolute error = 5.000e-31
relative error = 1.806e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.013
Order of pole (three term test) = 29.48 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.013
Order of pole (three term test) = 35.97 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14241.1MB, alloc=44.3MB, time=184.52
x[1] = 0.4327 1.5
h = 0.001 0.003
y1[1] (numeric) = 3.13560422134 -0.892856886926
y1[1] (closed_form) = 3.13560422134 -0.892856886926
absolute error = 7.203e-31
relative error = 2.209e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 1.98642060384 1.93303843142
y2[1] (closed_form) = 1.98642060384 1.93303843142
absolute error = 5.000e-31
relative error = 1.804e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.023
Order of pole (three term test) = 29.48 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.023
Order of pole (three term test) = 35.97 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14288.4MB, alloc=44.3MB, time=185.14
x[1] = 0.4337 1.503
h = 0.0001 0.004
y1[1] (numeric) = 3.1404227814 -0.897759176755
y1[1] (closed_form) = 3.1404227814 -0.897759176755
absolute error = 7.203e-31
relative error = 2.205e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 1.99124453546 1.93855716263
y2[1] (closed_form) = 1.99124453546 1.93855716263
absolute error = 5.000e-31
relative error = 1.799e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.054
Order of pole (three term test) = 29.48 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.054
Order of pole (three term test) = 35.98 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4338 1.507
h = 0.003 0.006
y1[1] (numeric) = 3.14809465904 -0.901926056482
y1[1] (closed_form) = 3.14809465904 -0.901926056482
absolute error = 7.203e-31
relative error = 2.200e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 1.99505832615 1.94704420219
y2[1] (closed_form) = 1.99505832615 1.94704420219
absolute error = 5.000e-31
relative error = 1.794e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.094
Order of pole (three term test) = 29.46 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.094
Order of pole (three term test) = 36.01 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14335.6MB, alloc=44.3MB, time=185.76
x[1] = 0.4368 1.513
h = 0.0001 0.005
y1[1] (numeric) = 3.15680448203 -0.913788486239
y1[1] (closed_form) = 3.15680448203 -0.913788486239
absolute error = 7.228e-31
relative error = 2.199e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.00696276114 1.95723534058
y2[1] (closed_form) = 2.00696276114 1.95723534058
absolute error = 4.472e-31
relative error = 1.595e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.156
Order of pole (three term test) = 29.45 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.156
Order of pole (three term test) = 36.03 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14382.4MB, alloc=44.3MB, time=186.37
x[1] = 0.4369 1.518
h = 0.0001 0.003
y1[1] (numeric) = 3.16651649436 -0.919031543195
y1[1] (closed_form) = 3.16651649436 -0.919031543195
absolute error = 7.228e-31
relative error = 2.192e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.01176096637 1.96795198011
y2[1] (closed_form) = 2.01176096637 1.96795198011
absolute error = 4.472e-31
relative error = 1.589e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.208
Order of pole (three term test) = 29.42 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.208
Order of pole (three term test) = 36.07 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14429.7MB, alloc=44.3MB, time=186.98
x[1] = 0.437 1.521
h = 0.001 0.001
y1[1] (numeric) = 3.17232864536 -0.922268407721
y1[1] (closed_form) = 3.17232864536 -0.922268407721
absolute error = 7.228e-31
relative error = 2.188e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.014739856 1.97436817816
y2[1] (closed_form) = 2.014739856 1.97436817816
absolute error = 5.000e-31
relative error = 1.773e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.239
Order of pole (three term test) = 29.41 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.239
Order of pole (three term test) = 36.09 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14477.0MB, alloc=44.3MB, time=187.60
x[1] = 0.438 1.522
h = 0.001 0.003
y1[1] (numeric) = 3.17328735042 -0.925259688404
y1[1] (closed_form) = 3.17328735042 -0.925259688404
absolute error = 7.228e-31
relative error = 2.187e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.01783642784 1.97561722263
y2[1] (closed_form) = 2.01783642784 1.97561722263
absolute error = 5.000e-31
relative error = 1.771e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.249
Order of pole (three term test) = 29.41 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.249
Order of pole (three term test) = 36.09 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.439 1.525
h = 0.0001 0.004
y1[1] (numeric) = 3.17820228454 -0.930299047435
y1[1] (closed_form) = 3.17820228454 -0.930299047435
absolute error = 7.228e-31
relative error = 2.183e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.02279550466 1.98121667646
y2[1] (closed_form) = 2.02279550466 1.98121667646
absolute error = 5.000e-31
relative error = 1.766e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.281
Order of pole (three term test) = 29.4 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.281
Order of pole (three term test) = 36.11 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14523.9MB, alloc=44.3MB, time=188.20
x[1] = 0.4391 1.529
h = 0.003 0.006
y1[1] (numeric) = 3.1860419346 -0.934596672629
y1[1] (closed_form) = 3.1860419346 -0.934596672629
absolute error = 7.228e-31
relative error = 2.177e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.02674350247 1.98985190887
y2[1] (closed_form) = 2.02674350247 1.98985190887
absolute error = 4.243e-31
relative error = 1.494e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.323
Order of pole (three term test) = 29.38 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.323
Order of pole (three term test) = 36.14 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14571.1MB, alloc=44.3MB, time=188.81
x[1] = 0.4421 1.535
h = 0.0001 0.005
y1[1] (numeric) = 3.19491347133 -0.946778763074
y1[1] (closed_form) = 3.19491347133 -0.946778763074
absolute error = 7.228e-31
relative error = 2.169e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.03895900344 2.00017272536
y2[1] (closed_form) = 2.03895900344 2.00017272536
absolute error = 4.243e-31
relative error = 1.485e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.388
Order of pole (three term test) = 29.37 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.388
Order of pole (three term test) = 36.16 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14618.2MB, alloc=44.3MB, time=189.42
x[1] = 0.4422 1.54
h = 0.0001 0.003
y1[1] (numeric) = 3.20483743149 -0.952186526969
y1[1] (closed_form) = 3.20483743149 -0.952186526969
absolute error = 7.228e-31
relative error = 2.162e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.04392639296 2.01107713205
y2[1] (closed_form) = 2.04392639296 2.01107713205
absolute error = 4.243e-31
relative error = 1.480e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.442
Order of pole (three term test) = 29.35 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.442
Order of pole (three term test) = 36.2 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14665.5MB, alloc=44.3MB, time=190.04
x[1] = 0.4423 1.543
h = 0.001 0.001
y1[1] (numeric) = 3.21077590389 -0.955524360982
y1[1] (closed_form) = 3.21077590389 -0.955524360982
absolute error = 8.200e-31
relative error = 2.448e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.04700873732 2.01760516178
y2[1] (closed_form) = 2.04700873732 2.01760516178
absolute error = 4.243e-31
relative error = 1.476e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.475
Order of pole (three term test) = 29.33 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.475
Order of pole (three term test) = 36.22 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4433 1.544
h = 0.001 0.003
y1[1] (numeric) = 3.21174554377 -0.95859118598
y1[1] (closed_form) = 3.21174554377 -0.95859118598
absolute error = 8.200e-31
relative error = 2.446e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.05017705561 2.01885936525
y2[1] (closed_form) = 2.05017705561 2.01885936525
absolute error = 4.243e-31
relative error = 1.475e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.486
Order of pole (three term test) = 29.34 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.486
Order of pole (three term test) = 36.22 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14712.6MB, alloc=44.3MB, time=190.66
x[1] = 0.4443 1.547
h = 0.0001 0.004
y1[1] (numeric) = 3.21675791752 -0.963771058023
y1[1] (closed_form) = 3.21675791752 -0.963771058023
absolute error = 8.223e-31
relative error = 2.449e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.05527484447 2.02454093809
y2[1] (closed_form) = 2.05527484447 2.02454093809
absolute error = 5.657e-31
relative error = 1.961e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.519
Order of pole (three term test) = 29.33 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.519
Order of pole (three term test) = 36.24 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14759.8MB, alloc=44.3MB, time=191.28
x[1] = 0.4444 1.551
h = 0.003 0.006
y1[1] (numeric) = 3.224767912 -0.968203216414
y1[1] (closed_form) = 3.224767912 -0.968203216414
absolute error = 7.253e-31
relative error = 2.154e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.05936086328 2.0333273796
y2[1] (closed_form) = 2.05936086328 2.0333273796
absolute error = 5.000e-31
relative error = 1.728e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.563
Order of pole (three term test) = 29.31 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.563
Order of pole (three term test) = 36.27 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14807.0MB, alloc=44.3MB, time=191.89
x[1] = 0.4474 1.557
h = 0.0001 0.005
y1[1] (numeric) = 3.23380236612 -0.98071259064
y1[1] (closed_form) = 3.23380236612 -0.98071259064
absolute error = 7.253e-31
relative error = 2.146e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.07189540655 2.0437797308
y2[1] (closed_form) = 2.07189540655 2.0437797308
absolute error = 5.000e-31
relative error = 1.718e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.63
Order of pole (three term test) = 29.3 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.63
Order of pole (three term test) = 36.29 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14854.2MB, alloc=44.3MB, time=192.51
x[1] = 0.4475 1.562
h = 0.0001 0.003
y1[1] (numeric) = 3.24394153748 -0.98628984144
y1[1] (closed_form) = 3.24394153748 -0.98628984144
absolute error = 8.246e-31
relative error = 2.432e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.0770367882 2.05487571776
y2[1] (closed_form) = 2.0770367882 2.05487571776
absolute error = 4.243e-31
relative error = 1.452e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.687
Order of pole (three term test) = 29.27 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.687
Order of pole (three term test) = 36.33 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4476 1.565
h = 0.001 0.001
y1[1] (numeric) = 3.25000826033 -0.98973155169
y1[1] (closed_form) = 3.25000826033 -0.98973155169
absolute error = 8.246e-31
relative error = 2.427e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.08022551506 2.06151783657
y2[1] (closed_form) = 2.08022551506 2.06151783657
absolute error = 4.243e-31
relative error = 1.449e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.721
Order of pole (three term test) = 29.26 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.721
Order of pole (three term test) = 36.36 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14901.5MB, alloc=44.3MB, time=193.13
x[1] = 0.4486 1.566
h = 0.001 0.003
y1[1] (numeric) = 3.25098856187 -0.992875545377
y1[1] (closed_form) = 3.25098856187 -0.992875545377
absolute error = 8.246e-31
relative error = 2.426e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.08346731681 2.06277703198
y2[1] (closed_form) = 2.08346731681 2.06277703198
absolute error = 4.243e-31
relative error = 1.447e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.732
Order of pole (three term test) = 29.26 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.732
Order of pole (three term test) = 36.36 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14948.7MB, alloc=44.3MB, time=193.75
x[1] = 0.4496 1.569
h = 0.0001 0.004
y1[1] (numeric) = 3.25609945247 -0.998199461027
y1[1] (closed_form) = 3.25609945247 -0.998199461027
absolute error = 9.198e-31
relative error = 2.701e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.08870746695 2.06854212527
y2[1] (closed_form) = 2.08870746695 2.06854212527
absolute error = 3.606e-31
relative error = 1.227e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.767
Order of pole (three term test) = 29.26 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.767
Order of pole (three term test) = 36.37 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=14995.9MB, alloc=44.3MB, time=194.37
x[1] = 0.4497 1.573
h = 0.003 0.006
y1[1] (numeric) = 3.26428240963 -1.00277004141
y1[1] (closed_form) = 3.26428240963 -1.00277004141
absolute error = 8.246e-31
relative error = 2.415e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.09293541882 2.07748282889
y2[1] (closed_form) = 2.09293541882 2.07748282889
absolute error = 3.606e-31
relative error = 1.223e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.813
Order of pole (three term test) = 29.23 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.813
Order of pole (three term test) = 36.41 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15043.0MB, alloc=44.3MB, time=194.99
x[1] = 0.4527 1.579
h = 0.0001 0.005
y1[1] (numeric) = 3.27348098276 -1.01561450972
y1[1] (closed_form) = 3.27348098276 -1.01561450972
absolute error = 8.246e-31
relative error = 2.406e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.10579715686 2.08806855701
y2[1] (closed_form) = 2.10579715686 2.08806855701
absolute error = 5.000e-31
relative error = 1.686e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.883
Order of pole (three term test) = 29.23 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.883
Order of pole (three term test) = 36.43 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4528 1.584
h = 0.0001 0.003
y1[1] (numeric) = 3.2838386873 -1.02136615485
y1[1] (closed_form) = 3.2838386873 -1.02136615485
absolute error = 8.246e-31
relative error = 2.398e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.11111746249 2.09935998408
y2[1] (closed_form) = 2.11111746249 2.09935998408
absolute error = 5.000e-31
relative error = 1.679e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.942
Order of pole (three term test) = 29.2 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.942
Order of pole (three term test) = 36.47 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15090.0MB, alloc=44.3MB, time=195.60
x[1] = 0.4529 1.587
h = 0.001 0.001
y1[1] (numeric) = 3.29003562387 -1.02491472537
y1[1] (closed_form) = 3.29003562387 -1.02491472537
absolute error = 8.246e-31
relative error = 2.393e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.11441557471 2.1061184766
y2[1] (closed_form) = 2.11441557471 2.1061184766
absolute error = 5.000e-31
relative error = 1.675e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.978
Order of pole (three term test) = 29.19 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.978
Order of pole (three term test) = 36.5 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15137.3MB, alloc=44.3MB, time=196.22
x[1] = 0.4539 1.588
h = 0.0001 0.004
y1[1] (numeric) = 3.29102630078 -1.02813754978
y1[1] (closed_form) = 3.29102630078 -1.02813754978
absolute error = 8.246e-31
relative error = 2.392e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.1177326316 2.10738248198
y2[1] (closed_form) = 2.1177326316 2.10738248198
absolute error = 4.243e-31
relative error = 1.420e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 5.99
Order of pole (three term test) = 29.19 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 5.99
Order of pole (three term test) = 36.5 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15184.5MB, alloc=44.3MB, time=196.85
x[1] = 0.454 1.592
h = 0.003 0.006
y1[1] (numeric) = 3.29936198451 -1.03282836853
y1[1] (closed_form) = 3.29936198451 -1.03282836853
absolute error = 8.544e-31
relative error = 2.471e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.12208407645 2.11646019845
y2[1] (closed_form) = 2.12208407645 2.11646019845
absolute error = 5.000e-31
relative error = 1.668e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.038
Order of pole (three term test) = 29.17 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.038
Order of pole (three term test) = 36.53 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15231.7MB, alloc=44.3MB, time=197.48
x[1] = 0.457 1.598
h = 0.0001 0.005
y1[1] (numeric) = 3.30870690732 -1.0459657003
y1[1] (closed_form) = 3.30870690732 -1.0459657003
absolute error = 8.544e-31
relative error = 2.462e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.13523250029 2.12716622938
y2[1] (closed_form) = 2.13523250029 2.12716622938
absolute error = 5.000e-31
relative error = 1.659e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.111
Order of pole (three term test) = 29.17 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.111
Order of pole (three term test) = 36.56 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4571 1.603
h = 0.0001 0.003
y1[1] (numeric) = 3.31925758243 -1.05186882944
y1[1] (closed_form) = 3.31925758243 -1.05186882944
absolute error = 8.544e-31
relative error = 2.454e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.14070847248 2.13863122546
y2[1] (closed_form) = 2.14070847248 2.13863122546
absolute error = 4.243e-31
relative error = 1.402e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.173
Order of pole (three term test) = 29.14 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.173
Order of pole (three term test) = 36.6 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15278.6MB, alloc=44.3MB, time=198.10
x[1] = 0.4572 1.606
h = 0.001 0.001
y1[1] (numeric) = 3.32556952384 -1.05551024799
y1[1] (closed_form) = 3.32556952384 -1.05551024799
absolute error = 8.544e-31
relative error = 2.449e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.14410177957 2.14549309219
y2[1] (closed_form) = 2.14410177957 2.14549309219
absolute error = 4.243e-31
relative error = 1.399e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.21
Order of pole (three term test) = 29.12 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.21
Order of pole (three term test) = 36.62 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15326.1MB, alloc=44.3MB, time=198.73
x[1] = 0.4582 1.607
h = 0.001 0.003
y1[1] (numeric) = 3.32656985855 -1.05880216876
y1[1] (closed_form) = 3.32656985855 -1.05880216876
absolute error = 9.849e-31
relative error = 2.821e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.14748500526 2.14676200624
y2[1] (closed_form) = 2.14748500526 2.14676200624
absolute error = 3.606e-31
relative error = 1.187e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.222
Order of pole (three term test) = 29.13 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.222
Order of pole (three term test) = 36.62 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15373.2MB, alloc=44.3MB, time=199.36
x[1] = 0.4592 1.61
h = 0.0001 0.004
y1[1] (numeric) = 3.3318687909 -1.06440261346
y1[1] (closed_form) = 3.3318687909 -1.06440261346
absolute error = 9.849e-31
relative error = 2.816e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.15299902511 2.15268806063
y2[1] (closed_form) = 2.15299902511 2.15268806063
absolute error = 3.606e-31
relative error = 1.184e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.26
Order of pole (three term test) = 29.12 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.26
Order of pole (three term test) = 36.64 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4593 1.614
h = 0.003 0.006
y1[1] (numeric) = 3.34038248279 -1.06923933502
y1[1] (closed_form) = 3.34038248279 -1.06923933502
absolute error = 1.030e-30
relative error = 2.935e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.15749991496 2.16192586907
y2[1] (closed_form) = 2.15749991496 2.16192586907
absolute error = 5.000e-31
relative error = 1.637e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.31
Order of pole (three term test) = 29.1 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.31
Order of pole (three term test) = 36.68 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15420.4MB, alloc=44.3MB, time=199.98
x[1] = 0.4623 1.62
h = 0.0001 0.005
y1[1] (numeric) = 3.34989384914 -1.08272679133
y1[1] (closed_form) = 3.34989384914 -1.08272679133
absolute error = 1.030e-30
relative error = 2.924e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.17099116495 2.17276876495
y2[1] (closed_form) = 2.17099116495 2.17276876495
absolute error = 5.000e-31
relative error = 1.628e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.386
Order of pole (three term test) = 29.1 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.386
Order of pole (three term test) = 36.7 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15467.5MB, alloc=44.3MB, time=200.60
x[1] = 0.4624 1.625
h = 0.0001 0.003
y1[1] (numeric) = 3.36066945821 -1.08881375477
y1[1] (closed_form) = 3.36066945821 -1.08881375477
absolute error = 8.944e-31
relative error = 2.532e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.17665553172 2.18443657237
y2[1] (closed_form) = 2.17665553172 2.18443657237
absolute error = 5.000e-31
relative error = 1.621e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.45
Order of pole (three term test) = 29.07 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.45
Order of pole (three term test) = 36.75 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15514.9MB, alloc=44.3MB, time=201.23
x[1] = 0.4625 1.628
h = 0.001 0.001
y1[1] (numeric) = 3.36711539622 -1.0925677737
y1[1] (closed_form) = 3.36711539622 -1.0925677737
absolute error = 9.849e-31
relative error = 2.782e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.18016399027 2.19141917551
y2[1] (closed_form) = 2.18016399027 2.19141917551
absolute error = 5.000e-31
relative error = 1.618e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.489
Order of pole (three term test) = 29.05 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.489
Order of pole (three term test) = 36.78 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15562.3MB, alloc=44.3MB, time=201.86
x[1] = 0.4635 1.629
h = 0.001 0.003
y1[1] (numeric) = 3.36812555771 -1.09594172432
y1[1] (closed_form) = 3.36812555771 -1.09594172432
absolute error = 9.849e-31
relative error = 2.781e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.18362586529 2.19269254182
y2[1] (closed_form) = 2.18362586529 2.19269254182
absolute error = 5.000e-31
relative error = 1.616e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.502
Order of pole (three term test) = 29.06 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.502
Order of pole (three term test) = 36.78 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4645 1.632
h = 0.0001 0.004
y1[1] (numeric) = 3.37352619559 -1.10169679566
y1[1] (closed_form) = 3.37352619559 -1.10169679566
absolute error = 8.944e-31
relative error = 2.520e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.18929314216 2.19870619901
y2[1] (closed_form) = 2.18929314216 2.19870619901
absolute error = 5.831e-31
relative error = 1.879e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.541
Order of pole (three term test) = 29.05 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.541
Order of pole (three term test) = 36.79 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15609.2MB, alloc=44.3MB, time=202.47
x[1] = 0.4646 1.636
h = 0.003 0.006
y1[1] (numeric) = 3.38222064922 -1.10668361076
y1[1] (closed_form) = 3.38222064922 -1.10668361076
absolute error = 8.944e-31
relative error = 2.513e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.19394768349 2.20810726147
y2[1] (closed_form) = 2.19394768349 2.20810726147
absolute error = 5.831e-31
relative error = 1.873e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.594
Order of pole (three term test) = 29.03 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.594
Order of pole (three term test) = 36.83 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15656.4MB, alloc=44.3MB, time=203.09
x[1] = 0.4676 1.642
h = 0.0001 0.005
y1[1] (numeric) = 3.39189965004 -1.12052955906
y1[1] (closed_form) = 3.39189965004 -1.12052955906
absolute error = 8.944e-31
relative error = 2.504e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.20779043935 2.21908881943
y2[1] (closed_form) = 2.20779043935 2.21908881943
absolute error = 5.831e-31
relative error = 1.863e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.673
Order of pole (three term test) = 29.03 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.673
Order of pole (three term test) = 36.86 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15703.7MB, alloc=44.3MB, time=203.72
x[1] = 0.4677 1.647
h = 0.0001 0.003
y1[1] (numeric) = 3.40290368634 -1.12680564505
y1[1] (closed_form) = 3.40290368634 -1.12680564505
absolute error = 8.944e-31
relative error = 2.495e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.21364850434 2.23096343677
y2[1] (closed_form) = 2.21364850434 2.23096343677
absolute error = 5.831e-31
relative error = 1.855e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.74
Order of pole (three term test) = 29.01 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.74
Order of pole (three term test) = 36.9 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15751.2MB, alloc=44.3MB, time=204.35
x[1] = 0.4678 1.65
h = 0.001 0.001
y1[1] (numeric) = 3.40948568428 -1.13067547922
y1[1] (closed_form) = 3.40948568428 -1.13067547922
absolute error = 8.944e-31
relative error = 2.490e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.21727534242 2.23806914163
y2[1] (closed_form) = 2.21727534242 2.23806914163
absolute error = 6.403e-31
relative error = 2.032e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.781
Order of pole (three term test) = 28.99 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.781
Order of pole (three term test) = 36.93 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4688 1.651
h = 0.001 0.003
y1[1] (numeric) = 3.41050534625 -1.13413323353
y1[1] (closed_form) = 3.41050534625 -1.13413323353
absolute error = 8.944e-31
relative error = 2.489e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.22081774208 2.23934673338
y2[1] (closed_form) = 2.22081774208 2.23934673338
absolute error = 6.403e-31
relative error = 2.030e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.794
Order of pole (three term test) = 29 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.794
Order of pole (three term test) = 36.93 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15798.2MB, alloc=44.3MB, time=204.98
x[1] = 0.4698 1.654
h = 0.0001 0.004
y1[1] (numeric) = 3.41600880976 -1.14004681492
y1[1] (closed_form) = 3.41600880976 -1.14004681492
absolute error = 8.944e-31
relative error = 2.484e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.2266422623 2.24544941343
y2[1] (closed_form) = 2.2266422623 2.24544941343
absolute error = 6.403e-31
relative error = 2.025e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.835
Order of pole (three term test) = 28.99 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.835
Order of pole (three term test) = 36.95 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15845.5MB, alloc=44.3MB, time=205.60
x[1] = 0.4699 1.658
h = 0.003 0.006
y1[1] (numeric) = 3.4248868261 -1.14518802485
y1[1] (closed_form) = 3.4248868261 -1.14518802485
absolute error = 8.944e-31
relative error = 2.477e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.23145476971 2.25501693053
y2[1] (closed_form) = 2.23145476971 2.25501693053
absolute error = 6.403e-31
relative error = 2.018e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.89
Order of pole (three term test) = 28.97 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.89
Order of pole (three term test) = 36.99 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15892.7MB, alloc=44.3MB, time=206.23
x[1] = 0.4729 1.664
h = 0.0001 0.005
y1[1] (numeric) = 3.43473464515 -1.15940103514
y1[1] (closed_form) = 3.43473464515 -1.15940103514
absolute error = 9.849e-31
relative error = 2.717e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.24565790377 2.26613892894
y2[1] (closed_form) = 2.24565790377 2.26613892894
absolute error = 5.657e-31
relative error = 1.773e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 6.973
Order of pole (three term test) = 28.97 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 6.973
Order of pole (three term test) = 37.02 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15939.9MB, alloc=44.3MB, time=206.86
x[1] = 0.473 1.669
h = 0.0001 0.003
y1[1] (numeric) = 3.44597066198 -1.16587167142
y1[1] (closed_form) = 3.44597066198 -1.16587167142
absolute error = 1.030e-30
relative error = 2.830e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.25171510718 2.27822440391
y2[1] (closed_form) = 2.25171510718 2.27822440391
absolute error = 6.403e-31
relative error = 1.999e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.043
Order of pole (three term test) = 28.94 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.043
Order of pole (three term test) = 37.06 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4731 1.672
h = 0.001 0.001
y1[1] (numeric) = 3.45269081822 -1.16986062021
y1[1] (closed_form) = 3.45269081822 -1.16986062021
absolute error = 9.434e-31
relative error = 2.588e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.25546363553 2.28545560429
y2[1] (closed_form) = 2.25546363553 2.28545560429
absolute error = 6.403e-31
relative error = 1.994e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.086
Order of pole (three term test) = 28.93 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.086
Order of pole (three term test) = 37.09 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=15987.2MB, alloc=44.3MB, time=207.49
x[1] = 0.4741 1.673
h = 0.001 0.003
y1[1] (numeric) = 3.45371963914 -1.17340399249
y1[1] (closed_form) = 3.45371963914 -1.17340399249
absolute error = 9.434e-31
relative error = 2.586e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.25908847285 2.28673717781
y2[1] (closed_form) = 2.25908847285 2.28673717781
absolute error = 6.403e-31
relative error = 1.992e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.1
Order of pole (three term test) = 28.93 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.1
Order of pole (three term test) = 37.09 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16034.5MB, alloc=44.3MB, time=208.12
x[1] = 0.4751 1.676
h = 0.0001 0.004
y1[1] (numeric) = 3.45932705827 -1.17948006356
y1[1] (closed_form) = 3.45932705827 -1.17948006356
absolute error = 9.434e-31
relative error = 2.581e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.26507431519 2.29293030469
y2[1] (closed_form) = 2.26507431519 2.29293030469
absolute error = 7.071e-31
relative error = 2.194e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.143
Order of pole (three term test) = 28.93 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.143
Order of pole (three term test) = 37.11 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16081.8MB, alloc=44.3MB, time=208.74
x[1] = 0.4752 1.68
h = 0.003 0.006
y1[1] (numeric) = 3.46839148601 -1.18478008284
y1[1] (closed_form) = 3.46839148601 -1.18478008284
absolute error = 9.434e-31
relative error = 2.574e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.27004921414 2.30266751613
y2[1] (closed_form) = 2.27004921414 2.30266751613
absolute error = 5.657e-31
relative error = 1.749e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.2
Order of pole (three term test) = 28.91 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.2
Order of pole (three term test) = 37.15 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16128.8MB, alloc=44.3MB, time=209.37
x[1] = 0.4782 1.686
h = 0.0001 0.005
y1[1] (numeric) = 3.47840929841 -1.19936893184
y1[1] (closed_form) = 3.47840929841 -1.19936893184
absolute error = 9.434e-31
relative error = 2.564e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.28462179578 2.31393171334
y2[1] (closed_form) = 2.28462179578 2.31393171334
absolute error = 6.403e-31
relative error = 1.969e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.287
Order of pole (three term test) = 28.91 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.287
Order of pole (three term test) = 37.18 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4783 1.691
h = 0.0001 0.003
y1[1] (numeric) = 3.48988090945 -1.20603968896
y1[1] (closed_form) = 3.48988090945 -1.20603968896
absolute error = 9.434e-31
relative error = 2.555e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.29088371777 2.32623214333
y2[1] (closed_form) = 2.29088371777 2.32623214333
absolute error = 5.657e-31
relative error = 1.733e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.36
Order of pole (three term test) = 28.89 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.36
Order of pole (three term test) = 37.23 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16175.9MB, alloc=44.3MB, time=209.99
x[1] = 0.4784 1.694
h = 0.001 0.001
y1[1] (numeric) = 3.49674135757 -1.21015113829
y1[1] (closed_form) = 3.49674135757 -1.21015113829
absolute error = 9.434e-31
relative error = 2.550e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.29475733186 2.33359126187
y2[1] (closed_form) = 2.29475733186 2.33359126187
absolute error = 5.657e-31
relative error = 1.728e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.405
Order of pole (three term test) = 28.87 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.405
Order of pole (three term test) = 37.26 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16223.4MB, alloc=44.3MB, time=210.63
x[1] = 0.4794 1.695
h = 0.0001 0.004
y1[1] (numeric) = 3.49777898014 -1.21378198397
y1[1] (closed_form) = 3.49777898014 -1.21378198397
absolute error = 9.434e-31
relative error = 2.548e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.29846655837 2.3348765561
y2[1] (closed_form) = 2.29846655837 2.3348765561
absolute error = 5.657e-31
relative error = 1.727e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.419
Order of pole (three term test) = 28.88 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.419
Order of pole (three term test) = 37.26 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16270.5MB, alloc=44.3MB, time=211.26
x[1] = 0.4795 1.699
h = 0.003 0.006
y1[1] (numeric) = 3.50700814778 -1.21922005686
y1[1] (closed_form) = 3.50700814778 -1.21922005686
absolute error = 1.00e-30
relative error = 2.693e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.30358279433 2.34476446742
y2[1] (closed_form) = 2.30358279433 2.34476446742
absolute error = 5.657e-31
relative error = 1.721e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.479
Order of pole (three term test) = 28.86 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.479
Order of pole (three term test) = 37.3 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4825 1.705
h = 0.0001 0.005
y1[1] (numeric) = 3.51717784127 -1.23413756062
y1[1] (closed_form) = 3.51717784127 -1.23413756062
absolute error = 1.00e-30
relative error = 2.683e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.31847907848 2.35615700801
y2[1] (closed_form) = 2.31847907848 2.35615700801
absolute error = 5.657e-31
relative error = 1.711e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.569
Order of pole (three term test) = 28.86 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.569
Order of pole (three term test) = 37.33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16317.6MB, alloc=44.3MB, time=211.87
x[1] = 0.4826 1.71
h = 0.0001 0.003
y1[1] (numeric) = 3.52885766091 -1.24098228127
y1[1] (closed_form) = 3.52885766091 -1.24098228127
absolute error = 9.434e-31
relative error = 2.522e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.3249191654 2.3686483153
y2[1] (closed_form) = 2.3249191654 2.3686483153
absolute error = 5.657e-31
relative error = 1.704e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.645
Order of pole (three term test) = 28.84 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.645
Order of pole (three term test) = 37.39 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16364.7MB, alloc=44.3MB, time=212.49
x[1] = 0.4827 1.713
h = 0.001 0.001
y1[1] (numeric) = 3.5358421189 -1.24520024748
y1[1] (closed_form) = 3.5358421189 -1.24520024748
absolute error = 9.434e-31
relative error = 2.517e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.32890167083 2.37612105044
y2[1] (closed_form) = 2.32890167083 2.37612105044
absolute error = 4.243e-31
relative error = 1.275e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.691
Order of pole (three term test) = 28.82 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.691
Order of pole (three term test) = 37.42 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16412.1MB, alloc=44.3MB, time=213.12
x[1] = 0.4837 1.714
h = 0.001 0.003
y1[1] (numeric) = 3.53688809184 -1.24890780639
y1[1] (closed_form) = 3.53688809184 -1.24890780639
absolute error = 1.00e-30
relative error = 2.666e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.33268508975 2.37741036215
y2[1] (closed_form) = 2.33268508975 2.37741036215
absolute error = 4.243e-31
relative error = 1.274e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.707
Order of pole (three term test) = 28.83 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.707
Order of pole (three term test) = 37.42 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16459.2MB, alloc=44.3MB, time=213.74
x[1] = 0.4847 1.717
h = 0.0001 0.004
y1[1] (numeric) = 3.54269404002 -1.25529589263
y1[1] (closed_form) = 3.54269404002 -1.25529589263
absolute error = 1.00e-30
relative error = 2.661e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.33898117898 2.3837776324
y2[1] (closed_form) = 2.33898117898 2.3837776324
absolute error = 4.243e-31
relative error = 1.270e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.753
Order of pole (three term test) = 28.83 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.753
Order of pole (three term test) = 37.44 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4848 1.721
h = 0.003 0.006
y1[1] (numeric) = 3.55211510349 -1.26090126446
y1[1] (closed_form) = 3.55211510349 -1.26090126446
absolute error = 1.00e-30
relative error = 2.653e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.34426830603 2.39384142778
y2[1] (closed_form) = 2.34426830603 2.39384142778
absolute error = 5.657e-31
relative error = 1.688e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.815
Order of pole (three term test) = 28.8 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.815
Order of pole (three term test) = 37.48 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16506.1MB, alloc=44.3MB, time=214.35
x[1] = 0.4878 1.727
h = 0.0001 0.005
y1[1] (numeric) = 3.56245705931 -1.27621148959
y1[1] (closed_form) = 3.56245705931 -1.27621148959
absolute error = 1.00e-30
relative error = 2.643e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.35955143354 2.40537949502
y2[1] (closed_form) = 2.35955143354 2.40537949502
absolute error = 5.657e-31
relative error = 1.679e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.91
Order of pole (three term test) = 28.81 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.91
Order of pole (three term test) = 37.51 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16553.4MB, alloc=44.3MB, time=214.98
x[1] = 0.4879 1.732
h = 0.0001 0.003
y1[1] (numeric) = 3.57437942985 -1.28326704353
y1[1] (closed_form) = 3.57437942985 -1.28326704353
absolute error = 9.434e-31
relative error = 2.484e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.36620695678 2.4180935864
y2[1] (closed_form) = 2.36620695678 2.4180935864
absolute error = 5.657e-31
relative error = 1.672e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 7.989
Order of pole (three term test) = 28.79 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 7.989
Order of pole (three term test) = 37.57 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16600.7MB, alloc=44.3MB, time=215.59
x[1] = 0.488 1.735
h = 0.001 0.001
y1[1] (numeric) = 3.58150828701 -1.28761402158
y1[1] (closed_form) = 3.58150828701 -1.28761402158
absolute error = 9.434e-31
relative error = 2.479e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.3703210693 2.42569886843
y2[1] (closed_form) = 2.3703210693 2.42569886843
absolute error = 5.657e-31
relative error = 1.668e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 8.037
Order of pole (three term test) = 28.77 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 8.037
Order of pole (three term test) = 37.6 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16648.1MB, alloc=44.3MB, time=216.20
x[1] = 0.489 1.736
h = 0.001 0.003
y1[1] (numeric) = 3.58256237593 -1.29141262338
y1[1] (closed_form) = 3.58256237593 -1.29141262338
absolute error = 9.434e-31
relative error = 2.477e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.37419261774 2.42699139108
y2[1] (closed_form) = 2.37419261774 2.42699139108
absolute error = 6.403e-31
relative error = 1.886e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 8.053
Order of pole (three term test) = 28.78 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 8.053
Order of pole (three term test) = 37.6 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.49 1.739
h = 0.0001 0.004
y1[1] (numeric) = 3.58847561482 -1.29797512061
y1[1] (closed_form) = 3.58847561482 -1.29797512061
absolute error = 1.030e-30
relative error = 2.698e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.3806622108 2.43345325312
y2[1] (closed_form) = 2.3806622108 2.43345325312
absolute error = 5.657e-31
relative error = 1.662e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 8.102
Order of pole (three term test) = 28.78 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 8.102
Order of pole (three term test) = 37.62 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16695.1MB, alloc=44.3MB, time=216.81
x[1] = 0.4901 1.743
h = 0.003 0.006
y1[1] (numeric) = 3.59809156211 -1.30375254414
y1[1] (closed_form) = 3.59809156211 -1.30375254414
absolute error = 1.030e-30
relative error = 2.690e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.38612498653 2.44369628781
y2[1] (closed_form) = 2.38612498653 2.44369628781
absolute error = 5.000e-31
relative error = 1.464e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 8.167
Order of pole (three term test) = 28.76 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 8.167
Order of pole (three term test) = 37.66 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16742.3MB, alloc=44.3MB, time=217.42
x[1] = 0.4931 1.749
h = 0.0001 0.005
y1[1] (numeric) = 3.60860692478 -1.31946488285
y1[1] (closed_form) = 3.60860692478 -1.31946488285
absolute error = 1.030e-30
relative error = 2.680e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.40180461621 2.45538157787
y2[1] (closed_form) = 2.40180461621 2.45538157787
absolute error = 5.000e-31
relative error = 1.456e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 8.265
Order of pole (three term test) = 28.77 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 8.265
Order of pole (three term test) = 37.7 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16789.4MB, alloc=44.3MB, time=218.02
x[1] = 0.4932 1.754
h = 0.0001 0.003
y1[1] (numeric) = 3.62077563643 -1.32673726738
y1[1] (closed_form) = 3.62077563643 -1.32673726738
absolute error = 1.030e-30
relative error = 2.670e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.40868157531 2.46832269779
y2[1] (closed_form) = 2.40868157531 2.46832269779
absolute error = 6.403e-31
relative error = 1.857e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 8.348
Order of pole (three term test) = 28.75 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 8.348
Order of pole (three term test) = 37.75 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16836.7MB, alloc=44.3MB, time=218.66
x[1] = 0.4933 1.757
h = 0.001 0.001
y1[1] (numeric) = 3.62805112917 -1.33121690173
y1[1] (closed_form) = 3.62805112917 -1.33121690173
absolute error = 1.030e-30
relative error = 2.664e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.41293094433 2.47606303465
y2[1] (closed_form) = 2.41293094433 2.47606303465
absolute error = 6.403e-31
relative error = 1.852e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 8.399
Order of pole (three term test) = 28.73 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 8.399
Order of pole (three term test) = 37.79 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4943 1.758
h = 0.001 0.003
y1[1] (numeric) = 3.62911292875 -1.33510852412
y1[1] (closed_form) = 3.62911292875 -1.33510852412
absolute error = 1.030e-30
relative error = 2.662e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.41689268886 2.47735845462
y2[1] (closed_form) = 2.41689268886 2.47735845462
absolute error = 6.403e-31
relative error = 1.850e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 8.415
Order of pole (three term test) = 28.74 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 8.415
Order of pole (three term test) = 37.79 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16883.8MB, alloc=44.3MB, time=219.26
x[1] = 0.4953 1.761
h = 0.0001 0.004
y1[1] (numeric) = 3.63513462384 -1.34184980341
y1[1] (closed_form) = 3.63513462384 -1.34184980341
absolute error = 1.030e-30
relative error = 2.657e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.42354024241 2.48391634574
y2[1] (closed_form) = 2.42354024241 2.48391634574
absolute error = 6.403e-31
relative error = 1.845e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 8.466
Order of pole (three term test) = 28.74 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 8.466
Order of pole (three term test) = 37.81 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16931.0MB, alloc=44.3MB, time=219.86
x[1] = 0.4954 1.765
h = 0.003 0.006
y1[1] (numeric) = 3.64494849169 -1.34780415531
y1[1] (closed_form) = 3.64494849169 -1.34780415531
absolute error = 1.030e-30
relative error = 2.649e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.42918354627 2.49434201576
y2[1] (closed_form) = 2.42918354627 2.49434201576
absolute error = 7.211e-31
relative error = 2.071e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 8.534
Order of pole (three term test) = 28.72 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 8.534
Order of pole (three term test) = 37.86 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=16978.1MB, alloc=44.3MB, time=220.46
x[1] = 0.4984 1.771
h = 0.0001 0.005
y1[1] (numeric) = 3.65563839101 -1.36392822358
y1[1] (closed_form) = 3.65563839101 -1.36392822358
absolute error = 1.030e-30
relative error = 2.639e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.44526955204 2.50617619947
y2[1] (closed_form) = 2.44526955204 2.50617619947
absolute error = 7.810e-31
relative error = 2.231e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 8.637
Order of pole (three term test) = 28.74 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 8.637
Order of pole (three term test) = 37.89 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17025.4MB, alloc=44.3MB, time=221.06
x[1] = 0.4985 1.776
h = 0.0001 0.003
y1[1] (numeric) = 3.6680572957 -1.37142359231
y1[1] (closed_form) = 3.6680572957 -1.37142359231
absolute error = 1.030e-30
relative error = 2.629e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.45237410047 2.51934864425
y2[1] (closed_form) = 2.45237410047 2.51934864425
absolute error = 7.810e-31
relative error = 2.221e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 8.724
Order of pole (three term test) = 28.71 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 8.724
Order of pole (three term test) = 37.95 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.4986 1.779
h = 0.001 0.001
y1[1] (numeric) = 3.67548169637 -1.3760396221
y1[1] (closed_form) = 3.67548169637 -1.3760396221
absolute error = 9.849e-31
relative error = 2.510e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.45676246856 2.5272265739
y2[1] (closed_form) = 2.45676246856 2.5272265739
absolute error = 7.071e-31
relative error = 2.006e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 8.776
Order of pole (three term test) = 28.7 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 8.776
Order of pole (three term test) = 37.99 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17072.6MB, alloc=44.3MB, time=221.67
x[1] = 0.4996 1.78
h = 0.001 0.003
y1[1] (numeric) = 3.67655078311 -1.38002628698
y1[1] (closed_form) = 3.67655078311 -1.38002628698
absolute error = 1.030e-30
relative error = 2.622e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.46081651754 2.52852455786
y2[1] (closed_form) = 2.46081651754 2.52852455786
absolute error = 7.071e-31
relative error = 2.004e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 8.794
Order of pole (three term test) = 28.71 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 8.794
Order of pole (three term test) = 37.98 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17119.9MB, alloc=44.3MB, time=222.27
x[1] = 0.5006 1.783
h = 0.0001 0.004
y1[1] (numeric) = 3.68268210764 -1.3869508262
y1[1] (closed_form) = 3.68268210764 -1.3869508262
absolute error = 1.118e-30
relative error = 2.841e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.46764659177 2.53517991762
y2[1] (closed_form) = 2.46764659177 2.53517991762
absolute error = 7.211e-31
relative error = 2.038e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 8.847
Order of pole (three term test) = 28.71 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 8.847
Order of pole (three term test) = 38.01 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17167.1MB, alloc=44.3MB, time=222.88
x[1] = 0.5007 1.787
h = 0.003 0.006
y1[1] (numeric) = 3.69269698176 -1.39308710997
y1[1] (closed_form) = 3.69269698176 -1.39308710997
absolute error = 1.118e-30
relative error = 2.833e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.47347542812 2.54579166015
y2[1] (closed_form) = 2.47347542812 2.54579166015
absolute error = 7.810e-31
relative error = 2.200e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 8.918
Order of pole (three term test) = 28.69 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 8.918
Order of pole (three term test) = 38.06 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5037 1.793
h = 0.0001 0.005
y1[1] (numeric) = 3.70356253107 -1.40963275221
y1[1] (closed_form) = 3.70356253107 -1.40963275221
absolute error = 1.030e-30
relative error = 2.598e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.48997790389 2.55777638144
y2[1] (closed_form) = 2.48997790389 2.55777638144
absolute error = 7.810e-31
relative error = 2.188e-29 %
Correct digits = 31
memory used=17214.2MB, alloc=44.3MB, time=223.47
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 9.025
Order of pole (three term test) = 28.71 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 9.025
Order of pole (three term test) = 38.09 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5038 1.798
h = 0.0001 0.003
y1[1] (numeric) = 3.71623554282 -1.41735741875
y1[1] (closed_form) = 3.71623554282 -1.41735741875
absolute error = 1.030e-30
relative error = 2.589e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.49731635283 2.5711844998
y2[1] (closed_form) = 2.49731635283 2.5711844998
absolute error = 7.810e-31
relative error = 2.179e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 9.116
Order of pole (three term test) = 28.68 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 9.116
Order of pole (three term test) = 38.15 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17261.5MB, alloc=44.3MB, time=224.07
x[1] = 0.5039 1.801
h = 0.001 0.001
y1[1] (numeric) = 3.72381115982 -1.42211368003
y1[1] (closed_form) = 3.72381115982 -1.42211368003
absolute error = 1.030e-30
relative error = 2.583e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.50184755801 2.57920259052
y2[1] (closed_form) = 2.50184755801 2.57920259052
absolute error = 7.071e-31
relative error = 1.968e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 9.171
Order of pole (three term test) = 28.67 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 9.171
Order of pole (three term test) = 38.19 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17308.9MB, alloc=44.3MB, time=224.68
x[1] = 0.5049 1.802
h = 0.0001 0.004
y1[1] (numeric) = 3.72488709138 -1.42619745435
y1[1] (closed_form) = 3.72488709138 -1.42619745435
absolute error = 8.944e-31
relative error = 2.242e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.50599606249 2.58050278477
y2[1] (closed_form) = 2.50599606249 2.58050278477
absolute error = 7.810e-31
relative error = 2.171e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 9.189
Order of pole (three term test) = 28.68 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 9.189
Order of pole (three term test) = 38.19 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17356.1MB, alloc=44.3MB, time=225.28
x[1] = 0.505 1.806
h = 0.003 0.006
y1[1] (numeric) = 3.7350797442 -1.4324919994
y1[1] (closed_form) = 3.7350797442 -1.4324919994
absolute error = 8.944e-31
relative error = 2.236e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.51198643104 2.59127977001
y2[1] (closed_form) = 2.51198643104 2.59127977001
absolute error = 7.071e-31
relative error = 1.959e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 9.263
Order of pole (three term test) = 28.66 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 9.263
Order of pole (three term test) = 38.24 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.508 1.812
h = 0.0001 0.005
y1[1] (numeric) = 3.74610255054 -1.44940646943
y1[1] (closed_form) = 3.74610255054 -1.44940646943
absolute error = 8.944e-31
relative error = 2.227e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.52885382557 2.60340049252
y2[1] (closed_form) = 2.52885382557 2.60340049252
absolute error = 7.810e-31
relative error = 2.152e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 9.375
Order of pole (three term test) = 28.69 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 9.375
Order of pole (three term test) = 38.28 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17403.0MB, alloc=44.3MB, time=225.87
x[1] = 0.5081 1.817
h = 0.0001 0.003
y1[1] (numeric) = 3.7590003078 -1.45733059711
y1[1] (closed_form) = 3.7590003078 -1.45733059711
absolute error = 8.944e-31
relative error = 2.219e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.53639590654 2.61701788508
y2[1] (closed_form) = 2.53639590654 2.61701788508
absolute error = 7.810e-31
relative error = 2.143e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 9.469
Order of pole (three term test) = 28.66 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 9.469
Order of pole (three term test) = 38.34 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17450.2MB, alloc=44.3MB, time=226.48
x[1] = 0.5082 1.82
h = 0.001 0.001
y1[1] (numeric) = 3.76670969743 -1.46220887309
y1[1] (closed_form) = 3.76670969743 -1.46220887309
absolute error = 8.944e-31
relative error = 2.214e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.54105149735 2.62516046725
y2[1] (closed_form) = 2.54105149735 2.62516046725
absolute error = 7.810e-31
relative error = 2.138e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 9.526
Order of pole (three term test) = 28.65 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 9.526
Order of pole (three term test) = 38.38 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17497.6MB, alloc=44.3MB, time=227.08
x[1] = 0.5092 1.821
h = 0.001 0.003
y1[1] (numeric) = 3.7677923428 -1.46637785212
y1[1] (closed_form) = 3.7677923428 -1.46637785212
absolute error = 8.944e-31
relative error = 2.212e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.54528304152 2.62646342561
y2[1] (closed_form) = 2.54528304152 2.62646342561
absolute error = 7.810e-31
relative error = 2.135e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 9.545
Order of pole (three term test) = 28.66 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 9.545
Order of pole (three term test) = 38.38 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17544.8MB, alloc=44.3MB, time=227.68
x[1] = 0.5102 1.824
h = 0.0001 0.004
y1[1] (numeric) = 3.77413312325 -1.47365434959
y1[1] (closed_form) = 3.77413312325 -1.47365434959
absolute error = 8.944e-31
relative error = 2.208e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.55246404434 2.63330629674
y2[1] (closed_form) = 2.55246404434 2.63330629674
absolute error = 7.071e-31
relative error = 1.928e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 9.602
Order of pole (three term test) = 28.67 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 9.602
Order of pole (three term test) = 38.4 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5103 1.828
h = 0.003 0.006
y1[1] (numeric) = 3.78453271859 -1.48014044657
y1[1] (closed_form) = 3.78453271859 -1.48014044657
absolute error = 9.434e-31
relative error = 2.322e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.55864955826 2.64427592448
y2[1] (closed_form) = 2.55864955826 2.64427592448
absolute error = 7.810e-31
relative error = 2.123e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 9.679
Order of pole (three term test) = 28.65 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 9.679
Order of pole (three term test) = 38.46 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17591.8MB, alloc=44.3MB, time=228.28
x[1] = 0.5133 1.834
h = 0.0001 0.005
y1[1] (numeric) = 3.79573332059 -1.49749542029
y1[1] (closed_form) = 3.79573332059 -1.49749542029
absolute error = 1.030e-30
relative error = 2.523e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.57595278916 2.65655029309
y2[1] (closed_form) = 2.57595278916 2.65655029309
absolute error = 7.211e-31
relative error = 1.949e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 9.796
Order of pole (three term test) = 28.68 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 9.796
Order of pole (three term test) = 38.5 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17639.0MB, alloc=44.3MB, time=228.88
x[1] = 0.5134 1.839
h = 0.0001 0.003
y1[1] (numeric) = 3.80889271409 -1.5056609845
y1[1] (closed_form) = 3.80889271409 -1.5056609845
absolute error = 9.434e-31
relative error = 2.303e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.5837408941 2.67041167214
y2[1] (closed_form) = 2.5837408941 2.67041167214
absolute error = 6.403e-31
relative error = 1.723e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 9.895
Order of pole (three term test) = 28.65 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 9.895
Order of pole (three term test) = 38.56 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17686.3MB, alloc=44.3MB, time=229.48
x[1] = 0.5135 1.842
h = 0.001 0.001
y1[1] (numeric) = 3.81675776056 -1.51068686727
y1[1] (closed_form) = 3.81675776056 -1.51068686727
absolute error = 9.434e-31
relative error = 2.298e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.58854669439 2.67869932449
y2[1] (closed_form) = 2.58854669439 2.67869932449
absolute error = 7.211e-31
relative error = 1.936e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 9.954
Order of pole (three term test) = 28.64 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 9.954
Order of pole (three term test) = 38.6 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17733.8MB, alloc=44.3MB, time=230.09
x[1] = 0.5145 1.843
h = 0.001 0.003
y1[1] (numeric) = 3.81784640109 -1.51495693041
y1[1] (closed_form) = 3.81784640109 -1.51495693041
absolute error = 9.434e-31
relative error = 2.297e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.59287681815 2.68000380539
y2[1] (closed_form) = 2.59287681815 2.68000380539
absolute error = 7.211e-31
relative error = 1.934e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 9.974
Order of pole (three term test) = 28.66 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 9.974
Order of pole (three term test) = 38.6 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5155 1.846
h = 0.0001 0.004
y1[1] (numeric) = 3.82430026333 -1.52243009444
y1[1] (closed_form) = 3.82430026333 -1.52243009444
absolute error = 9.434e-31
relative error = 2.292e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.60025396363 2.68694833093
y2[1] (closed_form) = 2.60025396363 2.68694833093
absolute error = 7.211e-31
relative error = 1.929e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 10.03
Order of pole (three term test) = 28.66 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 10.03
Order of pole (three term test) = 38.63 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17780.6MB, alloc=44.3MB, time=230.68
x[1] = 0.5156 1.85
h = 0.003 0.006
y1[1] (numeric) = 3.83491002992 -1.52911312588
y1[1] (closed_form) = 3.83491002992 -1.52911312588
absolute error = 9.434e-31
relative error = 2.285e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.60664000133 2.69811415991
y2[1] (closed_form) = 2.60664000133 2.69811415991
absolute error = 6.708e-31
relative error = 1.788e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 10.11
Order of pole (three term test) = 28.64 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 10.11
Order of pole (three term test) = 38.68 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17827.8MB, alloc=44.3MB, time=231.28
x[1] = 0.5186 1.856
h = 0.0001 0.005
y1[1] (numeric) = 3.84628948669 -1.54691912799
y1[1] (closed_form) = 3.84628948669 -1.54691912799
absolute error = 8.944e-31
relative error = 2.157e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.62438982014 2.71054373536
y2[1] (closed_form) = 2.62438982014 2.71054373536
absolute error = 6.403e-31
relative error = 1.697e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 10.24
Order of pole (three term test) = 28.68 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 10.24
Order of pole (three term test) = 38.72 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17875.0MB, alloc=44.3MB, time=231.89
x[1] = 0.5187 1.861
h = 0.0001 0.003
y1[1] (numeric) = 3.85971461176 -1.5553329206
y1[1] (closed_form) = 3.85971461176 -1.5553329206
absolute error = 9.434e-31
relative error = 2.267e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.63243073254 2.72465360429
y2[1] (closed_form) = 2.63243073254 2.72465360429
absolute error = 7.211e-31
relative error = 1.903e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 10.34
Order of pole (three term test) = 28.66 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 10.34
Order of pole (three term test) = 38.79 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17922.5MB, alloc=44.3MB, time=232.50
x[1] = 0.5188 1.864
h = 0.001 0.001
y1[1] (numeric) = 3.86773772881 -1.56051053584
y1[1] (closed_form) = 3.86773772881 -1.56051053584
absolute error = 9.434e-31
relative error = 2.262e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.63739086621 2.73308898455
y2[1] (closed_form) = 2.63739086621 2.73308898455
absolute error = 7.211e-31
relative error = 1.899e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 10.4
Order of pole (three term test) = 28.65 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 10.4
Order of pole (three term test) = 38.83 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5198 1.865
h = 0.001 0.003
y1[1] (numeric) = 3.86883186496 -1.5648838838
y1[1] (closed_form) = 3.86883186496 -1.5648838838
absolute error = 8.062e-31
relative error = 1.932e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.641821848 2.73439457288
y2[1] (closed_form) = 2.641821848 2.73439457288
absolute error = 6.403e-31
relative error = 1.684e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 10.42
Order of pole (three term test) = 28.66 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 10.42
Order of pole (three term test) = 38.83 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=17969.4MB, alloc=44.3MB, time=233.09
x[1] = 0.5208 1.868
h = 0.0001 0.004
y1[1] (numeric) = 3.87540000859 -1.57255862673
y1[1] (closed_form) = 3.87540000859 -1.57255862673
absolute error = 8.602e-31
relative error = 2.057e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.64940011912 2.74144219853
y2[1] (closed_form) = 2.64940011912 2.74144219853
absolute error = 6.403e-31
relative error = 1.680e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 10.49
Order of pole (three term test) = 28.67 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 10.49
Order of pole (three term test) = 38.86 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18016.6MB, alloc=44.3MB, time=233.70
x[1] = 0.5209 1.872
h = 0.003 0.006
y1[1] (numeric) = 3.88622322507 -1.57944411397
y1[1] (closed_form) = 3.88622322507 -1.57944411397
absolute error = 8.602e-31
relative error = 2.051e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.65599219623 2.75280783015
y2[1] (closed_form) = 2.65599219623 2.75280783015
absolute error = 5.831e-31
relative error = 1.524e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 10.57
Order of pole (three term test) = 28.65 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 10.57
Order of pole (three term test) = 38.92 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18063.8MB, alloc=44.3MB, time=234.30
x[1] = 0.5239 1.878
h = 0.0001 0.005
y1[1] (numeric) = 3.89778257209 -1.59771191652
y1[1] (closed_form) = 3.89778257209 -1.59771191652
absolute error = 8.602e-31
relative error = 2.042e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.67419959429 2.7653941398
y2[1] (closed_form) = 2.67419959429 2.7653941398
absolute error = 7.211e-31
relative error = 1.875e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 10.7
Order of pole (three term test) = 28.69 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 10.7
Order of pole (three term test) = 38.96 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.524 1.883
h = 0.0001 0.003
y1[1] (numeric) = 3.91147758729 -1.60638090454
y1[1] (closed_form) = 3.91147758729 -1.60638090454
absolute error = 8.062e-31
relative error = 1.907e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.68250027086 2.77975705634
y2[1] (closed_form) = 2.68250027086 2.77975705634
absolute error = 6.708e-31
relative error = 1.737e-29 %
Correct digits = 31
memory used=18111.1MB, alloc=44.3MB, time=234.90
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 10.8
Order of pole (three term test) = 28.67 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 10.8
Order of pole (three term test) = 39.03 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5241 1.886
h = 0.001 0.001
y1[1] (numeric) = 3.91966122533 -1.61171448399
y1[1] (closed_form) = 3.91966122533 -1.61171448399
absolute error = 7.810e-31
relative error = 1.843e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.68761896662 2.78834285361
y2[1] (closed_form) = 2.68761896662 2.78834285361
absolute error = 6.708e-31
relative error = 1.732e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 10.87
Order of pole (three term test) = 28.66 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 10.87
Order of pole (three term test) = 39.08 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18158.3MB, alloc=44.3MB, time=235.52
x[1] = 0.5251 1.887
h = 0.001 0.003
y1[1] (numeric) = 3.92076033601 -1.61619336584
y1[1] (closed_form) = 3.92076033601 -1.61619336584
absolute error = 7.810e-31
relative error = 1.842e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.69215313111 2.78964911122
y2[1] (closed_form) = 2.69215313111 2.78964911122
absolute error = 6.708e-31
relative error = 1.730e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 10.89
Order of pole (three term test) = 28.68 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 10.89
Order of pole (three term test) = 39.08 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18205.5MB, alloc=44.3MB, time=236.12
x[1] = 0.5261 1.89
h = 0.0001 0.004
y1[1] (numeric) = 3.9274439657 -1.62407471858
y1[1] (closed_form) = 3.9274439657 -1.62407471858
absolute error = 7.810e-31
relative error = 1.838e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.69993762662 2.79680128276
y2[1] (closed_form) = 2.69993762662 2.79680128276
absolute error = 6.708e-31
relative error = 1.726e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 10.96
Order of pole (three term test) = 28.69 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 10.96
Order of pole (three term test) = 39.11 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18252.6MB, alloc=44.3MB, time=236.72
x[1] = 0.5262 1.894
h = 0.003 0.006
y1[1] (numeric) = 3.9384839608 -1.63116832502
y1[1] (closed_form) = 3.9384839608 -1.63116832502
absolute error = 8.062e-31
relative error = 1.891e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.70674139927 2.8083703615
y2[1] (closed_form) = 2.70674139927 2.8083703615
absolute error = 6.708e-31
relative error = 1.720e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 11.04
Order of pole (three term test) = 28.68 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 11.04
Order of pole (three term test) = 39.17 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5292 1.9
h = 0.0001 0.005
y1[1] (numeric) = 3.95022420787 -1.64990895256
y1[1] (closed_form) = 3.95022420787 -1.64990895256
absolute error = 7.810e-31
relative error = 1.824e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.7254176131 2.82111489744
y2[1] (closed_form) = 2.7254176131 2.82111489744
absolute error = 6.708e-31
relative error = 1.710e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 11.18
Order of pole (three term test) = 28.72 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 11.18
Order of pole (three term test) = 39.21 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18299.7MB, alloc=44.3MB, time=237.32
x[1] = 0.5293 1.905
h = 0.0001 0.003
y1[1] (numeric) = 3.96419333531 -1.65884028232
y1[1] (closed_form) = 3.96419333531 -1.65884028232
absolute error = 7.211e-31
relative error = 1.678e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.733985188 2.8357354741
y2[1] (closed_form) = 2.733985188 2.8357354741
absolute error = 5.831e-31
relative error = 1.480e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 11.29
Order of pole (three term test) = 28.7 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 11.29
Order of pole (three term test) = 39.29 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18347.0MB, alloc=44.3MB, time=237.92
x[1] = 0.5294 1.908
h = 0.001 0.001
y1[1] (numeric) = 3.97253998156 -1.66433416623
y1[1] (closed_form) = 3.97253998156 -1.66433416623
absolute error = 7.810e-31
relative error = 1.813e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.73926678195 2.84447440907
y2[1] (closed_form) = 2.73926678195 2.84447440907
absolute error = 6.708e-31
relative error = 1.699e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 11.36
Order of pole (three term test) = 28.69 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 11.36
Order of pole (three term test) = 39.33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18394.3MB, alloc=44.3MB, time=238.52
x[1] = 0.5304 1.909
h = 0.0001 0.004
y1[1] (numeric) = 3.97364352332 -1.66892088033
y1[1] (closed_form) = 3.97364352332 -1.66892088033
absolute error = 7.211e-31
relative error = 1.673e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.74390650101 2.84578087407
y2[1] (closed_form) = 2.74390650101 2.84578087407
absolute error = 5.831e-31
relative error = 1.475e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 11.38
Order of pole (three term test) = 28.71 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 11.38
Order of pole (three term test) = 39.33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18441.7MB, alloc=44.3MB, time=239.13
x[1] = 0.5305 1.913
h = 0.003 0.006
y1[1] (numeric) = 3.98487539181 -1.67619563777
y1[1] (closed_form) = 3.98487539181 -1.67619563777
absolute error = 7.211e-31
relative error = 1.668e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.75089464989 2.85753064089
y2[1] (closed_form) = 2.75089464989 2.85753064089
absolute error = 6.708e-31
relative error = 1.691e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 11.47
Order of pole (three term test) = 28.7 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 11.47
Order of pole (three term test) = 39.39 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5335 1.919
h = 0.0001 0.005
y1[1] (numeric) = 3.99677795485 -1.6953501114
y1[1] (closed_form) = 3.99677795485 -1.6953501114
absolute error = 8.062e-31
relative error = 1.857e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.76998168555 2.87041831057
y2[1] (closed_form) = 2.76998168555 2.87041831057
absolute error = 5.831e-31
relative error = 1.462e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 11.61
Order of pole (three term test) = 28.75 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 11.61
Order of pole (three term test) = 39.44 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18488.6MB, alloc=44.3MB, time=239.72
x[1] = 0.5336 1.924
h = 0.0001 0.003
y1[1] (numeric) = 4.01098970289 -1.70450978391
y1[1] (closed_form) = 4.01098970289 -1.70450978391
absolute error = 8.062e-31
relative error = 1.850e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.77878170411 2.88526770653
y2[1] (closed_form) = 2.77878170411 2.88526770653
absolute error = 7.211e-31
relative error = 1.800e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 11.73
Order of pole (three term test) = 28.74 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 11.73
Order of pole (three term test) = 39.52 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18535.8MB, alloc=44.3MB, time=240.32
x[1] = 0.5337 1.927
h = 0.001 0.001
y1[1] (numeric) = 4.01948066303 -1.71014323015
y1[1] (closed_form) = 4.01948066303 -1.71014323015
absolute error = 8.062e-31
relative error = 1.846e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.78420520264 2.89414267305
y2[1] (closed_form) = 2.78420520264 2.89414267305
absolute error = 7.211e-31
relative error = 1.796e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 11.8
Order of pole (three term test) = 28.73 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 11.8
Order of pole (three term test) = 39.56 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18583.2MB, alloc=44.3MB, time=240.93
x[1] = 0.5347 1.928
h = 0.001 0.003
y1[1] (numeric) = 4.0205888888 -1.71482459787
y1[1] (closed_form) = 4.0205888888 -1.71482459787
absolute error = 8.062e-31
relative error = 1.844e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.78893772112 2.8954502247
y2[1] (closed_form) = 2.78893772112 2.8954502247
absolute error = 7.616e-31
relative error = 1.894e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 11.82
Order of pole (three term test) = 28.75 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 11.82
Order of pole (three term test) = 39.56 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18630.5MB, alloc=44.3MB, time=241.54
x[1] = 0.5357 1.931
h = 0.0001 0.004
y1[1] (numeric) = 4.02749324057 -1.72310280025
y1[1] (closed_form) = 4.02749324057 -1.72310280025
absolute error = 8.062e-31
relative error = 1.840e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.79711864415 2.90280338338
y2[1] (closed_form) = 2.79711864415 2.90280338338
absolute error = 6.708e-31
relative error = 1.664e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 11.89
Order of pole (three term test) = 28.76 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 11.89
Order of pole (three term test) = 39.6 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5358 1.935
h = 0.003 0.006
y1[1] (numeric) = 4.0389482873 -1.73059656385
y1[1] (closed_form) = 4.0389482873 -1.73059656385
absolute error = 7.211e-31
relative error = 1.641e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.80432935455 2.91476356601
y2[1] (closed_form) = 2.80432935455 2.91476356601
absolute error = 6.708e-31
relative error = 1.658e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 11.99
Order of pole (three term test) = 28.75 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 11.99
Order of pole (three term test) = 39.66 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18677.5MB, alloc=44.3MB, time=242.14
x[1] = 0.5388 1.941
h = 0.0001 0.005
y1[1] (numeric) = 4.0510336924 -1.75024505552
y1[1] (closed_form) = 4.0510336924 -1.75024505552
absolute error = 8.062e-31
relative error = 1.827e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.82390676918 2.9278122789
y2[1] (closed_form) = 2.82390676918 2.9278122789
absolute error = 6.708e-31
relative error = 1.649e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 12.13
Order of pole (three term test) = 28.81 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 12.13
Order of pole (three term test) = 39.71 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18724.8MB, alloc=44.3MB, time=242.74
x[1] = 0.5389 1.946
h = 0.0001 0.003
y1[1] (numeric) = 4.06552766938 -1.75968080709
y1[1] (closed_form) = 4.06552766938 -1.75968080709
absolute error = 7.211e-31
relative error = 1.628e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.83298739173 2.94292815528
y2[1] (closed_form) = 2.83298739173 2.94292815528
absolute error = 7.211e-31
relative error = 1.765e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 12.26
Order of pole (three term test) = 28.8 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 12.26
Order of pole (three term test) = 39.79 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18771.9MB, alloc=44.3MB, time=243.34
x[1] = 0.539 1.949
h = 0.001 0.001
y1[1] (numeric) = 4.07418641914 -1.76548290105
y1[1] (closed_form) = 4.07418641914 -1.76548290105
absolute error = 7.211e-31
relative error = 1.624e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.83858211836 2.95196146174
y2[1] (closed_form) = 2.83858211836 2.95196146174
absolute error = 7.211e-31
relative error = 1.761e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 12.33
Order of pole (three term test) = 28.79 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 12.33
Order of pole (three term test) = 39.84 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18819.3MB, alloc=44.3MB, time=243.94
x[1] = 0.54 1.95
h = 0.001 0.003
y1[1] (numeric) = 4.0752980314 -1.77027651919
y1[1] (closed_form) = 4.0752980314 -1.77027651919
absolute error = 7.211e-31
relative error = 1.623e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.84342474007 2.95326832507
y2[1] (closed_form) = 2.84342474007 2.95326832507
absolute error = 7.211e-31
relative error = 1.759e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 12.35
Order of pole (three term test) = 28.81 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 12.35
Order of pole (three term test) = 39.84 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.541 1.953
h = 0.0001 0.004
y1[1] (numeric) = 4.08232140286 -1.77877638708
y1[1] (closed_form) = 4.08232140286 -1.77877638708
absolute error = 8.062e-31
relative error = 1.811e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.85182711982 2.96073022699
y2[1] (closed_form) = 2.85182711982 2.96073022699
absolute error = 7.211e-31
relative error = 1.754e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 12.43
Order of pole (three term test) = 28.83 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 12.43
Order of pole (three term test) = 39.87 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18866.3MB, alloc=44.3MB, time=244.54
x[1] = 0.5411 1.957
h = 0.003 0.006
y1[1] (numeric) = 4.09400310278 -1.78649524493
y1[1] (closed_form) = 4.09400310278 -1.78649524493
absolute error = 8.062e-31
relative error = 1.805e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.85926646858 2.97290459669
y2[1] (closed_form) = 2.85926646858 2.97290459669
absolute error = 8.062e-31
relative error = 1.955e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 12.53
Order of pole (three term test) = 28.82 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 12.53
Order of pole (three term test) = 39.94 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18913.5MB, alloc=44.3MB, time=245.14
x[1] = 0.5441 1.963
h = 0.0001 0.005
y1[1] (numeric) = 4.10627227759 -1.80664953138
y1[1] (closed_form) = 4.10627227759 -1.80664953138
absolute error = 8.602e-31
relative error = 1.918e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.87934623117 2.98611573619
y2[1] (closed_form) = 2.87934623117 2.98611573619
absolute error = 8.602e-31
relative error = 2.074e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 12.68
Order of pole (three term test) = 28.88 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 12.68
Order of pole (three term test) = 39.99 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=18960.8MB, alloc=44.3MB, time=245.74
x[1] = 0.5442 1.968
h = 0.0001 0.003
y1[1] (numeric) = 4.12105289106 -1.81636904422
y1[1] (closed_form) = 4.12105289106 -1.81636904422
absolute error = 8.602e-31
relative error = 1.910e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.88871512307 3.00150286692
y2[1] (closed_form) = 2.88871512307 3.00150286692
absolute error = 8.602e-31
relative error = 2.065e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 12.81
Order of pole (three term test) = 28.88 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 12.81
Order of pole (three term test) = 40.08 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5443 1.971
h = 0.001 0.001
y1[1] (numeric) = 4.12988202499 -1.8223444506
y1[1] (closed_form) = 4.12988202499 -1.8223444506
absolute error = 8.602e-31
relative error = 1.906e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.89448573528 3.01069732701
y2[1] (closed_form) = 2.89448573528 3.01069732701
absolute error = 8.602e-31
relative error = 2.060e-29 %
Correct digits = 31
memory used=19008.1MB, alloc=44.3MB, time=246.35
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 12.88
Order of pole (three term test) = 28.87 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 12.88
Order of pole (three term test) = 40.13 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5453 1.972
h = 0.001 0.003
y1[1] (numeric) = 4.1309964126 -1.82725276392
y1[1] (closed_form) = 4.1309964126 -1.82725276392
absolute error = 8.602e-31
relative error = 1.904e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.89944097289 3.01200296845
y2[1] (closed_form) = 2.89944097289 3.01200296845
absolute error = 9.434e-31
relative error = 2.257e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 12.91
Order of pole (three term test) = 28.9 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 12.91
Order of pole (three term test) = 40.13 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19055.2MB, alloc=44.3MB, time=246.95
x[1] = 0.5463 1.975
h = 0.0001 0.004
y1[1] (numeric) = 4.13814002356 -1.83597981057
y1[1] (closed_form) = 4.13814002356 -1.83597981057
absolute error = 9.220e-31
relative error = 2.037e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.90807038043 3.01957505609
y2[1] (closed_form) = 2.90807038043 3.01957505609
absolute error = 1.00e-30
relative error = 2.385e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 12.99
Order of pole (three term test) = 28.92 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 12.99
Order of pole (three term test) = 40.17 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19102.4MB, alloc=44.3MB, time=247.55
x[1] = 0.5464 1.979
h = 0.003 0.006
y1[1] (numeric) = 4.15005190244 -1.84393000626
y1[1] (closed_form) = 4.15005190244 -1.84393000626
absolute error = 8.602e-31
relative error = 1.894e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.91574459861 3.03196742845
y2[1] (closed_form) = 2.91574459861 3.03196742845
absolute error = 8.602e-31
relative error = 2.045e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 13.09
Order of pole (three term test) = 28.91 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 13.09
Order of pole (three term test) = 40.24 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19149.6MB, alloc=44.3MB, time=248.15
x[1] = 0.5494 1.985
h = 0.0001 0.005
y1[1] (numeric) = 4.16250574041 -1.86460213767
y1[1] (closed_form) = 4.16250574041 -1.86460213767
absolute error = 9.220e-31
relative error = 2.021e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.93633894504 3.04534233485
y2[1] (closed_form) = 2.93633894504 3.04534233485
absolute error = 8.602e-31
relative error = 2.033e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 13.25
Order of pole (three term test) = 28.98 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 13.25
Order of pole (three term test) = 40.29 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5495 1.99
h = 0.0001 0.003
y1[1] (numeric) = 4.17757746242 -1.87461329023
y1[1] (closed_form) = 4.17757746242 -1.87461329023
absolute error = 8.602e-31
relative error = 1.879e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 2.94600396634 3.06100555027
y2[1] (closed_form) = 2.94600396634 3.06100555027
absolute error = 8.602e-31
relative error = 2.025e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 13.38
Order of pole (three term test) = 28.98 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 13.38
Order of pole (three term test) = 40.38 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19196.6MB, alloc=44.3MB, time=248.75
x[1] = 0.5496 1.993
h = 0.001 0.001
y1[1] (numeric) = 4.18657961237 -1.88076679246
y1[1] (closed_form) = 4.18657961237 -1.88076679246
absolute error = 8.602e-31
relative error = 1.874e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 2.95195523939 3.07036401017
y2[1] (closed_form) = 2.95195523939 3.07036401017
absolute error = 9.220e-31
relative error = 2.165e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 13.46
Order of pole (three term test) = 28.98 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 13.46
Order of pole (three term test) = 40.43 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19244.0MB, alloc=44.3MB, time=249.36
x[1] = 0.5506 1.994
h = 0.001 0.003
y1[1] (numeric) = 4.1876961387 -1.88579229866
y1[1] (closed_form) = 4.1876961387 -1.88579229866
absolute error = 8.602e-31
relative error = 1.873e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 2.95702565659 3.07166786934
y2[1] (closed_form) = 2.95702565659 3.07166786934
absolute error = 1.00e-30
relative error = 2.345e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 13.49
Order of pole (three term test) = 29 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 13.49
Order of pole (three term test) = 40.43 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19291.1MB, alloc=44.3MB, time=249.96
x[1] = 0.5516 1.997
h = 0.0001 0.004
y1[1] (numeric) = 4.19496121079 -1.89475216896
y1[1] (closed_form) = 4.19496121079 -1.89475216896
absolute error = 8.602e-31
relative error = 1.869e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 2.96588779222 3.07935158244
y2[1] (closed_form) = 2.96588779222 3.07935158244
absolute error = 9.220e-31
relative error = 2.156e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 13.57
Order of pole (three term test) = 29.03 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 13.57
Order of pole (three term test) = 40.47 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19338.3MB, alloc=44.3MB, time=250.56
x[1] = 0.5517 2.001
h = 0.003 0.006
y1[1] (numeric) = 4.2071068454 -1.90294010523
y1[1] (closed_form) = 4.2071068454 -1.90294010523
absolute error = 8.062e-31
relative error = 1.746e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 2.97380326878 3.09196581766
y2[1] (closed_form) = 2.97380326878 3.09196581766
absolute error = 9.220e-31
relative error = 2.149e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 13.68
Order of pole (three term test) = 29.03 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 13.68
Order of pole (three term test) = 40.55 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5547 2.007
h = 0.0001 0.005
y1[1] (numeric) = 4.21974620341 -1.92414241094
y1[1] (closed_form) = 4.21974620341 -1.92414241094
absolute error = 7.810e-31
relative error = 1.684e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 2.99492470776 3.10550578593
y2[1] (closed_form) = 2.99492470776 3.10550578593
absolute error = 9.220e-31
relative error = 2.137e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 13.84
Order of pole (three term test) = 29.1 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 13.84
Order of pole (three term test) = 40.6 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19385.2MB, alloc=44.3MB, time=251.15
x[1] = 0.5548 2.012
h = 0.0001 0.003
y1[1] (numeric) = 4.23511357073 -1.93445328254
y1[1] (closed_form) = 4.23511357073 -1.93445328254
absolute error = 8.062e-31
relative error = 1.732e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 3.00489391789 3.12144997321
y2[1] (closed_form) = 3.00489391789 3.12144997321
absolute error = 9.220e-31
relative error = 2.128e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 13.98
Order of pole (three term test) = 29.1 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 13.98
Order of pole (three term test) = 40.7 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19432.6MB, alloc=44.3MB, time=251.75
x[1] = 0.5549 2.015
h = 0.001 0.001
y1[1] (numeric) = 4.24429140587 -1.94078978559
y1[1] (closed_form) = 4.24429140587 -1.94078978559
absolute error = 7.211e-31
relative error = 1.545e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 3.01103074767 3.13097531169
y2[1] (closed_form) = 3.01103074767 3.13097531169
absolute error = 9.220e-31
relative error = 2.122e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 14.07
Order of pole (three term test) = 29.11 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 14.07
Order of pole (three term test) = 40.75 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19480.0MB, alloc=44.3MB, time=252.36
x[1] = 0.5559 2.016
h = 0.0001 0.004
y1[1] (numeric) = 4.24540940793 -1.94593503632
y1[1] (closed_form) = 4.24540940793 -1.94593503632
absolute error = 8.602e-31
relative error = 1.842e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 3.01621896027 3.13227680055
y2[1] (closed_form) = 3.01621896027 3.13227680055
absolute error = 8.485e-31
relative error = 1.951e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 14.1
Order of pole (three term test) = 29.13 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 14.1
Order of pole (three term test) = 40.75 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19527.2MB, alloc=44.3MB, time=252.96
x[1] = 0.556 2.02
h = 0.003 0.006
y1[1] (numeric) = 4.25776209368 -1.95433001975
y1[1] (closed_form) = 4.25776209368 -1.95433001975
absolute error = 8.062e-31
relative error = 1.721e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 3.02434463728 3.14508811377
y2[1] (closed_form) = 3.02434463728 3.14508811377
absolute error = 8.485e-31
relative error = 1.945e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 14.21
Order of pole (three term test) = 29.14 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 14.21
Order of pole (three term test) = 40.83 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.559 2.026
h = 0.0001 0.005
y1[1] (numeric) = 4.27056831816 -1.97599654921
y1[1] (closed_form) = 4.27056831816 -1.97599654921
absolute error = 8.062e-31
relative error = 1.713e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 3.04592802297 3.1587776491
y2[1] (closed_form) = 3.04592802297 3.1587776491
absolute error = 8.485e-31
relative error = 1.934e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 14.38
Order of pole (three term test) = 29.22 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 14.38
Order of pole (three term test) = 40.89 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19574.2MB, alloc=44.3MB, time=253.56
x[1] = 0.5591 2.031
h = 0.0001 0.003
y1[1] (numeric) = 4.28619755461 -1.98656843903
y1[1] (closed_form) = 4.28619755461 -1.98656843903
absolute error = 8.602e-31
relative error = 1.821e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 3.05616225107 3.17497140266
y2[1] (closed_form) = 3.05616225107 3.17497140266
absolute error = 9.220e-31
relative error = 2.092e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 14.53
Order of pole (three term test) = 29.23 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 14.53
Order of pole (three term test) = 40.99 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19621.6MB, alloc=44.3MB, time=254.16
x[1] = 0.5592 2.034
h = 0.001 0.001
y1[1] (numeric) = 4.2955310414 -1.99306434906
y1[1] (closed_form) = 4.2955310414 -1.99306434906
absolute error = 8.602e-31
relative error = 1.817e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 3.06246078148 3.18464500699
y2[1] (closed_form) = 3.06246078148 3.18464500699
absolute error = 8.485e-31
relative error = 1.921e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 14.61
Order of pole (three term test) = 29.23 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 14.61
Order of pole (three term test) = 41.05 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19668.9MB, alloc=44.3MB, time=254.77
x[1] = 0.5602 2.035
h = 0.001 0.003
y1[1] (numeric) = 4.29665123082 -1.99831475075
y1[1] (closed_form) = 4.29665123082 -1.99831475075
absolute error = 8.602e-31
relative error = 1.815e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 3.06775256195 3.18594540945
y2[1] (closed_form) = 3.06775256195 3.18594540945
absolute error = 8.485e-31
relative error = 1.919e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 14.64
Order of pole (three term test) = 29.26 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 14.64
Order of pole (three term test) = 41.05 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19716.2MB, alloc=44.3MB, time=255.37
x[1] = 0.5612 2.038
h = 0.0001 0.004
y1[1] (numeric) = 4.30414850674 -2.00772185709
y1[1] (closed_form) = 4.30414850674 -2.00772185709
absolute error = 8.602e-31
relative error = 1.811e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 3.07706200658 3.19384359015
y2[1] (closed_form) = 3.07706200658 3.19384359015
absolute error = 9.220e-31
relative error = 2.079e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 14.73
Order of pole (three term test) = 29.29 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 14.73
Order of pole (three term test) = 41.09 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5613 2.042
h = 0.003 0.006
y1[1] (numeric) = 4.31674182085 -2.01636688756
y1[1] (closed_form) = 4.31674182085 -2.01636688756
absolute error = 7.810e-31
relative error = 1.639e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 3.08544121655 3.20688414955
y2[1] (closed_form) = 3.08544121655 3.20688414955
absolute error = 9.220e-31
relative error = 2.072e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 14.85
Order of pole (three term test) = 29.3 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 14.85
Order of pole (three term test) = 41.17 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19763.1MB, alloc=44.3MB, time=255.96
x[1] = 0.5643 2.048
h = 0.0001 0.005
y1[1] (numeric) = 4.3297352089 -2.03858728735
y1[1] (closed_form) = 4.3297352089 -2.03858728735
absolute error = 7.810e-31
relative error = 1.632e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 3.10757570324 3.2207411846
y2[1] (closed_form) = 3.10757570324 3.2207411846
absolute error = 9.220e-31
relative error = 2.060e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 15.03
Order of pole (three term test) = 29.39 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 15.03
Order of pole (three term test) = 41.23 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19810.1MB, alloc=44.3MB, time=256.56
x[1] = 0.5644 2.053
h = 0.0001 0.003
y1[1] (numeric) = 4.34566880747 -2.04947442494
y1[1] (closed_form) = 4.34566880747 -2.04947442494
absolute error = 8.485e-31
relative error = 1.766e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 3.11812960437 3.2372252581
y2[1] (closed_form) = 3.11812960437 3.2372252581
absolute error = 9.220e-31
relative error = 2.051e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 15.18
Order of pole (three term test) = 29.4 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 15.18
Order of pole (three term test) = 41.33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19857.6MB, alloc=44.3MB, time=257.18
x[1] = 0.5645 2.056
h = 0.001 0.001
y1[1] (numeric) = 4.3551831078 -2.05616276333
y1[1] (closed_form) = 4.3551831078 -2.05616276333
absolute error = 8.485e-31
relative error = 1.762e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 3.12462309739 3.24707124707
y2[1] (closed_form) = 3.12462309739 3.24707124707
absolute error = 8.485e-31
relative error = 1.883e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 15.27
Order of pole (three term test) = 29.41 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 15.27
Order of pole (three term test) = 41.4 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19904.9MB, alloc=44.3MB, time=257.79
x[1] = 0.5655 2.057
h = 0.001 0.003
y1[1] (numeric) = 4.35630349799 -2.06153781323
y1[1] (closed_form) = 4.35630349799 -2.06153781323
absolute error = 8.485e-31
relative error = 1.761e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 3.13003769077 3.24836814098
y2[1] (closed_form) = 3.13003769077 3.24836814098
absolute error = 9.220e-31
relative error = 2.044e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 15.3
Order of pole (three term test) = 29.44 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 15.3
Order of pole (three term test) = 41.4 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5665 2.06
h = 0.0001 0.004
y1[1] (numeric) = 4.36392580584 -2.07119462999
y1[1] (closed_form) = 4.36392580584 -2.07119462999
absolute error = 8.485e-31
relative error = 1.757e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 3.13959689371 3.25638211815
y2[1] (closed_form) = 3.13959689371 3.25638211815
absolute error = 9.220e-31
relative error = 2.038e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 15.39
Order of pole (three term test) = 29.48 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 15.39
Order of pole (three term test) = 41.44 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19951.8MB, alloc=44.3MB, time=258.38
x[1] = 0.5666 2.064
h = 0.003 0.006
y1[1] (numeric) = 4.37676347372 -2.08009658595
y1[1] (closed_form) = 4.37676347372 -2.08009658595
absolute error = 7.810e-31
relative error = 1.612e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 3.1482364982 3.26965591504
y2[1] (closed_form) = 3.1482364982 3.26965591504
absolute error = 1.063e-30
relative error = 2.342e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 15.52
Order of pole (three term test) = 29.49 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 15.52
Order of pole (three term test) = 41.52 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=19999.1MB, alloc=44.3MB, time=258.98
x[1] = 0.5696 2.07
h = 0.0001 0.005
y1[1] (numeric) = 4.38994476712 -2.10288401714
y1[1] (closed_form) = 4.38994476712 -2.10288401714
absolute error = 7.810e-31
relative error = 1.605e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 3.17093540923 3.2836816054
y2[1] (closed_form) = 3.17093540923 3.2836816054
absolute error = 1.063e-30
relative error = 2.329e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 15.7
Order of pole (three term test) = 29.59 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 15.7
Order of pole (three term test) = 41.59 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20046.3MB, alloc=44.3MB, time=259.58
x[1] = 0.5697 2.075
h = 0.0001 0.003
y1[1] (numeric) = 4.40618745323 -2.1140950822
y1[1] (closed_form) = 4.40618745323 -2.1140950822
absolute error = 7.810e-31
relative error = 1.598e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 3.18181763952 3.30046105296
y2[1] (closed_form) = 3.18181763952 3.30046105296
absolute error = 1.063e-30
relative error = 2.319e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 15.86
Order of pole (three term test) = 29.61 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 15.86
Order of pole (three term test) = 41.7 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5698 2.078
h = 0.001 0.001
y1[1] (numeric) = 4.41588534504 -2.12098111721
y1[1] (closed_form) = 4.41588534504 -2.12098111721
absolute error = 8.602e-31
relative error = 1.756e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 3.18851135195 3.31048240117
y2[1] (closed_form) = 3.18851135195 3.31048240117
absolute error = 1.063e-30
relative error = 2.313e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 15.96
Order of pole (three term test) = 29.62 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 15.96
Order of pole (three term test) = 41.76 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20093.6MB, alloc=44.3MB, time=260.18
x[1] = 0.5708 2.079
h = 0.001 0.003
y1[1] (numeric) = 4.41700519327 -2.12648352722
y1[1] (closed_form) = 4.41700519327 -2.12648352722
absolute error = 7.211e-31
relative error = 1.471e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 3.19405152932 3.31177511504
y2[1] (closed_form) = 3.19405152932 3.31177511504
absolute error = 1.063e-30
relative error = 2.310e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 15.99
Order of pole (three term test) = 29.65 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 15.99
Order of pole (three term test) = 41.76 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20140.8MB, alloc=44.3MB, time=260.79
x[1] = 0.5718 2.082
h = 0.0001 0.004
y1[1] (numeric) = 4.42475375608 -2.13639623483
y1[1] (closed_form) = 4.42475375608 -2.13639623483
absolute error = 8.602e-31
relative error = 1.751e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 3.20386671783 3.31990631307
y2[1] (closed_form) = 3.20386671783 3.31990631307
absolute error = 1.063e-30
relative error = 2.304e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 16.08
Order of pole (three term test) = 29.69 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 16.08
Order of pole (three term test) = 41.81 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20188.1MB, alloc=44.3MB, time=261.39
x[1] = 0.5719 2.086
h = 0.003 0.006
y1[1] (numeric) = 4.43783955463 -2.14556216886
y1[1] (closed_form) = 4.43783955463 -2.14556216886
absolute error = 8.062e-31
relative error = 1.636e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 3.21277375154 3.33341738436
y2[1] (closed_form) = 3.21277375154 3.33341738436
absolute error = 1.063e-30
relative error = 2.296e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 16.21
Order of pole (three term test) = 29.71 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 16.21
Order of pole (three term test) = 41.9 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20235.4MB, alloc=44.3MB, time=261.99
x[1] = 0.5749 2.092
h = 0.0001 0.005
y1[1] (numeric) = 4.45120944861 -2.16893009487
y1[1] (closed_form) = 4.45120944861 -2.16893009487
absolute error = 8.062e-31
relative error = 1.628e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 3.23605070687 3.34761283087
y2[1] (closed_form) = 3.23605070687 3.34761283087
absolute error = 1.063e-30
relative error = 2.283e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 16.41
Order of pole (three term test) = 29.82 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 16.41
Order of pole (three term test) = 41.97 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.575 2.097
h = 0.0001 0.003
y1[1] (numeric) = 4.46776601303 -2.18047398685
y1[1] (closed_form) = 4.46776601303 -2.18047398685
absolute error = 9.434e-31
relative error = 1.898e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 3.24727014106 3.36469276468
y2[1] (closed_form) = 3.24727014106 3.36469276468
absolute error = 1.131e-30
relative error = 2.419e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 16.57
Order of pole (three term test) = 29.84 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 16.57
Order of pole (three term test) = 42.08 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20282.3MB, alloc=44.3MB, time=262.58
x[1] = 0.5751 2.1
h = 0.001 0.001
y1[1] (numeric) = 4.47765031187 -2.18756311972
y1[1] (closed_form) = 4.47765031187 -2.18756311972
absolute error = 9.434e-31
relative error = 1.893e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 3.25416946186 3.37489248002
y2[1] (closed_form) = 3.25416946186 3.37489248002
absolute error = 1.131e-30
relative error = 2.413e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 16.67
Order of pole (three term test) = 29.86 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 16.67
Order of pole (three term test) = 42.15 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20329.8MB, alloc=44.3MB, time=263.19
x[1] = 0.5761 2.101
h = 0.001 0.003
y1[1] (numeric) = 4.47876884545 -2.19319565968
y1[1] (closed_form) = 4.47876884545 -2.19319565968
absolute error = 8.602e-31
relative error = 1.725e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 3.25983805061 3.37618031115
y2[1] (closed_form) = 3.25983805061 3.37618031115
absolute error = 1.063e-30
relative error = 2.265e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 16.71
Order of pole (three term test) = 29.9 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 16.71
Order of pole (three term test) = 42.15 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20377.0MB, alloc=44.3MB, time=263.79
x[1] = 0.5771 2.104
h = 0.0001 0.004
y1[1] (numeric) = 4.48664488415 -2.20337058466
y1[1] (closed_form) = 4.48664488415 -2.20337058466
absolute error = 8.602e-31
relative error = 1.721e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 3.269915596 3.38443014816
y2[1] (closed_form) = 3.269915596 3.38443014816
absolute error = 1.140e-30
relative error = 2.423e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 16.81
Order of pole (three term test) = 29.94 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 16.81
Order of pole (three term test) = 42.2 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20424.2MB, alloc=44.3MB, time=264.40
x[1] = 0.5772 2.108
h = 0.003 0.006
y1[1] (numeric) = 4.49998264181 -2.21280772757
y1[1] (closed_form) = 4.49998264181 -2.21280772757
absolute error = 8.602e-31
relative error = 1.715e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 3.27909727085 3.39818257659
y2[1] (closed_form) = 3.27909727085 3.39818257659
absolute error = 1.131e-30
relative error = 2.396e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 16.94
Order of pole (three term test) = 29.96 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 16.94
Order of pole (three term test) = 42.29 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5802 2.114
h = 0.0001 0.005
y1[1] (numeric) = 4.51354178219 -2.23676992047
y1[1] (closed_form) = 4.51354178219 -2.23676992047
absolute error = 8.602e-31
relative error = 1.708e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 3.30296619363 3.41254882267
y2[1] (closed_form) = 3.30296619363 3.41254882267
absolute error = 1.131e-30
relative error = 2.382e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 17.15
Order of pole (three term test) = 30.09 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 17.15
Order of pole (three term test) = 42.37 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20471.1MB, alloc=44.3MB, time=264.99
x[1] = 0.5803 2.119
h = 0.0001 0.003
y1[1] (numeric) = 4.53041708123 -2.24865576378
y1[1] (closed_form) = 4.53041708123 -2.24865576378
absolute error = 8.602e-31
relative error = 1.701e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 3.31453193025 3.4299344133
y2[1] (closed_form) = 3.31453193025 3.4299344133
absolute error = 1.204e-30
relative error = 2.525e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 17.32
Order of pole (three term test) = 30.12 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 17.32
Order of pole (three term test) = 42.49 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20518.3MB, alloc=44.3MB, time=265.59
x[1] = 0.5804 2.122
h = 0.001 0.001
y1[1] (numeric) = 4.54049064025 -2.25595353178
y1[1] (closed_form) = 4.54049064025 -2.25595353178
absolute error = 8.602e-31
relative error = 1.697e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 3.32164238373 3.440315537
y2[1] (closed_form) = 3.32164238373 3.440315537
absolute error = 1.140e-30
relative error = 2.384e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 17.42
Order of pole (three term test) = 30.14 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 17.42
Order of pole (three term test) = 42.56 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20565.7MB, alloc=44.3MB, time=266.20
x[1] = 0.5814 2.123
h = 0.0001 0.004
y1[1] (numeric) = 4.54160705553 -2.26171903056
y1[1] (closed_form) = 4.54160705553 -2.26171903056
absolute error = 8.602e-31
relative error = 1.696e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 3.32744226864 3.44159775053
y2[1] (closed_form) = 3.32744226864 3.44159775053
absolute error = 1.140e-30
relative error = 2.382e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 17.46
Order of pole (three term test) = 30.18 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 17.46
Order of pole (three term test) = 42.56 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20613.0MB, alloc=44.3MB, time=266.80
x[1] = 0.5815 2.127
h = 0.003 0.006
y1[1] (numeric) = 4.55516814758 -2.27139248606
y1[1] (closed_form) = 4.55516814758 -2.27139248606
absolute error = 8.602e-31
relative error = 1.690e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 3.33686331695 3.45556462738
y2[1] (closed_form) = 3.33686331695 3.45556462738
absolute error = 1.131e-30
relative error = 2.355e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 17.6
Order of pole (three term test) = 30.2 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 17.6
Order of pole (three term test) = 42.66 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5845 2.133
h = 0.0001 0.005
y1[1] (numeric) = 4.56889797026 -2.29587520898
y1[1] (closed_form) = 4.56889797026 -2.29587520898
absolute error = 8.602e-31
relative error = 1.682e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 3.36125112078 3.47008596468
y2[1] (closed_form) = 3.36125112078 3.47008596468
absolute error = 1.131e-30
relative error = 2.342e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 17.81
Order of pole (three term test) = 30.34 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 17.81
Order of pole (three term test) = 42.73 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20660.0MB, alloc=44.3MB, time=267.39
x[1] = 0.5846 2.138
h = 0.0001 0.003
y1[1] (numeric) = 4.58605578976 -2.30805899813
y1[1] (closed_form) = 4.58605578976 -2.30805899813
absolute error = 8.602e-31
relative error = 1.676e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 3.3731186778 3.48774311659
y2[1] (closed_form) = 3.3731186778 3.48774311659
absolute error = 1.131e-30
relative error = 2.332e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 17.99
Order of pole (three term test) = 30.37 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 17.99
Order of pole (three term test) = 42.86 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20707.4MB, alloc=44.3MB, time=268.00
x[1] = 0.5847 2.141
h = 0.001 0.001
y1[1] (numeric) = 4.59629714873 -2.31553859124
y1[1] (closed_form) = 4.59629714873 -2.31553859124
absolute error = 8.062e-31
relative error = 1.567e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 3.38041318584 3.49828545858
y2[1] (closed_form) = 3.38041318584 3.49828545858
absolute error = 1.131e-30
relative error = 2.326e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 18.1
Order of pole (three term test) = 30.4 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 18.1
Order of pole (three term test) = 42.93 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20754.7MB, alloc=44.3MB, time=268.60
x[1] = 0.5857 2.142
h = 0.001 0.003
y1[1] (numeric) = 4.5974127035 -2.32142088655
y1[1] (closed_form) = 4.5974127035 -2.32142088655
absolute error = 8.944e-31
relative error = 1.737e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 3.38632852029 3.49956383476
y2[1] (closed_form) = 3.38632852029 3.49956383476
absolute error = 1.131e-30
relative error = 2.323e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 18.13
Order of pole (three term test) = 30.44 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 18.13
Order of pole (three term test) = 42.93 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20801.9MB, alloc=44.3MB, time=269.20
x[1] = 0.5867 2.145
h = 0.0001 0.004
y1[1] (numeric) = 4.60553249203 -2.33209953621
y1[1] (closed_form) = 4.60553249203 -2.33209953621
absolute error = 8.062e-31
relative error = 1.562e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 3.39691026223 3.50804149198
y2[1] (closed_form) = 3.39691026223 3.50804149198
absolute error = 1.204e-30
relative error = 2.466e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 18.24
Order of pole (three term test) = 30.49 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 18.24
Order of pole (three term test) = 42.99 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5868 2.149
h = 0.003 0.006
y1[1] (numeric) = 4.61935289583 -2.34205809711
y1[1] (closed_form) = 4.61935289583 -2.34205809711
absolute error = 8.062e-31
relative error = 1.557e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 3.40661980788 3.52225753658
y2[1] (closed_form) = 3.40661980788 3.52225753658
absolute error = 1.204e-30
relative error = 2.457e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 18.39
Order of pole (three term test) = 30.53 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 18.39
Order of pole (three term test) = 43.09 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20849.0MB, alloc=44.3MB, time=269.81
x[1] = 0.5898 2.155
h = 0.0001 0.005
y1[1] (numeric) = 4.63327319814 -2.36716155095
y1[1] (closed_form) = 4.63327319814 -2.36716155095
absolute error = 8.602e-31
relative error = 1.653e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 3.43162630562 3.53695162734
y2[1] (closed_form) = 3.43162630562 3.53695162734
absolute error = 1.204e-30
relative error = 2.443e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 18.61
Order of pole (three term test) = 30.68 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 18.61
Order of pole (three term test) = 43.17 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20896.1MB, alloc=44.3MB, time=270.40
x[1] = 0.5899 2.16
h = 0.0001 0.003
y1[1] (numeric) = 4.65075907846 -2.37970482705
y1[1] (closed_form) = 4.65075907846 -2.37970482705
absolute error = 8.062e-31
relative error = 1.543e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 3.44385764621 3.55492432831
y2[1] (closed_form) = 3.44385764621 3.55492432831
absolute error = 1.204e-30
relative error = 2.433e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 18.8
Order of pole (three term test) = 30.72 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 18.8
Order of pole (three term test) = 43.3 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=20943.5MB, alloc=44.3MB, time=271.02
x[1] = 0.59 2.163
h = 0.001 0.001
y1[1] (numeric) = 4.66119517679 -2.38740369699
y1[1] (closed_form) = 4.66119517679 -2.38740369699
absolute error = 8.602e-31
relative error = 1.643e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 3.45137390054 3.5656538966
y2[1] (closed_form) = 3.45137390054 3.5656538966
absolute error = 1.204e-30
relative error = 2.427e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 18.91
Order of pole (three term test) = 30.75 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 18.91
Order of pole (three term test) = 43.38 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.591 2.164
h = 0.001 0.003
y1[1] (numeric) = 4.66230706737 -2.39342438636
y1[1] (closed_form) = 4.66230706737 -2.39342438636
absolute error = 7.211e-31
relative error = 1.376e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 3.45742606549 3.56692523469
y2[1] (closed_form) = 3.45742606549 3.56692523469
absolute error = 1.204e-30
relative error = 2.424e-29 %
Correct digits = 31
memory used=20990.7MB, alloc=44.3MB, time=271.62
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 18.95
Order of pole (three term test) = 30.79 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 18.95
Order of pole (three term test) = 43.38 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.592 2.167
h = 0.0001 0.004
y1[1] (numeric) = 4.67055788601 -2.40438417325
y1[1] (closed_form) = 4.67055788601 -2.40438417325
absolute error = 8.062e-31
relative error = 1.535e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 3.46828919926 3.57552562754
y2[1] (closed_form) = 3.46828919926 3.57552562754
absolute error = 1.281e-30
relative error = 2.571e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 19.06
Order of pole (three term test) = 30.86 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 19.06
Order of pole (three term test) = 43.44 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21037.7MB, alloc=44.3MB, time=272.21
x[1] = 0.5921 2.171
h = 0.003 0.006
y1[1] (numeric) = 4.68464158009 -2.41463560306
y1[1] (closed_form) = 4.68464158009 -2.41463560306
absolute error = 7.211e-31
relative error = 1.368e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 3.47829498449 3.58999505687
y2[1] (closed_form) = 3.47829498449 3.58999505687
absolute error = 1.281e-30
relative error = 2.562e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 19.22
Order of pole (three term test) = 30.89 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 19.22
Order of pole (three term test) = 43.55 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21084.9MB, alloc=44.3MB, time=272.81
x[1] = 0.5951 2.177
h = 0.0001 0.005
y1[1] (numeric) = 4.69875285405 -2.44037447951
y1[1] (closed_form) = 4.69875285405 -2.44037447951
absolute error = 8.062e-31
relative error = 1.523e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 3.5039350041 3.60486276852
y2[1] (closed_form) = 3.5039350041 3.60486276852
absolute error = 1.281e-30
relative error = 2.547e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 19.45
Order of pole (three term test) = 31.06 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 19.45
Order of pole (three term test) = 43.63 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21132.1MB, alloc=44.3MB, time=273.41
x[1] = 0.5952 2.182
h = 0.0001 0.003
y1[1] (numeric) = 4.7165718421 -2.45328703935
y1[1] (closed_form) = 4.7165718421 -2.45328703935
absolute error = 7.211e-31
relative error = 1.356e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 3.51653989636 3.62315636013
y2[1] (closed_form) = 3.51653989636 3.62315636013
absolute error = 1.345e-30
relative error = 2.665e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 19.65
Order of pole (three term test) = 31.11 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 19.65
Order of pole (three term test) = 43.77 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.5953 2.185
h = 0.001 0.001
y1[1] (numeric) = 4.72720564232 -2.46121113009
y1[1] (closed_form) = 4.72720564232 -2.46121113009
absolute error = 7.211e-31
relative error = 1.353e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 3.52428382614 3.63407629366
y2[1] (closed_form) = 3.52428382614 3.63407629366
absolute error = 1.345e-30
relative error = 2.658e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 19.76
Order of pole (three term test) = 31.14 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 19.76
Order of pole (three term test) = 43.86 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21179.5MB, alloc=44.3MB, time=274.01
x[1] = 0.5963 2.186
h = 0.001 0.003
y1[1] (numeric) = 4.72831297152 -2.46737321779
y1[1] (closed_form) = 4.72831297152 -2.46737321779
absolute error = 8.062e-31
relative error = 1.512e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 3.53047587741 3.63533976182
y2[1] (closed_form) = 3.53047587741 3.63533976182
absolute error = 1.345e-30
relative error = 2.655e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 19.8
Order of pole (three term test) = 31.19 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 19.8
Order of pole (three term test) = 43.86 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21226.7MB, alloc=44.3MB, time=274.62
x[1] = 0.5973 2.189
h = 0.0001 0.004
y1[1] (numeric) = 4.736696026 -2.47862106298
y1[1] (closed_form) = 4.736696026 -2.47862106298
absolute error = 7.211e-31
relative error = 1.349e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 3.54162736153 3.64406427794
y2[1] (closed_form) = 3.54162736153 3.64406427794
absolute error = 1.414e-30
relative error = 2.783e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 19.92
Order of pole (three term test) = 31.26 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 19.92
Order of pole (three term test) = 43.92 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21273.9MB, alloc=44.3MB, time=275.22
x[1] = 0.5974 2.193
h = 0.003 0.006
y1[1] (numeric) = 4.75104704061 -2.48917332011
y1[1] (closed_form) = 4.75104704061 -2.48917332011
absolute error = 8.062e-31
relative error = 1.503e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 3.55193732273 3.65879135542
y2[1] (closed_form) = 3.55193732273 3.65879135542
absolute error = 1.414e-30
relative error = 2.773e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 20.08
Order of pole (three term test) = 31.31 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 20.08
Order of pole (three term test) = 44.03 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21321.1MB, alloc=44.3MB, time=275.81
x[1] = 0.6004 2.199
h = 0.0001 0.005
y1[1] (numeric) = 4.76534971711 -2.51556264512
y1[1] (closed_form) = 4.76534971711 -2.51556264512
absolute error = 8.602e-31
relative error = 1.596e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 3.57822602149 3.67383348676
y2[1] (closed_form) = 3.57822602149 3.67383348676
absolute error = 1.345e-30
relative error = 2.623e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 20.32
Order of pole (three term test) = 31.49 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 20.32
Order of pole (three term test) = 44.12 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6005 2.204
h = 0.0001 0.003
y1[1] (numeric) = 4.78350692552 -2.52885453152
y1[1] (closed_form) = 4.78350692552 -2.52885453152
absolute error = 8.602e-31
relative error = 1.590e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 3.59121447866 3.69245336982
y2[1] (closed_form) = 3.59121447866 3.69245336982
absolute error = 1.273e-30
relative error = 2.471e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 20.53
Order of pole (three term test) = 31.55 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 20.53
Order of pole (three term test) = 44.27 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21368.0MB, alloc=44.3MB, time=276.41
x[1] = 0.6006 2.207
h = 0.001 0.001
y1[1] (numeric) = 4.7943414278 -2.53700993584
y1[1] (closed_form) = 4.7943414278 -2.53700993584
absolute error = 8.602e-31
relative error = 1.586e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 3.59919216125 3.7035668412
y2[1] (closed_form) = 3.59919216125 3.7035668412
absolute error = 1.273e-30
relative error = 2.465e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 20.65
Order of pole (three term test) = 31.59 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 20.65
Order of pole (three term test) = 44.36 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21415.5MB, alloc=44.3MB, time=277.02
x[1] = 0.6016 2.208
h = 0.001 0.003
y1[1] (numeric) = 4.79544326336 -2.54331648955
y1[1] (closed_form) = 4.79544326336 -2.54331648955
absolute error = 9.434e-31
relative error = 1.738e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 3.6055272166 3.70482157139
y2[1] (closed_form) = 3.6055272166 3.70482157139
absolute error = 1.345e-30
relative error = 2.602e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 20.69
Order of pole (three term test) = 31.64 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 20.69
Order of pole (three term test) = 44.36 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21462.6MB, alloc=44.3MB, time=277.62
x[1] = 0.6026 2.211
h = 0.0001 0.004
y1[1] (numeric) = 4.8039597525 -2.55485947626
y1[1] (closed_form) = 4.8039597525 -2.55485947626
absolute error = 9.434e-31
relative error = 1.734e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 3.61697417 3.71367158775
y2[1] (closed_form) = 3.61697417 3.71367158775
absolute error = 1.204e-30
relative error = 2.323e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 20.82
Order of pole (three term test) = 31.71 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 20.82
Order of pole (three term test) = 44.42 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21509.8MB, alloc=44.3MB, time=278.23
x[1] = 0.6027 2.215
h = 0.003 0.006
y1[1] (numeric) = 4.81858216963 -2.56572071865
y1[1] (closed_form) = 4.81858216963 -2.56572071865
absolute error = 9.434e-31
relative error = 1.728e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 3.62759644233 3.72866062332
y2[1] (closed_form) = 3.62759644233 3.72866062332
absolute error = 1.345e-30
relative error = 2.586e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 20.99
Order of pole (three term test) = 31.77 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 20.99
Order of pole (three term test) = 44.54 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6057 2.221
h = 0.0001 0.005
y1[1] (numeric) = 4.83307661513 -2.59277585934
y1[1] (closed_form) = 4.83307661513 -2.59277585934
absolute error = 9.434e-31
relative error = 1.720e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 3.65454931394 3.74387790143
y2[1] (closed_form) = 3.65454931394 3.74387790143
absolute error = 1.345e-30
relative error = 2.571e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 21.24
Order of pole (three term test) = 31.96 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 21.24
Order of pole (three term test) = 44.64 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21556.8MB, alloc=44.3MB, time=278.82
x[1] = 0.6058 2.226
h = 0.0001 0.003
y1[1] (numeric) = 4.85157722229 -2.60645736697
y1[1] (closed_form) = 4.85157722229 -2.60645736697
absolute error = 9.434e-31
relative error = 1.713e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 3.66793160025 3.76282953601
y2[1] (closed_form) = 3.66793160025 3.76282953601
absolute error = 1.345e-30
relative error = 2.560e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 21.45
Order of pole (three term test) = 32.03 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 21.45
Order of pole (three term test) = 44.79 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21604.1MB, alloc=44.3MB, time=279.42
x[1] = 0.6059 2.229
h = 0.001 0.001
y1[1] (numeric) = 4.86261546433 -2.61485032989
y1[1] (closed_form) = 4.86261546433 -2.61485032989
absolute error = 9.849e-31
relative error = 1.784e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 3.67614926471 3.77413975159
y2[1] (closed_form) = 3.67614926471 3.77413975159
absolute error = 1.281e-30
relative error = 2.431e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 21.58
Order of pole (three term test) = 32.08 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 21.58
Order of pole (three term test) = 44.88 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21651.5MB, alloc=44.3MB, time=280.03
x[1] = 0.6069 2.23
h = 0.0001 0.004
y1[1] (numeric) = 4.86371083781 -2.62130448189
y1[1] (closed_form) = 4.86371083781 -2.62130448189
absolute error = 9.434e-31
relative error = 1.707e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 3.68263050506 3.77538483842
y2[1] (closed_form) = 3.68263050506 3.77538483842
absolute error = 1.345e-30
relative error = 2.551e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 21.62
Order of pole (three term test) = 32.13 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 21.62
Order of pole (three term test) = 44.89 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21698.9MB, alloc=44.3MB, time=280.63
x[1] = 0.607 2.234
h = 0.003 0.006
y1[1] (numeric) = 4.87857399405 -2.63243507682
y1[1] (closed_form) = 4.87857399405 -2.63243507682
absolute error = 9.434e-31
relative error = 1.702e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 3.69352508289 3.79060670154
y2[1] (closed_form) = 3.69352508289 3.79060670154
absolute error = 1.345e-30
relative error = 2.542e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 21.8
Order of pole (three term test) = 32.19 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 21.8
Order of pole (three term test) = 45.01 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.61 2.24
h = 0.0001 0.005
y1[1] (numeric) = 4.89324193641 -2.66007361175
y1[1] (closed_form) = 4.89324193641 -2.66007361175
absolute error = 9.434e-31
relative error = 1.694e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 3.72106022476 3.80598343431
y2[1] (closed_form) = 3.72106022476 3.80598343431
absolute error = 1.345e-30
relative error = 2.528e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 22.06
Order of pole (three term test) = 32.4 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 22.06
Order of pole (three term test) = 45.12 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21745.8MB, alloc=44.3MB, time=281.22
x[1] = 0.6101 2.245
h = 0.0001 0.003
y1[1] (numeric) = 4.91204713947 -2.67409475692
y1[1] (closed_form) = 4.91204713947 -2.67409475692
absolute error = 1.00e-30
relative error = 1.788e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 3.73478587995 3.82522990964
y2[1] (closed_form) = 3.73478587995 3.82522990964
absolute error = 1.421e-30
relative error = 2.659e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 22.28
Order of pole (three term test) = 32.48 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 22.28
Order of pole (three term test) = 45.28 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21793.1MB, alloc=44.3MB, time=281.83
x[1] = 0.6102 2.248
h = 0.001 0.001
y1[1] (numeric) = 4.92326614897 -2.68269484522
y1[1] (closed_form) = 4.92326614897 -2.68269484522
absolute error = 1.00e-30
relative error = 1.784e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 3.74321282313 3.83671503191
y2[1] (closed_form) = 3.74321282313 3.83671503191
absolute error = 1.421e-30
relative error = 2.652e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 22.42
Order of pole (three term test) = 32.53 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 22.42
Order of pole (three term test) = 45.37 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21840.6MB, alloc=44.3MB, time=282.44
x[1] = 0.6112 2.249
h = 0.001 0.003
y1[1] (numeric) = 4.92435696629 -2.6892786967
y1[1] (closed_form) = 4.92435696629 -2.6892786967
absolute error = 1.030e-30
relative error = 1.835e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 3.74982262126 3.8379528578
y2[1] (closed_form) = 3.74982262126 3.8379528578
absolute error = 1.500e-30
relative error = 2.796e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 22.46
Order of pole (three term test) = 32.59 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 22.46
Order of pole (three term test) = 45.38 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6122 2.252
h = 0.0001 0.004
y1[1] (numeric) = 4.93312863143 -2.70138867251
y1[1] (closed_form) = 4.93312863143 -2.70138867251
absolute error = 1.030e-30
relative error = 1.831e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 3.76183735255 3.84704375246
y2[1] (closed_form) = 3.76183735255 3.84704375246
absolute error = 1.500e-30
relative error = 2.788e-29 %
Correct digits = 31
memory used=21887.8MB, alloc=44.3MB, time=283.04
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 22.6
Order of pole (three term test) = 32.68 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 22.6
Order of pole (three term test) = 45.45 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6123 2.256
h = 0.003 0.006
y1[1] (numeric) = 4.9482710263 -2.71284392966
y1[1] (closed_form) = 4.9482710263 -2.71284392966
absolute error = 1.00e-30
relative error = 1.772e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 3.77305987175 3.86253582025
y2[1] (closed_form) = 3.77305987175 3.86253582025
absolute error = 1.562e-30
relative error = 2.893e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 22.78
Order of pole (three term test) = 32.75 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 22.78
Order of pole (three term test) = 45.58 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21934.7MB, alloc=44.3MB, time=283.63
x[1] = 0.6153 2.262
h = 0.0001 0.005
y1[1] (numeric) = 4.96313142925 -2.74117780503
y1[1] (closed_form) = 4.96313142925 -2.74117780503
absolute error = 1.030e-30
relative error = 1.816e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 3.80128893047 3.87808904471
y2[1] (closed_form) = 3.80128893047 3.87808904471
absolute error = 1.562e-30
relative error = 2.876e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 23.05
Order of pole (three term test) = 32.98 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 23.05
Order of pole (three term test) = 45.69 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=21981.8MB, alloc=44.3MB, time=284.23
x[1] = 0.6154 2.267
h = 0.0001 0.003
y1[1] (numeric) = 4.98228997162 -2.75560835439
y1[1] (closed_form) = 4.98228997162 -2.75560835439
absolute error = 1.00e-30
relative error = 1.756e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 3.81542813586 3.89767771929
y2[1] (closed_form) = 3.81542813586 3.89767771929
absolute error = 1.562e-30
relative error = 2.864e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 23.28
Order of pole (three term test) = 33.07 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 23.28
Order of pole (three term test) = 45.86 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22029.3MB, alloc=44.3MB, time=284.84
x[1] = 0.6155 2.27
h = 0.001 0.001
y1[1] (numeric) = 4.9937185519 -2.76445800211
y1[1] (closed_form) = 4.9937185519 -2.76445800211
absolute error = 9.434e-31
relative error = 1.653e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 3.82410702873 3.90936572043
y2[1] (closed_form) = 3.82410702873 3.90936572043
absolute error = 1.562e-30
relative error = 2.856e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 23.42
Order of pole (three term test) = 33.13 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 23.42
Order of pole (three term test) = 45.96 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6165 2.271
h = 0.001 0.003
y1[1] (numeric) = 4.99480104389 -2.77119546894
y1[1] (closed_form) = 4.99480104389 -2.77119546894
absolute error = 9.434e-31
relative error = 1.652e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 3.83086911506 3.91059215462
y2[1] (closed_form) = 3.83086911506 3.91059215462
absolute error = 1.562e-30
relative error = 2.853e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 23.47
Order of pole (three term test) = 33.19 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 23.47
Order of pole (three term test) = 45.96 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22076.5MB, alloc=44.3MB, time=285.44
x[1] = 0.6175 2.274
h = 0.0001 0.004
y1[1] (numeric) = 5.00370961631 -2.78362176308
y1[1] (closed_form) = 5.00370961631 -2.78362176308
absolute error = 9.434e-31
relative error = 1.648e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 3.84320058341 3.91981251202
y2[1] (closed_form) = 3.84320058341 3.91981251202
absolute error = 1.562e-30
relative error = 2.845e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 23.61
Order of pole (three term test) = 33.28 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 23.61
Order of pole (three term test) = 46.04 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22123.7MB, alloc=44.3MB, time=286.04
x[1] = 0.6176 2.278
h = 0.003 0.006
y1[1] (numeric) = 5.01913548201 -2.79541043664
y1[1] (closed_form) = 5.01913548201 -2.79541043664
absolute error = 9.434e-31
relative error = 1.642e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 3.85475977361 3.93557923036
y2[1] (closed_form) = 3.85475977361 3.93557923036
absolute error = 1.562e-30
relative error = 2.836e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 23.8
Order of pole (three term test) = 33.36 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 23.8
Order of pole (three term test) = 46.18 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22170.8MB, alloc=44.3MB, time=286.64
x[1] = 0.6206 2.284
h = 0.0001 0.005
y1[1] (numeric) = 5.0341885128 -2.82445603622
y1[1] (closed_form) = 5.0341885128 -2.82445603622
absolute error = 9.434e-31
relative error = 1.634e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 3.88369924671 3.95130945406
y2[1] (closed_form) = 3.88369924671 3.95130945406
absolute error = 1.628e-30
relative error = 2.938e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 24.09
Order of pole (three term test) = 33.61 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 24.09
Order of pole (three term test) = 46.29 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22218.1MB, alloc=44.3MB, time=287.24
x[1] = 0.6207 2.289
h = 0.0001 0.003
y1[1] (numeric) = 5.05370576382 -2.83930703709
y1[1] (closed_form) = 5.05370576382 -2.83930703709
absolute error = 9.434e-31
relative error = 1.627e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 3.89826301712 3.9712459613
y2[1] (closed_form) = 3.89826301712 3.9712459613
absolute error = 1.703e-30
relative error = 3.060e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 24.33
Order of pole (three term test) = 33.71 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 24.33
Order of pole (three term test) = 46.47 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6208 2.292
h = 0.001 0.001
y1[1] (numeric) = 5.06534706154 -2.84841294434
y1[1] (closed_form) = 5.06534706154 -2.84841294434
absolute error = 9.434e-31
relative error = 1.623e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 3.90720054244 3.98314014607
y2[1] (closed_form) = 3.90720054244 3.98314014607
absolute error = 1.703e-30
relative error = 3.052e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 24.48
Order of pole (three term test) = 33.78 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 24.48
Order of pole (three term test) = 46.58 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22265.4MB, alloc=44.3MB, time=287.84
x[1] = 0.6218 2.293
h = 0.001 0.003
y1[1] (numeric) = 5.06642015043 -2.85530735073
y1[1] (closed_form) = 5.06642015043 -2.85530735073
absolute error = 9.434e-31
relative error = 1.622e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 3.914118286 3.98435417068
y2[1] (closed_form) = 3.914118286 3.98435417068
absolute error = 1.780e-30
relative error = 3.188e-29 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 24.53
Order of pole (three term test) = 33.84 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 24.53
Order of pole (three term test) = 46.58 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22312.9MB, alloc=44.3MB, time=288.44
x[1] = 0.6228 2.296
h = 0.0001 0.004
y1[1] (numeric) = 5.07546679373 -2.86805770628
y1[1] (closed_form) = 5.07546679373 -2.86805770628
absolute error = 9.434e-31
relative error = 1.618e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 3.92677426394 3.99370531867
y2[1] (closed_form) = 3.92677426394 3.99370531867
absolute error = 1.780e-30
relative error = 3.179e-29 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 24.67
Order of pole (three term test) = 33.95 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 24.67
Order of pole (three term test) = 46.66 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22360.1MB, alloc=44.3MB, time=289.05
x[1] = 0.6229 2.3
h = 0.003 0.006
y1[1] (numeric) = 5.09118041393 -2.88018876856
y1[1] (closed_form) = 5.09118041393 -2.88018876856
absolute error = 9.434e-31
relative error = 1.613e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 3.93867907232 4.00975118017
y2[1] (closed_form) = 3.93867907232 4.00975118017
absolute error = 1.640e-30
relative error = 2.918e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 24.87
Order of pole (three term test) = 34.04 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 24.87
Order of pole (three term test) = 46.81 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22407.2MB, alloc=44.3MB, time=289.65
x[1] = 0.6259 2.306
h = 0.0001 0.005
y1[1] (numeric) = 5.10642616163 -2.90996284553
y1[1] (closed_form) = 5.10642616163 -2.90996284553
absolute error = 9.849e-31
relative error = 1.676e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 3.96834582255 4.02565882568
y2[1] (closed_form) = 3.96834582255 4.02565882568
absolute error = 1.703e-30
relative error = 3.013e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 25.17
Order of pole (three term test) = 34.3 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 25.17
Order of pole (three term test) = 46.94 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.626 2.311
h = 0.0001 0.003
y1[1] (numeric) = 5.12630755614 -2.9252456206
y1[1] (closed_form) = 5.12630755614 -2.9252456206
absolute error = 8.944e-31
relative error = 1.515e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 3.98334544747 4.04594885855
y2[1] (closed_form) = 3.98334544747 4.04594885855
absolute error = 1.640e-30
relative error = 2.889e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 25.43
Order of pole (three term test) = 34.42 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 25.43
Order of pole (three term test) = 47.12 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22454.2MB, alloc=44.3MB, time=290.24
x[1] = 0.6261 2.314
h = 0.001 0.001
y1[1] (numeric) = 5.13816475517 -2.93461465391
y1[1] (closed_form) = 5.13816475517 -2.93461465391
absolute error = 9.849e-31
relative error = 1.664e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 3.992548454 4.0580525654
y2[1] (closed_form) = 3.992548454 4.0580525654
absolute error = 1.703e-30
relative error = 2.991e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 25.58
Order of pole (three term test) = 34.49 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 25.58
Order of pole (three term test) = 47.24 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22501.7MB, alloc=44.3MB, time=290.85
x[1] = 0.6271 2.315
h = 0.001 0.003
y1[1] (numeric) = 5.13922732232 -2.94166939345
y1[1] (closed_form) = 5.13922732232 -2.94166939345
absolute error = 1.030e-30
relative error = 1.739e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 3.99962529186 4.05925312059
y2[1] (closed_form) = 3.99962529186 4.05925312059
absolute error = 1.780e-30
relative error = 3.124e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 25.63
Order of pole (three term test) = 34.56 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 25.63
Order of pole (three term test) = 47.24 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22548.9MB, alloc=44.3MB, time=291.45
x[1] = 0.6281 2.318
h = 0.0001 0.004
y1[1] (numeric) = 5.14841318746 -2.95475173342
y1[1] (closed_form) = 5.14841318746 -2.95475173342
absolute error = 1.030e-30
relative error = 1.734e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 4.01261373041 4.06873637096
y2[1] (closed_form) = 4.01261373041 4.06873637096
absolute error = 1.780e-30
relative error = 3.116e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 25.78
Order of pole (three term test) = 34.67 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 25.78
Order of pole (three term test) = 47.32 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22596.3MB, alloc=44.3MB, time=292.06
x[1] = 0.6282 2.322
h = 0.003 0.006
y1[1] (numeric) = 5.16441889718 -2.96723437995
y1[1] (closed_form) = 5.16441889718 -2.96723437995
absolute error = 1.118e-30
relative error = 1.877e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 4.02487332681 4.08506591489
y2[1] (closed_form) = 4.02487332681 4.08506591489
absolute error = 1.703e-30
relative error = 2.970e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 25.99
Order of pole (three term test) = 34.77 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 25.99
Order of pole (three term test) = 47.48 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6312 2.328
h = 0.0001 0.005
y1[1] (numeric) = 5.17985736882 -2.99775406456
y1[1] (closed_form) = 5.17985736882 -2.99775406456
absolute error = 1.118e-30
relative error = 1.868e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 4.05528458987 4.10115131606
y2[1] (closed_form) = 4.05528458987 4.10115131606
absolute error = 1.780e-30
relative error = 3.087e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 26.31
Order of pole (three term test) = 35.06 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 26.31
Order of pole (three term test) = 47.61 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22643.2MB, alloc=44.3MB, time=292.65
x[1] = 0.6313 2.333
h = 0.0001 0.003
y1[1] (numeric) = 5.20010840701 -3.01348021829
y1[1] (closed_form) = 5.20010840701 -3.01348021829
absolute error = 1.118e-30
relative error = 1.860e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 4.07073163997 4.12180062707
y2[1] (closed_form) = 4.07073163997 4.12180062707
absolute error = 1.703e-30
relative error = 2.940e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 26.57
Order of pole (three term test) = 35.19 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 26.57
Order of pole (three term test) = 47.81 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22690.4MB, alloc=44.3MB, time=293.25
x[1] = 0.6314 2.336
h = 0.001 0.001
y1[1] (numeric) = 5.21218472829 -3.02311941454
y1[1] (closed_form) = 5.21218472829 -3.02311941454
absolute error = 1.030e-30
relative error = 1.709e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 4.08020714636 4.13411722804
y2[1] (closed_form) = 4.08020714636 4.13411722804
absolute error = 1.769e-30
relative error = 3.046e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 26.73
Order of pole (three term test) = 35.27 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 26.73
Order of pole (three term test) = 47.93 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22737.8MB, alloc=44.3MB, time=293.86
x[1] = 0.6324 2.337
h = 0.0001 0.004
y1[1] (numeric) = 5.21323561284 -3.03033795145
y1[1] (closed_form) = 5.21323561284 -3.03033795145
absolute error = 1.030e-30
relative error = 1.707e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 4.08744658502 4.13530321073
y2[1] (closed_form) = 4.08744658502 4.13530321073
absolute error = 1.844e-30
relative error = 3.171e-29 %
Correct digits = 30
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 26.78
Order of pole (three term test) = 35.34 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 26.78
Order of pole (three term test) = 47.94 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22784.9MB, alloc=44.3MB, time=294.46
x[1] = 0.6325 2.341
h = 0.003 0.006
y1[1] (numeric) = 5.22950059531 -3.04312721717
y1[1] (closed_form) = 5.22950059531 -3.04312721717
absolute error = 1.118e-30
relative error = 1.848e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 4.10001563431 4.15188498863
y2[1] (closed_form) = 4.10001563431 4.15188498863
absolute error = 1.769e-30
relative error = 3.032e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 27
Order of pole (three term test) = 35.45 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 27
Order of pole (three term test) = 48.1 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6355 2.347
h = 0.0001 0.005
y1[1] (numeric) = 5.24511406388 -3.07430041286
y1[1] (closed_form) = 5.24511406388 -3.07430041286
absolute error = 1.118e-30
relative error = 1.839e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 4.13107972055 4.1681327478
y2[1] (closed_form) = 4.13107972055 4.1681327478
absolute error = 1.769e-30
relative error = 3.015e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 27.32
Order of pole (three term test) = 35.75 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 27.32
Order of pole (three term test) = 48.24 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22831.9MB, alloc=44.3MB, time=295.06
x[1] = 0.6356 2.352
h = 0.0001 0.003
y1[1] (numeric) = 5.26569320812 -3.09041323113
y1[1] (closed_form) = 5.26569320812 -3.09041323113
absolute error = 1.082e-30
relative error = 1.772e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 4.1469170103 4.18910148795
y2[1] (closed_form) = 4.1469170103 4.18910148795
absolute error = 1.769e-30
relative error = 3.001e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 27.6
Order of pole (three term test) = 35.89 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 27.6
Order of pole (three term test) = 48.45 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22879.3MB, alloc=44.3MB, time=295.66
x[1] = 0.6357 2.355
h = 0.001 0.001
y1[1] (numeric) = 5.27796408543 -3.10028807943
y1[1] (closed_form) = 5.27796408543 -3.10028807943
absolute error = 1.166e-30
relative error = 1.905e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 4.15663023723 4.20160742994
y2[1] (closed_form) = 4.15663023723 4.20160742994
absolute error = 1.769e-30
relative error = 2.993e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 27.76
Order of pole (three term test) = 35.98 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 27.76
Order of pole (three term test) = 48.57 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22926.6MB, alloc=44.3MB, time=296.27
x[1] = 0.6367 2.356
h = 0.001 0.003
y1[1] (numeric) = 5.27900595988 -3.10765059541
y1[1] (closed_form) = 5.27900595988 -3.10765059541
absolute error = 1.166e-30
relative error = 1.904e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 4.16401269139 4.20278194686
y2[1] (closed_form) = 4.16401269139 4.20278194686
absolute error = 1.844e-30
relative error = 3.117e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 27.82
Order of pole (three term test) = 36.06 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 27.82
Order of pole (three term test) = 48.58 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6377 2.359
h = 0.0001 0.004
y1[1] (numeric) = 5.28845808499 -3.12137071078
y1[1] (closed_form) = 5.28845808499 -3.12137071078
absolute error = 1.166e-30
relative error = 1.899e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 4.17763994142 4.21251863259
y2[1] (closed_form) = 4.17763994142 4.21251863259
absolute error = 1.769e-30
relative error = 2.982e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 27.99
Order of pole (three term test) = 36.19 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 27.99
Order of pole (three term test) = 48.67 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=22973.8MB, alloc=44.3MB, time=296.87
x[1] = 0.6378 2.363
h = 0.003 0.006
y1[1] (numeric) = 5.30502347555 -3.13452923039
y1[1] (closed_form) = 5.30502347555 -3.13452923039
absolute error = 1.166e-30
relative error = 1.893e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 4.19058139701 4.2293927791
y2[1] (closed_form) = 4.19058139701 4.2293927791
absolute error = 1.844e-30
relative error = 3.097e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 28.21
Order of pole (three term test) = 36.31 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 28.21
Order of pole (three term test) = 48.84 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23020.8MB, alloc=44.3MB, time=297.47
x[1] = 0.6408 2.369
h = 0.0001 0.005
y1[1] (numeric) = 5.3208296641 -3.16648094202
y1[1] (closed_form) = 5.3208296641 -3.16648094202
absolute error = 1.253e-30
relative error = 2.024e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 4.22242308632 4.24581888182
y2[1] (closed_form) = 4.22242308632 4.24581888182
absolute error = 1.844e-30
relative error = 3.079e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 28.55
Order of pole (three term test) = 36.63 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 28.55
Order of pole (three term test) = 49 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23068.0MB, alloc=44.3MB, time=298.07
x[1] = 0.6409 2.374
h = 0.0001 0.003
y1[1] (numeric) = 5.34178900616 -3.18305943739
y1[1] (closed_form) = 5.34178900616 -3.18305943739
absolute error = 1.253e-30
relative error = 2.015e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 4.23873003246 4.2671579084
y2[1] (closed_form) = 4.23873003246 4.2671579084
absolute error = 1.769e-30
relative error = 2.941e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 28.84
Order of pole (three term test) = 36.79 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 28.84
Order of pole (three term test) = 49.21 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23115.5MB, alloc=44.3MB, time=298.68
x[1] = 0.641 2.377
h = 0.001 0.001
y1[1] (numeric) = 5.354285186 -3.19321797012
y1[1] (closed_form) = 5.354285186 -3.19321797012
absolute error = 1.253e-30
relative error = 2.010e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 4.24872924415 4.27988319678
y2[1] (closed_form) = 4.24872924415 4.27988319678
absolute error = 1.769e-30
relative error = 2.934e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 29.01
Order of pole (three term test) = 36.89 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 29.01
Order of pole (three term test) = 49.35 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.642 2.378
h = 0.001 0.003
y1[1] (numeric) = 5.35531314422 -3.20075093719
y1[1] (closed_form) = 5.35531314422 -3.20075093719
absolute error = 1.342e-30
relative error = 2.150e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 4.25628102758 4.28104101275
y2[1] (closed_form) = 4.25628102758 4.28104101275
absolute error = 1.769e-30
relative error = 2.931e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 29.07
Order of pole (three term test) = 36.97 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 29.07
Order of pole (three term test) = 49.35 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23162.5MB, alloc=44.3MB, time=299.28
x[1] = 0.643 2.381
h = 0.0001 0.004
y1[1] (numeric) = 5.36490780396 -3.21482671857
y1[1] (closed_form) = 5.36490780396 -3.21482671857
absolute error = 1.342e-30
relative error = 2.145e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 4.27026449028 4.29091355576
y2[1] (closed_form) = 4.27026449028 4.29091355576
absolute error = 1.769e-30
relative error = 2.922e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 29.25
Order of pole (three term test) = 37.11 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 29.25
Order of pole (three term test) = 49.45 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23209.7MB, alloc=44.3MB, time=299.88
x[1] = 0.6431 2.385
h = 0.003 0.006
y1[1] (numeric) = 5.38177808635 -3.22836435468
y1[1] (closed_form) = 5.38177808635 -3.22836435468
absolute error = 1.342e-30
relative error = 2.138e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 4.28358818782 4.30808474599
y2[1] (closed_form) = 4.28358818782 4.30808474599
absolute error = 1.769e-30
relative error = 2.912e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 29.48
Order of pole (three term test) = 37.24 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 29.48
Order of pole (three term test) = 49.63 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23257.0MB, alloc=44.3MB, time=300.49
x[1] = 0.6461 2.391
h = 0.0001 0.005
y1[1] (numeric) = 5.39777674958 -3.26111283605
y1[1] (closed_form) = 5.39777674958 -3.26111283605
absolute error = 1.342e-30
relative error = 2.127e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 4.3162258284 4.32468925527
y2[1] (closed_form) = 4.3162258284 4.32468925527
absolute error = 1.844e-30
relative error = 3.018e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 29.84
Order of pole (three term test) = 37.59 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 29.84
Order of pole (three term test) = 49.8 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23304.2MB, alloc=44.3MB, time=301.14
x[1] = 0.6462 2.396
h = 0.0001 0.003
y1[1] (numeric) = 5.41912197889 -3.27816945511
y1[1] (closed_form) = 5.41912197889 -3.27816945511
absolute error = 1.389e-30
relative error = 2.193e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 4.33301484229 4.34640449415
y2[1] (closed_form) = 4.33301484229 4.34640449415
absolute error = 1.780e-30
relative error = 2.901e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 30.14
Order of pole (three term test) = 37.76 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 30.14
Order of pole (three term test) = 50.03 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6463 2.399
h = 0.001 0.001
y1[1] (numeric) = 5.43184678939 -3.28861921811
y1[1] (closed_form) = 5.43184678939 -3.28861921811
absolute error = 1.253e-30
relative error = 1.973e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 4.34330756538 4.35935259868
y2[1] (closed_form) = 4.34330756538 4.35935259868
absolute error = 1.780e-30
relative error = 2.893e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 30.32
Order of pole (three term test) = 37.87 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 30.32
Order of pole (three term test) = 50.16 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23351.5MB, alloc=44.3MB, time=301.74
x[1] = 0.6473 2.4
h = 0.001 0.003
y1[1] (numeric) = 5.43285954324 -3.29632631046
y1[1] (closed_form) = 5.43285954324 -3.29632631046
absolute error = 1.253e-30
relative error = 1.972e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 4.35103239112 4.36049248037
y2[1] (closed_form) = 4.35103239112 4.36049248037
absolute error = 1.703e-30
relative error = 2.765e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 30.38
Order of pole (three term test) = 37.95 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 30.38
Order of pole (three term test) = 50.17 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23398.9MB, alloc=44.3MB, time=302.34
x[1] = 0.6483 2.403
h = 0.0001 0.004
y1[1] (numeric) = 5.4425978293 -3.31076641297
y1[1] (closed_form) = 5.4425978293 -3.31076641297
absolute error = 1.304e-30
relative error = 2.047e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 4.36538074432 4.37050212057
y2[1] (closed_form) = 4.36538074432 4.37050212057
absolute error = 1.703e-30
relative error = 2.757e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 30.56
Order of pole (three term test) = 38.11 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 30.56
Order of pole (three term test) = 50.28 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23446.0MB, alloc=44.3MB, time=302.95
x[1] = 0.6484 2.407
h = 0.003 0.006
y1[1] (numeric) = 5.45977753786 -3.32469327214
y1[1] (closed_form) = 5.45977753786 -3.32469327214
absolute error = 1.304e-30
relative error = 2.040e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 4.37909676302 4.38797507595
y2[1] (closed_form) = 4.37909676302 4.38797507595
absolute error = 1.640e-30
relative error = 2.646e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 30.81
Order of pole (three term test) = 38.25 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 30.81
Order of pole (three term test) = 50.47 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23493.2MB, alloc=44.3MB, time=303.55
x[1] = 0.6514 2.413
h = 0.0001 0.005
y1[1] (numeric) = 5.47596833239 -3.3582571852
y1[1] (closed_form) = 5.47596833239 -3.3582571852
absolute error = 1.342e-30
relative error = 2.089e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 4.41254910758 4.40475795047
y2[1] (closed_form) = 4.41254910758 4.40475795047
absolute error = 1.703e-30
relative error = 2.731e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 31.18
Order of pole (three term test) = 38.62 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 31.18
Order of pole (three term test) = 50.64 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6515 2.418
h = 0.0001 0.003
y1[1] (numeric) = 5.49770520283 -3.37580468256
y1[1] (closed_form) = 5.49770520283 -3.37580468256
absolute error = 1.476e-30
relative error = 2.289e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 4.42983290809 4.42685538664
y2[1] (closed_form) = 4.42983290809 4.42685538664
absolute error = 1.780e-30
relative error = 2.843e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 31.49
Order of pole (three term test) = 38.81 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 31.49
Order of pole (three term test) = 50.89 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23540.1MB, alloc=44.3MB, time=304.15
x[1] = 0.6516 2.421
h = 0.001 0.001
y1[1] (numeric) = 5.51066200847 -3.38655340776
y1[1] (closed_form) = 5.51066200847 -3.38655340776
absolute error = 1.389e-30
relative error = 2.148e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 4.44042685499 4.44002981021
y2[1] (closed_form) = 4.44042685499 4.44002981021
absolute error = 1.703e-30
relative error = 2.712e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 31.68
Order of pole (three term test) = 38.93 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 31.68
Order of pole (three term test) = 51.03 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23587.5MB, alloc=44.3MB, time=304.76
x[1] = 0.6526 2.422
h = 0.001 0.003
y1[1] (numeric) = 5.51165822224 -3.39443837542
y1[1] (closed_form) = 5.51165822224 -3.39443837542
absolute error = 1.342e-30
relative error = 2.073e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 4.44832851081 4.44115047575
y2[1] (closed_form) = 4.44832851081 4.44115047575
absolute error = 1.703e-30
relative error = 2.709e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 31.75
Order of pole (three term test) = 39.02 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 31.75
Order of pole (three term test) = 51.04 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23634.7MB, alloc=44.3MB, time=305.36
x[1] = 0.6536 2.425
h = 0.0001 0.004
y1[1] (numeric) = 5.52154120685 -3.40925165377
y1[1] (closed_form) = 5.52154120685 -3.40925165377
absolute error = 1.432e-30
relative error = 2.206e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 4.46305063068 4.45129843048
y2[1] (closed_form) = 4.46305063068 4.45129843048
absolute error = 1.703e-30
relative error = 2.702e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 31.94
Order of pole (three term test) = 39.18 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 31.94
Order of pole (three term test) = 51.16 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23681.9MB, alloc=44.3MB, time=305.96
x[1] = 0.6537 2.429
h = 0.003 0.006
y1[1] (numeric) = 5.53903492619 -3.42357809219
y1[1] (closed_form) = 5.53903492619 -3.42357809219
absolute error = 1.342e-30
relative error = 2.060e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 4.47716929898 4.46907791851
y2[1] (closed_form) = 4.47716929898 4.46907791851
absolute error = 1.628e-30
relative error = 2.573e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 32.19
Order of pole (three term test) = 39.34 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 32.19
Order of pole (three term test) = 51.35 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6567 2.435
h = 0.0001 0.005
y1[1] (numeric) = 5.55541740609 -3.45797651547
y1[1] (closed_form) = 5.55541740609 -3.45797651547
absolute error = 1.393e-30
relative error = 2.129e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 4.51145551328 4.48603900829
y2[1] (closed_form) = 4.51145551328 4.48603900829
absolute error = 1.703e-30
relative error = 2.677e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 32.58
Order of pole (three term test) = 39.73 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 32.58
Order of pole (three term test) = 51.54 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23728.9MB, alloc=44.3MB, time=306.56
x[1] = 0.6568 2.44
h = 0.0001 0.003
y1[1] (numeric) = 5.5775517356 -3.47602796084
y1[1] (closed_form) = 5.5775517356 -3.47602796084
absolute error = 1.432e-30
relative error = 2.179e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 4.529247134 4.50852468558
y2[1] (closed_form) = 4.529247134 4.50852468558
absolute error = 1.703e-30
relative error = 2.665e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 32.91
Order of pole (three term test) = 39.94 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 32.91
Order of pole (three term test) = 51.8 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23776.3MB, alloc=44.3MB, time=307.16
x[1] = 0.6569 2.443
h = 0.001 0.001
y1[1] (numeric) = 5.59074393688 -3.48708357059
y1[1] (closed_form) = 5.59074393688 -3.48708357059
absolute error = 1.432e-30
relative error = 2.173e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 4.54015020724 4.52192896401
y2[1] (closed_form) = 4.54015020724 4.52192896401
absolute error = 1.628e-30
relative error = 2.540e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 33.11
Order of pole (three term test) = 40.06 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 33.11
Order of pole (three term test) = 51.95 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23823.6MB, alloc=44.3MB, time=307.77
x[1] = 0.6579 2.444
h = 0.0001 0.004
y1[1] (numeric) = 5.59172222586 -3.49515024083
y1[1] (closed_form) = 5.59172222586 -3.49515024083
absolute error = 1.432e-30
relative error = 2.171e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 4.54823255705 4.52302908153
y2[1] (closed_form) = 4.54823255705 4.52302908153
absolute error = 1.628e-30
relative error = 2.538e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 33.17
Order of pole (three term test) = 40.16 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 33.17
Order of pole (three term test) = 51.97 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.658 2.448
h = 0.003 0.006
y1[1] (numeric) = 5.60949487706 -3.50982529582
y1[1] (closed_form) = 5.60949487706 -3.50982529582
absolute error = 1.432e-30
relative error = 2.164e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 4.56270254849 4.54108124387
y2[1] (closed_form) = 4.56270254849 4.54108124387
absolute error = 1.628e-30
relative error = 2.529e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 33.44
Order of pole (three term test) = 40.33 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 33.44
Order of pole (three term test) = 52.17 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23870.8MB, alloc=44.3MB, time=308.37
x[1] = 0.661 2.454
h = 0.0001 0.005
y1[1] (numeric) = 5.62605217232 -3.54495536553
y1[1] (closed_form) = 5.62605217232 -3.54495536553
absolute error = 1.523e-30
relative error = 2.291e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 4.59772008088 4.55820578055
y2[1] (closed_form) = 4.59772008088 4.55820578055
absolute error = 1.703e-30
relative error = 2.630e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 33.84
Order of pole (three term test) = 40.74 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 33.84
Order of pole (three term test) = 52.37 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23917.9MB, alloc=44.3MB, time=308.97
x[1] = 0.6611 2.459
h = 0.0001 0.003
y1[1] (numeric) = 5.64853954973 -3.56344647442
y1[1] (closed_form) = 5.64853954973 -3.56344647442
absolute error = 1.432e-30
relative error = 2.144e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 4.61595477519 4.58103679374
y2[1] (closed_form) = 4.61595477519 4.58103679374
absolute error = 1.703e-30
relative error = 2.619e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 34.18
Order of pole (three term test) = 40.96 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 34.18
Order of pole (three term test) = 52.64 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=23965.2MB, alloc=44.3MB, time=309.58
x[1] = 0.6612 2.462
h = 0.001 0.001
y1[1] (numeric) = 5.66194090971 -3.57476987297
y1[1] (closed_form) = 5.66194090971 -3.57476987297
absolute error = 1.432e-30
relative error = 2.138e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 4.62712761469 4.59464559397
y2[1] (closed_form) = 4.62712761469 4.59464559397
absolute error = 1.703e-30
relative error = 2.612e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 34.39
Order of pole (three term test) = 41.1 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 34.39
Order of pole (three term test) = 52.8 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24012.6MB, alloc=44.3MB, time=310.18
x[1] = 0.6622 2.463
h = 0.001 0.003
y1[1] (numeric) = 5.66290485018 -3.58299630844
y1[1] (closed_form) = 5.66290485018 -3.58299630844
absolute error = 1.523e-30
relative error = 2.273e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 4.63536892048 4.59572913514
y2[1] (closed_form) = 4.63536892048 4.59572913514
absolute error = 1.703e-30
relative error = 2.609e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 34.46
Order of pole (three term test) = 41.2 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 34.46
Order of pole (three term test) = 52.82 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6632 2.466
h = 0.0001 0.004
y1[1] (numeric) = 5.67306456932 -3.59852649588
y1[1] (closed_form) = 5.67306456932 -3.59852649588
absolute error = 1.523e-30
relative error = 2.267e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 4.65080917389 4.60614232864
y2[1] (closed_form) = 4.65080917389 4.60614232864
absolute error = 1.628e-30
relative error = 2.487e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 34.67
Order of pole (three term test) = 41.38 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 34.67
Order of pole (three term test) = 52.94 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24059.5MB, alloc=44.3MB, time=310.78
x[1] = 0.6633 2.47
h = 0.003 0.006
y1[1] (numeric) = 5.69116002563 -3.61362102885
y1[1] (closed_form) = 5.69116002563 -3.61362102885
absolute error = 1.565e-30
relative error = 2.322e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 4.6657016591 4.62451014697
y2[1] (closed_form) = 4.6657016591 4.62451014697
absolute error = 1.703e-30
relative error = 2.592e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 34.94
Order of pole (three term test) = 41.57 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 34.94
Order of pole (three term test) = 53.16 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24106.6MB, alloc=44.3MB, time=311.38
x[1] = 0.6663 2.476
h = 0.0001 0.005
y1[1] (numeric) = 5.70790812678 -3.64962225621
y1[1] (closed_form) = 5.70790812678 -3.64962225621
absolute error = 1.476e-30
relative error = 2.179e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 4.70158985853 4.64181255524
y2[1] (closed_form) = 4.70158985853 4.64181255524
absolute error = 1.628e-30
relative error = 2.464e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 35.37
Order of pole (three term test) = 42 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 35.37
Order of pole (three term test) = 53.38 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24153.8MB, alloc=44.3MB, time=311.98
x[1] = 0.6664 2.481
h = 0.0001 0.003
y1[1] (numeric) = 5.73080412314 -3.66864242567
y1[1] (closed_form) = 5.73080412314 -3.66864242567
absolute error = 1.565e-30
relative error = 2.300e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 4.72035741483 4.66504337581
y2[1] (closed_form) = 4.72035741483 4.66504337581
absolute error = 1.628e-30
relative error = 2.453e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 35.72
Order of pole (three term test) = 42.25 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 35.72
Order of pole (three term test) = 53.66 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24201.3MB, alloc=44.3MB, time=312.60
x[1] = 0.6665 2.484
h = 0.001 0.001
y1[1] (numeric) = 5.74444740117 -3.68028793084
y1[1] (closed_form) = 5.74444740117 -3.68028793084
absolute error = 1.565e-30
relative error = 2.294e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 4.73185456364 4.67888879678
y2[1] (closed_form) = 4.73185456364 4.67888879678
absolute error = 1.628e-30
relative error = 2.446e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 35.94
Order of pole (three term test) = 42.39 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 35.94
Order of pole (three term test) = 53.83 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6675 2.485
h = 0.001 0.003
y1[1] (numeric) = 5.74539075231 -3.68870341896
y1[1] (closed_form) = 5.74539075231 -3.68870341896
absolute error = 1.565e-30
relative error = 2.293e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 4.74028397821 4.67994922159
y2[1] (closed_form) = 4.74028397821 4.67994922159
absolute error = 1.628e-30
relative error = 2.444e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 36.01
Order of pole (three term test) = 42.5 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 36.01
Order of pole (three term test) = 53.85 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24248.4MB, alloc=44.3MB, time=313.20
x[1] = 0.6685 2.488
h = 0.0001 0.004
y1[1] (numeric) = 5.75569822927 -3.70463324263
y1[1] (closed_form) = 5.75569822927 -3.70463324263
absolute error = 1.655e-30
relative error = 2.418e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 4.75612451186 4.69050418762
y2[1] (closed_form) = 4.75612451186 4.69050418762
absolute error = 1.628e-30
relative error = 2.437e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 36.22
Order of pole (three term test) = 42.69 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 36.22
Order of pole (three term test) = 53.98 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24295.5MB, alloc=44.3MB, time=313.80
x[1] = 0.6686 2.492
h = 0.003 0.006
y1[1] (numeric) = 5.7741212205 -3.7201583557
y1[1] (closed_form) = 5.7741212205 -3.7201583557
absolute error = 1.655e-30
relative error = 2.410e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 4.77145056436 4.70919256305
y2[1] (closed_form) = 4.77145056436 4.70919256305
absolute error = 1.628e-30
relative error = 2.428e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 36.52
Order of pole (three term test) = 42.9 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 36.52
Order of pole (three term test) = 54.21 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24342.7MB, alloc=44.3MB, time=314.41
x[1] = 0.6716 2.498
h = 0.0001 0.005
y1[1] (numeric) = 5.79105936726 -3.75705106045
y1[1] (closed_form) = 5.79105936726 -3.75705106045
absolute error = 1.655e-30
relative error = 2.398e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 4.80822982829 4.7266723617
y2[1] (closed_form) = 4.80822982829 4.7266723617
absolute error = 1.628e-30
relative error = 2.414e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 36.96
Order of pole (three term test) = 43.36 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 36.96
Order of pole (three term test) = 54.44 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24390.0MB, alloc=44.3MB, time=315.01
x[1] = 0.6717 2.503
h = 0.0001 0.003
y1[1] (numeric) = 5.81436998555 -3.77661430197
y1[1] (closed_form) = 5.81436998555 -3.77661430197
absolute error = 1.616e-30
relative error = 2.330e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 4.82754422098 4.7503092042
y2[1] (closed_form) = 4.82754422098 4.7503092042
absolute error = 1.697e-30
relative error = 2.506e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 37.33
Order of pole (three term test) = 43.62 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 37.33
Order of pole (three term test) = 54.74 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6718 2.506
h = 0.001 0.001
y1[1] (numeric) = 5.82825868595 -3.78859040506
y1[1] (closed_form) = 5.82825868595 -3.78859040506
absolute error = 1.616e-30
relative error = 2.324e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 4.8393741499 4.76439487701
y2[1] (closed_form) = 4.8393741499 4.76439487701
absolute error = 1.628e-30
relative error = 2.397e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 37.55
Order of pole (three term test) = 43.78 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 37.55
Order of pole (three term test) = 54.92 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24437.2MB, alloc=44.3MB, time=315.61
x[1] = 0.6728 2.507
h = 0.001 0.003
y1[1] (numeric) = 5.82917991522 -3.79719900265
y1[1] (closed_form) = 5.82917991522 -3.79719900265
absolute error = 1.616e-30
relative error = 2.322e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 4.84799576374 4.76543070305
y2[1] (closed_form) = 4.84799576374 4.76543070305
absolute error = 1.628e-30
relative error = 2.395e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 37.63
Order of pole (three term test) = 43.88 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 37.63
Order of pole (three term test) = 54.94 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24484.5MB, alloc=44.3MB, time=316.22
x[1] = 0.6738 2.51
h = 0.0001 0.004
y1[1] (numeric) = 5.8396361343 -3.8135381292
y1[1] (closed_form) = 5.8396361343 -3.8135381292
absolute error = 1.616e-30
relative error = 2.316e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 4.86424626128 4.77612855955
y2[1] (closed_form) = 4.86424626128 4.77612855955
absolute error = 1.697e-30
relative error = 2.489e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 37.85
Order of pole (three term test) = 44.09 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 37.85
Order of pole (three term test) = 55.08 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24531.7MB, alloc=44.3MB, time=316.83
x[1] = 0.6739 2.514
h = 0.003 0.006
y1[1] (numeric) = 5.85839143919 -3.8295051972
y1[1] (closed_form) = 5.85839143919 -3.8295051972
absolute error = 1.616e-30
relative error = 2.308e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 4.88001722702 4.79514243824
y2[1] (closed_form) = 4.88001722702 4.79514243824
absolute error = 1.628e-30
relative error = 2.379e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 38.16
Order of pole (three term test) = 44.31 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 38.16
Order of pole (three term test) = 55.32 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24578.9MB, alloc=44.3MB, time=317.44
x[1] = 0.6769 2.52
h = 0.0001 0.005
y1[1] (numeric) = 5.87551875 -3.86731014983
y1[1] (closed_form) = 5.87551875 -3.86731014983
absolute error = 1.616e-30
relative error = 2.297e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 4.91770840057 4.81279901914
y2[1] (closed_form) = 4.91770840057 4.81279901914
absolute error = 1.628e-30
relative error = 2.366e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 38.62
Order of pole (three term test) = 44.8 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 38.62
Order of pole (three term test) = 55.57 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.677 2.525
h = 0.0001 0.003
y1[1] (numeric) = 5.89925005558 -3.88743081918
y1[1] (closed_form) = 5.89925005558 -3.88743081918
absolute error = 1.655e-30
relative error = 2.343e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 4.93758394804 4.83684815568
y2[1] (closed_form) = 4.93758394804 4.83684815568
absolute error = 1.628e-30
relative error = 2.355e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 39.01
Order of pole (three term test) = 45.08 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 39.01
Order of pole (three term test) = 55.88 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24626.0MB, alloc=44.3MB, time=318.04
x[1] = 0.6771 2.528
h = 0.001 0.001
y1[1] (numeric) = 5.91338771749 -3.89974621946
y1[1] (closed_form) = 5.91338771749 -3.89974621946
absolute error = 1.655e-30
relative error = 2.337e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 4.94975533565 4.85117774336
y2[1] (closed_form) = 4.94975533565 4.85117774336
absolute error = 1.628e-30
relative error = 2.349e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 39.24
Order of pole (three term test) = 45.25 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 39.24
Order of pole (three term test) = 56.07 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24673.4MB, alloc=44.3MB, time=318.65
x[1] = 0.6781 2.529
h = 0.001 0.003
y1[1] (numeric) = 5.91428523721 -3.90855206623
y1[1] (closed_form) = 5.91428523721 -3.90855206623
absolute error = 1.709e-30
relative error = 2.410e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 4.95857332111 4.85218743216
y2[1] (closed_form) = 4.95857332111 4.85218743216
absolute error = 1.628e-30
relative error = 2.346e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 39.32
Order of pole (three term test) = 45.36 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 39.32
Order of pole (three term test) = 56.09 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24720.6MB, alloc=44.3MB, time=319.25
x[1] = 0.6791 2.532
h = 0.0001 0.004
y1[1] (numeric) = 5.92489115507 -3.92531038362
y1[1] (closed_form) = 5.92489115507 -3.92531038362
absolute error = 1.709e-30
relative error = 2.404e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 4.97524368644 4.86302926663
y2[1] (closed_form) = 4.97524368644 4.86302926663
absolute error = 1.628e-30
relative error = 2.340e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 39.56
Order of pole (three term test) = 45.59 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 39.56
Order of pole (three term test) = 56.24 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6792 2.536
h = 0.003 0.006
y1[1] (numeric) = 5.94398360079 -3.94173106036
y1[1] (closed_form) = 5.94398360079 -3.94173106036
absolute error = 1.746e-30
relative error = 2.449e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 4.99147119016 4.88237363938
y2[1] (closed_form) = 4.99147119016 4.88237363938
absolute error = 1.628e-30
relative error = 2.331e-29 %
Correct digits = 31
memory used=24767.7MB, alloc=44.3MB, time=319.85
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 39.87
Order of pole (three term test) = 45.82 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 39.87
Order of pole (three term test) = 56.5 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6822 2.542
h = 0.0001 0.005
y1[1] (numeric) = 5.9612990676 -3.9804694914
y1[1] (closed_form) = 5.9612990676 -3.9804694914
absolute error = 1.746e-30
relative error = 2.436e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 5.03009557541 4.9002062623
y2[1] (closed_form) = 5.03009557541 4.9002062623
absolute error = 1.628e-30
relative error = 2.318e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 40.36
Order of pole (three term test) = 46.34 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 40.36
Order of pole (three term test) = 56.76 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24814.8MB, alloc=44.3MB, time=320.45
x[1] = 0.6823 2.547
h = 0.0001 0.003
y1[1] (numeric) = 5.9854571876 -4.00116229662
y1[1] (closed_form) = 5.9854571876 -4.00116229662
absolute error = 1.746e-30
relative error = 2.426e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 5.05054694806 4.9246740221
y2[1] (closed_form) = 5.05054694806 4.9246740221
absolute error = 1.703e-30
relative error = 2.414e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 40.76
Order of pole (three term test) = 46.64 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 40.76
Order of pole (three term test) = 57.1 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24862.1MB, alloc=44.3MB, time=321.06
x[1] = 0.6824 2.55
h = 0.001 0.001
y1[1] (numeric) = 5.99984738453 -4.01382590613
y1[1] (closed_form) = 5.99984738453 -4.01382590613
absolute error = 1.709e-30
relative error = 2.367e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 5.06306868549 4.93925121926
y2[1] (closed_form) = 5.06306868549 4.93925121926
absolute error = 1.703e-30
relative error = 2.408e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 41.01
Order of pole (three term test) = 46.82 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 41.01
Order of pole (three term test) = 57.3 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24909.4MB, alloc=44.3MB, time=321.66
x[1] = 0.6834 2.551
h = 0.0001 0.004
y1[1] (numeric) = 6.00071955024 -4.02283322617
y1[1] (closed_form) = 6.00071955024 -4.02283322617
absolute error = 1.616e-30
relative error = 2.236e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 5.07208729836 4.94023317466
y2[1] (closed_form) = 5.07208729836 4.94023317466
absolute error = 1.703e-30
relative error = 2.405e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 41.09
Order of pole (three term test) = 46.94 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 41.09
Order of pole (three term test) = 57.32 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6835 2.555
h = 0.003 0.006
y1[1] (numeric) = 6.02011169522 -4.03964980887
y1[1] (closed_form) = 6.02011169522 -4.03964980887
absolute error = 1.616e-30
relative error = 2.228e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 5.08871328253 4.95987168794
y2[1] (closed_form) = 5.08871328253 4.95987168794
absolute error = 1.640e-30
relative error = 2.308e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 41.42
Order of pole (three term test) = 47.19 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 41.42
Order of pole (three term test) = 57.59 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=24956.4MB, alloc=44.3MB, time=322.26
x[1] = 0.6865 2.561
h = 0.0001 0.005
y1[1] (numeric) = 6.03759968511 -4.07920688354
y1[1] (closed_form) = 6.03759968511 -4.07920688354
absolute error = 1.709e-30
relative error = 2.345e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 5.12815627694 4.97786661488
y2[1] (closed_form) = 5.12815627694 4.97786661488
absolute error = 1.703e-30
relative error = 2.383e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 41.92
Order of pole (three term test) = 47.73 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 41.92
Order of pole (three term test) = 57.87 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25003.6MB, alloc=44.3MB, time=322.86
x[1] = 0.6866 2.566
h = 0.0001 0.003
y1[1] (numeric) = 6.0621372063 -4.10039903231
y1[1] (closed_form) = 6.0621372063 -4.10039903231
absolute error = 1.746e-30
relative error = 2.386e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 5.14911023287 5.00270692683
y2[1] (closed_form) = 5.14911023287 5.00270692683
absolute error = 1.628e-30
relative error = 2.268e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 42.34
Order of pole (three term test) = 48.05 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 42.34
Order of pole (three term test) = 58.22 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25051.0MB, alloc=44.3MB, time=323.47
x[1] = 0.6867 2.569
h = 0.001 0.001
y1[1] (numeric) = 6.07675196083 -4.11336660451
y1[1] (closed_form) = 6.07675196083 -4.11336660451
absolute error = 1.655e-30
relative error = 2.256e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 5.16193781543 5.01750456186
y2[1] (closed_form) = 5.16193781543 5.01750456186
absolute error = 1.703e-30
relative error = 2.366e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 42.6
Order of pole (three term test) = 48.24 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 42.6
Order of pole (three term test) = 58.42 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25098.3MB, alloc=44.3MB, time=324.08
x[1] = 0.6877 2.57
h = 0.001 0.003
y1[1] (numeric) = 6.07760341115 -4.12255112393
y1[1] (closed_form) = 6.07760341115 -4.12255112393
absolute error = 1.746e-30
relative error = 2.378e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 5.17113295182 5.01846378221
y2[1] (closed_form) = 5.17113295182 5.01846378221
absolute error = 1.703e-30
relative error = 2.363e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 42.68
Order of pole (three term test) = 48.36 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 42.68
Order of pole (three term test) = 58.45 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6887 2.573
h = 0.0001 0.004
y1[1] (numeric) = 6.08849560928 -4.14011474387
y1[1] (closed_form) = 6.08849560928 -4.14011474387
absolute error = 1.746e-30
relative error = 2.372e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 5.18860998293 5.02958159913
y2[1] (closed_form) = 5.18860998293 5.02958159913
absolute error = 1.844e-30
relative error = 2.552e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 42.94
Order of pole (three term test) = 48.61 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 42.94
Order of pole (three term test) = 58.62 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25145.3MB, alloc=44.3MB, time=324.68
x[1] = 0.6888 2.577
h = 0.003 0.006
y1[1] (numeric) = 6.1082341514 -4.15740732624
y1[1] (closed_form) = 6.1082341514 -4.15740732624
absolute error = 1.746e-30
relative error = 2.364e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 5.20571483943 5.04956015707
y2[1] (closed_form) = 5.20571483943 5.04956015707
absolute error = 1.844e-30
relative error = 2.542e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 43.28
Order of pole (three term test) = 48.88 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 43.28
Order of pole (three term test) = 58.9 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25192.4MB, alloc=44.3MB, time=325.30
x[1] = 0.6918 2.583
h = 0.0001 0.005
y1[1] (numeric) = 6.12590833246 -4.19793865708
y1[1] (closed_form) = 6.12590833246 -4.19793865708
absolute error = 1.709e-30
relative error = 2.301e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 5.24613194566 5.06772964592
y2[1] (closed_form) = 5.24613194566 5.06772964592
absolute error = 1.844e-30
relative error = 2.528e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 43.8
Order of pole (three term test) = 49.45 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 43.8
Order of pole (three term test) = 59.2 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25239.6MB, alloc=44.3MB, time=325.89
x[1] = 0.6919 2.588
h = 0.0001 0.003
y1[1] (numeric) = 6.15088441702 -4.21973120078
y1[1] (closed_form) = 6.15088441702 -4.21973120078
absolute error = 1.746e-30
relative error = 2.341e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 5.26768991294 5.09300069347
y2[1] (closed_form) = 5.26768991294 5.09300069347
absolute error = 1.844e-30
relative error = 2.517e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 44.24
Order of pole (three term test) = 49.79 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 44.24
Order of pole (three term test) = 59.57 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25287.0MB, alloc=44.3MB, time=326.50
x[1] = 0.692 2.591
h = 0.001 0.001
y1[1] (numeric) = 6.16575855835 -4.23306410499
y1[1] (closed_form) = 6.16575855835 -4.23306410499
absolute error = 1.838e-30
relative error = 2.458e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 5.28088492741 5.10805300755
y2[1] (closed_form) = 5.28088492741 5.10805300755
absolute error = 1.844e-30
relative error = 2.510e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 44.51
Order of pole (three term test) = 50 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 44.51
Order of pole (three term test) = 59.79 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.693 2.592
h = 0.001 0.003
y1[1] (numeric) = 6.16658149024 -4.24245820896
y1[1] (closed_form) = 6.16658149024 -4.24245820896
absolute error = 1.803e-30
relative error = 2.409e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 5.29028885844 5.10898141798
y2[1] (closed_form) = 5.29028885844 5.10898141798
absolute error = 1.844e-30
relative error = 2.507e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 44.6
Order of pole (three term test) = 50.12 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 44.6
Order of pole (three term test) = 59.82 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25334.0MB, alloc=44.3MB, time=327.10
x[1] = 0.694 2.595
h = 0.0001 0.004
y1[1] (numeric) = 6.17762608131 -4.26047056157
y1[1] (closed_form) = 6.17762608131 -4.26047056157
absolute error = 1.709e-30
relative error = 2.277e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 5.30821533779 5.12024626641
y2[1] (closed_form) = 5.30821533779 5.12024626641
absolute error = 1.844e-30
relative error = 2.500e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 44.87
Order of pole (three term test) = 50.39 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 44.87
Order of pole (three term test) = 59.99 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25381.2MB, alloc=44.3MB, time=327.70
x[1] = 0.6941 2.599
h = 0.003 0.006
y1[1] (numeric) = 6.19771598689 -4.27825163107
y1[1] (closed_form) = 6.19771598689 -4.27825163107
absolute error = 1.746e-30
relative error = 2.319e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 5.32581152448 5.14056998853
y2[1] (closed_form) = 5.32581152448 5.14056998853
absolute error = 1.844e-30
relative error = 2.491e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 45.23
Order of pole (three term test) = 50.67 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 45.23
Order of pole (three term test) = 60.3 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25428.3MB, alloc=44.3MB, time=328.30
x[1] = 0.6971 2.605
h = 0.0001 0.005
y1[1] (numeric) = 6.21557496455 -4.31977981918
y1[1] (closed_form) = 6.21557496455 -4.31977981918
absolute error = 1.709e-30
relative error = 2.258e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 5.36722540705 5.15891289718
y2[1] (closed_form) = 5.36722540705 5.15891289718
absolute error = 1.921e-30
relative error = 2.580e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 45.77
Order of pole (three term test) = 51.27 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 45.77
Order of pole (three term test) = 60.61 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25475.5MB, alloc=44.3MB, time=328.91
x[1] = 0.6972 2.61
h = 0.0001 0.003
y1[1] (numeric) = 6.24099591723 -4.34218851839
y1[1] (closed_form) = 6.24099591723 -4.34218851839
absolute error = 1.746e-30
relative error = 2.297e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 5.38940310811 5.18462117427
y2[1] (closed_form) = 5.38940310811 5.18462117427
absolute error = 1.921e-30
relative error = 2.569e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 46.23
Order of pole (three term test) = 51.64 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 46.23
Order of pole (three term test) = 61 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.6973 2.613
h = 0.001 0.001
y1[1] (numeric) = 6.25613311736 -4.3558963023
y1[1] (closed_form) = 6.25613311736 -4.3558963023
absolute error = 1.746e-30
relative error = 2.291e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 5.40297508086 5.19993195279
y2[1] (closed_form) = 5.40297508086 5.19993195279
absolute error = 1.921e-30
relative error = 2.562e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 46.51
Order of pole (three term test) = 51.86 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 46.51
Order of pole (three term test) = 61.23 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25522.8MB, alloc=44.3MB, time=329.52
x[1] = 0.6983 2.614
h = 0.001 0.003
y1[1] (numeric) = 6.25692571513 -4.36550446573
y1[1] (closed_form) = 6.25692571513 -4.36550446573
absolute error = 1.746e-30
relative error = 2.289e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 5.41259231051 5.20082778343
y2[1] (closed_form) = 5.41259231051 5.20082778343
absolute error = 1.921e-30
relative error = 2.559e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 46.61
Order of pole (three term test) = 51.99 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 46.61
Order of pole (three term test) = 61.26 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25570.1MB, alloc=44.3MB, time=330.12
x[1] = 0.6993 2.617
h = 0.0001 0.004
y1[1] (numeric) = 6.26812353383 -4.38397633904
y1[1] (closed_form) = 6.26812353383 -4.38397633904
absolute error = 1.838e-30
relative error = 2.404e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 5.43097903838 5.21224061848
y2[1] (closed_form) = 5.43097903838 5.21224061848
absolute error = 1.921e-30
relative error = 2.552e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 46.89
Order of pole (three term test) = 52.27 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 46.89
Order of pole (three term test) = 61.45 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25617.2MB, alloc=44.3MB, time=330.72
x[1] = 0.6994 2.621
h = 0.003 0.006
y1[1] (numeric) = 6.28856981546 -4.4022586878
y1[1] (closed_form) = 6.28856981546 -4.4022586878
absolute error = 1.746e-30
relative error = 2.275e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 5.4490793176 5.23291466709
y2[1] (closed_form) = 5.4490793176 5.23291466709
absolute error = 1.921e-30
relative error = 2.543e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 47.26
Order of pole (three term test) = 52.57 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 47.26
Order of pole (three term test) = 61.77 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25664.4MB, alloc=44.3MB, time=331.39
x[1] = 0.7024 2.627
h = 0.0001 0.005
y1[1] (numeric) = 6.30661204693 -4.44480683185
y1[1] (closed_form) = 6.30661204693 -4.44480683185
absolute error = 1.879e-30
relative error = 2.435e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 5.49151313593 5.25142970004
y2[1] (closed_form) = 5.49151313593 5.25142970004
absolute error = 2.000e-30
relative error = 2.632e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 47.83
Order of pole (three term test) = 53.2 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 47.83
Order of pole (three term test) = 62.11 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.7025 2.632
h = 0.0001 0.003
y1[1] (numeric) = 6.33248423162 -4.46784783182
y1[1] (closed_form) = 6.33248423162 -4.46784783182
absolute error = 1.879e-30
relative error = 2.424e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 5.51432667772 5.27758175544
y2[1] (closed_form) = 5.51432667772 5.27758175544
absolute error = 2.000e-30
relative error = 2.620e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 48.31
Order of pole (three term test) = 53.59 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 48.31
Order of pole (three term test) = 62.52 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25711.4MB, alloc=44.3MB, time=331.98
x[1] = 0.7026 2.635
h = 0.001 0.001
y1[1] (numeric) = 6.34788819504 -4.48194027538
y1[1] (closed_form) = 6.34788819504 -4.48194027538
absolute error = 1.970e-30
relative error = 2.535e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 5.52828536726 5.29315481371
y2[1] (closed_form) = 5.52828536726 5.29315481371
absolute error = 2.000e-30
relative error = 2.613e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 48.61
Order of pole (three term test) = 53.83 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 48.61
Order of pole (three term test) = 62.76 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25758.7MB, alloc=44.3MB, time=332.60
x[1] = 0.7036 2.636
h = 0.001 0.003
y1[1] (numeric) = 6.34864857927 -4.49176706371
y1[1] (closed_form) = 6.34864857927 -4.49176706371
absolute error = 1.970e-30
relative error = 2.533e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 5.53812048918 5.29401623007
y2[1] (closed_form) = 5.53812048918 5.29401623007
absolute error = 2.000e-30
relative error = 2.610e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 48.7
Order of pole (three term test) = 53.97 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 48.7
Order of pole (three term test) = 62.8 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25806.0MB, alloc=44.3MB, time=333.20
x[1] = 0.7046 2.639
h = 0.0001 0.004
y1[1] (numeric) = 6.36000042297 -4.510709491
y1[1] (closed_form) = 6.36000042297 -4.510709491
absolute error = 1.879e-30
relative error = 2.410e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 5.55697851016 5.30557796701
y2[1] (closed_form) = 5.55697851016 5.30557796701
absolute error = 2.000e-30
relative error = 2.603e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 49
Order of pole (three term test) = 54.26 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 49
Order of pole (three term test) = 63 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.7047 2.643
h = 0.003 0.006
y1[1] (numeric) = 6.3808081388 -4.52950622277
y1[1] (closed_form) = 6.3808081388 -4.52950622277
absolute error = 1.879e-30
relative error = 2.401e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 5.5755959558 5.32660754657
y2[1] (closed_form) = 5.5755959558 5.32660754657
absolute error = 2.062e-30
relative error = 2.674e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 49.39
Order of pole (three term test) = 54.58 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 49.39
Order of pole (three term test) = 63.33 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25853.1MB, alloc=44.3MB, time=333.80
x[1] = 0.7077 2.649
h = 0.0001 0.005
y1[1] (numeric) = 6.39903192696 -4.57309792921
y1[1] (closed_form) = 6.39903192696 -4.57309792921
absolute error = 1.879e-30
relative error = 2.389e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 5.61907337448 5.34529324893
y2[1] (closed_form) = 5.61907337448 5.34529324893
absolute error = 2.140e-30
relative error = 2.759e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 49.99
Order of pole (three term test) = 55.24 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 49.99
Order of pole (three term test) = 63.7 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25900.2MB, alloc=44.3MB, time=334.40
x[1] = 0.7078 2.654
h = 0.0001 0.003
y1[1] (numeric) = 6.42536176581 -4.5967877687
y1[1] (closed_form) = 6.42536176581 -4.5967877687
absolute error = 1.879e-30
relative error = 2.378e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 5.64253925732 5.37189568543
y2[1] (closed_form) = 5.64253925732 5.37189568543
absolute error = 2.140e-30
relative error = 2.747e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 50.49
Order of pole (three term test) = 55.66 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 50.49
Order of pole (three term test) = 64.13 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25947.5MB, alloc=44.3MB, time=335.00
x[1] = 0.7079 2.657
h = 0.001 0.001
y1[1] (numeric) = 6.44103622892 -4.61127488947
y1[1] (closed_form) = 6.44103622892 -4.61127488947
absolute error = 2.012e-30
relative error = 2.540e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 5.65689465966 5.38773486814
y2[1] (closed_form) = 5.65689465966 5.38773486814
absolute error = 2.140e-30
relative error = 2.739e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 50.79
Order of pole (three term test) = 55.91 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 50.79
Order of pole (three term test) = 64.39 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=25994.7MB, alloc=44.3MB, time=335.61
x[1] = 0.7089 2.658
h = 0.0001 0.004
y1[1] (numeric) = 6.44176245451 -4.62132496028
y1[1] (closed_form) = 6.44176245451 -4.62132496028
absolute error = 2.012e-30
relative error = 2.538e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 5.66695235879 5.38855996923
y2[1] (closed_form) = 5.66695235879 5.38855996923
absolute error = 2.140e-30
relative error = 2.737e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 50.89
Order of pole (three term test) = 56.05 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 50.89
Order of pole (three term test) = 64.42 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.709 2.662
h = 0.003 0.006
y1[1] (numeric) = 6.4628917112 -4.64057080396
y1[1] (closed_form) = 6.4628917112 -4.64057080396
absolute error = 1.970e-30
relative error = 2.476e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 5.6860213562 5.40990615561
y2[1] (closed_form) = 5.6860213562 5.40990615561
absolute error = 2.220e-30
relative error = 2.829e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 51.3
Order of pole (three term test) = 56.39 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 51.3
Order of pole (three term test) = 64.77 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26041.8MB, alloc=44.3MB, time=336.21
x[1] = 0.712 2.668
h = 0.0001 0.005
y1[1] (numeric) = 6.48128311905 -4.68507794062
y1[1] (closed_form) = 6.48128311905 -4.68507794062
absolute error = 1.970e-30
relative error = 2.463e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 5.73041440826 5.42875029776
y2[1] (closed_form) = 5.73041440826 5.42875029776
absolute error = 2.280e-30
relative error = 2.889e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 51.92
Order of pole (three term test) = 57.08 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 51.92
Order of pole (three term test) = 65.16 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26089.0MB, alloc=44.3MB, time=336.81
x[1] = 0.7121 2.673
h = 0.0001 0.003
y1[1] (numeric) = 6.50802008238 -4.70933427373
y1[1] (closed_form) = 6.50802008238 -4.70933427373
absolute error = 2.062e-30
relative error = 2.566e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 5.75444985165 5.45575378092
y2[1] (closed_form) = 5.75444985165 5.45575378092
absolute error = 2.280e-30
relative error = 2.876e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 52.44
Order of pole (three term test) = 57.52 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 52.44
Order of pole (three term test) = 65.61 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26136.4MB, alloc=44.3MB, time=337.42
x[1] = 0.7122 2.676
h = 0.001 0.001
y1[1] (numeric) = 6.52393526683 -4.72416604332
y1[1] (closed_form) = 6.52393526683 -4.72416604332
absolute error = 2.062e-30
relative error = 2.559e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 5.76915168808 5.47183002762
y2[1] (closed_form) = 5.76915168808 5.47183002762
absolute error = 2.202e-30
relative error = 2.770e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 52.76
Order of pole (three term test) = 57.79 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 52.76
Order of pole (three term test) = 65.88 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26183.7MB, alloc=44.3MB, time=338.03
x[1] = 0.7132 2.677
h = 0.001 0.003
y1[1] (numeric) = 6.52463321759 -4.73441254921
y1[1] (closed_form) = 6.52463321759 -4.73441254921
absolute error = 2.012e-30
relative error = 2.496e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 5.77940526148 5.47262502427
y2[1] (closed_form) = 5.77940526148 5.47262502427
absolute error = 2.220e-30
relative error = 2.790e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 52.86
Order of pole (three term test) = 57.93 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 52.86
Order of pole (three term test) = 65.92 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.7142 2.68
h = 0.0001 0.004
y1[1] (numeric) = 6.53627957839 -4.75425893965
y1[1] (closed_form) = 6.53627957839 -4.75425893965
absolute error = 1.970e-30
relative error = 2.437e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 5.79916870601 5.48447205971
y2[1] (closed_form) = 5.79916870601 5.48447205971
absolute error = 2.220e-30
relative error = 2.782e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 53.18
Order of pole (three term test) = 58.26 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 53.18
Order of pole (three term test) = 66.14 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26230.8MB, alloc=44.3MB, time=338.64
x[1] = 0.7143 2.684
h = 0.003 0.006
y1[1] (numeric) = 6.55777996522 -4.77404434203
y1[1] (closed_form) = 6.55777996522 -4.77404434203
absolute error = 1.970e-30
relative error = 2.428e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 5.81877998797 5.50618373601
y2[1] (closed_form) = 5.81877998797 5.50618373601
absolute error = 2.220e-30
relative error = 2.772e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 53.61
Order of pole (three term test) = 58.62 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 53.61
Order of pole (three term test) = 66.51 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26278.0MB, alloc=44.3MB, time=339.24
x[1] = 0.7173 2.69
h = 0.0001 0.005
y1[1] (numeric) = 6.57634963541 -4.81964037906
y1[1] (closed_form) = 6.57634963541 -4.81964037906
absolute error = 1.970e-30
relative error = 2.416e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 5.86426207717 5.5251956914
y2[1] (closed_form) = 5.86426207717 5.5251956914
absolute error = 2.220e-30
relative error = 2.756e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 54.26
Order of pole (three term test) = 59.34 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 54.26
Order of pole (three term test) = 66.92 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26325.2MB, alloc=44.3MB, time=339.84
x[1] = 0.7174 2.695
h = 0.0001 0.003
y1[1] (numeric) = 6.60355656335 -4.84457732686
y1[1] (closed_form) = 6.60355656335 -4.84457732686
absolute error = 2.012e-30
relative error = 2.457e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 5.88898156298 5.55266219087
y2[1] (closed_form) = 5.88898156298 5.55266219087
absolute error = 2.220e-30
relative error = 2.743e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 54.8
Order of pole (three term test) = 59.8 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 54.8
Order of pole (three term test) = 67.4 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26372.5MB, alloc=44.3MB, time=340.44
x[1] = 0.7175 2.698
h = 0.001 0.001
y1[1] (numeric) = 6.6197494091 -4.85982301965
y1[1] (closed_form) = 6.6197494091 -4.85982301965
absolute error = 2.102e-30
relative error = 2.560e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 5.90409931665 5.56901191832
y2[1] (closed_form) = 5.90409931665 5.56901191832
absolute error = 2.220e-30
relative error = 2.736e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 55.13
Order of pole (three term test) = 60.09 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 55.13
Order of pole (three term test) = 67.68 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.7185 2.699
h = 0.001 0.003
y1[1] (numeric) = 6.62040945839 -4.87030175086
y1[1] (closed_form) = 6.62040945839 -4.87030175086
absolute error = 2.102e-30
relative error = 2.558e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 5.91458445834 5.56976693711
y2[1] (closed_form) = 5.91458445834 5.56976693711
absolute error = 2.220e-30
relative error = 2.733e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 55.24
Order of pole (three term test) = 60.24 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 55.24
Order of pole (three term test) = 67.73 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26419.5MB, alloc=44.3MB, time=341.04
x[1] = 0.7195 2.702
h = 0.0001 0.004
y1[1] (numeric) = 6.63221204088 -4.89065165251
y1[1] (closed_form) = 6.63221204088 -4.89065165251
absolute error = 2.062e-30
relative error = 2.502e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 5.93485217969 5.5817653948
y2[1] (closed_form) = 5.93485217969 5.5817653948
absolute error = 2.302e-30
relative error = 2.826e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 55.57
Order of pole (three term test) = 60.58 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 55.57
Order of pole (three term test) = 67.97 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26466.7MB, alloc=44.3MB, time=341.64
x[1] = 0.7196 2.706
h = 0.003 0.006
y1[1] (numeric) = 6.65408874605 -4.91099064848
y1[1] (closed_form) = 6.65408874605 -4.91099064848
absolute error = 2.062e-30
relative error = 2.493e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 5.95501975098 5.60384788617
y2[1] (closed_form) = 5.95501975098 5.60384788617
absolute error = 2.220e-30
relative error = 2.715e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 56.02
Order of pole (three term test) = 60.96 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 56.02
Order of pole (three term test) = 68.35 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26513.9MB, alloc=44.3MB, time=342.24
x[1] = 0.7226 2.712
h = 0.0001 0.005
y1[1] (numeric) = 6.67283451111 -4.95770070494
y1[1] (closed_form) = 6.67283451111 -4.95770070494
absolute error = 2.102e-30
relative error = 2.529e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 6.00161604755 5.62302571555
y2[1] (closed_form) = 6.00161604755 5.62302571555
absolute error = 2.220e-30
relative error = 2.700e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 56.7
Order of pole (three term test) = 61.72 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 56.7
Order of pole (three term test) = 68.79 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26561.1MB, alloc=44.3MB, time=342.85
x[1] = 0.7227 2.717
h = 0.0001 0.003
y1[1] (numeric) = 6.70051799219 -4.98333598188
y1[1] (closed_form) = 6.70051799219 -4.98333598188
absolute error = 2.102e-30
relative error = 2.518e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 6.02703725163 5.65096198892
y2[1] (closed_form) = 6.02703725163 5.65096198892
absolute error = 2.220e-30
relative error = 2.687e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 57.27
Order of pole (three term test) = 62.21 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 57.27
Order of pole (three term test) = 69.29 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.7228 2.72
h = 0.001 0.001
y1[1] (numeric) = 6.71699232636 -4.99900632519
y1[1] (closed_form) = 6.71699232636 -4.99900632519
absolute error = 2.062e-30
relative error = 2.462e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 6.04258162813 5.6675891256
y2[1] (closed_form) = 6.04258162813 5.6675891256
absolute error = 2.247e-30
relative error = 2.713e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 57.61
Order of pole (three term test) = 62.51 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 57.61
Order of pole (three term test) = 69.59 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26608.3MB, alloc=44.3MB, time=343.45
x[1] = 0.7238 2.721
h = 0.001 0.003
y1[1] (numeric) = 6.71761233128 -5.00972221315
y1[1] (closed_form) = 6.71761233128 -5.00972221315
absolute error = 2.102e-30
relative error = 2.509e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 6.05330329461 5.66830206545
y2[1] (closed_form) = 6.05330329461 5.66830206545
absolute error = 2.220e-30
relative error = 2.677e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 57.73
Order of pole (three term test) = 62.67 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 57.73
Order of pole (three term test) = 69.64 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26655.6MB, alloc=44.3MB, time=344.06
x[1] = 0.7248 2.724
h = 0.0001 0.004
y1[1] (numeric) = 6.72957177056 -5.03058765657
y1[1] (closed_form) = 6.72957177056 -5.03058765657
absolute error = 2.102e-30
relative error = 2.502e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 6.07408733153 5.68045268896
y2[1] (closed_form) = 6.07408733153 5.68045268896
absolute error = 2.247e-30
relative error = 2.702e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 58.07
Order of pole (three term test) = 63.03 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 58.07
Order of pole (three term test) = 69.89 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26702.8MB, alloc=44.3MB, time=344.66
x[1] = 0.7249 2.728
h = 0.003 0.006
y1[1] (numeric) = 6.75183002475 -5.05149462117
y1[1] (closed_form) = 6.75183002475 -5.05149462117
absolute error = 2.102e-30
relative error = 2.493e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 6.09482553705 5.70291135989
y2[1] (closed_form) = 6.09482553705 5.70291135989
absolute error = 2.247e-30
relative error = 2.692e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 58.54
Order of pole (three term test) = 63.43 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 58.54
Order of pole (three term test) = 70.3 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.7279 2.734
h = 0.0001 0.005
y1[1] (numeric) = 6.77074953768 -5.09934436508
y1[1] (closed_form) = 6.77074953768 -5.09934436508
absolute error = 2.102e-30
relative error = 2.480e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 6.14256175792 5.72225293979
y2[1] (closed_form) = 6.14256175792 5.72225293979
absolute error = 2.332e-30
relative error = 2.778e-29 %
Correct digits = 31
memory used=26750.1MB, alloc=44.3MB, time=345.27
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 59.25
Order of pole (three term test) = 64.22 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 59.25
Order of pole (three term test) = 70.77 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.728 2.739
h = 0.0001 0.003
y1[1] (numeric) = 6.79891621483 -5.12569611516
y1[1] (closed_form) = 6.79891621483 -5.12569611516
absolute error = 2.193e-30
relative error = 2.576e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 6.1687027856 5.75066579516
y2[1] (closed_form) = 6.1687027856 5.75066579516
absolute error = 2.385e-30
relative error = 2.828e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 59.84
Order of pole (three term test) = 64.74 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 59.84
Order of pole (three term test) = 71.29 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26797.0MB, alloc=44.3MB, time=345.88
x[1] = 0.7281 2.742
h = 0.001 0.001
y1[1] (numeric) = 6.81567589384 -5.14180209556
y1[1] (closed_form) = 6.81567589384 -5.14180209556
absolute error = 2.193e-30
relative error = 2.569e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 6.1846847497 5.76757429654
y2[1] (closed_form) = 6.1846847497 5.76757429654
absolute error = 2.385e-30
relative error = 2.821e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 60.2
Order of pole (three term test) = 65.06 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 60.2
Order of pole (three term test) = 71.61 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26844.6MB, alloc=44.3MB, time=346.49
x[1] = 0.7291 2.743
h = 0.001 0.003
y1[1] (numeric) = 6.81625363793 -5.15276017047
y1[1] (closed_form) = 6.81625363793 -5.15276017047
absolute error = 2.236e-30
relative error = 2.617e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 6.19564799549 5.768242982
y2[1] (closed_form) = 6.19564799549 5.768242982
absolute error = 2.385e-30
relative error = 2.818e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 60.32
Order of pole (three term test) = 65.23 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 60.32
Order of pole (three term test) = 71.66 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26891.7MB, alloc=44.3MB, time=347.09
x[1] = 0.7301 2.746
h = 0.0001 0.004
y1[1] (numeric) = 6.8283705204 -5.17415345786
y1[1] (closed_form) = 6.8283705204 -5.17415345786
absolute error = 2.326e-30
relative error = 2.715e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 6.21696065765 5.78054646388
y2[1] (closed_form) = 6.21696065765 5.78054646388
absolute error = 2.385e-30
relative error = 2.810e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 60.69
Order of pole (three term test) = 65.6 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 60.69
Order of pole (three term test) = 71.93 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.7302 2.75
h = 0.003 0.006
y1[1] (numeric) = 6.85101559577 -5.19564311407
y1[1] (closed_form) = 6.85101559577 -5.19564311407
absolute error = 2.236e-30
relative error = 2.601e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 6.23828419016 5.80338671727
y2[1] (closed_form) = 6.23828419016 5.80338671727
absolute error = 2.470e-30
relative error = 2.899e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 61.17
Order of pole (three term test) = 66.03 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 61.17
Order of pole (three term test) = 72.36 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26938.8MB, alloc=44.3MB, time=347.68
x[1] = 0.7332 2.756
h = 0.0001 0.005
y1[1] (numeric) = 6.87010632302 -5.24465877359
y1[1] (closed_form) = 6.87010632302 -5.24465877359
absolute error = 2.326e-30
relative error = 2.691e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 6.28718661017 5.82288973302
y2[1] (closed_form) = 6.28718661017 5.82288973302
absolute error = 2.470e-30
relative error = 2.882e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 61.91
Order of pole (three term test) = 66.86 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 61.91
Order of pole (three term test) = 72.86 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=26986.0MB, alloc=44.3MB, time=348.28
x[1] = 0.7333 2.761
h = 0.0001 0.003
y1[1] (numeric) = 6.89876289237 -5.27174558012
y1[1] (closed_form) = 6.89876289237 -5.27174558012
absolute error = 2.326e-30
relative error = 2.679e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 6.31406600613 5.8517860279
y2[1] (closed_form) = 6.31406600613 5.8517860279
absolute error = 2.470e-30
relative error = 2.869e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 62.53
Order of pole (three term test) = 67.41 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 62.53
Order of pole (three term test) = 73.41 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27033.2MB, alloc=44.3MB, time=348.89
x[1] = 0.7334 2.764
h = 0.001 0.001
y1[1] (numeric) = 6.91581180114 -5.28829844935
y1[1] (closed_form) = 6.91581180114 -5.28829844935
absolute error = 2.326e-30
relative error = 2.672e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 6.33049678774 5.86897987568
y2[1] (closed_form) = 6.33049678774 5.86897987568
absolute error = 2.470e-30
relative error = 2.861e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 62.91
Order of pole (three term test) = 67.74 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 62.91
Order of pole (three term test) = 73.74 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27080.6MB, alloc=44.3MB, time=349.50
x[1] = 0.7344 2.765
h = 0.0001 0.004
y1[1] (numeric) = 6.91634499219 -5.299503842
y1[1] (closed_form) = 6.91634499219 -5.299503842
absolute error = 2.326e-30
relative error = 2.669e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 6.34170676718 5.8696020548
y2[1] (closed_form) = 6.34170676718 5.8696020548
absolute error = 2.470e-30
relative error = 2.858e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 63.04
Order of pole (three term test) = 67.92 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 63.04
Order of pole (three term test) = 73.8 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.7345 2.769
h = 0.003 0.006
y1[1] (numeric) = 6.93933446939 -5.32150242698
y1[1] (closed_form) = 6.93933446939 -5.32150242698
absolute error = 2.326e-30
relative error = 2.660e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 6.36354153305 5.89278233398
y2[1] (closed_form) = 6.36354153305 5.89278233398
absolute error = 2.524e-30
relative error = 2.910e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 63.54
Order of pole (three term test) = 68.37 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 63.54
Order of pole (three term test) = 74.25 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27127.7MB, alloc=44.3MB, time=350.10
x[1] = 0.7375 2.775
h = 0.0001 0.005
y1[1] (numeric) = 6.95858471973 -5.3715411118
y1[1] (closed_form) = 6.95858471973 -5.3715411118
absolute error = 2.236e-30
relative error = 2.544e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 6.41346737115 5.91243663179
y2[1] (closed_form) = 6.41346737115 5.91243663179
absolute error = 2.524e-30
relative error = 2.893e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 64.31
Order of pole (three term test) = 69.22 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 64.31
Order of pole (three term test) = 74.78 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27174.9MB, alloc=44.3MB, time=350.70
x[1] = 0.7376 2.78
h = 0.0001 0.003
y1[1] (numeric) = 6.98767743931 -5.39926990921
y1[1] (closed_form) = 6.98767743931 -5.39926990921
absolute error = 2.326e-30
relative error = 2.634e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 6.44099165205 5.94176368786
y2[1] (closed_form) = 6.44099165205 5.94176368786
absolute error = 2.524e-30
relative error = 2.880e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 64.96
Order of pole (three term test) = 69.8 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 64.96
Order of pole (three term test) = 75.36 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27222.2MB, alloc=44.3MB, time=351.32
x[1] = 0.7377 2.783
h = 0.001 0.001
y1[1] (numeric) = 7.00498395025 -5.41621315365
y1[1] (closed_form) = 7.00498395025 -5.41621315365
absolute error = 2.326e-30
relative error = 2.627e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 6.45781449624 5.95921189356
y2[1] (closed_form) = 6.45781449624 5.95921189356
absolute error = 2.524e-30
relative error = 2.872e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 65.35
Order of pole (three term test) = 70.15 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 65.35
Order of pole (three term test) = 75.7 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27269.5MB, alloc=44.3MB, time=351.93
x[1] = 0.7387 2.784
h = 0.001 0.003
y1[1] (numeric) = 7.00547992763 -5.42763618519
y1[1] (closed_form) = 7.00547992763 -5.42763618519
absolute error = 2.326e-30
relative error = 2.625e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 6.46924165275 5.95979520273
y2[1] (closed_form) = 6.46924165275 5.95979520273
absolute error = 2.524e-30
relative error = 2.869e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 65.48
Order of pole (three term test) = 70.33 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 65.48
Order of pole (three term test) = 75.77 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.7397 2.787
h = 0.0001 0.004
y1[1] (numeric) = 7.01789780476 -5.4500434746
y1[1] (closed_form) = 7.01789780476 -5.4500434746
absolute error = 2.326e-30
relative error = 2.618e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 6.49156983992 5.97239143227
y2[1] (closed_form) = 6.49156983992 5.97239143227
absolute error = 2.524e-30
relative error = 2.861e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 65.87
Order of pole (three term test) = 70.74 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 65.87
Order of pole (three term test) = 76.07 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27316.6MB, alloc=44.3MB, time=352.52
x[1] = 0.7398 2.791
h = 0.003 0.006
y1[1] (numeric) = 7.04128420583 -5.47265303667
y1[1] (closed_form) = 7.04128420583 -5.47265303667
absolute error = 2.326e-30
relative error = 2.608e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 6.51401816056 5.99596363155
y2[1] (closed_form) = 6.51401816056 5.99596363155
absolute error = 2.524e-30
relative error = 2.851e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 66.4
Order of pole (three term test) = 71.22 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 66.4
Order of pole (three term test) = 76.54 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27363.7MB, alloc=44.3MB, time=353.12
x[1] = 0.7428 2.797
h = 0.0001 0.005
y1[1] (numeric) = 7.06070076316 -5.52390800724
y1[1] (closed_form) = 7.06070076316 -5.52390800724
absolute error = 2.326e-30
relative error = 2.595e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 6.56516064664 6.01577485375
y2[1] (closed_form) = 6.56516064664 6.01577485375
absolute error = 2.524e-30
relative error = 2.834e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 67.2
Order of pole (three term test) = 72.11 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 67.2
Order of pole (three term test) = 77.1 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27411.1MB, alloc=44.3MB, time=353.73
x[1] = 0.7429 2.802
h = 0.0001 0.003
y1[1] (numeric) = 7.09029620623 -5.55240756302
y1[1] (closed_form) = 7.09029620623 -5.55240756302
absolute error = 2.417e-30
relative error = 2.683e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 6.593458924 6.04559847064
y2[1] (closed_form) = 6.593458924 6.04559847064
absolute error = 2.608e-30
relative error = 2.915e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 67.88
Order of pole (three term test) = 72.73 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 67.88
Order of pole (three term test) = 77.7 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27458.3MB, alloc=44.3MB, time=354.34
x[1] = 0.743 2.805
h = 0.001 0.001
y1[1] (numeric) = 7.10789939053 -5.56981931263
y1[1] (closed_form) = 7.10789939053 -5.56981931263
absolute error = 2.417e-30
relative error = 2.676e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 6.61075216025 6.06333964027
y2[1] (closed_form) = 6.61075216025 6.06333964027
absolute error = 2.608e-30
relative error = 2.907e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 68.29
Order of pole (three term test) = 73.1 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 68.29
Order of pole (three term test) = 78.07 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.744 2.806
h = 0.001 0.003
y1[1] (numeric) = 7.1083464043 -5.58149951248
y1[1] (closed_form) = 7.1083464043 -5.58149951248
absolute error = 2.417e-30
relative error = 2.674e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 6.62243594247 6.0638721057
y2[1] (closed_form) = 6.62243594247 6.0638721057
absolute error = 2.524e-30
relative error = 2.811e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 68.42
Order of pole (three term test) = 73.28 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 68.42
Order of pole (three term test) = 78.14 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27505.4MB, alloc=44.3MB, time=354.95
x[1] = 0.745 2.809
h = 0.0001 0.004
y1[1] (numeric) = 7.12092326737 -5.60447138662
y1[1] (closed_form) = 7.12092326737 -5.60447138662
absolute error = 2.417e-30
relative error = 2.667e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 6.64532951202 6.0766230277
y2[1] (closed_form) = 6.64532951202 6.0766230277
absolute error = 2.524e-30
relative error = 2.803e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 68.84
Order of pole (three term test) = 73.71 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 68.84
Order of pole (three term test) = 78.46 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27552.5MB, alloc=44.3MB, time=355.56
x[1] = 0.7451 2.813
h = 0.003 0.006
y1[1] (numeric) = 7.14471198176 -5.62770768812
y1[1] (closed_form) = 7.14471198176 -5.62770768812
absolute error = 2.417e-30
relative error = 2.657e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 6.66840711958 6.10059265885
y2[1] (closed_form) = 6.66840711958 6.10059265885
absolute error = 2.524e-30
relative error = 2.793e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 69.39
Order of pole (three term test) = 74.21 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 69.39
Order of pole (three term test) = 78.95 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27599.7MB, alloc=44.3MB, time=356.16
x[1] = 0.7481 2.819
h = 0.0001 0.005
y1[1] (numeric) = 7.16429174495 -5.68020684104
y1[1] (closed_form) = 7.16429174495 -5.68020684104
absolute error = 2.460e-30
relative error = 2.690e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 6.72079419099 6.12055791047
y2[1] (closed_form) = 6.72079419099 6.12055791047
absolute error = 2.524e-30
relative error = 2.777e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 70.23
Order of pole (three term test) = 75.15 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 70.23
Order of pole (three term test) = 79.55 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27647.0MB, alloc=44.3MB, time=356.78
x[1] = 0.7482 2.824
h = 0.0001 0.003
y1[1] (numeric) = 7.19439675816 -5.70949705097
y1[1] (closed_form) = 7.19439675816 -5.70949705097
absolute error = 2.460e-30
relative error = 2.678e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 6.74988632203 6.1508850858
y2[1] (closed_form) = 6.74988632203 6.1508850858
absolute error = 2.581e-30
relative error = 2.826e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 70.93
Order of pole (three term test) = 75.79 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 70.93
Order of pole (three term test) = 80.19 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.7483 2.827
h = 0.001 0.001
y1[1] (numeric) = 7.21230058077 -5.72738934953
y1[1] (closed_form) = 7.21230058077 -5.72738934953
absolute error = 2.371e-30
relative error = 2.574e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 6.76766197228 6.16892327487
y2[1] (closed_form) = 6.76766197228 6.16892327487
absolute error = 2.663e-30
relative error = 2.908e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 71.36
Order of pole (three term test) = 76.19 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 71.36
Order of pole (three term test) = 80.57 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27694.1MB, alloc=44.3MB, time=357.37
x[1] = 0.7493 2.828
h = 0.001 0.003
y1[1] (numeric) = 7.2126961107 -5.73933214721
y1[1] (closed_form) = 7.2126961107 -5.73933214721
absolute error = 2.371e-30
relative error = 2.572e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 6.7796078313 6.16940241445
y2[1] (closed_form) = 6.7796078313 6.16940241445
absolute error = 2.608e-30
relative error = 2.845e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 71.5
Order of pole (three term test) = 76.38 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 71.5
Order of pole (three term test) = 80.65 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27741.4MB, alloc=44.3MB, time=357.98
x[1] = 0.7503 2.831
h = 0.0001 0.004
y1[1] (numeric) = 7.22543233635 -5.76288201264
y1[1] (closed_form) = 7.22543233635 -5.76288201264
absolute error = 2.371e-30
relative error = 2.565e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 6.80308019466 6.18230850318
y2[1] (closed_form) = 6.80308019466 6.18230850318
absolute error = 2.581e-30
relative error = 2.807e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 71.93
Order of pole (three term test) = 76.83 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 71.93
Order of pole (three term test) = 80.98 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27788.5MB, alloc=44.3MB, time=358.58
x[1] = 0.7504 2.835
h = 0.003 0.006
y1[1] (numeric) = 7.24962879076 -5.78676119548
y1[1] (closed_form) = 7.24962879076 -5.78676119548
absolute error = 2.371e-30
relative error = 2.556e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 6.8268032009 6.20668111238
y2[1] (closed_form) = 6.8268032009 6.20668111238
absolute error = 2.663e-30
relative error = 2.886e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 72.51
Order of pole (three term test) = 77.36 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 72.51
Order of pole (three term test) = 81.51 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.7534 2.841
h = 0.0001 0.005
y1[1] (numeric) = 7.26936844293 -5.84053303266
y1[1] (closed_form) = 7.26936844293 -5.84053303266
absolute error = 2.371e-30
relative error = 2.542e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 6.88046339835 6.22679727845
y2[1] (closed_form) = 6.88046339835 6.22679727845
absolute error = 2.720e-30
relative error = 2.931e-29 %
Correct digits = 31
memory used=27835.7MB, alloc=44.3MB, time=359.18
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 73.38
Order of pole (three term test) = 78.33 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 73.38
Order of pole (three term test) = 82.14 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.7535 2.846
h = 0.0001 0.003
y1[1] (numeric) = 7.29998992085 -5.87063427183
y1[1] (closed_form) = 7.29998992085 -5.87063427183
absolute error = 2.371e-30
relative error = 2.531e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 6.91036971968 6.25763505427
y2[1] (closed_form) = 6.91036971968 6.25763505427
absolute error = 2.720e-30
relative error = 2.918e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 74.12
Order of pole (three term test) = 79.01 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 74.12
Order of pole (three term test) = 82.81 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27883.0MB, alloc=44.3MB, time=359.78
x[1] = 0.7536 2.849
h = 0.001 0.001
y1[1] (numeric) = 7.31819837173 -5.88901945234
y1[1] (closed_form) = 7.31819837173 -5.88901945234
absolute error = 2.371e-30
relative error = 2.524e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 6.92864009507 6.2759743412
y2[1] (closed_form) = 6.92864009507 6.2759743412
absolute error = 2.720e-30
relative error = 2.910e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 74.57
Order of pole (three term test) = 79.43 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 74.57
Order of pole (three term test) = 83.21 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27930.4MB, alloc=44.3MB, time=360.39
x[1] = 0.7546 2.85
h = 0.001 0.003
y1[1] (numeric) = 7.31853981289 -5.90123038509
y1[1] (closed_form) = 7.31853981289 -5.90123038509
absolute error = 2.460e-30
relative error = 2.616e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 6.94085358901 6.27639758741
y2[1] (closed_form) = 6.94085358901 6.27639758741
absolute error = 2.720e-30
relative error = 2.907e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 74.72
Order of pole (three term test) = 79.62 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 74.72
Order of pole (three term test) = 83.29 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=27977.6MB, alloc=44.3MB, time=360.99
x[1] = 0.7556 2.853
h = 0.0001 0.004
y1[1] (numeric) = 7.3314357156 -5.92537194904
y1[1] (closed_form) = 7.3314357156 -5.92537194904
absolute error = 2.417e-30
relative error = 2.564e-29 %
Correct digits = 31
h = 0.0001 0.004
y2[1] (numeric) = 6.9649184577 6.28945925286
y2[1] (closed_form) = 6.9649184577 6.28945925286
absolute error = 2.640e-30
relative error = 2.813e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 75.17
Order of pole (three term test) = 80.09 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 75.17
Order of pole (three term test) = 83.65 0
NO COMPLEX POLE (six term test) for Equation 2
x[1] = 0.7557 2.857
h = 0.003 0.006
y1[1] (numeric) = 7.3560453727 -5.94991054332
y1[1] (closed_form) = 7.3560453727 -5.94991054332
absolute error = 2.417e-30
relative error = 2.554e-29 %
Correct digits = 31
h = 0.003 0.006
y2[1] (numeric) = 6.9893033626 6.31424041951
y2[1] (closed_form) = 6.9893033626 6.31424041951
absolute error = 2.640e-30
relative error = 2.803e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 75.77
Order of pole (three term test) = 80.65 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 75.77
Order of pole (three term test) = 84.2 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=28024.7MB, alloc=44.3MB, time=361.58
x[1] = 0.7587 2.863
h = 0.0001 0.005
y1[1] (numeric) = 7.37594137307 -6.0049841842
y1[1] (closed_form) = 7.37594137307 -6.0049841842
absolute error = 2.417e-30
relative error = 2.541e-29 %
Correct digits = 31
h = 0.0001 0.005
y2[1] (numeric) = 7.04426584244 6.33450415695
y2[1] (closed_form) = 7.04426584244 6.33450415695
absolute error = 2.720e-30
relative error = 2.871e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 76.69
Order of pole (three term test) = 81.67 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 76.69
Order of pole (three term test) = 84.87 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=28071.9MB, alloc=44.3MB, time=362.18
x[1] = 0.7588 2.868
h = 0.0001 0.003
y1[1] (numeric) = 7.40708625658 -6.03591731793
y1[1] (closed_form) = 7.40708625658 -6.03591731793
absolute error = 2.417e-30
relative error = 2.529e-29 %
Correct digits = 31
h = 0.0001 0.003
y2[1] (numeric) = 7.07500718095 6.36585961822
y2[1] (closed_form) = 7.07500718095 6.36585961822
absolute error = 2.720e-30
relative error = 2.858e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 77.46
Order of pole (three term test) = 82.39 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 77.46
Order of pole (three term test) = 85.58 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=28119.2MB, alloc=44.3MB, time=362.79
x[1] = 0.7589 2.871
h = 0.001 0.001
y1[1] (numeric) = 7.42560334963 -6.05480800915
y1[1] (closed_form) = 7.42560334963 -6.05480800915
absolute error = 2.508e-30
relative error = 2.618e-29 %
Correct digits = 31
h = 0.001 0.001
y2[1] (numeric) = 7.09378488842 6.38450410333
y2[1] (closed_form) = 7.09378488842 6.38450410333
absolute error = 2.780e-30
relative error = 2.913e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 77.92
Order of pole (three term test) = 82.82 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 77.92
Order of pole (three term test) = 86 0
NO COMPLEX POLE (six term test) for Equation 2
memory used=28166.4MB, alloc=44.3MB, time=363.40
x[1] = 0.7599 2.872
h = 0.001 0.003
y1[1] (numeric) = 7.42588800987 -6.06729272384
y1[1] (closed_form) = 7.42588800987 -6.06729272384
absolute error = 2.508e-30
relative error = 2.615e-29 %
Correct digits = 31
h = 0.001 0.003
y2[1] (numeric) = 7.1062716844 6.38486880073
y2[1] (closed_form) = 7.1062716844 6.38486880073
absolute error = 2.720e-30
relative error = 2.847e-29 %
Correct digits = 31
NO POLE (given) for Equation 1
NO POLE (ratio test) for Equation 1
Radius of convergence (three term test) for eq 1 = 78.08
Order of pole (three term test) = 83.03 0
NO COMPLEX POLE (six term test) for Equation 1
NO POLE (given) for Equation 2
NO POLE (ratio test) for Equation 2
Radius of convergence (three term test) for eq 2 = 78.08
Order of pole (three term test) = 86.09 0
NO COMPLEX POLE (six term test) for Equation 2
Finished!
Maximum Time Reached before Solution Completed!
diff ( y1 , x , 1 ) = neg ( y2 ) + 1.0 ;
diff ( y2 , x , 1 ) = y1 - 1.0 ;
Iterations = 754
Total Elapsed Time = 6 Minutes 3 Seconds
Expected Time Remaining = 0 Seconds
Optimized Time Remaining = 0 Seconds
Expected Total Time = 6 Minutes 3 Seconds
> quit
memory used=28205.1MB, alloc=44.3MB, time=363.90